diff --git a/.resources/00b62315c05b34f40ade876ea14f716ec1fb50e22fa0515db6e3366c20ae7068 b/.resources/00b62315c05b34f40ade876ea14f716ec1fb50e22fa0515db6e3366c20ae7068 deleted file mode 100644 index 510a0a19..00000000 Binary files a/.resources/00b62315c05b34f40ade876ea14f716ec1fb50e22fa0515db6e3366c20ae7068 and /dev/null differ diff --git a/.resources/0101f46f26c0425f4f6470af0c2b90d2adfb7ee8ecd2b5f77dd49d5530ac7ca1 b/.resources/0101f46f26c0425f4f6470af0c2b90d2adfb7ee8ecd2b5f77dd49d5530ac7ca1 new file mode 100644 index 00000000..a79d590d --- /dev/null +++ b/.resources/0101f46f26c0425f4f6470af0c2b90d2adfb7ee8ecd2b5f77dd49d5530ac7ca1 @@ -0,0 +1,55 @@ +def handleTagHighlight(view, currentValue): + tag_priority = currentValue.value + + # --- CASE 1: Remove all highlights by applying CLEAR class --- + if not tag_priority or str(tag_priority).upper() == "CLEAR": + for child in view.rootContainer.getChildren(): + try: + child.props.style.classes = "Highlight/Pulse-Clear" + except: + pass + return False + + # --- CASE 2: Highlight as normal --- + parts = str(tag_priority).split("||") + tag = parts[0] + priority = parts[1] if len(parts) > 1 else "1" + + splitedTag = tag.split("/") + deviceName = splitedTag[-1] + + Docked_East_Map = { + "VFD": "Docked-East-VFD", + "MCM": "Docked-East-MCM" + } + Docked_East_View = Docked_East_Map["VFD"] + + if "PE" in deviceName: + tag = "/".join(splitedTag[:2]) + "/Conveyor/" + deviceName[:-3] + "VFD1" + + if "MCM" in deviceName: + Docked_East_View = Docked_East_Map["MCM"] + + # Clear old highlights (set to Clear class) + components = view.rootContainer.getChildren() + for child in components: + child.props.style.classes = "Highlight/Pulse-Clear" + + # Apply highlight if found + foundMatch = False + for child in components: + params = child.props.get("params", {}) + tagProps = params.get("tagProps", {}) + tagsList = list(tagProps) + + if len(tagsList) == 0: + continue + + tagPath = tagsList[0] + + if tag == tagPath: + child.props.style.classes = "Highlight/Pulse-" + priority + system.perspective.openDock(Docked_East_View, params={'tagProps': tagProps}) + foundMatch = True + + return foundMatch \ No newline at end of file diff --git a/.resources/02187c1c19d6889a1a360304ce98b7c8c479edeb78b151dcd256052fa8c7f444 b/.resources/02187c1c19d6889a1a360304ce98b7c8c479edeb78b151dcd256052fa8c7f444 deleted file mode 100644 index 9dd7586b..00000000 --- a/.resources/02187c1c19d6889a1a360304ce98b7c8c479edeb78b151dcd256052fa8c7f444 +++ /dev/null @@ -1,1123 +0,0 @@ -{ - "custom": { - "filter_menu_data": [ - { - "filters": [ - { - "color": "#8B008B", - "column": "test1", - "group": 1, - "id": 0, - "text": "value1" - } - ], - "group_name": "test1", - "instancePosition": {}, - "instanceStyle": { - "classes": "" - } - }, - { - "filters": [ - { - "color": "#00CED1", - "column": "test2", - "group": 2, - "id": 1, - "text": "value2" - } - ], - "group_name": "test2", - "instancePosition": {}, - "instanceStyle": { - "classes": "" - } - } - ], - "filtered_table_data": [], - "filters": { - "active": [], - "default_colors": [ - "#8B008B", - "#00CED1", - "#FF8C00", - "#708090", - "#DC143C", - "#FFDEAD", - "#7B68EE", - "#4169E1", - "#F4A460", - "#9ACD32" - ], - "number_of_groups": "value", - "selection_active": false - }, - "table_data": [], - "use_filtered_table": false - }, - "params": { - "DoubleClick": { - "Enabled": false, - "MP": "MP", - "Sts": "STATUS", - "TextCode": "TEXT_CODE", - "WHID": "WHID" - }, - "NavigationSettings": { - "BaseUrl": "", - "Column": "", - "Enabled": false - }, - "SelectedRow": [], - "VisibleColCount": 5, - "filters": [ - { - "column": "test1", - "group": 1, - "text": "value1" - }, - { - "column": "test2", - "group": 2, - "text": "value2" - } - ], - "header_order": [ - "timestamp", - "username", - "operation", - { - "field": "destination_bucket", - "visible": true - }, - "destination_site", - "destination_view", - { - "field": "destination_object_key", - "visible": false - }, - { - "field": "destination_version_id", - "visible": false - }, - "expires", - { - "field": "source_bucket", - "visible": true - }, - "source_site", - "source_view", - { - "field": "source_object_key", - "visible": false - }, - { - "field": "source_version_id", - "visible": false - }, - { - "field": "response", - "visible": false - }, - "error_occurred", - { - "field": "error_message", - "visible": true - }, - { - "field": "audit_id", - "visible": false - }, - { - "field": "copy_option", - "visible": false - }, - { - "field": "ttl", - "visible": false - } - ], - "key_to_read_from": "use_param", - "puToDismiss": "", - "table_data": [], - "title": "S3 SCADA Audit Logs" - }, - "propConfig": { - "custom.filter_menu_data": { - "binding": { - "config": { - "path": "view.custom.filters.deactive" - }, - "transforms": [ - { - "code": "\tinstances \u003d []\n\tgroups \u003d {}\n\tfor filter in value:\n\t \tif not groups.has_key(filter.column):\n\t \t\tgroups[filter.column] \u003d []\n\t \tgroups[filter.column].append(filter)\n\tfor key in groups:\n\t\tinstance \u003d {\"instanceStyle\": {\n\t \t\t\t\"classes\": \"\"},\n\t \t\t\t \"instancePosition\": {}}\n\t \tgroups[key].sort()\n\t \tinstance[\u0027filters\u0027] \u003d groups[key]\n\t \tinstance[\u0027group_name\u0027] \u003d key\n\t \tinstances.append(instance)\n\treturn instances", - "type": "script" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.filtered_table_data": { - "binding": { - "config": { - "expression": "if({view.custom.table_data} !\u003d {view.custom.filters.active},\r\n{view.custom.filters.active},\r\n{view.custom.filters.active})" - }, - "transforms": [ - { - "code": "\tfiltered_table \u003d []\n\tif len(value) \u003e 0:\n\t\tfilter_lookup \u003d {}\n\t\tfor act_filter in value:\n\t\t\tif act_filter[\u0027column\u0027] not in filter_lookup:\n\t\t\t\tfilter_lookup[act_filter[\u0027column\u0027]] \u003d []\n\t\t\tfilter_lookup[act_filter[\u0027column\u0027]].append(act_filter[\u0027text\u0027])\n\t\tfor row in self.custom.table_data:\n\t\t\tsystem.perspective.print(row)\n\t\t\tshould_filter \u003d {}\t\t\n\t\t\t# Handles stylized rows\t\n\t\t\tif \u0027style\u0027 in row and \u0027value\u0027 in row and len(row) \u003d\u003d2:\n\t\t\t\t#for column in row:\n\t\t\t\t\t#system.perspective.print(\u0027value:%s\u0027%column)\n\t\t\t\t\tdata_columns \u003d row[\u0027value\u0027]\n\t\t\t\t\tfor s_column in data_columns:\n\t\t\t\t\t\tif s_column in filter_lookup:\n\t\t\t\t\t\t\tif data_columns[s_column] in filter_lookup[s_column]:\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\tshould_filter[s_column] \u003d True\n\t\t\t\t\t\t\telse:\n\t\t\t\t\t\t\t\tshould_filter[s_column] \u003d False\n\t\t\t\t\t\telse:\n\t\t\t\t\t\t\tshould_filter[s_column] \u003d False\t\n\t\t\telse:\n\t\t\t\tfor column in row:\n\t\t\t\t\tif column in filter_lookup:\n\t\t\t\t\t\tif row[column] in filter_lookup[column]:\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tshould_filter[column] \u003d True\n\t\t\t\t\t\telse:\n\t\t\t\t\t\t\tshould_filter[column] \u003d False\n\t\t\t\t\telse:\n\t\t\t\t\t\tshould_filter[column] \u003d False\n\t\t\tif sum(should_filter.values()) \u003d\u003d len(filter_lookup.keys()):\n\t\t\t\tfiltered_table.append(row)\n\n\treturn filtered_table", - "type": "script" - } - ], - "type": "expr" - }, - "persistent": true - }, - "custom.filters": { - "persistent": true - }, - "custom.filters.deactive": { - "binding": { - "config": { - "path": "view.params.filters" - }, - "transforms": [ - { - "code": "\t\n\tfilters \u003d []\n\tgroups \u003d []\n\tfor index, filter in enumerate(value):\n\t\tnew_filter \u003d {}\t\n\t\tif not filter.has_key(\u0027group\u0027):\n\t\t\tnew_filter[\u0027group\u0027] \u003d 0\n\t\telse:\n\t\t\tnew_filter[\u0027group\u0027] \u003d filter.group\n\t\tif not filter.has_key(\u0027color\u0027):\n\t\t\tif new_filter[\u0027group\u0027] not in groups:\n\t\t\t\tgroups.append(new_filter[\u0027group\u0027])\n\t\t\tnew_filter[\u0027color\u0027] \u003d self.custom.filters.default_colors[groups.index(new_filter[\u0027group\u0027])]\n\t\telse:\n\t\t\tnew_filter[\u0027color\u0027] \u003d filter.color\n\t\tif not filter.has_key(\u0027text\u0027):\n\t\t\tnew_filter[\u0027text\u0027] \u003d \u0027Filter \u0027 + str(index)\n\t\telse:\n\t\t\tnew_filter[\u0027text\u0027] \u003d filter.text\n\t\tif not filter.has_key(\u0027column\u0027):\n\t\t\tnew_filter[\u0027column\u0027] \u003d 0\n\t\telse:\n\t\t\tnew_filter[\u0027column\u0027] \u003d filter.column\n\t\tnew_filter[\u0027id\u0027] \u003d index\n\t\tfilters.append(new_filter)\t\t\t\t\n\treturn filters", - "type": "script" - } - ], - "type": "property" - } - }, - "custom.table_data": { - "binding": { - "config": { - "expression": "if({view.params.key_to_read_from} \u003d \u0027use_param\u0027,\r\n{view.params.table_data},\r\nproperty(concat(\u0027session.custom.tableComponentData.\u0027,{view.params.key_to_read_from})))" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.use_filtered": { - "persistent": true - }, - "custom.use_filtered_table": { - "binding": { - "config": { - "path": "view.custom.filtered_table_data" - }, - "transforms": [ - { - "code": "\treturn len(value) \u003e 0", - "type": "script" - } - ], - "type": "property" - }, - "persistent": true - }, - "params.DoubleClick": { - "paramDirection": "input", - "persistent": true - }, - "params.NavigationSettings": { - "paramDirection": "input", - "persistent": true - }, - "params.SelectedRow": { - "binding": { - "config": { - "path": "/root/Table.props.selection.data" - }, - "type": "property" - }, - "paramDirection": "output", - "persistent": true - }, - "params.VisibleColCount": { - "paramDirection": "input", - "persistent": true - }, - "params.filters": { - "paramDirection": "input", - "persistent": true - }, - "params.header_order": { - "paramDirection": "input", - "persistent": true - }, - "params.key_to_read_from": { - "paramDirection": "input", - "persistent": true - }, - "params.puToDismiss": { - "paramDirection": "input", - "persistent": true - }, - "params.table_data": { - "paramDirection": "input", - "persistent": true - }, - "params.title": { - "paramDirection": "input", - "persistent": true - } - }, - "props": { - "defaultSize": { - "height": 844 - } - }, - "root": { - "children": [ - { - "children": [ - { - "children": [ - { - "meta": { - "name": "Title" - }, - "position": { - "basis": "100%" - }, - "propConfig": { - "props.text": { - "binding": { - "config": { - "path": "view.params.title" - }, - "type": "property" - } - } - }, - "props": { - "style": { - "classes": "Title/Text", - "fontSize": 14, - "overflow": "visible" - } - }, - "type": "ia.display.label" - } - ], - "meta": { - "name": "Title" - }, - "position": { - "basis": "50%" - }, - "props": { - "style": { - "fontSize": 1, - "marginLeft": 10, - "overflow": "visible" - } - }, - "type": "ia.container.flex" - }, - { - "children": [ - { - "meta": { - "name": "FilterCheck", - "tooltip": { - "enabled": true, - "location": "top-left", - "text": "Enable Table Search" - } - }, - "position": { - "basis": "108px" - }, - "propConfig": { - "position.display": { - "binding": { - "config": { - "expression": "LEN({..../Table.props.data})\u003e0" - }, - "type": "expr" - } - } - }, - "props": { - "checkedIcon": { - "style": { - "fontSize": 16 - } - }, - "indeterminateIcon": { - "style": { - "fontSize": 16 - } - }, - "style": { - "fontSize": 12 - }, - "text": "Search?", - "textPosition": "left", - "uncheckedIcon": { - "style": { - "fontSize": 16 - } - } - }, - "type": "ia.input.checkbox" - }, - { - "meta": { - "name": "Spacer1" - }, - "position": { - "basis": "1px" - }, - "props": { - "style": { - "classes": "General/Divider" - } - }, - "type": "ia.container.flex" - }, - { - "events": { - "dom": { - "onClick": { - "config": { - "script": "\ttable \u003d self.parent.parent.parent.getChild(\"Table\")\n\t# ignition perspective has a bug with table where the only way to \n\t# actually de-select and remove the row highlight is to set the\n\t# row and column to -1 and THEN None\n\t# this will automatically clear the selection.data array\n\ttable.props.selection.selectedRow \u003d -1\n\ttable.props.selection.selectedColumn \u003d -1\n\ttable.props.selection.selectedRow \u003d None\n\ttable.props.selection.selectedColumn \u003d None" - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "ClearSelectionButton", - "tooltip": { - "enabled": true, - "location": "top-left", - "text": "Clear Selection" - } - }, - "position": { - "basis": "31px" - }, - "propConfig": { - "position.display": { - "binding": { - "config": { - "expression": "len({..../Table.props.selection.data})\u003e0" - }, - "type": "expr" - } - } - }, - "props": { - "path": "material/clear", - "style": { - "classes": "General/Button" - } - }, - "type": "ia.display.icon" - }, - { - "meta": { - "name": "Spacer2" - }, - "position": { - "basis": "1px" - }, - "propConfig": { - "position.display": { - "binding": { - "config": { - "path": "../ClearSelectionButton.position.display" - }, - "type": "property" - } - } - }, - "props": { - "style": { - "classes": "General/Divider" - } - }, - "type": "ia.container.flex" - }, - { - "events": { - "dom": { - "onClick": { - "config": { - "draggable": false, - "id": "ColumnSelection", - "modal": true, - "overlayDismiss": true, - "position": { - "relativeLocation": "bottom-left" - }, - "positionType": "relative", - "resizable": true, - "showCloseIcon": true, - "type": "toggle", - "viewParams": { - "Columns": "{/root/TableHeader/TableActions/ColumnSelectionButton.custom.Columns}" - }, - "viewPath": "Objects/PowerTable/ColumnSelection", - "viewportBound": false - }, - "scope": "C", - "type": "popup" - } - } - }, - "meta": { - "name": "ColumnSelectionButton", - "tooltip": { - "enabled": true, - "location": "top-left", - "text": "+/- Columns" - } - }, - "position": { - "basis": "29px" - }, - "propConfig": { - "custom.Columns": { - "binding": { - "config": { - "path": "..../Table.props.columns" - }, - "transforms": [ - { - "code": "\tcolumns \u003d {}\n\tif len(value) \u003e 0:\n\t\tfor column in value:\n\t\t\t#field \u003d column.field\n\t\t\tfield \u003d column.header.title\n\t\t\tif field \u003d\u003d \u0027\u0027:\n\t\t\t\tfield \u003d \u0027None\u0027\n\t\t\tcolumns[field] \u003d column.visible\n\treturn columns", - "type": "script" - } - ], - "type": "property" - } - }, - "position.display": { - "binding": { - "config": { - "expression": "LEN({..../Table.props.data})\u003e0" - }, - "type": "expr" - } - } - }, - "props": { - "path": "material/view_column", - "style": { - "classes": "General/Button", - "fontSize": 12, - "marginBottom": 5, - "marginTop": 5 - } - }, - "type": "ia.display.icon" - }, - { - "meta": { - "name": "Spacer4" - }, - "position": { - "basis": "1px" - }, - "propConfig": { - "position.display": { - "binding": { - "config": { - "expression": "LEN({..../Table.props.data})\u003e0" - }, - "type": "expr" - } - } - }, - "props": { - "style": { - "classes": "General/Divider" - } - }, - "type": "ia.container.flex" - }, - { - "events": { - "dom": { - "onClick": { - "config": { - "script": "\tself.view.custom.filters.selection_active \u003d not self.view.custom.filters.selection_active" - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "FilterButton", - "tooltip": { - "enabled": true, - "location": "top-left", - "text": "Filter Table" - } - }, - "position": { - "basis": "29px", - "display": false - }, - "props": { - "path": "material/filter_list", - "style": { - "classes": "General/Button", - "fontSize": 12, - "marginBottom": 5, - "marginTop": 5 - } - }, - "type": "ia.display.icon" - }, - { - "meta": { - "name": "Spacer3" - }, - "position": { - "basis": "1px" - }, - "props": { - "style": { - "classes": "General/Divider" - } - }, - "type": "ia.container.flex" - }, - { - "events": { - "dom": { - "onClick": { - "config": { - "script": "\n\tcsv_headers \u003d []\n\tcsv_data \u003d []\n\tsystem.perspective.print(\u0027DOWNLOADING TABLE DATA\u0027)\n\tsource_data \u003d self.parent.parent.parent.getChild(\"Table\").props.data\n\theaders \u003d source_data[0].keys()\n\t\n\tif \u0027style\u0027 in headers and \u0027value\u0027 in headers and len(headers) \u003d\u003d 2:\n\t\tdata \u003d [row[\u0027value\u0027] for row in source_data]\n\telse:\n\t\tdata \u003d source_data\n\t\t\n\tfor record in data:\n\t\tif len(csv_headers) \u003d\u003d 0:\n\t\t\tcsv_headers \u003d record.keys()\n\t\t\tcsv_headers.sort()\n\t\t\tcsv_headers \u003d [str(i) for i in csv_headers]\n\t\tcsv_row \u003d []\n\t\tfor index in range(len(record)):\n\t\t\tcsv_row.append(str(record[csv_headers[index]]))\n\t\tcsv_data.append(csv_row)\n\t\n\ttry:\n\t\tcsv_dataset \u003d system.dataset.toDataSet(csv_headers, csv_data)\n\texcept Exception, e:\n\t\tsystem.perspective.print(str(e))\n\tcsv_export \u003d system.dataset.toCSV(csv_dataset)\n\tfilename \u003d \u0027{0}.csv\u0027.format(str(system.date.now()).replace(\u0027 \u0027, \u0027_\u0027))\n\tsystem.perspective.download(filename, csv_export)\n\t\n\tsystem.perspective.print(\u0027DONE DOWNLOADING TABLE DATA\u0027)" - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "SettingsButton", - "tooltip": { - "enabled": true, - "location": "top-left", - "text": "Download Table Contents" - } - }, - "position": { - "basis": "30px" - }, - "propConfig": { - "position.display": { - "binding": { - "config": { - "expression": "LEN({..../Table.props.data})\u003e0" - }, - "type": "expr" - } - } - }, - "props": { - "path": "material/cloud_download", - "style": { - "classes": "General/Button", - "marginRight": 10 - } - }, - "type": "ia.display.icon" - } - ], - "meta": { - "name": "TableActions", - "tooltip": { - "location": "top-right" - } - }, - "position": { - "grow": 1 - }, - "props": { - "justify": "flex-end" - }, - "type": "ia.container.flex" - } - ], - "meta": { - "name": "TableHeader" - }, - "position": { - "shrink": 0 - }, - "props": { - "justify": "space-between", - "style": { - "borderBottomStyle": "solid", - "borderBottomWidth": 1, - "cursor": "pointer" - } - }, - "type": "ia.container.flex" - }, - { - "children": [ - { - "meta": { - "name": "FilterMenu" - }, - "position": { - "grow": 1 - }, - "propConfig": { - "props.instances": { - "binding": { - "config": { - "path": "view.custom.filter_menu_data" - }, - "type": "property" - } - } - }, - "props": { - "alignContent": "flex-start", - "alignItems": "flex-start", - "path": "Objects/PowerTable/FilterMenuGroup", - "style": { - "overflow": "visible" - }, - "useDefaultViewHeight": false, - "useDefaultViewWidth": false, - "wrap": "wrap" - }, - "type": "ia.display.flex-repeater" - } - ], - "meta": { - "name": "FilterSelection" - }, - "position": { - "grow": 1 - }, - "propConfig": { - "position.display": { - "binding": { - "config": { - "path": "view.custom.filters.selection_active" - }, - "type": "property" - } - } - }, - "props": { - "style": { - "borderBottomStyle": "solid", - "borderBottomWidth": 1, - "classes": "Menu/Menu", - "overflow": "visible", - "paddingLeft": 10, - "paddingRight": 10 - } - }, - "type": "ia.container.flex" - }, - { - "children": [ - { - "children": [ - { - "meta": { - "name": "FiltersLabel" - }, - "position": { - "basis": "80px" - }, - "propConfig": { - "props.text": { - "binding": { - "config": { - "path": "view.custom.filters.active" - }, - "transforms": [ - { - "code": "\t\n\treturn \u0027\u0027.join([\u0027FILTERS (\u0027, str(len(value)), \u0027):\u0027])", - "type": "script" - } - ], - "type": "property" - } - } - }, - "props": { - "style": { - "classes": "Menu/Menu Page/Text", - "fontSize": 10, - "textAlign": "center" - } - }, - "type": "ia.display.label" - }, - { - "meta": { - "name": "FiltersCarousel" - }, - "propConfig": { - "props.views": { - "binding": { - "config": { - "path": "view.custom.filters.active" - }, - "transforms": [ - { - "code": "\n\tviews \u003d []\n\tfor filter in value:\n\t\tcarousel_view \u003d {\n\t\t\t\u0027viewPath\u0027:\u0027Components/PowerTable/FilterTile\u0027,\n\t\t\t\u0027direction\u0027 : \u0027row\u0027,\n\t\t\t\u0027viewParams\u0027: {},\n\t\t\t\u0027justify\u0027:\u0027flex-start\u0027,\n\t\t\t\u0027alignItems\u0027: \u0027center\u0027}\n\t\tcarousel_view[\u0027viewParams\u0027][\u0027color\u0027] \u003d filter[\u0027color\u0027]\n\t\tcarousel_view[\u0027viewParams\u0027][\u0027text\u0027] \u003d filter[\u0027text\u0027]\t\n\t\tcarousel_view[\u0027viewParams\u0027][\u0027id\u0027] \u003d filter[\u0027id\u0027]\t\n\t\t\n\t\tviews.append(carousel_view)\n\treturn views", - "type": "script" - } - ], - "type": "property" - } - } - }, - "props": { - "appearance": { - "arrows": { - "next": { - "style": { - "marginRight": 5 - } - }, - "previous": { - "style": { - "marginLeft": 5 - } - } - }, - "dots": { - "enabled": false - }, - "slidePadding": 3, - "slidesToShow": 5, - "useDefaultViewHeight": true, - "useDefaultViewWidth": true - }, - "style": { - "overflow": "visible", - "textAlign": "left" - } - }, - "type": "ia.display.carousel" - } - ], - "meta": { - "name": "Left" - }, - "position": { - "basis": "90%" - }, - "props": { - "style": { - "overflow": "visible" - } - }, - "type": "ia.container.flex" - }, - { - "children": [ - { - "events": { - "component": { - "onActionPerformed": { - "config": { - "script": "\tself.view.custom.filters.active \u003d []\n\tsystem.perspective.sendMessage(\u0027deactivate-filter\u0027, payload \u003d {\u0027id\u0027:-1}, scope \u003d \u0027page\u0027)" - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "ClearButton" - }, - "position": { - "basis": "51px" - }, - "props": { - "primary": false, - "style": { - "classes": "Menu/Item", - "fontSize": 12, - "marginBottom": 5, - "marginLeft": 5, - "marginRight": 5, - "marginTop": 5 - }, - "text": "Clear", - "textStyle": { - "classes": "Page/Text" - } - }, - "type": "ia.input.button" - } - ], - "meta": { - "name": "Right" - }, - "position": { - "basis": "10%" - }, - "props": { - "justify": "flex-end", - "style": { - "overflow": "visible" - } - }, - "type": "ia.container.flex" - } - ], - "meta": { - "name": "Filters" - }, - "position": { - "shrink": 0 - }, - "propConfig": { - "position.display": { - "binding": { - "config": { - "path": "view.custom.filters.active" - }, - "transforms": [ - { - "code": "\treturn len(value) \u003e 0", - "type": "script" - } - ], - "type": "property" - } - } - }, - "props": { - "style": { - "overflow": "visible" - } - }, - "type": "ia.container.flex" - }, - { - "meta": { - "name": "ReulstLengthLabel" - }, - "position": { - "grow": 1 - }, - "propConfig": { - "position.display": { - "binding": { - "config": { - "path": "view.custom.filters.active" - }, - "transforms": [ - { - "code": "\treturn len(value) \u003e 0", - "type": "script" - } - ], - "type": "property" - } - }, - "props.text": { - "binding": { - "config": { - "path": "../Table.props.data" - }, - "transforms": [ - { - "code": "\treturn \u0027\u0027.join([str(len(value)), \u0027 results within filters\u0027])", - "type": "script" - } - ], - "type": "property" - } - } - }, - "props": { - "style": { - "classes": "Menu/Item Page/Text", - "fontSize": 12, - "paddingLeft": 5, - "textTransform": "lowercase" - } - }, - "type": "ia.display.label" - }, - { - "meta": { - "name": "pager" - }, - "position": { - "basis": "35px", - "display": false, - "shrink": 0 - }, - "propConfig": { - "props.params.number_of_pages": { - "binding": { - "config": { - "expression": "len({../Table.custom.raw_data})" - }, - "type": "expr" - } - }, - "props.params.options_for_pagers": { - "binding": { - "config": { - "path": "../Table.props.pager.options" - }, - "type": "property" - } - } - }, - "props": { - "params": { - "number_of_items_per_page": 100, - "page_selected": 0 - }, - "path": "Components/PowerTable/pager" - }, - "type": "ia.display.view" - }, - { - "events": { - "component": { - "onRowDoubleClick": { - "config": { - "script": "\t# grab row JSON from double-click\n\td \u003d event.value\n\t# build out query_params from row values\n\tquery_params \u003d {\n\t\t\"view\": d.destination_view,\n\t\t\"object_key\": d.destination_object_key,\n\t\t\"site\": d.destination_site,\n\t\t\"bucket\": d.destination_bucket\n\t}\n\t# Open version history log viewer\n\tview_path \u003d \u0027PopUp-Views/S3/Versions/Log_Viewer\u0027\n\tparams \u003d {\u0027query_params\u0027: query_params}\n\tsystem.perspective.openPopup(\u0027Version Log Viewer\u0027, view_path, \n\t\t\t\t\t\t\t\tparams, \u0027SCADA S3 Version History Log Viewer\u0027)\n\t" - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "Table" - }, - "position": { - "grow": 1 - }, - "propConfig": { - "custom.raw_data": { - "binding": { - "config": { - "expression": "IF({../pager.props.params.number_of_items_per_page} \u003e 0,\r\nIF(LEN({view.custom.filters.active})\u003d0, {view.custom.table_data}, {view.custom.filtered_table_data}),\u0027\u0027)" - }, - "transforms": [ - { - "code": "\tlist_of_data \u003d []\n\tsingle_list \u003d []\n\tfor item in value:\n\t\tif len(single_list) \u003c self.getSibling(\"pager\").props.params.number_of_items_per_page:\n\t\t\tsingle_list.append(item)\n\t\telse:\n\t\t\tlist_of_data.append(single_list)\n\t\t\tsingle_list \u003d []\n\t\t\tsingle_list.append(item)\n\tif len(single_list) \u003e 0:\n\t\tlist_of_data.append(single_list)\n\treturn list_of_data", - "type": "script" - } - ], - "type": "expr" - } - }, - "props.columns": { - "binding": { - "config": { - "path": "view.custom.table_data" - }, - "transforms": [ - { - "code": "\tfrom helper.helper import sanitize_tree\n\tcolumns \u003d []\n\tif len(value) \u003e 0:\n\t\trequestedHeaders \u003d sanitize_tree(self.view.params.header_order)\n\t\tfrom pprint import pformat\n#\t\tsystem.perspective.print(pformat(requestedHeaders))\n\t\theaders \u003d []\n\t\tif len(requestedHeaders) \u003e 0:\n\t\t\tfor item in requestedHeaders:\n\t\t\t\tif \u0027style\u0027 in value[0].keys() and \u0027value\u0027 in value[0].keys() and len(value[0].keys()) \u003d\u003d2:\n\t\t\t\t\tif item in value[0][\u0027value\u0027].keys():\n\t\t\t\t\t\theaders.append(item)\n\t\t\t\telse:\n\t\t\t\t\tif item in value[0].keys():\n\t\t\t\t\t\theaders.append(item)\n\t\t\t\t\tif isinstance(item, dict) and \u0027field\u0027 in item and item[\u0027field\u0027] in value[0].keys():\n\t\t\t\t\t\theaders.append(item)\n\t\tif len(headers) \u003d\u003d 0:\n\t\t\theaders \u003d value[0].keys()\n\t\tfor header in headers:\t\n\t\t\tfield \u003d header\n\t\t\tvisible \u003d True\n\t\t\ttry:\n\t\t\t\ttitle \u003d str(header).replace(\u0027_\u0027, \u0027 \u0027).upper()\n\t\t\texcept:\n\t\t\t\ttitle \u003d \u0027\u0027\n\t\t\tif isinstance(header, dict):\n\t\t\t\tfield \u003d header.get(\u0027field\u0027, \u0027\u0027)\n\t\t\t\tvisible \u003d header.get(\u0027visible\u0027, True)\n\t\t\t\ttitle \u003d header.get(\u0027title\u0027, field.replace(\u0027_\u0027, \u0027 \u0027).upper())\n\t\t\tcolumn \u003d {\n\t\t\t \"field\": field,\n\t\t\t \"visible\": visible,\n\t\t\t \"editable\": True,\n\t\t\t \"render\": \"auto\",\n\t\t\t \"justify\": \"center\",\n\t\t\t \"align\": \"center\",\n\t\t\t \"resizable\": True,\n\t\t\t \"sortable\": True,\n\t\t\t \"sort\": \"none\",\n\t\t\t \"viewPath\": \"\",\n\t\t\t \"viewParams\": {},\n\t\t\t \"boolean\": \"checkbox\",\n\t\t\t \"number\": \"value\",\n\t\t\t \"progressBar\": {\n\t\t\t\t\"max\": 100,\n\t\t\t\t\"min\": 0,\n\t\t\t\t\"bar\": {\n\t\t\t\t \"color\": \"\",\n\t\t\t\t \"style\": {\n\t\t\t\t\t\"classes\": \"\"\n\t\t\t\t }\n\t\t\t\t},\n\t\t\t\t\"track\": {\n\t\t\t\t \"color\": \"\",\n\t\t\t\t \"style\": {\n\t\t\t\t\t\"classes\": \"\"\n\t\t\t\t }\n\t\t\t\t},\n\t\t\t\t\"value\": {\n\t\t\t\t \"enabled\": True,\n\t\t\t\t \"format\": \"0,0.##\",\n\t\t\t\t \"justify\": \"center\",\n\t\t\t\t \"style\": {\n\t\t\t\t\t\"classes\": \"\"\n\t\t\t\t }\n\t\t\t\t}\n\t\t\t },\n\t\t\t \"toggleSwitch\": {\n\t\t\t\t\"color\": {\n\t\t\t\t \"selected\": \"\",\n\t\t\t\t \"unselected\": \"\"\n\t\t\t\t}\n\t\t\t },\n\t\t\t \"numberFormat\": \"0,0.##\",\n\t\t\t \"dateFormat\": \"MM/DD/YYYY\",\n\t\t\t \"width\": \"\",\n\t\t\t \"strictWidth\": False,\n\t\t\t \"style\": {\n\t\t\t\t\"classes\": \"\"\n\t\t\t },\n\t\t\t \"header\": {\n\t\t\t\t\"title\": title,\n\t\t\t\t\"justify\": \"center\",\n\t\t\t\t\"align\": \"center\",\n\t\t\t\t\"style\": {\n\t\t\t\t \"classes\": \"\",\n\t\t\t\t \u0027fontSize\u0027:\u002712px\u0027\n\t\t\t\t}\n\t\t\t },\n\t\t\t \"footer\": {\n\t\t\t\t\"title\": \"\",\n\t\t\t\t\"justify\": \"left\",\n\t\t\t\t\"align\": \"center\",\n\t\t\t\t\"style\": {\n\t\t\t\t \"classes\": \"\"\n\t\t\t\t}\n\t\t\t }\n\t\t\t}\t\t\t\n\t\t\tcolumns.append(column)\n#\t\tif self.view.params.header_order !\u003d [] and len(headers) \u003d\u003d len(self.view.params.header_order):\n#\t\t\tnew_columns \u003d [None] * len(columns)\n#\t\t\tfor column in columns:\n#\t\t\t\tindex \u003d self.view.params.header_order.index(column[\u0027field\u0027])\n#\t\t\t\tnew_columns[index] \u003d column\n#\t\t\tcolumns \u003d new_columns\n\treturn columns", - "type": "script" - } - ], - "type": "property" - } - }, - "props.data": { - "binding": { - "config": { - "expression": "IF({../pager.props.params.number_of_items_per_page} \u003e 0,\r\nIF(LEN({view.custom.filters.active})\u003d0, {view.custom.table_data}, {view.custom.filtered_table_data}),\u0027\u0027)" - }, - "type": "expr" - } - }, - "props.filter.enabled": { - "binding": { - "config": { - "path": "../TableHeader/TableActions/FilterCheck.props.selected" - }, - "type": "property" - }, - "onChange": { - "enabled": null, - "script": "\tif not getattr(currentValue, \u0027value\u0027, None):\n\t\t# clear filter text when filter is disabled\n\t\tself.props.filter.text \u003d \u0027\u0027\n\t\t" - } - } - }, - "props": { - "cells": { - "allowEditOn": "long-press", - "style": { - "fontSize": 12 - } - }, - "filter": {}, - "pager": { - "initialOption": 100, - "options": [ - 25, - 50, - 100, - 500, - 1000 - ] - }, - "style": { - "overflow": "visible" - } - }, - "type": "ia.display.table" - } - ], - "meta": { - "name": "root" - }, - "props": { - "direction": "column", - "style": { - "overflow": "visible" - } - }, - "scripts": { - "customMethods": [], - "extensionFunctions": null, - "messageHandlers": [ - { - "messageType": "activate-filter", - "pageScope": true, - "script": "\t# implement your handler here\n\tfilter_position \u003d payload[\u0027id\u0027]\n\tsystem.perspective.print(filter_position)\n\tadd \u003d True\n\tfor filter in self.view.custom.filters.active:\n\t\tif filter.id \u003d\u003d filter_position:\n\t\t\tadd \u003d False\n\tif add:\n\t\tfor filter in self.view.custom.filters.deactive:\n\t\t\tif filter.id \u003d\u003d filter_position:\t\t\t\t\n\t\t\t\tself.view.custom.filters.active.append(filter)", - "sessionScope": true, - "viewScope": false - }, - { - "messageType": "deactivate-filter", - "pageScope": true, - "script": "\tfilter_position \u003d payload[\u0027id\u0027]\n\tsystem.perspective.print(filter_position)\n\t\n\tif filter_position \u003d\u003d -1 :\n\t\tself.view.custom.filters.active \u003d []\n\telse:\n\t\tfor index, filter in enumerate(self.view.custom.filters.active):\n\t\t\tif filter.id \u003d\u003d filter_position:\n\t\t\t\tsystem.perspective.print(filter.id)\n\t\t\t\tself.view.custom.filters.active.pop(index)\n\n#\tfor filter in self.view.custom.filter_menu_data:\n#\t\tif filter.filter_id \u003d\u003d filter_position:\n#\t\t\tsystem.perspective.print(filter.filter_id)\n#\t\t\tfilter.active \u003d False\n#\t\t\tbreak", - "sessionScope": false, - "viewScope": false - }, - { - "messageType": "column-visibility", - "pageScope": true, - "script": "\t# implement your handler here\n\ttable_columns \u003d self.getChild(\"Table\").props.columns\n\tfor table_column in table_columns:\n\t\t#if payload.keys()[0] \u003d\u003d table_column[\u0027field\u0027]:\n\t\tif payload.keys()[0] \u003d\u003d table_column[\u0027header\u0027][\u0027title\u0027]:\n\t\t\ttable_column.visible \u003d payload.values()[0]\n", - "sessionScope": false, - "viewScope": false - } - ] - }, - "type": "ia.container.flex" - } -} \ No newline at end of file diff --git a/.resources/02cb668aaedf8c82084c2c51b4a4da3d8099ec4a38276319db7bfce4d1207e51 b/.resources/02cb668aaedf8c82084c2c51b4a4da3d8099ec4a38276319db7bfce4d1207e51 deleted file mode 100644 index 016aab86..00000000 --- a/.resources/02cb668aaedf8c82084c2c51b4a4da3d8099ec4a38276319db7bfce4d1207e51 +++ /dev/null @@ -1,58 +0,0 @@ -{ - "custom": {}, - "params": { - "text": "value" - }, - "propConfig": { - "params.text": { - "paramDirection": "input", - "persistent": true - } - }, - "props": { - "defaultSize": { - "height": 30, - "width": 210 - } - }, - "root": { - "children": [ - { - "meta": { - "name": "Label" - }, - "position": { - "basis": "209px", - "grow": 1 - }, - "propConfig": { - "props.text": { - "binding": { - "config": { - "expression": "{view.params.text}" - }, - "type": "expr" - } - } - }, - "props": { - "style": { - "classes": "Text/CenterAlign_with_Padding" - } - }, - "type": "ia.display.label" - } - ], - "meta": { - "name": "root" - }, - "props": { - "alignItems": "center", - "justify": "center", - "style": { - "overflow": "hidden" - } - }, - "type": "ia.container.flex" - } -} \ No newline at end of file diff --git a/.resources/04b4af8dd0a80483b29107c32a344e85246076b5f9a556fc3d8a4ad8185d795a b/.resources/04b4af8dd0a80483b29107c32a344e85246076b5f9a556fc3d8a4ad8185d795a deleted file mode 100644 index 68a92d63..00000000 --- a/.resources/04b4af8dd0a80483b29107c32a344e85246076b5f9a556fc3d8a4ad8185d795a +++ /dev/null @@ -1,442 +0,0 @@ -{ - "custom": { - "alarm_message": null, - "disconnected": false, - "plc": "value", - "priority": 0, - "priority_string": "No active alarms", - "searchId": "PLC01", - "state": 0 - }, - "params": { - "forceFaultStatus": null, - "tagProps": [ - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value" - ] - }, - "propConfig": { - "custom.disconnected": { - "binding": { - "config": { - "fallbackDelay": 2.5, - "mode": "indirect", - "references": { - "0": "{view.params.tagProps[0]}", - "fc": "{session.custom.fc}" - }, - "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/STATE" - }, - "transforms": [ - { - "expression": "!isGood({value})", - "type": "expression" - } - ], - "type": "tag" - }, - "persistent": true - }, - "custom.plc": { - "binding": { - "config": { - "path": "view.params.tagProps[0]" - }, - "transforms": [ - { - "expression": "split({value}, \"/\")[0]", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.priority": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "fallback": 0, - "inputType": "scalar", - "mappings": [ - { - "input": 3, - "output": 1 - }, - { - "input": 2, - "output": 1 - }, - { - "input": 1, - "output": 1 - } - ], - "outputType": "scalar", - "type": "map" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.priority_string": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "fallback": "Unknown", - "inputType": "scalar", - "mappings": [ - { - "input": 0, - "output": "No active alarms" - }, - { - "input": 1, - "output": "High" - }, - { - "input": 2, - "output": "High" - }, - { - "input": 3, - "output": "High" - } - ], - "outputType": "scalar", - "type": "map" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.searchId": { - "binding": { - "config": { - "path": "session.custom.searchId" - }, - "type": "property" - }, - "persistent": true - }, - "custom.state": { - "binding": { - "config": { - "fallbackDelay": 2.5, - "mode": "indirect", - "references": { - "0": "{view.params.tagProps[0]}", - "fc": "{session.custom.fc}" - }, - "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/STATE" - }, - "transforms": [ - { - "expression": "coalesce({value},{view.params.forceFaultStatus},0)", - "type": "expression" - }, - { - "fallback": null, - "inputType": "scalar", - "mappings": [ - { - "input": 1, - "output": 1 - }, - { - "input": 0, - "output": 0 - }, - { - "input": 2, - "output": 2 - }, - { - "input": 3, - "output": 3 - } - ], - "outputType": "scalar", - "type": "map" - } - ], - "type": "tag" - }, - "persistent": true - }, - "params.forceFaultStatus": { - "paramDirection": "input", - "persistent": true - }, - "params.tagProps": { - "paramDirection": "input", - "persistent": true - } - }, - "props": { - "defaultSize": { - "height": 25, - "width": 25 - } - }, - "root": { - "children": [ - { - "meta": { - "name": "JR_Button" - }, - "position": { - "height": 1, - "width": 1 - }, - "propConfig": { - "props.elements[0].fill.paint": { - "binding": { - "config": { - "path": "view.custom.disconnected" - }, - "transforms": [ - { - "fallback": "#585858", - "inputType": "scalar", - "mappings": [ - { - "input": true, - "output": "#000000" - } - ], - "outputType": "color", - "type": "map" - } - ], - "type": "property" - } - }, - "props.elements[1].fill.paint": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "fallback": "#000000", - "inputType": "scalar", - "mappings": [ - { - "input": 0, - "output": "#D5D5D5" - }, - { - "input": 1, - "output": "#FFFFFF" - }, - { - "input": 2, - "output": "#47FF47" - }, - { - "input": 3, - "output": "#FFFF47" - } - ], - "outputType": "color", - "type": "map" - } - ], - "type": "property" - } - }, - "props.style.classes": { - "binding": { - "config": { - "expression": "if({session.custom.colours.colour_impaired} \u003d True,\r\n{view.custom.state} + 100,\r\n{view.custom.state})" - }, - "transforms": [ - { - "fallback": "", - "inputType": "scalar", - "mappings": [ - { - "input": 101, - "output": "State-Styles/State101" - }, - { - "input": 102, - "output": "State-Styles/State102" - }, - { - "input": 103, - "output": "State-Styles/State103" - }, - { - "input": 104, - "output": "State-Styles/State104" - }, - { - "input": 105, - "output": "State-Styles/State105" - }, - { - "input": 106, - "output": "State-Styles/State106" - }, - { - "input": 201, - "output": "State-Styles/State201" - }, - { - "input": 202, - "output": "State-Styles/State202" - }, - { - "input": 203, - "output": "State-Styles/State203" - }, - { - "input": 204, - "output": "State-Styles/State204" - }, - { - "input": 205, - "output": "State-Styles/State205" - } - ], - "outputType": "style-list", - "type": "map" - } - ], - "type": "expr" - } - } - }, - "props": { - "elements": [ - { - "d": "M 0,0 H 20 V 20 H 0 Z", - "fill": {}, - "name": "path", - "stroke": { - "paint": "#000000", - "width": "1.5" - }, - "type": "path" - }, - { - "d": "m 17,10.5 a 7,7 0 0 1 -7,7 7,7 0 0 1 -7,-7 7,7 0 0 1 7,-7 7,7 0 0 1 7,7 z", - "fill": {}, - "name": "path", - "stroke": { - "paint": "#000000", - "width": "1" - }, - "type": "path" - } - ], - "style": {}, - "viewBox": "0 0 20 20" - }, - "type": "ia.shapes.svg" - } - ], - "events": { - "dom": { - "onClick": { - "config": { - "script": "\tsystem.perspective.openDock(\u0027Docked-East-JR\u0027,params\u003d{\u0027tagProps\u0027:self.view.params.tagProps})" - }, - "scope": "G", - "type": "script" - }, - "onMouseEnter": { - "config": { - "script": "\tfrom time import sleep\n\t\n\talarm \u003d []\n\tmessage \u003d None\n\t\n\tsleep(0.5)\n\t\n\tif system.tag.exists(\"System/aws_data\"):\n\t\tif self.view.params.tagProps[0] !\u003d \"\":\n\t\t\ttags_to_read \u003d system.tag.readBlocking(\"System/aws_data\")\n\t\t\tdecode_alarm_data \u003d system.util.jsonDecode(tags_to_read[0].value)\n\t\t\talarm \u003d [decode_alarm_data[i] for i in decode_alarm_data\n\t\t\t\t\tif decode_alarm_data[i][\u0027sourceId\u0027].startswith(self.view.params.tagProps[0])]\n\t\tif alarm:\n\t\t\talarm \u003d sorted(alarm, key \u003d lambda t:t[\u0027timestamp\u0027], reverse\u003dTrue)\n\t\t\tmessage \u003d max(alarm, key \u003d lambda p:p[\u0027priority\u0027]).get(\u0027message\u0027)\n\t\t\tif len(alarm) \u003e 1:\n\t\t\t\tmessage +\u003d \" (+\" + str(len(alarm)-1) + \")\"\n\tself.view.custom.alarm_message \u003d message" - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "root", - "tooltip": { - "enabled": true, - "style": {} - } - }, - "propConfig": { - "meta.tooltip.style.classes": { - "binding": { - "config": { - "expression": "{view.custom.priority}" - }, - "transforms": [ - { - "fallback": "Alarms-Styles/NoAlarm", - "inputType": "scalar", - "mappings": [ - { - "input": 1, - "output": "Alarms-Styles/High" - }, - { - "input": 2, - "output": "Alarms-Styles/Low" - }, - { - "input": 3, - "output": "Alarms-Styles/Medium" - }, - { - "input": 4, - "output": "Alarms-Styles/High" - } - ], - "outputType": "style-list", - "type": "map" - } - ], - "type": "expr" - } - }, - "meta.tooltip.text": { - "binding": { - "config": { - "expression": "if(\n {view.custom.disconnected} \u003d false,\n \"Source Id: \" + {view.params.tagProps[0]} + \", Priority: \" + {view.custom.priority_string},\n \"Device Disconnected\"\n)\n" - }, - "type": "expr" - } - }, - "meta.visible": { - "binding": { - "config": { - "path": "session.custom.alarm_filter.show_buttons" - }, - "type": "property" - } - } - }, - "props": { - "mode": "percent", - "style": { - "cursor": "pointer" - } - }, - "type": "ia.container.coord" - } -} \ No newline at end of file diff --git a/.resources/065df4ea5a10dc1ce8bce19d0ab88de03144854c6774811d6b3f8b3bb80b0aa0 b/.resources/065df4ea5a10dc1ce8bce19d0ab88de03144854c6774811d6b3f8b3bb80b0aa0 new file mode 100644 index 00000000..dc1443d4 Binary files /dev/null and b/.resources/065df4ea5a10dc1ce8bce19d0ab88de03144854c6774811d6b3f8b3bb80b0aa0 differ diff --git a/.resources/0704c295e548eaa98a0dd3b5d69b5061446be4379f54837cd0546a1bde2ba3a9 b/.resources/0704c295e548eaa98a0dd3b5d69b5061446be4379f54837cd0546a1bde2ba3a9 new file mode 100644 index 00000000..8fa87ff0 --- /dev/null +++ b/.resources/0704c295e548eaa98a0dd3b5d69b5061446be4379f54837cd0546a1bde2ba3a9 @@ -0,0 +1,6010 @@ +{ + "custom": {}, + "params": { + "Tab_ID": 0, + "Table": "Statistics" + }, + "propConfig": { + "params.Tab_ID": { + "binding": { + "config": { + "path": "/root/Statistics.props.currentTabIndex" + }, + "type": "property" + }, + "paramDirection": "output", + "persistent": true + }, + "params.Table": { + "binding": { + "config": { + "path": "/root/Statistics.meta.name" + }, + "type": "property" + }, + "paramDirection": "output", + "persistent": true + } + }, + "props": { + "defaultSize": { + "height": 930, + "width": 1920 + } + }, + "root": { + "children": [ + { + "children": [ + { + "children": [ + { + "events": { + "component": { + "onRowDoubleClick": { + "config": { + "script": "\tself.props.selection.selectedRow \u003d \"null\"" + }, + "scope": "G", + "type": "script" + } + } + }, + "meta": { + "name": "Jam Area" + }, + "position": { + "basis": "50%" + }, + "propConfig": { + "position.basis": { + "binding": { + "config": { + "expression": "if ({../Induct Details_graph.position.display} \u003d true, \"50%\", \"100%\")" + }, + "enabled": false, + "type": "expr" + } + }, + "props.columns[10].visible": { + "binding": { + "config": { + "expression": "{..../Aggregation_Mode/Dropdown_Aggregation_mode.props.value} \u003d \"Percentage\"" + }, + "type": "expr" + } + }, + "props.columns[11].visible": { + "binding": { + "config": { + "expression": "{..../Aggregation_Mode/Dropdown_Aggregation_mode.props.value} \u003d \"Count\"" + }, + "type": "expr" + } + }, + "props.columns[12].visible": { + "binding": { + "config": { + "expression": "{..../Aggregation_Mode/Dropdown_Aggregation_mode.props.value} \u003d \"Percentage\"" + }, + "type": "expr" + } + }, + "props.columns[3].visible": { + "binding": { + "config": { + "expression": "{..../Aggregation_Mode/Dropdown_Aggregation_mode.props.value} \u003d \"Count\"" + }, + "type": "expr" + } + }, + "props.columns[4].visible": { + "binding": { + "config": { + "expression": "{..../Aggregation_Mode/Dropdown_Aggregation_mode.props.value} \u003d \"Count\"" + }, + "type": "expr" + } + }, + "props.columns[5].visible": { + "binding": { + "config": { + "expression": "{..../Aggregation_Mode/Dropdown_Aggregation_mode.props.value} \u003d \"Count\"" + }, + "type": "expr" + } + }, + "props.columns[6].visible": { + "binding": { + "config": { + "expression": "{..../Aggregation_Mode/Dropdown_Aggregation_mode.props.value} \u003d \"Count\"" + }, + "type": "expr" + } + }, + "props.columns[7].visible": { + "binding": { + "config": { + "expression": "{..../Aggregation_Mode/Dropdown_Aggregation_mode.props.value} \u003d \"Percentage\"" + }, + "type": "expr" + } + }, + "props.columns[8].visible": { + "binding": { + "config": { + "expression": "{..../Aggregation_Mode/Dropdown_Aggregation_mode.props.value} \u003d \"Percentage\"" + }, + "type": "expr" + } + }, + "props.columns[9].visible": { + "binding": { + "config": { + "expression": "{..../Aggregation_Mode/Dropdown_Aggregation_mode.props.value} \u003d \"Percentage\"" + }, + "type": "expr" + } + }, + "props.data": { + "binding": { + "config": { + "parameters": { + "endtime": "{..../Period_not_Global_0.custom.EndDate}", + "starttime": "{..../Period_not_Global_0.custom.StartDate}" + }, + "polling": { + "enabled": true, + "rate": "1" + }, + "queryPath": "Jam_Area/Jam" + }, + "type": "query" + } + } + }, + "props": { + "columns": [ + { + "align": "center", + "boolean": "checkbox", + "dateFormat": "MM/DD/YYYY HH:mm:ss", + "editable": false, + "field": "Startstamp", + "footer": { + "align": "center", + "justify": "left", + "style": { + "classes": "" + }, + "title": "" + }, + "header": { + "align": "center", + "justify": "center", + "style": { + "classes": "" + }, + "title": "Start Timestamp" + }, + "justify": "center", + "number": "value", + "numberFormat": "0,0.##", + "progressBar": { + "bar": { + "color": "", + "style": { + "classes": "" + } + }, + "max": 100, + "min": 0, + "track": { + "color": "", + "style": { + "classes": "" + } + }, + "value": { + "enabled": true, + "format": "0,0.##", + "justify": "center", + "style": { + "classes": "" + } + } + }, + "render": "date", + "resizable": true, + "sort": "none", + "sortable": true, + "strictWidth": false, + "style": { + "classes": "" + }, + "toggleSwitch": { + "color": { + "selected": "", + "unselected": "" + } + }, + "viewParams": {}, + "viewPath": "", + "visible": true, + "width": "" + }, + { + "align": "center", + "boolean": "checkbox", + "dateFormat": "MM/DD/YYYY HH:mm:ss", + "editable": false, + "field": "Endtstamp", + "footer": { + "align": "center", + "justify": "left", + "style": { + "classes": "" + }, + "title": "" + }, + "header": { + "align": "center", + "justify": "center", + "style": { + "classes": "" + }, + "title": "End Timestamp" + }, + "justify": "center", + "number": "value", + "numberFormat": "0,0.##", + "progressBar": { + "bar": { + "color": "", + "style": { + "classes": "" + } + }, + "max": 100, + "min": 0, + "track": { + "color": "", + "style": { + "classes": "" + } + }, + "value": { + "enabled": true, + "format": "0,0.##", + "justify": "center", + "style": { + "classes": "" + } + } + }, + "render": "date", + "resizable": true, + "sort": "none", + "sortable": true, + "strictWidth": false, + "style": { + "classes": "" + }, + "toggleSwitch": { + "color": { + "selected": "", + "unselected": "" + } + }, + "viewParams": {}, + "viewPath": "", + "visible": true, + "width": "" + }, + { + "align": "center", + "boolean": "checkbox", + "dateFormat": "MM/DD/YYYY", + "editable": false, + "field": "Total_jam", + "footer": { + "align": "center", + "justify": "left", + "style": { + "classes": "" + }, + "title": "" + }, + "header": { + "align": "center", + "justify": "center", + "style": { + "classes": "" + }, + "title": "Total (#)" + }, + "justify": "center", + "number": "value", + "numberFormat": "0,0.##", + "progressBar": { + "bar": { + "color": "", + "style": { + "classes": "" + } + }, + "max": 100, + "min": 0, + "track": { + "color": "", + "style": { + "classes": "" + } + }, + "value": { + "enabled": true, + "format": "0,0.##", + "justify": "center", + "style": { + "classes": "" + } + } + }, + "render": "auto", + "resizable": true, + "sort": "none", + "sortable": true, + "strictWidth": false, + "style": { + "classes": "" + }, + "toggleSwitch": { + "color": { + "selected": "", + "unselected": "" + } + }, + "viewParams": {}, + "viewPath": "", + "visible": true, + "width": "" + }, + { + "align": "center", + "boolean": "checkbox", + "dateFormat": "MM/DD/YYYY", + "editable": false, + "field": "Dumpers_jam", + "footer": { + "align": "center", + "justify": "left", + "style": { + "classes": "" + }, + "title": "" + }, + "header": { + "align": "center", + "justify": "center", + "style": { + "classes": "" + }, + "title": "Dumpers jam (#)" + }, + "justify": "center", + "number": "value", + "numberFormat": "0,0.##", + "progressBar": { + "bar": { + "color": "", + "style": { + "classes": "" + } + }, + "max": 100, + "min": 0, + "track": { + "color": "", + "style": { + "classes": "" + } + }, + "value": { + "enabled": true, + "format": "0,0.##", + "justify": "center", + "style": { + "classes": "" + } + } + }, + "render": "auto", + "resizable": true, + "sort": "none", + "sortable": true, + "strictWidth": false, + "style": { + "classes": "" + }, + "toggleSwitch": { + "color": { + "selected": "", + "unselected": "" + } + }, + "viewParams": {}, + "viewPath": "", + "width": "" + }, + { + "align": "center", + "boolean": "checkbox", + "dateFormat": "MM/DD/YYYY", + "editable": false, + "field": "Inbound_jam", + "footer": { + "align": "center", + "justify": "left", + "style": { + "classes": "" + }, + "title": "" + }, + "header": { + "align": "center", + "justify": "center", + "style": { + "classes": "" + }, + "title": "Inbound jam (#)" + }, + "justify": "center", + "number": "value", + "numberFormat": "none", + "progressBar": { + "bar": { + "color": "", + "style": { + "classes": "" + } + }, + "max": 100, + "min": 0, + "track": { + "color": "", + "style": { + "classes": "" + } + }, + "value": { + "enabled": true, + "format": "0,0.##", + "justify": "center", + "style": { + "classes": "" + } + } + }, + "render": "auto", + "resizable": true, + "sort": "none", + "sortable": true, + "strictWidth": false, + "style": { + "classes": "" + }, + "toggleSwitch": { + "color": { + "selected": "", + "unselected": "" + } + }, + "viewParams": {}, + "viewPath": "", + "width": "" + }, + { + "align": "center", + "boolean": "checkbox", + "dateFormat": "MM/DD/YYYY", + "editable": false, + "field": "Runout_jam", + "footer": { + "align": "center", + "justify": "left", + "style": { + "classes": "" + }, + "title": "" + }, + "header": { + "align": "center", + "justify": "center", + "style": { + "classes": "" + }, + "title": "Runout jam(#)" + }, + "justify": "center", + "number": "value", + "numberFormat": "0,0.##", + "progressBar": { + "bar": { + "color": "", + "style": { + "classes": "" + } + }, + "max": 100, + "min": 0, + "track": { + "color": "", + "style": { + "classes": "" + } + }, + "value": { + "enabled": true, + "format": "0,0.##", + "justify": "center", + "style": { + "classes": "" + } + } + }, + "render": "auto", + "resizable": true, + "sort": "none", + "sortable": true, + "strictWidth": false, + "style": { + "classes": "" + }, + "toggleSwitch": { + "color": { + "selected": "", + "unselected": "" + } + }, + "viewParams": {}, + "viewPath": "", + "width": "" + }, + { + "align": "center", + "boolean": "checkbox", + "dateFormat": "MM/DD/YYYY", + "editable": false, + "field": "Sorter_Recirc_jam", + "footer": { + "align": "center", + "justify": "left", + "style": { + "classes": "" + }, + "title": "" + }, + "header": { + "align": "center", + "justify": "center", + "style": { + "classes": "" + }, + "title": "Sorter Recirc Jam (#)" + }, + "justify": "center", + "number": "value", + "numberFormat": "0,0.##", + "progressBar": { + "bar": { + "color": "", + "style": { + "classes": "" + } + }, + "max": 100, + "min": 0, + "track": { + "color": "", + "style": { + "classes": "" + } + }, + "value": { + "enabled": true, + "format": "0,0.##", + "justify": "center", + "style": { + "classes": "" + } + } + }, + "render": "auto", + "resizable": true, + "sort": "none", + "sortable": true, + "strictWidth": false, + "style": { + "classes": "" + }, + "toggleSwitch": { + "color": { + "selected": "", + "unselected": "" + } + }, + "viewParams": {}, + "viewPath": "", + "width": "" + }, + { + "align": "center", + "boolean": "checkbox", + "dateFormat": "MM/DD/YYYY", + "editable": false, + "field": "Dumpers_perc", + "footer": { + "align": "center", + "justify": "left", + "style": { + "classes": "" + }, + "title": "" + }, + "header": { + "align": "center", + "justify": "center", + "style": { + "classes": "" + }, + "title": "Dumpers Jam (%)" + }, + "justify": "center", + "number": "value", + "numberFormat": "0.##%", + "progressBar": { + "bar": { + "color": "", + "style": { + "classes": "" + } + }, + "max": 100, + "min": 0, + "track": { + "color": "", + "style": { + "classes": "" + } + }, + "value": { + "enabled": true, + "format": "0,0.##", + "justify": "center", + "style": { + "classes": "" + } + } + }, + "render": "auto", + "resizable": true, + "sort": "none", + "sortable": true, + "strictWidth": false, + "style": { + "classes": "" + }, + "toggleSwitch": { + "color": { + "selected": "", + "unselected": "" + } + }, + "viewParams": {}, + "viewPath": "", + "width": "" + }, + { + "align": "center", + "boolean": "checkbox", + "dateFormat": "MM/DD/YYYY", + "editable": false, + "field": "Inbound_perc", + "footer": { + "align": "center", + "justify": "left", + "style": { + "classes": "" + }, + "title": "" + }, + "header": { + "align": "center", + "justify": "left", + "style": { + "classes": "" + }, + "title": "Inbound Jam (%)" + }, + "justify": "auto", + "number": "value", + "numberFormat": "0.##%", + "progressBar": { + "bar": { + "color": "", + "style": { + "classes": "" + } + }, + "max": 100, + "min": 0, + "track": { + "color": "", + "style": { + "classes": "" + } + }, + "value": { + "enabled": true, + "format": "0,0.##", + "justify": "center", + "style": { + "classes": "" + } + } + }, + "render": "auto", + "resizable": true, + "sort": "none", + "sortable": true, + "strictWidth": false, + "style": { + "classes": "" + }, + "toggleSwitch": { + "color": { + "selected": "", + "unselected": "" + } + }, + "viewParams": {}, + "viewPath": "", + "width": "" + }, + { + "align": "center", + "boolean": "checkbox", + "dateFormat": "MM/DD/YYYY", + "editable": false, + "field": "Runout_perc", + "footer": { + "align": "center", + "justify": "left", + "style": { + "classes": "" + }, + "title": "" + }, + "header": { + "align": "center", + "justify": "left", + "style": { + "classes": "" + }, + "title": "Runout Jam (%)" + }, + "justify": "auto", + "number": "value", + "numberFormat": "0.##%", + "progressBar": { + "bar": { + "color": "", + "style": { + "classes": "" + } + }, + "max": 100, + "min": 0, + "track": { + "color": "", + "style": { + "classes": "" + } + }, + "value": { + "enabled": true, + "format": "0,0.##", + "justify": "center", + "style": { + "classes": "" + } + } + }, + "render": "auto", + "resizable": true, + "sort": "none", + "sortable": true, + "strictWidth": false, + "style": { + "classes": "" + }, + "toggleSwitch": { + "color": { + "selected": "", + "unselected": "" + } + }, + "viewParams": {}, + "viewPath": "", + "width": "" + }, + { + "align": "center", + "boolean": "checkbox", + "dateFormat": "MM/DD/YYYY", + "editable": false, + "field": "Sorter_Recirc_perc", + "footer": { + "align": "center", + "justify": "left", + "style": { + "classes": "" + }, + "title": "" + }, + "header": { + "align": "center", + "justify": "left", + "style": { + "classes": "" + }, + "title": "Sorter Recirc Jam (%)" + }, + "justify": "auto", + "number": "value", + "numberFormat": "0.##%", + "progressBar": { + "bar": { + "color": "", + "style": { + "classes": "" + } + }, + "max": 100, + "min": 0, + "track": { + "color": "", + "style": { + "classes": "" + } + }, + "value": { + "enabled": true, + "format": "0,0.##", + "justify": "center", + "style": { + "classes": "" + } + } + }, + "render": "auto", + "resizable": true, + "sort": "none", + "sortable": true, + "strictWidth": false, + "style": { + "classes": "" + }, + "toggleSwitch": { + "color": { + "selected": "", + "unselected": "" + } + }, + "viewParams": {}, + "viewPath": "", + "width": "" + }, + { + "align": "center", + "boolean": "checkbox", + "dateFormat": "MM/DD/YYYY", + "editable": false, + "field": "Sorter_jam", + "filter": { + "boolean": { + "condition": "" + }, + "date": { + "condition": "", + "value": "" + }, + "enabled": false, + "number": { + "condition": "", + "value": "" + }, + "string": { + "condition": "", + "value": "" + }, + "visible": "on-hover" + }, + "footer": { + "align": "center", + "justify": "left", + "style": { + "classes": "" + }, + "title": "" + }, + "header": { + "align": "center", + "justify": "center", + "style": { + "classes": "" + }, + "title": "Sorter Jam (#)" + }, + "justify": "center", + "nullFormat": { + "includeNullStrings": false, + "nullFormatValue": "", + "strict": false + }, + "number": "value", + "numberFormat": "0,0.##", + "progressBar": { + "bar": { + "color": "", + "style": { + "classes": "" + } + }, + "max": 100, + "min": 0, + "track": { + "color": "", + "style": { + "classes": "" + } + }, + "value": { + "enabled": true, + "format": "0,0.##", + "justify": "center", + "style": { + "classes": "" + } + } + }, + "render": "auto", + "resizable": true, + "sort": "none", + "sortable": true, + "strictWidth": false, + "style": { + "classes": "" + }, + "toggleSwitch": { + "color": { + "selected": "", + "unselected": "" + } + }, + "viewParams": {}, + "viewPath": "", + "width": "" + }, + { + "align": "center", + "boolean": "checkbox", + "dateFormat": "MM/DD/YYYY", + "editable": false, + "field": "Sorter_perc", + "filter": { + "boolean": { + "condition": "" + }, + "date": { + "condition": "", + "value": "" + }, + "enabled": false, + "number": { + "condition": "", + "value": "" + }, + "string": { + "condition": "", + "value": "" + }, + "visible": "on-hover" + }, + "footer": { + "align": "center", + "justify": "left", + "style": { + "classes": "" + }, + "title": "" + }, + "header": { + "align": "center", + "justify": "left", + "style": { + "classes": "" + }, + "title": "Sorter Jam (%)" + }, + "justify": "center", + "nullFormat": { + "includeNullStrings": false, + "nullFormatValue": "", + "strict": false + }, + "number": "value", + "numberFormat": "0,0.##", + "progressBar": { + "bar": { + "color": "", + "style": { + "classes": "" + } + }, + "max": 100, + "min": 0, + "track": { + "color": "", + "style": { + "classes": "" + } + }, + "value": { + "enabled": true, + "format": "0,0.##", + "justify": "center", + "style": { + "classes": "" + } + } + }, + "render": "auto", + "resizable": true, + "sort": "none", + "sortable": true, + "strictWidth": false, + "style": { + "classes": "" + }, + "toggleSwitch": { + "color": { + "selected": "", + "unselected": "" + } + }, + "viewParams": {}, + "viewPath": "", + "width": "" + } + ], + "filter": { + "enabled": true, + "results": { + "enabled": true + } + }, + "pager": { + "bottom": false + }, + "selection": { + "mode": "multiple interval" + }, + "virtualized": false + }, + "type": "ia.display.table" + }, + { + "meta": { + "name": "Jam Area_graph" + }, + "position": { + "basis": "50%" + }, + "propConfig": { + "props.plots[0].axes[0].name": { + "binding": { + "config": { + "expression": "case ({..../Aggregation_Mode/Dropdown_Aggregation_mode.props.value},\r\n\"Count\",\"Inbound_jam\",\r\n\"Percentage\",\"Total_perc\",\r\n\"Rate\",\"Total_rate\",\r\nfalse)" + }, + "enabled": false, + "type": "expr" + } + }, + "props.plots[0].trends[0].axis": { + "binding": { + "config": { + "expression": "case ({..../Aggregation_Mode/Dropdown_Aggregation_mode.props.value},\r\n\"Count\",\"Dumpers_jam\",\r\n\"Percentage\",\"Total_perc\",\r\n\"Rate\",\"Total_rate\",\r\nfalse)" + }, + "enabled": false, + "type": "expr" + } + }, + "props.plots[0].trends[0].columns[0].key": { + "binding": { + "config": { + "expression": "case ({..../Aggregation_Mode/Dropdown_Aggregation_mode.props.value},\r\n\"Count\",\"uljl_jam\",\r\n\"Percentage\",\"Total_perc\",\r\n\"Rate\",\"Total_rate\",\r\nfalse)" + }, + "enabled": false, + "type": "expr" + } + }, + "props.plots[0].trends[0].columns[1].key": { + "binding": { + "config": { + "expression": "case ({..../Aggregation_Mode/Dropdown_Aggregation_mode.props.value},\r\n\"Count\",\"ps1_jam\",\r\n\"Percentage\",\"SingleCarrier_perc\",\r\n\"Rate\",\"SingleCarrier_rate\",\r\nfalse)" + }, + "enabled": false, + "type": "expr" + } + }, + "props.plots[0].trends[0].columns[2].key": { + "binding": { + "config": { + "expression": "case ({..../Aggregation_Mode/Dropdown_Aggregation_mode.props.value},\r\n\"Count\",\"doublecarrier_count\",\r\n\"Percentage\",\"DoubleCarrier_perc\",\r\n\"Rate\",\"DoubleCarrier_rate\",\r\nfalse)" + }, + "enabled": false, + "type": "expr" + } + }, + "props.series[0].data": { + "binding": { + "config": { + "parameters": { + "endtime": "{..../Period_not_Global_0.custom.EndDate}", + "starttime": "{..../Period_not_Global_0.custom.StartDate}" + }, + "polling": { + "enabled": true, + "rate": "1" + }, + "queryPath": "Jam_Area/Jam_graph", + "returnFormat": "dataset" + }, + "type": "query" + } + }, + "props.xTrace.infoBox.dataFormat": { + "binding": { + "config": { + "expression": "case ({..../Aggregation_Mode/Dropdown_Aggregation_mode.props.value},\r\n\"Count\",\"#,###.##\",\r\n\"Percentage\",\"###.##%\",\r\n\"Rate\",\"#,###.##\",\r\nfalse)" + }, + "type": "expr" + } + } + }, + "props": { + "legend": { + "position": "top", + "visible": true + }, + "plots": [ + { + "axes": [ + { + "alignment": "left", + "label": { + "font": { + "color": "", + "size": 10 + }, + "offset": 0, + "style": { + "classes": "" + }, + "text": "", + "visible": true + }, + "max": "", + "min": "", + "name": "qty", + "style": { + "classes": "" + }, + "tick": { + "color": "", + "label": { + "font": { + "color": "", + "size": 10 + }, + "style": { + "classes": "" + } + }, + "style": { + "classes": "" + } + }, + "width": 60 + } + ], + "markers": [], + "relativeWeight": 1, + "trends": [ + { + "axis": "roundtime", + "baselines": [], + "breakLine": true, + "columns": [ + { + "color": "#FF0000", + "key": "roundtime", + "styles": { + "highlighted": { + "fill": { + "color": "", + "opacity": null + }, + "stroke": { + "color": "", + "dashArray": null, + "opacity": null, + "width": null + } + }, + "muted": { + "fill": { + "color": "", + "opacity": null + }, + "stroke": { + "color": "", + "dashArray": null, + "opacity": null, + "width": null + } + }, + "normal": { + "fill": { + "color": "", + "opacity": null + }, + "stroke": { + "color": "", + "dashArray": null, + "opacity": null, + "width": null + } + }, + "selected": { + "fill": { + "color": "", + "opacity": null + }, + "stroke": { + "color": "", + "dashArray": null, + "opacity": null, + "width": null + } + } + } + }, + { + "color": "#808080", + "key": "Dumpers_jam", + "styles": { + "highlighted": { + "fill": { + "color": "", + "opacity": null + }, + "stroke": { + "color": "", + "dashArray": null, + "opacity": null, + "width": null + } + }, + "muted": { + "fill": { + "color": "", + "opacity": null + }, + "stroke": { + "color": "", + "dashArray": null, + "opacity": 0.1, + "width": null + } + }, + "normal": { + "fill": { + "color": "", + "opacity": "nu" + }, + "stroke": { + "color": "", + "dashArray": null, + "opacity": null, + "width": null + } + }, + "selected": { + "fill": { + "color": "", + "opacity": null + }, + "stroke": { + "color": "", + "dashArray": null, + "opacity": null, + "width": null + } + } + } + }, + { + "color": "#002EFF", + "key": "Inbound_jam", + "styles": { + "highlighted": { + "fill": { + "color": "", + "opacity": null + }, + "stroke": { + "color": "", + "dashArray": null, + "opacity": null, + "width": null + } + }, + "muted": { + "fill": { + "color": "", + "opacity": null + }, + "stroke": { + "color": "", + "dashArray": null, + "opacity": null, + "width": null + } + }, + "normal": { + "fill": { + "color": "", + "opacity": null + }, + "stroke": { + "color": "", + "dashArray": null, + "opacity": null, + "width": null + } + }, + "selected": { + "fill": { + "color": "", + "opacity": null + }, + "stroke": { + "color": "", + "dashArray": null, + "opacity": null, + "width": null + } + } + } + }, + { + "color": "", + "key": "Runout_jam", + "styles": { + "highlighted": { + "fill": { + "color": "", + "opacity": null + }, + "stroke": { + "color": "", + "dashArray": null, + "opacity": null, + "width": null + } + }, + "muted": { + "fill": { + "color": "", + "opacity": null + }, + "stroke": { + "color": "", + "dashArray": null, + "opacity": null, + "width": null + } + }, + "normal": { + "fill": { + "color": "", + "opacity": null + }, + "stroke": { + "color": "", + "dashArray": null, + "opacity": null, + "width": null + } + }, + "selected": { + "fill": { + "color": "", + "opacity": null + }, + "stroke": { + "color": "", + "dashArray": null, + "opacity": null, + "width": null + } + } + } + }, + { + "color": "#48FF13", + "key": "Sorter_Recirc_jam", + "styles": { + "highlighted": { + "fill": { + "color": "", + "opacity": null + }, + "stroke": { + "color": "", + "dashArray": null, + "opacity": null, + "width": null + } + }, + "muted": { + "fill": { + "color": "", + "opacity": null + }, + "stroke": { + "color": "", + "dashArray": null, + "opacity": null, + "width": null + } + }, + "normal": { + "fill": { + "color": "", + "opacity": null + }, + "stroke": { + "color": "", + "dashArray": null, + "opacity": null, + "width": null + } + }, + "selected": { + "fill": { + "color": "", + "opacity": null + }, + "stroke": { + "color": "", + "dashArray": null, + "opacity": null, + "width": null + } + } + } + }, + { + "color": "#00640E", + "key": "Sorter_jam", + "styles": { + "highlighted": { + "fill": { + "color": "", + "opacity": null + }, + "stroke": { + "color": "", + "dashArray": null, + "opacity": null, + "width": null + } + }, + "muted": { + "fill": { + "color": "", + "opacity": null + }, + "stroke": { + "color": "", + "dashArray": null, + "opacity": null, + "width": null + } + }, + "normal": { + "fill": { + "color": "", + "opacity": null + }, + "stroke": { + "color": "", + "dashArray": null, + "opacity": null, + "width": null + } + }, + "selected": { + "fill": { + "color": "", + "opacity": null + }, + "stroke": { + "color": "", + "dashArray": null, + "opacity": null, + "width": null + } + } + } + } + ], + "interpolation": "curveLinear", + "radius": 2, + "series": "graph", + "stack": true, + "type": "line", + "visible": true + } + ] + } + ], + "series": [ + { + "name": "graph" + } + ], + "xTrace": { + "infoBox": { + "dateFormat": "YYYY-MM-DD", + "timeFormat": "HH:mm:ss" + } + } + }, + "type": "ia.chart.timeseries" + } + ], + "meta": { + "name": "Jam Area" + }, + "props": { + "direction": "column" + }, + "type": "ia.container.flex" + }, + { + "children": [ + { + "meta": { + "name": "Dumper cycles" + }, + "position": { + "basis": "50%" + }, + "propConfig": { + "custom.mode": { + "binding": { + "config": { + "expression": "{..../Statistics.props.currentTabIndex} + {..../Period_not_Global_0/Period.props.value} + {..../Period_not_Global_0/EndTime.custom.Selected}+{..../Period_not_Global_0/StartTime.custom.Selected} + {this.custom.time} + {..../Lane Drop Down/Lane.props.value} + {..../Aggregation_Mode/Dropdown_Aggregation_mode.props.value}" + }, + "type": "expr" + }, + "onChange": { + "enabled": null, + "script": "\t\n\tpath \u003d \"\"\n\theaders \u003d []\n\tgraph \u003d []\n\t\n\tif self.parent.parent.parent.getChild(\"Aggregation_Mode\").getChild(\"Dropdown_Aggregation_mode\").props.value \u003d\u003d \"Count\":\n\t\tpath \u003d \"Dumper/Dumper Lane Count\"\n\t\theaders \u003d [\"Start Timestamp\",\"Hour\",\"Cycles of ULGL1\",\"Cycles of ULGL2\",\"Cycles of ULGL3\"]\n\t\t\n\t\tself.getSibling(\"Dumper_cycles\").props.yAxes[0].value.range.max \u003d \"\"\n\telif self.parent.parent.parent.getChild(\"Aggregation_Mode\").getChild(\"Dropdown_Aggregation_mode\").props.value \u003d\u003d \"Percentage\":\n\t\tpath \u003d \"Dumper/Dumper Lane Percent\"\n\t\theaders \u003d [\"Start Timestamp\",\"Hour\",\"Cycles of ULGL1 (%)\",\"Cycles of ULGL2 (%)\",\"Cycles of ULGL3 (%)\"]\n\t\t\n\t\tself.getSibling(\"Dumper_cycles\").props.yAxes[0].value.range.max \u003d 100\n\telse:\n\t\tpath \u003d \"Dumper/Dumper Lane Rate\"\n\t\theaders \u003d [\"Start Timestamp\",\"Hour\",\"Cycles of ULGL1 (cph)\",\"Cycles of ULGL2 (cph)\",\"Cycles of ULGL3 (cph)\"]\n\t\t\n\t\tself.getSibling(\"Dumper_cycles\").props.yAxes[0].value.range.max \u003d \"\"\n\t\t\n\tparams \u003d {\"starttime\":self.parent.parent.parent.getChild(\"Period_not_Global_0\").custom.StartDate,\"endtime\":self.parent.parent.parent.getChild(\"Period_not_Global_0\").custom.EndDate,\"dumper\":self.parent.parent.parent.getChild(\"Dumper Drop Down_0\").getChild(\"Dumper\").props.value}\t\n\t\n\tdata \u003d system.dataset.toPyDataSet(system.db.runNamedQuery(path,params))\n\t\n\tfor row in data:\t\n\t\tdict \u003d {}\n\t\tdict[\u0027Hour\u0027] \u003d \trow[\u0027Hour\u0027]\n\t\tdict[\u0027ULGL1\u0027] \u003d row[\u0027ULGL1\u0027]\n\t\tdict[\u0027ULGL2\u0027] \u003d row[\u0027ULGL2\u0027]\n\t\tdict[\u0027ULGL3\u0027] \u003d row[\u0027ULGL3\u0027]\n\t\n\t\tgraph.append(dict)\n\t\n\tself.getSibling(\"Dumper_cycles\").props.dataSources.example \u003d graph\n\tself.props.data \u003d system.dataset.toDataSet(headers,data)" + } + }, + "custom.time": { + "binding": { + "config": { + "expression": "now(10000000)" + }, + "type": "expr" + } + } + }, + "props": { + "columns": [ + { + "align": "center", + "boolean": "checkbox", + "dateFormat": "MM/DD/YYYY HH:mm:ss", + "editable": false, + "field": "ulgl1", + "footer": { + "align": "center", + "justify": "left", + "style": { + "classes": "" + }, + "title": "" + }, + "header": { + "align": "center", + "justify": "left", + "style": { + "classes": "" + }, + "title": "n/a" + }, + "justify": "center", + "number": "value", + "numberFormat": "00:00:00", + "progressBar": { + "bar": { + "color": "", + "style": { + "classes": "" + } + }, + "max": 100, + "min": 0, + "track": { + "color": "", + "style": { + "classes": "" + } + }, + "value": { + "enabled": true, + "format": "0,0.##", + "justify": "center", + "style": { + "classes": "" + } + } + }, + "render": "date", + "resizable": true, + "sort": "none", + "sortable": true, + "strictWidth": false, + "style": { + "classes": "" + }, + "toggleSwitch": { + "color": { + "selected": "", + "unselected": "" + } + }, + "viewParams": {}, + "viewPath": "", + "visible": false, + "width": "" + }, + { + "align": "center", + "boolean": "value", + "dateFormat": "MM/DD/YYYY HH:mm:ss", + "editable": false, + "field": "ulgl1", + "footer": { + "align": "center", + "justify": "left", + "style": { + "classes": "" + }, + "title": "" + }, + "header": { + "align": "center", + "justify": "center", + "style": { + "classes": "" + }, + "title": "Start Timestamp" + }, + "justify": "center", + "number": "value", + "numberFormat": "none", + "progressBar": { + "bar": { + "color": "", + "style": { + "classes": "" + } + }, + "max": 100, + "min": 0, + "track": { + "color": "", + "style": { + "classes": "" + } + }, + "value": { + "enabled": true, + "format": "0,0.##", + "justify": "center", + "style": { + "classes": "" + } + } + }, + "render": "date", + "resizable": true, + "sort": "none", + "sortable": true, + "strictWidth": false, + "style": { + "classes": "" + }, + "toggleSwitch": { + "color": { + "selected": "", + "unselected": "" + } + }, + "viewParams": {}, + "viewPath": "", + "visible": true, + "width": 150 + }, + { + "align": "center", + "boolean": "checkbox", + "dateFormat": "MM/DD/YYYY HH:mm:ss", + "editable": false, + "field": "ulgl2", + "footer": { + "align": "center", + "justify": "left", + "style": { + "classes": "" + }, + "title": "" + }, + "header": { + "align": "center", + "justify": "center", + "style": { + "classes": "" + }, + "title": "Hour" + }, + "justify": "center", + "number": "value", + "numberFormat": "0,0.##", + "progressBar": { + "bar": { + "color": "", + "style": { + "classes": "" + } + }, + "max": 100, + "min": 0, + "track": { + "color": "", + "style": { + "classes": "" + } + }, + "value": { + "enabled": true, + "format": "0,0.##", + "justify": "center", + "style": { + "classes": "" + } + } + }, + "render": "auto", + "resizable": true, + "sort": "none", + "sortable": true, + "strictWidth": false, + "style": { + "classes": "" + }, + "toggleSwitch": { + "color": { + "selected": "", + "unselected": "" + } + }, + "viewParams": {}, + "viewPath": "", + "visible": true, + "width": 150 + }, + { + "align": "center", + "boolean": "checkbox", + "dateFormat": "MM/DD/YYYY", + "editable": false, + "field": "ulgl3", + "footer": { + "align": "center", + "justify": "left", + "style": { + "classes": "" + }, + "title": "" + }, + "header": { + "align": "center", + "justify": "center", + "style": { + "classes": "" + }, + "title": "Total (%)" + }, + "justify": "center", + "number": "value", + "numberFormat": "0.##%", + "progressBar": { + "bar": { + "color": "", + "style": { + "classes": "" + } + }, + "max": 100, + "min": 0, + "track": { + "color": "", + "style": { + "classes": "" + } + }, + "value": { + "enabled": true, + "format": "0,0.##", + "justify": "center", + "style": { + "classes": "" + } + } + }, + "render": "auto", + "resizable": true, + "sort": "none", + "sortable": true, + "strictWidth": false, + "style": { + "classes": "" + }, + "toggleSwitch": { + "color": { + "selected": "", + "unselected": "" + } + }, + "viewParams": {}, + "viewPath": "", + "visible": true, + "width": "" + }, + { + "align": "center", + "boolean": "checkbox", + "dateFormat": "MM/DD/YYYY", + "editable": false, + "field": "", + "footer": { + "align": "center", + "justify": "left", + "style": { + "classes": "" + }, + "title": "" + }, + "header": { + "align": "center", + "justify": "left", + "style": { + "classes": "" + }, + "title": "" + }, + "justify": "auto", + "number": "value", + "numberFormat": "0,0.##", + "progressBar": { + "bar": { + "color": "", + "style": { + "classes": "" + } + }, + "max": 100, + "min": 0, + "track": { + "color": "", + "style": { + "classes": "" + } + }, + "value": { + "enabled": true, + "format": "0,0.##", + "justify": "center", + "style": { + "classes": "" + } + } + }, + "render": "auto", + "resizable": true, + "sort": "none", + "sortable": true, + "strictWidth": false, + "style": { + "classes": "" + }, + "toggleSwitch": { + "color": { + "selected": "", + "unselected": "" + } + }, + "viewParams": {}, + "viewPath": "", + "visible": true, + "width": "" + }, + { + "align": "center", + "boolean": "checkbox", + "dateFormat": "MM/DD/YYYY", + "editable": false, + "field": "", + "footer": { + "align": "center", + "justify": "left", + "style": { + "classes": "" + }, + "title": "" + }, + "header": { + "align": "center", + "justify": "left", + "style": { + "classes": "" + }, + "title": "" + }, + "justify": "auto", + "number": "value", + "numberFormat": "0,0.##", + "progressBar": { + "bar": { + "color": "", + "style": { + "classes": "" + } + }, + "max": 100, + "min": 0, + "track": { + "color": "", + "style": { + "classes": "" + } + }, + "value": { + "enabled": true, + "format": "0,0.##", + "justify": "center", + "style": { + "classes": "" + } + } + }, + "render": "auto", + "resizable": true, + "sort": "none", + "sortable": true, + "strictWidth": false, + "style": { + "classes": "" + }, + "toggleSwitch": { + "color": { + "selected": "", + "unselected": "" + } + }, + "viewParams": {}, + "viewPath": "", + "visible": true, + "width": "" + } + ], + "data": { + "$": [ + "ds", + 192, + 1754319545966 + ], + "$columns": [ + { + "data": [ + "2025-08-04 18:00" + ], + "name": "Start Timestamp", + "type": "String" + }, + { + "data": [ + "H0" + ], + "name": "Hour", + "type": "String" + }, + { + "data": [ + null + ], + "name": "Cycles of ULGL1", + "type": "String" + }, + { + "data": [ + null + ], + "name": "Cycles of ULGL2", + "type": "String" + }, + { + "data": [ + null + ], + "name": "Cycles of ULGL3", + "type": "String" + } + ] + }, + "filter": { + "enabled": true, + "results": { + "enabled": true + } + }, + "pager": { + "bottom": false + }, + "rows": { + "style": { + "textAlign": "center" + } + }, + "selection": { + "enableRowSelection": false + }, + "virtualized": false + }, + "type": "ia.display.table" + }, + { + "meta": { + "name": "Dumper_cycles" + }, + "position": { + "basis": "50%" + }, + "props": { + "dataSources": { + "example": [ + { + "Hour": "H0", + "ULGL1": null, + "ULGL2": null, + "ULGL3": null + } + ] + }, + "legend": { + "enabled": false + }, + "series": [ + { + "candlestick": { + "appearance": { + "deriveFieldsFromData": { + "fill": { + "color": "", + "opacity": "" + }, + "stroke": { + "color": "", + "opacity": "", + "width": "" + } + }, + "fill": { + "color": "", + "opacity": 1 + }, + "heatRules": { + "dataField": "", + "enabled": false, + "max": "", + "min": "" + }, + "stacked": false, + "stroke": { + "color": "", + "opacity": 1, + "width": 1 + } + }, + "high": { + "x": "", + "y": "" + }, + "low": { + "x": "", + "y": "" + }, + "open": { + "x": "", + "y": "" + } + }, + "column": { + "appearance": { + "deriveFieldsFromData": { + "fill": { + "color": "", + "opacity": "" + }, + "stroke": { + "color": "", + "opacity": "", + "width": "" + } + }, + "fill": { + "color": "", + "opacity": 1 + }, + "heatRules": { + "dataField": "", + "enabled": false, + "max": "", + "min": "" + }, + "height": null, + "stacked": true, + "stroke": { + "color": "", + "opacity": 1, + "width": 1 + }, + "width": null + }, + "open": { + "x": "", + "y": "" + } + }, + "data": { + "source": "example", + "x": "Hour", + "y": "ULGL1" + }, + "defaultState": { + "visible": true + }, + "hiddenInLegend": false, + "label": { + "text": "Diverted" + }, + "line": { + "appearance": { + "bullets": [ + { + "deriveFieldsFromData": { + "fill": { + "color": "", + "opacity": "" + }, + "rotation": "", + "stroke": { + "color": "", + "opacity": "", + "width": "" + } + }, + "enabled": false, + "fill": { + "color": "", + "opacity": 1 + }, + "heatRules": { + "dataField": "", + "enabled": false, + "max": 100, + "min": 2 + }, + "height": 10, + "label": { + "position": { + "dx": 0, + "dy": 0 + }, + "text": "{value}" + }, + "render": "circle", + "rotation": 0, + "stroke": { + "color": "", + "opacity": 1, + "width": 1 + }, + "tooltip": { + "background": { + "color": "", + "opacity": 1 + }, + "cornerRadius": 3, + "enabled": true, + "pointerLength": 4, + "text": "{name}: [bold]{valueY}[/]" + }, + "width": 10 + } + ], + "connect": true, + "fill": { + "color": "", + "opacity": 0 + }, + "minDistance": 0.5, + "stroke": { + "color": "", + "dashArray": "", + "opacity": 1, + "width": 3 + }, + "tensionX": 1, + "tensionY": 1 + }, + "open": { + "x": "", + "y": "" + } + }, + "name": "ULGL1", + "render": "column", + "stepLine": { + "appearance": { + "bullets": [ + { + "deriveFieldsFromData": { + "fill": { + "color": "", + "opacity": "" + }, + "rotation": "", + "stroke": { + "color": "", + "opacity": "", + "width": "" + } + }, + "enabled": true, + "fill": { + "color": "", + "opacity": 1 + }, + "heatRules": { + "dataField": "", + "enabled": false, + "max": 100, + "min": 2 + }, + "height": 10, + "label": { + "position": { + "dx": 0, + "dy": 0 + }, + "text": "{value}" + }, + "render": "circle", + "rotation": 0, + "stroke": { + "color": "", + "opacity": 1, + "width": 1 + }, + "tooltip": { + "background": { + "color": "", + "opacity": 1 + }, + "cornerRadius": 3, + "enabled": true, + "pointerLength": 4, + "text": "{name}: [bold]{valueY}[/]" + }, + "width": 10 + } + ], + "connect": true, + "fill": { + "color": "", + "opacity": 0 + }, + "minDistance": 0.5, + "stroke": { + "color": "", + "dashArray": "", + "opacity": 1, + "width": 3 + }, + "tensionX": 1, + "tensionY": 1 + }, + "open": { + "x": "", + "y": "" + } + }, + "tooltip": { + "background": { + "color": "", + "opacity": 1 + }, + "cornerRadius": 3, + "enabled": true, + "pointerLength": 4, + "text": "ULGL1 (#): [bold]{valueY}[/]" + }, + "visible": true, + "xAxis": "Hour", + "yAxis": "Total", + "zIndex": 0 + }, + { + "candlestick": { + "appearance": { + "deriveFieldsFromData": { + "fill": { + "color": "", + "opacity": "" + }, + "stroke": { + "color": "", + "opacity": "", + "width": "" + } + }, + "fill": { + "color": "", + "opacity": 1 + }, + "heatRules": { + "dataField": "", + "enabled": false, + "max": "", + "min": "" + }, + "stacked": false, + "stroke": { + "color": "", + "opacity": 1, + "width": 1 + } + }, + "high": { + "x": "", + "y": "" + }, + "low": { + "x": "", + "y": "" + }, + "open": { + "x": "", + "y": "" + } + }, + "column": { + "appearance": { + "deriveFieldsFromData": { + "fill": { + "color": "", + "opacity": "" + }, + "stroke": { + "color": "", + "opacity": "", + "width": "" + } + }, + "fill": { + "color": "#FF0000", + "opacity": 1 + }, + "heatRules": { + "dataField": "", + "enabled": false, + "max": "", + "min": "" + }, + "height": null, + "stacked": true, + "stroke": { + "color": "#FF0000", + "opacity": 1, + "width": 1 + }, + "width": null + }, + "open": { + "x": "", + "y": "" + } + }, + "data": { + "source": "example", + "x": "Hour", + "y": "ULGL2" + }, + "defaultState": { + "visible": true + }, + "hiddenInLegend": false, + "label": { + "text": "Dest Full" + }, + "line": { + "appearance": { + "bullets": [ + { + "deriveFieldsFromData": { + "fill": { + "color": "", + "opacity": "" + }, + "rotation": "", + "stroke": { + "color": "", + "opacity": "", + "width": "" + } + }, + "enabled": false, + "fill": { + "color": "", + "opacity": 1 + }, + "heatRules": { + "dataField": "", + "enabled": false, + "max": 100, + "min": 2 + }, + "height": 10, + "label": { + "position": { + "dx": 0, + "dy": 0 + }, + "text": "{value}" + }, + "render": "circle", + "rotation": 0, + "stroke": { + "color": "", + "opacity": 1, + "width": 1 + }, + "tooltip": { + "background": { + "color": "", + "opacity": 1 + }, + "cornerRadius": 3, + "enabled": true, + "pointerLength": 4, + "text": "{name}: [bold]{valueY}[/]" + }, + "width": 10 + } + ], + "connect": true, + "fill": { + "color": "", + "opacity": 0 + }, + "minDistance": 0.5, + "stroke": { + "color": "", + "dashArray": "", + "opacity": 1, + "width": 3 + }, + "tensionX": 1, + "tensionY": 1 + }, + "open": { + "x": "", + "y": "" + } + }, + "name": "ULGL2", + "render": "column", + "stepLine": { + "appearance": { + "bullets": [ + { + "deriveFieldsFromData": { + "fill": { + "color": "", + "opacity": "" + }, + "rotation": "", + "stroke": { + "color": "", + "opacity": "", + "width": "" + } + }, + "enabled": true, + "fill": { + "color": "", + "opacity": 1 + }, + "heatRules": { + "dataField": "", + "enabled": false, + "max": 100, + "min": 2 + }, + "height": 10, + "label": { + "position": { + "dx": 0, + "dy": 0 + }, + "text": "{value}" + }, + "render": "circle", + "rotation": 0, + "stroke": { + "color": "", + "opacity": 1, + "width": 1 + }, + "tooltip": { + "background": { + "color": "", + "opacity": 1 + }, + "cornerRadius": 3, + "enabled": true, + "pointerLength": 4, + "text": "{name}: [bold]{valueY}[/]" + }, + "width": 10 + } + ], + "connect": true, + "fill": { + "color": "", + "opacity": 0 + }, + "minDistance": 0.5, + "stroke": { + "color": "", + "dashArray": "", + "opacity": 1, + "width": 3 + }, + "tensionX": 1, + "tensionY": 1 + }, + "open": { + "x": "", + "y": "" + } + }, + "tooltip": { + "background": { + "color": "", + "opacity": 1 + }, + "cornerRadius": 3, + "enabled": true, + "pointerLength": 4, + "text": "ULGL2 (#): [bold]{valueY}[/]" + }, + "visible": true, + "xAxis": "Hour", + "yAxis": "Total", + "zIndex": 0 + }, + { + "candlestick": { + "appearance": { + "deriveFieldsFromData": { + "fill": { + "color": "", + "opacity": "" + }, + "stroke": { + "color": "", + "opacity": "", + "width": "" + } + }, + "fill": { + "color": "", + "opacity": 1 + }, + "heatRules": { + "dataField": "", + "enabled": false, + "max": "", + "min": "" + }, + "stacked": false, + "stroke": { + "color": "", + "opacity": 1, + "width": 1 + } + }, + "high": { + "x": "", + "y": "" + }, + "low": { + "x": "", + "y": "" + }, + "open": { + "x": "", + "y": "" + } + }, + "column": { + "appearance": { + "deriveFieldsFromData": { + "fill": { + "color": "", + "opacity": "" + }, + "stroke": { + "color": "", + "opacity": "", + "width": "" + } + }, + "fill": { + "color": "#FF8C00", + "opacity": 1 + }, + "heatRules": { + "dataField": "", + "enabled": false, + "max": "", + "min": "" + }, + "height": null, + "stacked": true, + "stroke": { + "color": "#FF8C00", + "opacity": 1, + "width": 1 + }, + "width": null + }, + "open": { + "x": "", + "y": "" + } + }, + "data": { + "source": "example", + "x": "Hour", + "y": "ULGL3" + }, + "defaultState": { + "visible": true + }, + "hiddenInLegend": false, + "label": { + "text": "Dest Jam" + }, + "line": { + "appearance": { + "bullets": [ + { + "deriveFieldsFromData": { + "fill": { + "color": "", + "opacity": "" + }, + "rotation": "", + "stroke": { + "color": "", + "opacity": "", + "width": "" + } + }, + "enabled": false, + "fill": { + "color": "", + "opacity": 1 + }, + "heatRules": { + "dataField": "", + "enabled": false, + "max": 100, + "min": 2 + }, + "height": 10, + "label": { + "position": { + "dx": 0, + "dy": 0 + }, + "text": "{value}" + }, + "render": "circle", + "rotation": 0, + "stroke": { + "color": "", + "opacity": 1, + "width": 1 + }, + "tooltip": { + "background": { + "color": "", + "opacity": 1 + }, + "cornerRadius": 3, + "enabled": true, + "pointerLength": 4, + "text": "{name}: [bold]{valueY}[/]" + }, + "width": 10 + } + ], + "connect": true, + "fill": { + "color": "", + "opacity": 0 + }, + "minDistance": 0.5, + "stroke": { + "color": "", + "dashArray": "", + "opacity": 1, + "width": 3 + }, + "tensionX": 1, + "tensionY": 1 + }, + "open": { + "x": "", + "y": "" + } + }, + "name": "ULGL3", + "render": "column", + "stepLine": { + "appearance": { + "bullets": [ + { + "deriveFieldsFromData": { + "fill": { + "color": "", + "opacity": "" + }, + "rotation": "", + "stroke": { + "color": "", + "opacity": "", + "width": "" + } + }, + "enabled": true, + "fill": { + "color": "", + "opacity": 1 + }, + "heatRules": { + "dataField": "", + "enabled": false, + "max": 100, + "min": 2 + }, + "height": 10, + "label": { + "position": { + "dx": 0, + "dy": 0 + }, + "text": "{value}" + }, + "render": "circle", + "rotation": 0, + "stroke": { + "color": "", + "opacity": 1, + "width": 1 + }, + "tooltip": { + "background": { + "color": "", + "opacity": 1 + }, + "cornerRadius": 3, + "enabled": true, + "pointerLength": 4, + "text": "{name}: [bold]{valueY}[/]" + }, + "width": 10 + } + ], + "connect": true, + "fill": { + "color": "", + "opacity": 0 + }, + "minDistance": 0.5, + "stroke": { + "color": "", + "dashArray": "", + "opacity": 1, + "width": 3 + }, + "tensionX": 1, + "tensionY": 1 + }, + "open": { + "x": "", + "y": "" + } + }, + "tooltip": { + "background": { + "color": "", + "opacity": 1 + }, + "cornerRadius": 3, + "enabled": true, + "pointerLength": 4, + "text": "ULGL3 (#): [bold]{valueY}[/]" + }, + "visible": true, + "xAxis": "Hour", + "yAxis": "Total", + "zIndex": 0 + } + ], + "xAxes": [ + { + "appearance": { + "font": { + "size": "", + "weight": 500 + }, + "grid": { + "color": "", + "dashArray": "", + "minDistance": 60, + "opacity": 1, + "position": 0.5 + }, + "inside": false, + "labels": { + "color": "", + "horizontalCenter": "middle", + "opacity": 1, + "rotation": 0, + "verticalCenter": "middle" + }, + "opposite": false + }, + "category": { + "break": { + "enabled": false, + "endCategory": "", + "size": 0.05, + "startCategory": "" + } + }, + "date": { + "baseInterval": { + "count": 1, + "enabled": false, + "skipEmptyPeriods": false, + "timeUnit": "hour" + }, + "break": { + "enabled": false, + "endDate": "", + "size": 0.05, + "startDate": "" + }, + "format": "M/d", + "inputFormat": "yyyy-MM-dd kk:mm:ss", + "range": { + "max": "", + "min": "", + "useStrict": false + } + }, + "inversed": false, + "label": { + "color": "", + "enabled": true, + "text": "Hour" + }, + "name": "Hour", + "render": "category", + "tooltip": { + "background": { + "color": "", + "opacity": 1 + }, + "cornerRadius": 3, + "enabled": true, + "pointerLength": 4, + "text": "" + }, + "value": { + "break": { + "enabled": false, + "endValue": 100, + "size": 0.05, + "startValue": 0 + }, + "format": "#,###.##", + "logarithmic": false, + "range": { + "max": "", + "min": "", + "useStrict": false + } + }, + "visible": true + } + ], + "yAxes": [ + { + "appearance": { + "font": { + "size": "", + "weight": 500 + }, + "grid": { + "color": "", + "dashArray": "", + "minDistance": null, + "opacity": 1, + "position": 0.5 + }, + "inside": false, + "labels": { + "color": "", + "horizontalCenter": "middle", + "opacity": 1, + "rotation": 0, + "verticalCenter": "middle" + }, + "opposite": false + }, + "category": { + "break": { + "enabled": false, + "endCategory": "", + "size": 0.05, + "startCategory": "" + } + }, + "date": { + "baseInterval": { + "count": 1, + "enabled": false, + "skipEmptyPeriods": false, + "timeUnit": "hour" + }, + "break": { + "enabled": false, + "endDate": "", + "size": 0.05, + "startDate": "" + }, + "format": "M/d/yyyy HH:mm:ss", + "inputFormat": "yyyy-MM-dd kk:mm:ss", + "range": { + "max": "", + "min": "", + "useStrict": false + } + }, + "inversed": false, + "label": { + "color": "", + "enabled": true, + "text": "" + }, + "name": "Total", + "render": "value", + "tooltip": { + "background": { + "color": "", + "opacity": 1 + }, + "cornerRadius": 3, + "enabled": true, + "pointerLength": 4, + "text": "" + }, + "value": { + "break": { + "enabled": false, + "endValue": 100, + "size": 0.05, + "startValue": 0 + }, + "format": "#,###.##", + "logarithmic": false, + "range": { + "max": "", + "min": "", + "useStrict": false + } + }, + "visible": true + } + ] + }, + "type": "ia.chart.xy" + } + ], + "meta": { + "name": "Dumper cycles" + }, + "position": { + "tabIndex": 1 + }, + "props": { + "direction": "column" + }, + "type": "ia.container.flex" + } + ], + "meta": { + "name": "Statistics", + "visible": "TRUE" + }, + "position": { + "height": 0.96, + "width": 1, + "y": 0.04 + }, + "propConfig": { + "meta.visible": { + "binding": { + "config": { + "expression": "" + }, + "enabled": false, + "type": "expr" + } + }, + "props.tabs": { + "persistent": true + } + }, + "props": { + "menuStyle": { + "backgroundColor": "#FFFFFFBD" + }, + "style": { + "fontFamily": "Arial" + }, + "tabSize": { + "width": 160 + }, + "tabs": [ + "Jam by Area", + "Dumper cycles" + ] + }, + "type": "ia.container.tab" + }, + { + "children": [ + { + "meta": { + "name": "Label" + }, + "position": { + "basis": "162px" + }, + "props": { + "style": { + "color": "#FFFFFF" + }, + "text": "Aggregation Mode:" + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "Dropdown_Aggregation_mode" + }, + "position": { + "basis": "171px" + }, + "props": { + "options": [ + { + "label": "Count", + "value": "Count" + }, + { + "label": "Percentage", + "value": "Percentage" + }, + { + "label": "Rate", + "value": "Rate" + } + ], + "value": "Count" + }, + "type": "ia.input.dropdown" + } + ], + "meta": { + "name": "Aggregation_Mode" + }, + "position": { + "height": 0.03, + "width": 0.1766, + "x": 0.7556, + "y": 0.0048 + }, + "propConfig": { + "meta.visible": { + "binding": { + "config": { + "expression": "{../Statistics.props.currentTabIndex} !\u003d12" + }, + "enabled": false, + "type": "expr" + } + } + }, + "props": { + "style": { + "fontFamily": "Arial" + } + }, + "type": "ia.container.flex" + }, + { + "children": [ + { + "meta": { + "name": "Label_0" + }, + "position": { + "basis": "63px" + }, + "props": { + "style": { + "color": "#000000" + }, + "text": "Induct:" + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "Dropdown_0" + }, + "position": { + "basis": "171px" + }, + "props": { + "options": [ + { + "label": "PS01", + "value": "PS01" + }, + { + "label": "PS02", + "value": "PS02" + }, + { + "label": "PS03", + "value": "PS03" + } + ], + "value": "PS01" + }, + "type": "ia.input.dropdown" + } + ], + "meta": { + "name": "Induct Drop Down", + "visible": false + }, + "position": { + "height": 0.0269, + "width": 0.124, + "x": 0.872, + "y": 0.0439 + }, + "props": { + "style": { + "fontFamily": "Arial" + } + }, + "type": "ia.container.flex" + }, + { + "children": [ + { + "meta": { + "name": "Label_Scanner" + }, + "position": { + "basis": "70px" + }, + "props": { + "style": { + "color": "#000000" + }, + "text": "Scanner:" + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "Scanner" + }, + "position": { + "basis": "171px" + }, + "props": { + "options": [ + { + "label": "S01aa", + "value": "S01aa" + }, + { + "label": "S02aa", + "value": "S02aa" + }, + { + "label": "S03aa", + "value": "S03aa" + } + ], + "value": "S01aa" + }, + "type": "ia.input.dropdown" + } + ], + "meta": { + "name": "Scanner Drop Down", + "visible": false + }, + "position": { + "height": 0.0269, + "width": 0.124, + "x": 0.872, + "y": 0.0439 + }, + "props": { + "style": { + "fontFamily": "Arial" + } + }, + "type": "ia.container.flex" + }, + { + "children": [ + { + "meta": { + "name": "Label_Lane" + }, + "position": { + "basis": "70px" + }, + "props": { + "style": { + "color": "#000000" + }, + "text": "Lane:" + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "Lane" + }, + "position": { + "basis": "171px" + }, + "props": { + "options": [ + { + "label": "S03001", + "value": "S03001" + }, + { + "label": "S03002", + "value": "S03002" + }, + { + "label": "S03003", + "value": "S03003" + }, + { + "label": "S03005", + "value": "S03005" + }, + { + "label": "S03006", + "value": "S03006" + }, + { + "label": "S03007", + "value": "S03007" + }, + { + "label": "S03008", + "value": "S03008" + }, + { + "label": "S03009", + "value": "S03009" + }, + { + "label": "S03010", + "value": "S03010" + }, + { + "label": "S03011", + "value": "S03011" + }, + { + "label": "S03012", + "value": "S03012" + }, + { + "label": "S03013", + "value": "S03013" + }, + { + "label": "S03014", + "value": "S03014" + }, + { + "label": "S03015", + "value": "S03015" + }, + { + "label": "S03016", + "value": "S03016" + }, + { + "label": "S03017", + "value": "S03017" + }, + { + "label": "S03018", + "value": "S03018" + }, + { + "label": "S03019", + "value": "S03019" + }, + { + "label": "S03020", + "value": "S03020" + }, + { + "label": "S03021", + "value": "S03021" + }, + { + "label": "S03022", + "value": "S03022" + }, + { + "label": "S03023", + "value": "S03023" + }, + { + "label": "S03024", + "value": "S03024" + }, + { + "label": "S03025", + "value": "S03025" + }, + { + "label": "S03026", + "value": "S03026" + }, + { + "label": "S03027", + "value": "S03027" + }, + { + "label": "S03028", + "value": "S03028" + }, + { + "label": "S03029", + "value": "S03029" + }, + { + "label": "S03030", + "value": "S03030" + }, + { + "label": "S03031", + "value": "S03031" + }, + { + "label": "S03032", + "value": "S03032" + }, + { + "label": "S03033", + "value": "S03033" + }, + { + "label": "S03034", + "value": "S03034" + }, + { + "label": "S03035", + "value": "S03035" + }, + { + "label": "S03036", + "value": "S03036" + }, + { + "label": "S03037", + "value": "S03037" + }, + { + "label": "S03038", + "value": "S03038" + }, + { + "label": "S03039", + "value": "S03039" + }, + { + "label": "S03040", + "value": "S03040" + }, + { + "label": "S03041", + "value": "S03041" + }, + { + "label": "S03042", + "value": "S03042" + }, + { + "label": "S03043", + "value": "S03043" + }, + { + "label": "S03044", + "value": "S03044" + }, + { + "label": "S03045", + "value": "S03045" + }, + { + "label": "S03046", + "value": "S03046" + }, + { + "label": "S03047", + "value": "S03047" + }, + { + "label": "S03048", + "value": "S03048" + }, + { + "label": "S03049", + "value": "S03049" + }, + { + "label": "S03050", + "value": "S03050" + }, + { + "label": "S03051", + "value": "S03051" + }, + { + "label": "S03052", + "value": "S03052" + }, + { + "label": "S03053", + "value": "S03053" + }, + { + "label": "S03054", + "value": "S03054" + }, + { + "label": "S03055", + "value": "S03055" + }, + { + "label": "S03056", + "value": "S03056" + }, + { + "label": "S03057", + "value": "S03057" + }, + { + "label": "S03058", + "value": "S03058" + }, + { + "label": "S03059", + "value": "S03059" + }, + { + "label": "S03060", + "value": "S03060" + }, + { + "label": "S03061", + "value": "S03061" + }, + { + "label": "S03062", + "value": "S03062" + }, + { + "label": "S03063", + "value": "S03063" + }, + { + "label": "S03064", + "value": "S03064" + }, + { + "label": "S03065", + "value": "S03065" + }, + { + "label": "S03066", + "value": "S03066" + }, + { + "label": "S03067", + "value": "S03067" + }, + { + "label": "S03068", + "value": "S03068" + }, + { + "label": "S03069", + "value": "S03069" + }, + { + "label": "S03070", + "value": "S03070" + }, + { + "label": "S03071", + "value": "S03071" + }, + { + "label": "S03072", + "value": "S03072" + }, + { + "label": "S03073", + "value": "S03073" + }, + { + "label": "S03074", + "value": "S03074" + }, + { + "label": "S03075", + "value": "S03075" + }, + { + "label": "S03076", + "value": "S03076" + }, + { + "label": "S03077", + "value": "S03077" + }, + { + "label": "S03078", + "value": "S03078" + }, + { + "label": "S03079", + "value": "S03079" + }, + { + "label": "S03080", + "value": "S03080" + }, + { + "label": "S03081", + "value": "S03081" + }, + { + "label": "S03082", + "value": "S03082" + }, + { + "label": "S03083", + "value": "S03083" + }, + { + "label": "S03084", + "value": "S03084" + }, + { + "label": "S03085", + "value": "S03085" + }, + { + "label": "S03086", + "value": "S03086" + }, + { + "label": "S03087", + "value": "S03087" + }, + { + "label": "S03088", + "value": "S03088" + }, + { + "label": "S03089", + "value": "S03089" + }, + { + "label": "S03090", + "value": "S03090" + }, + { + "label": "S03091", + "value": "S03091" + }, + { + "label": "S03092", + "value": "S03092" + }, + { + "label": "S03093", + "value": "S03093" + }, + { + "label": "S03094", + "value": "S03094" + }, + { + "label": "S03095", + "value": "S03095" + }, + { + "label": "S03096", + "value": "S03096" + }, + { + "label": "S03097", + "value": "S03097" + }, + { + "label": "S03098", + "value": "S03098" + }, + { + "label": "S03099", + "value": "S03099" + }, + { + "label": "S03100", + "value": "S03100" + }, + { + "label": "S03101", + "value": "S03101" + }, + { + "label": "S03102", + "value": "S03102" + }, + { + "label": "S03103", + "value": "S03103" + }, + { + "label": "S03104", + "value": "S03104" + }, + { + "label": "S03105", + "value": "S03105" + }, + { + "label": "S03106", + "value": "S03106" + }, + { + "label": "S03107", + "value": "S03107" + }, + { + "label": "S03108", + "value": "S03108" + }, + { + "label": "S03999", + "value": "S03999" + } + ], + "value": "S0101" + }, + "type": "ia.input.dropdown" + } + ], + "meta": { + "name": "Lane Drop Down" + }, + "position": { + "height": 0.0269, + "width": 0.0792, + "x": 0.6897, + "y": 0.0922 + }, + "propConfig": { + "meta.visible": { + "binding": { + "config": { + "expression": "if ({../Statistics.props.currentTabIndex} \u003d 9 ,\r\ntrue,\r\nfalse)" + }, + "type": "expr" + } + } + }, + "props": { + "style": { + "fontFamily": "Arial" + } + }, + "type": "ia.container.flex" + }, + { + "children": [ + { + "meta": { + "name": "Label_Scanner" + }, + "position": { + "basis": "70px" + }, + "props": { + "style": { + "color": "#000000" + }, + "text": "Sorter:" + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "Sorter" + }, + "position": { + "basis": "171px" + }, + "props": { + "options": [ + { + "label": "S01", + "value": "S01" + }, + { + "label": "S02", + "value": "S02" + }, + { + "label": "S03", + "value": "S03" + } + ], + "value": "PS01" + }, + "type": "ia.input.dropdown" + } + ], + "meta": { + "name": "Sorter Drop Down", + "visible": false + }, + "position": { + "height": 0.0269, + "width": 0.124, + "x": 0.872, + "y": 0.0439 + }, + "props": { + "style": { + "fontFamily": "Arial" + } + }, + "type": "ia.container.flex" + }, + { + "custom": { + "debug": [ + [ + "2020-03-24 03:58:00", + 83.44392609984358, + 93.58514404296875, + 71.81086730957031 + ], + [ + "2020-03-24 03:59:00", + 83.35893577107669, + 106.05998229980469, + 72.54214477539062 + ], + [ + "2020-03-24 04:00:00", + 83.2739454423098, + 102.124267578125, + 72.18306732177734 + ], + [ + "2020-03-24 04:01:00", + 83.26998772600022, + 104.7994155883789, + 72.2726821899414 + ], + [ + "2020-03-24 04:02:00", + 83.09998708000028, + 110.67745971679688, + 72.70557403564453 + ], + [ + "2020-03-24 04:03:00", + 82.95057846075277, + 110.90865325927734, + 72.86494445800781 + ], + [ + "2020-03-24 04:04:00", + 82.87408810123425, + 111.18544006347656, + 72.739990234375 + ], + [ + "2020-03-24 04:05:00", + 82.79759774171573, + 110.57137298583984, + 72.47943878173828 + ], + [ + "2020-03-24 04:06:00", + 82.72110738219722, + 111.59486389160156, + 72.50711059570312 + ], + [ + "2020-03-24 04:07:00", + 82.6446170226787, + 110.79205322265625, + 72.84617614746094 + ], + [ + "2020-03-24 04:08:00", + 82.56812666316019, + 112.36724853515625, + 72.59688568115234 + ], + [ + "2020-03-24 04:09:00", + 82.49163630364167, + 111.96199035644531, + 71.75237274169922 + ], + [ + "2020-03-24 04:10:00", + 82.41514594412317, + 114.09909057617188, + 72.87260437011719 + ], + [ + "2020-03-24 04:11:00", + 82.33865558460465, + 113.22314453125, + 72.4264144897461 + ], + [ + "2020-03-24 04:12:00", + 82.26216522508614, + 112.67841339111328, + 72.77767944335938 + ], + [ + "2020-03-24 04:13:00", + 82.18567486556762, + 109.4883041381836, + 73.2457504272461 + ], + [ + "2020-03-24 04:14:00", + 82.1091845060491, + 109.47913360595703, + 72.0219955444336 + ], + [ + "2020-03-24 04:15:00", + 82.03269414653059, + 109.40910339355469, + 72.11457061767578 + ], + [ + "2020-03-24 04:16:00", + 81.95620378701207, + 108.2085189819336, + 73.03665924072266 + ], + [ + "2020-03-24 04:17:00", + 81.87971342749356, + 109.74492645263672, + 72.89605712890625 + ], + [ + "2020-03-24 04:18:00", + 81.80322306797505, + 110.48381042480469, + 72.340087890625 + ], + [ + "2020-03-24 04:19:00", + 81.72673270845654, + 110.1125259399414, + 72.04779815673828 + ], + [ + "2020-03-24 04:20:00", + 81.65024234893802, + 110.58039855957031, + 72.02574157714844 + ], + [ + "2020-03-24 04:21:00", + 81.5737519894195, + 111.26719665527344, + 72.68399810791016 + ], + [ + "2020-03-24 04:22:00", + 81.57001033599973, + 111.0679931640625, + 72.2317123413086 + ], + [ + "2020-03-24 04:23:00", + 81.40001291999972, + 111.84290313720703, + 73.5782470703125 + ], + [ + "2020-03-24 04:24:00", + 81.22444354734957, + 111.08856201171875, + 74.54239654541016 + ], + [ + "2020-03-24 04:25:00", + 81.13445335130304, + 110.7277603149414, + 73.62892150878906 + ], + [ + "2020-03-24 04:26:00", + 81.04446315525652, + 110.72388458251953, + 74.79293823242188 + ], + [ + "2020-03-24 04:27:00", + 80.95447295921001, + 113.21517944335938, + 73.95577239990234 + ], + [ + "2020-03-24 04:28:00", + 80.86448276316348, + 112.6423568725586, + 74.46560668945312 + ], + [ + "2020-03-24 04:29:00", + 80.77449256711697, + 113.47187805175781, + 75.20769500732422 + ], + [ + "2020-03-24 04:30:00", + 80.68450237107044, + 113.81484985351562, + 74.11184692382812 + ], + [ + "2020-03-24 04:31:00", + 80.59451217502392, + 110.26861572265625, + 73.92262268066406 + ], + [ + "2020-03-24 04:32:00", + 80.50452197897741, + 109.19113159179688, + 74.61058807373047 + ], + [ + "2020-03-24 04:33:00", + 80.41453178293088, + 108.94200134277344, + 74.5039291381836 + ], + [ + "2020-03-24 04:34:00", + 80.32454158688437, + 109.96826934814453, + 74.46529388427734 + ], + [ + "2020-03-24 04:35:00", + 80.23455139083784, + 81.94364929199219, + 73.67473602294922 + ], + [ + "2020-03-24 04:36:00", + 80.14456119479132, + 23.80181121826172, + 73.68876117466887 + ], + [ + "2020-03-24 04:37:00", + 80.0545709987448, + 1.4474921226501465, + 73.68912506103516 + ], + [ + "2020-03-24 04:38:00", + 79.96458080269828, + 4.1637725830078125, + 73.72541046142578 + ], + [ + "2020-03-24 04:39:00", + 79.87459060665176, + 26.945161819458008, + 74.61903381347656 + ], + [ + "2020-03-24 04:40:00", + 79.87000710599979, + 34.11628341674805, + 73.51866149902344 + ], + [ + "2020-03-24 04:41:00", + 79.70000645999983, + 27.773473739624023, + 74.04241180419922 + ], + [ + "2020-03-24 04:42:00", + 79.60965611151889, + 27.49029541015625, + 73.1905517578125 + ], + [ + "2020-03-24 04:43:00", + 79.56329763722199, + 34.070072174072266, + 73.98297882080078 + ], + [ + "2020-03-24 04:44:00", + 79.5169391629251, + 33.60432052612305, + 74.68580627441406 + ], + [ + "2020-03-24 04:45:00", + 79.4705806886282, + 33.17567825317383, + 73.96578216552734 + ], + [ + "2020-03-24 04:46:00", + 79.42422221433131, + 33.235443115234375, + 74.14202880859375 + ], + [ + "2020-03-24 04:47:00", + 79.37786374003441, + 33.624229431152344, + 73.29328918457031 + ], + [ + "2020-03-24 04:48:00", + 79.33150526573752, + 33.59697723388672, + 73.17694091796875 + ], + [ + "2020-03-24 04:49:00", + 79.28514679144062, + 33.403076171875, + 73.81486511230469 + ], + [ + "2020-03-24 04:50:00", + 79.23878831714373, + 33.89695739746094, + 74.30374145507812 + ], + [ + "2020-03-24 04:51:00", + 79.19242984284683, + 32.8265266418457, + 74.06024169921875 + ], + [ + "2020-03-24 04:52:00", + 79.14607136854994, + 48.27207946777344, + 73.2079086303711 + ], + [ + "2020-03-24 04:53:00", + 79.09971289425305, + 74.11988830566406, + 72.95736694335938 + ], + [ + "2020-03-24 04:54:00", + 79.05335441995615, + 85.12024688720703, + 73.62250518798828 + ], + [ + "2020-03-24 04:55:00", + 79.00699594565926, + 89.70301055908203, + 72.9462661743164 + ], + [ + "2020-03-24 04:56:00", + 78.96063747136236, + 98.89726257324219, + 72.34540557861328 + ], + [ + "2020-03-24 04:57:00", + 78.91427899706547, + 104.57252502441406, + 73.3578872680664 + ], + [ + "2020-03-24 04:58:00", + 78.86792052276857, + 103.37727355957031, + 73.94607543945312 + ], + [ + "2020-03-24 04:59:00", + 78.82156204847168, + 103.06717681884766, + 72.9709701538086 + ], + [ + "2020-03-24 05:00:00", + 78.77520357417478, + 102.50790405273438, + 74.46186065673828 + ], + [ + "2020-03-24 05:01:00", + 78.72884509987789, + 102.56554412841797, + 72.30302429199219 + ], + [ + "2020-03-24 05:02:00", + 78.68248662558099, + 100.72061157226562, + 73.90963745117188 + ], + [ + "2020-03-24 05:03:00", + 78.6361281512841, + 84.94855499267578, + 72.5624771118164 + ], + [ + "2020-03-24 05:04:00", + 78.5897696769872, + 73.80229949951172, + 72.40718078613281 + ], + [ + "2020-03-24 05:05:00", + 78.54341120269031, + 66.7529296875, + 73.5855941772461 + ], + [ + "2020-03-24 05:06:00", + 78.49705272839341, + 58.3730354309082, + 73.1899185180664 + ], + [ + "2020-03-24 05:07:00", + 78.45069425409652, + 54.12462615966797, + 73.07763671875 + ], + [ + "2020-03-24 05:08:00", + 78.40433577979962, + 51.171958923339844, + 73.19320678710938 + ], + [ + "2020-03-24 05:09:00", + 78.35797730550273, + 48.614585876464844, + 72.81364440917969 + ], + [ + "2020-03-24 05:10:00", + 78.31161883120583, + 55.98033905029297, + 74.0353775024414 + ], + [ + "2020-03-24 05:11:00", + 78.26526035690894, + 55.769962310791016, + 74.27434539794922 + ], + [ + "2020-03-24 05:12:00", + 78.21890188261204, + 55.67626190185547, + 72.99474334716797 + ], + [ + "2020-03-24 05:13:00", + 78.17254340831515, + 53.84586715698242, + 73.18851470947266 + ], + [ + "2020-03-24 05:14:00", + 78.17000064599996, + 49.15884017944336, + 72.83944702148438 + ], + [ + "2020-03-24 05:15:00", + 78, + 48.674129486083984, + 72.74655151367188 + ], + [ + "2020-03-24 05:16:00", + 77.9366887710829, + 48.823998987048924, + 73.24293518066406 + ], + [ + "2020-03-24 05:17:00", + 77.90413912638326, + 48.8282470703125, + 72.28050994873047 + ], + [ + "2020-03-24 05:18:00", + 77.87158948168361, + 49.756980895996094, + 72.88276672363281 + ], + [ + "2020-03-24 05:19:00", + 77.83903983698399, + 49.47259521484375, + 73.35757446289062 + ], + [ + "2020-03-24 05:20:00", + 77.80649019228434, + 49.850311279296875, + 73.20963287353516 + ], + [ + "2020-03-24 05:21:00", + 77.77394054758471, + 49.637855529785156, + 72.9081039428711 + ], + [ + "2020-03-24 05:22:00", + 77.74139090288507, + 49.61250305175781, + 72.93186950683594 + ], + [ + "2020-03-24 05:23:00", + 77.70884125818544, + 48.27946090698242, + 74.17268371582031 + ], + [ + "2020-03-24 05:24:00", + 77.6762916134858, + 48.74678421020508, + 73.15660858154297 + ], + [ + "2020-03-24 05:25:00", + 77.64374196878616, + 48.357120513916016, + 72.6622543334961 + ], + [ + "2020-03-24 05:26:00", + 77.61119232408653, + 49.31953430175781, + 72.34400177001953 + ], + [ + "2020-03-24 05:27:00", + 77.57864267938689, + 49.709964752197266, + 72.97113037109375 + ], + [ + "2020-03-24 05:28:00", + 77.54609303468726, + 50.2484130859375, + 72.39154052734375 + ], + [ + "2020-03-24 05:29:00", + 77.51354338998762, + 50.60381317138672, + 72.06515502929688 + ], + [ + "2020-03-24 05:30:00", + 77.48099374528799, + 50.00936508178711, + 56.87029266357422 + ], + [ + "2020-03-24 05:31:00", + 77.44844410058835, + 49.875885009765625, + 16.654312133789062 + ], + [ + "2020-03-24 05:32:00", + 77.4158944558887, + 48.563663482666016, + 18.19554901123047 + ], + [ + "2020-03-24 05:33:00", + 77.38334481118908, + 48.847572326660156, + 18.055583953857422 + ], + [ + "2020-03-24 05:34:00", + 77.35079516648943, + 48.35354232788086, + 18.378847122192383 + ], + [ + "2020-03-24 05:35:00", + 77.3182455217898, + 48.75905990600586, + 17.62409782409668 + ], + [ + "2020-03-24 05:36:00", + 77.28569587709016, + 48.05728530883789, + 18.058086395263672 + ], + [ + "2020-03-24 05:37:00", + 77.25314623239053, + 54.909175872802734, + 17.759536743164062 + ], + [ + "2020-03-24 05:38:00", + 77.22059658769089, + 54.575439453125, + 17.888395309448242 + ], + [ + "2020-03-24 05:39:00", + 77.18804694299125, + 55.046234130859375, + 18.210878372192383 + ], + [ + "2020-03-24 05:40:00", + 77.15549729829162, + 54.0140495300293, + 17.824277877807617 + ], + [ + "2020-03-24 05:41:00", + 77.12294765359198, + 53.690467834472656, + 18.451248168945312 + ], + [ + "2020-03-24 05:42:00", + 77.09039800889235, + 53.07158279418945, + 18.209468841552734 + ], + [ + "2020-03-24 05:43:00", + 77.05784836419271, + 53.31936264038086, + 18.179603576660156 + ], + [ + "2020-03-24 05:44:00", + 77.02529871949308, + 53.26475143432617, + 18.342716217041016 + ], + [ + "2020-03-24 05:45:00", + 76.99274907479344, + 51.945220947265625, + 18.539770126342773 + ], + [ + "2020-03-24 05:46:00", + 76.9601994300938, + 51.81389617919922, + 18.015705108642578 + ], + [ + "2020-03-24 05:47:00", + 76.92764978539417, + 51.123085021972656, + 17.368398666381836 + ], + [ + "2020-03-24 05:48:00", + 76.89510014069452, + 51.4550666809082, + 18.14003562927246 + ], + [ + "2020-03-24 05:49:00", + 76.8625504959949, + 50.60249710083008, + 18.289703369140625 + ], + [ + "2020-03-24 05:50:00", + 76.83000085129525, + 50.91603088378906, + 18.2962646484375 + ], + [ + "2020-03-24 05:51:00", + 76.79745120659562, + 53.06449508666992, + 18.563539505004883 + ], + [ + "2020-03-24 05:52:00", + 76.76490156189598, + 54.72663497924805, + 18.568862915039062 + ], + [ + "2020-03-24 05:53:00", + 76.73235191719634, + 54.90778732299805, + 18.28094482421875 + ], + [ + "2020-03-24 05:54:00", + 76.69980227249671, + 53.92911911010742, + 18.02821159362793 + ], + [ + "2020-03-24 05:55:00", + 76.66725262779707, + 53.20056915283203, + 21.20859718322754 + ], + [ + "2020-03-24 05:56:00", + 76.63470298309744, + 53.7746696472168, + 70.31324768066406 + ], + [ + "2020-03-24 05:57:00", + 76.6021533383978, + 54.07472610473633, + 73.2507553100586 + ], + [ + "2020-03-24 05:58:00", + 76.56960369369816, + 53.80739974975586, + 73.81517791748047 + ], + [ + "2020-03-24 05:59:00", + 76.53705404899853, + 53.748661041259766, + 73.31723022460938 + ], + [ + "2020-03-24 06:00:00", + 76.50450440429888, + 54.74142837524414, + 72.85430145263672 + ], + [ + "2020-03-24 06:01:00", + 76.47195475959926, + 56.06607437133789, + 73.29580688476562 + ], + [ + "2020-03-24 06:02:00", + 76.46999418600018, + 55.171714782714844, + 72.67166195723287 + ], + [ + "2020-03-24 06:03:00", + 76.29999354000017, + 55.41927719116211, + 72.6522445678711 + ], + [ + "2020-03-24 06:04:00", + 76.17097911658006, + 55.45018005371094, + 73.24137115478516 + ], + [ + "2020-03-24 06:05:00", + 76.10446483646761, + 55.66059112548828, + 72.9041976928711 + ], + [ + "2020-03-24 06:06:00", + 76.03795055635517, + 49.595481872558594, + 73.65878295898438 + ], + [ + "2020-03-24 06:07:00", + 75.97143627624271, + 47.00128173828125, + 72.86134338378906 + ], + [ + "2020-03-24 06:08:00", + 75.90492199613027, + 47.58378601074219, + 72.69776153564453 + ], + [ + "2020-03-24 06:09:00", + 75.83840771601783, + 49.07365417480469, + 72.17729187011719 + ], + [ + "2020-03-24 06:10:00", + 75.77189343590538, + 56.555606842041016, + 72.93250274658203 + ], + [ + "2020-03-24 06:11:00", + 75.70537915579293, + 56.26713180541992, + 72.06671905517578 + ], + [ + "2020-03-24 06:12:00", + 75.63886487568048, + 55.18650817871094, + 73.08904266357422 + ], + [ + "2020-03-24 06:13:00", + 75.57235059556804, + 48.025177001953125, + 73.17881774902344 + ], + [ + "2020-03-24 06:14:00", + 75.50583631545558, + 47.967350006103516, + 73.10953521728516 + ], + [ + "2020-03-24 06:15:00", + 75.43932203534314, + 49.351463317871094, + 72.9697265625 + ], + [ + "2020-03-24 06:16:00", + 75.3728077552307, + 57.63689041137695, + 73.93919372558594 + ], + [ + "2020-03-24 06:17:00", + 75.30629347511824, + 51.609039306640625, + 73.03306579589844 + ], + [ + "2020-03-24 06:18:00", + 75.2397791950058, + 49.73860549926758, + 73.2399673461914 + ], + [ + "2020-03-24 06:19:00", + 75.17326491489335, + 50.75581359863281, + 72.73904418945312 + ], + [ + "2020-03-24 06:20:00", + 75.1067506347809, + 50.66218566894531, + 72.50445556640625 + ], + [ + "2020-03-24 06:21:00", + 75.04023635466845, + 50.81214141845703, + 72.9201431274414 + ], + [ + "2020-03-24 06:22:00", + 74.97372207455601, + 51.4454231262207, + 72.74983978271484 + ], + [ + "2020-03-24 06:23:00", + 74.90720779444355, + 51.69704055786133, + 72.99396514892578 + ], + [ + "2020-03-24 06:24:00", + 74.84069351433111, + 51.35186767578125, + 73.40730285644531 + ], + [ + "2020-03-24 06:25:00", + 74.77417923421866, + 50.72081756591797, + 72.23859405517578 + ], + [ + "2020-03-24 06:26:00", + 74.76998772600024, + 50.91818618774414, + 73.011474609375 + ], + [ + "2020-03-24 06:27:00", + 74.59998708000028, + 50.9371452331543, + 73.52397918701172 + ], + [ + "2020-03-24 06:28:00", + 74.47115968724424, + 51.061458587646484, + 73.56307220458984 + ], + [ + "2020-03-24 06:29:00", + 74.40464696005053, + 50.900325775146484, + 73.50645446777344 + ], + [ + "2020-03-24 06:30:00", + 74.33813423285682, + 51.356689453125, + 73.11031341552734 + ], + [ + "2020-03-24 06:31:00", + 74.2716215056631, + 51.44089126586914, + 74.34957122802734 + ], + [ + "2020-03-24 06:32:00", + 74.2051087784694, + 51.28786849975586, + 73.98580169677734 + ], + [ + "2020-03-24 06:33:00", + 74.13859605127568, + 51.93085537607588, + 72.36542510986328 + ], + [ + "2020-03-24 06:34:00", + 74.07208332408197, + 51.952125549316406, + 72.51180267333984 + ], + [ + "2020-03-24 06:35:00", + 74.00557059688826, + 57.87371063232422, + 73.43373107910156 + ], + [ + "2020-03-24 06:36:00", + 73.93905786969457, + 80.50335693359375, + 73.54712677001953 + ], + [ + "2020-03-24 06:37:00", + 73.87254514250085, + 86.00247192382812, + 73.6276626586914 + ], + [ + "2020-03-24 06:38:00", + 73.80603241530714, + 92.10163116455078, + 73.07763671875 + ], + [ + "2020-03-24 06:39:00", + 73.73951968811343, + 92.22298431396484, + 72.73919677734375 + ], + [ + "2020-03-24 06:40:00", + 73.67300696091972, + 91.8537368774414, + 72.59422302246094 + ], + [ + "2020-03-24 06:41:00", + 73.60649423372601, + 91.79039764404297, + 72.58702850341797 + ], + [ + "2020-03-24 06:42:00", + 73.5399815065323, + 92.08602905273438, + 73.7885971069336 + ], + [ + "2020-03-24 06:43:00", + 73.47346877933859, + 92.87781524658203, + 72.7099609375 + ], + [ + "2020-03-24 06:44:00", + 73.40695605214488, + 96.19808197021484, + 73.00537872314453 + ], + [ + "2020-03-24 06:45:00", + 73.34044332495118, + 96.97959899902344, + 73.0341567993164 + ], + [ + "2020-03-24 06:46:00", + 73.27393059775747, + 92.9488296508789, + 73.91197967529297 + ], + [ + "2020-03-24 06:47:00", + 73.20741787056376, + 93.09352111816406, + 72.77579498291016 + ], + [ + "2020-03-24 06:48:00", + 73.14090514337005, + 91.96395111083984, + 71.88639831542969 + ], + [ + "2020-03-24 06:49:00", + 73.07439241617634, + 92.7508773803711, + 73.19898986816406 + ], + [ + "2020-03-24 06:50:00", + 73.07001033599973, + 91.7613525390625, + 73.58168029785156 + ], + [ + "2020-03-24 06:51:00", + 72.90001291999972, + 90.88325500488281, + 73.70819854736328 + ], + [ + "2020-03-24 06:52:00", + 72.74429166862062, + 90.33417510986328, + 72.71105194091797 + ], + [ + "2020-03-24 06:53:00", + 72.66377465236994, + 95.02799224853516, + 75.33968353271484 + ], + [ + "2020-03-24 06:54:00", + 72.58325763611924, + 96.9925308227539, + 74.09574890136719 + ], + [ + "2020-03-24 06:55:00", + 72.50274061986855, + 96.695068359375, + 73.8018798828125 + ], + [ + "2020-03-24 06:56:00", + 72.42222360361787, + 95.75796508789062, + 74.43511199951172 + ], + [ + "2020-03-24 06:57:00", + 72.34170658736717, + 96.17393493652344, + 74.73851776123047 + ], + [ + "2020-03-24 06:58:00", + 72.26118957111649, + 88.4173812866211, + 75.60273742675781 + ], + [ + "2020-03-24 06:59:00", + 72.1806725548658, + 88.39751434326172, + 74.84156799316406 + ], + [ + "2020-03-24 07:00:00", + 72.1001555386151, + 87.41456604003906, + 74.45763397216797 + ], + [ + "2020-03-24 07:01:00", + 72.01963852236442, + 87.65657806396484, + 73.62500762939453 + ], + [ + "2020-03-24 07:02:00", + 71.93912150611372, + 87.04649353027344, + 75.57865142822266 + ], + [ + "2020-03-24 07:03:00", + 71.85860448986304, + 87.92521667480469, + 74.86284637451172 + ], + [ + "2020-03-24 07:04:00", + 71.77808747361235, + 85.46574401855469, + 74.23040008544922 + ], + [ + "2020-03-24 07:05:00", + 71.69757045736166, + 51.844181060791016, + 73.2090072631836 + ], + [ + "2020-03-24 07:06:00", + 71.61705344111097, + 36.57521057128906, + 74.82296752929688 + ], + [ + "2020-03-24 07:07:00", + 71.53653642486027, + 34.56216812133789, + 74.66110229492188 + ], + [ + "2020-03-24 07:08:00", + 71.45601940860959, + 48.19200897216797, + 73.77107238769531 + ], + [ + "2020-03-24 07:09:00", + 71.3755023923589, + 52.86350631713867, + 74.53269958496094 + ], + [ + "2020-03-24 07:10:00", + 71.37000710599979, + 52.843929290771484, + 73.5987319946289 + ], + [ + "2020-03-24 07:11:00", + 71.20000645999983, + 52.08213424682617, + 74.15689849853516 + ], + [ + "2020-03-24 07:12:00", + 71.03583251441142, + 51.53842544555664, + 73.91010284423828 + ], + [ + "2020-03-24 07:13:00", + 70.95084242170037, + 43.506919860839844, + 73.70914459228516 + ], + [ + "2020-03-24 07:14:00", + 70.86585232898932, + 43.037841796875, + 73.2168197631836 + ], + [ + "2020-03-24 07:15:00", + 70.78086223627825, + 43.77318572998047, + 74.06806182861328 + ], + [ + "2020-03-24 07:16:00", + 70.6958721435672, + 46.766944885253906, + 74.05726623535156 + ], + [ + "2020-03-24 07:17:00", + 70.61088205085615, + 50.872379302978516, + 74.08291625976562 + ], + [ + "2020-03-24 07:18:00", + 70.5258919581451, + 51.395668029785156, + 74.64201354980469 + ], + [ + "2020-03-24 07:19:00", + 70.44090186543403, + 50.60863494873047, + 73.44953155517578 + ], + [ + "2020-03-24 07:20:00", + 70.35591177272298, + 40.730621337890625, + 72.79737854003906 + ], + [ + "2020-03-24 07:21:00", + 70.27092168001192, + 41.385196685791016, + 73.6615982055664 + ], + [ + "2020-03-24 07:22:00", + 70.18593158730087, + 52.25959777832031, + 73.92058563232422 + ], + [ + "2020-03-24 07:23:00", + 70.10094149458982, + 46.88405990600586, + 74.61308288574219 + ], + [ + "2020-03-24 07:24:00", + 70.01595140187875, + 47.141448974609375, + 73.66790870618443 + ], + [ + "2020-03-24 07:25:00", + 69.9309613091677, + 47.107181549072266, + 73.63360595703125 + ], + [ + "2020-03-24 07:26:00", + 69.84597121645665, + 47.4166259765625, + 74.238525390625 + ], + [ + "2020-03-24 07:27:00", + 69.7609811237456, + 46.56296157836914, + 73.82565307617188 + ], + [ + "2020-03-24 07:28:00", + 69.67599103103453, + 46.3474006652832, + 72.98832702636719 + ], + [ + "2020-03-24 07:29:00", + 69.67000064599995, + 47.08136046272777, + 73.30158233642578 + ], + [ + "2020-03-24 07:30:00", + 69.5, + 47.10820770263672, + 73.27828216552734 + ], + [ + "2020-03-24 07:31:00", + 69.32637243713472, + 47.034088134765625, + 73.60092163085938 + ], + [ + "2020-03-24 07:32:00", + 69.23638277037952, + 45.57647705078125, + 73.87054443359375 + ], + [ + "2020-03-24 07:33:00", + 69.1463931036243, + 51.21367645263672, + 72.25328826904297 + ], + [ + "2020-03-24 07:34:00", + 69.0564034368691, + 70.96977996826172, + 73.15692138671875 + ], + [ + "2020-03-24 07:35:00", + 68.96641377011389, + 76.6375961303711, + 72.21951293945312 + ], + [ + "2020-03-24 07:36:00", + 68.87642410335869, + 83.16655731201172, + 74.12545776367188 + ], + [ + "2020-03-24 07:37:00", + 68.78643443660347, + 83.07859802246094, + 72.88916991454134 + ], + [ + "2020-03-24 07:38:00", + 68.69644476984827, + 92.17417907714844, + 72.8433609008789 + ], + [ + "2020-03-24 07:39:00", + 68.60645510309305, + 92.9948959350586, + 73.65784454345703 + ], + [ + "2020-03-24 07:40:00", + 68.51646543633785, + 92.51905822753906, + 72.56232452392578 + ], + [ + "2020-03-24 07:41:00", + 68.42647576958265, + 91.8058090209961, + 73.06637573242188 + ], + [ + "2020-03-24 07:42:00", + 68.33648610282744, + 90.04006958007812, + 72.91545104980469 + ], + [ + "2020-03-24 07:43:00", + 68.24649643607223, + 85.17295837402344, + 73.79078674316406 + ], + [ + "2020-03-24 07:44:00", + 68.15650676931702, + 95.68914794921875, + 72.5380859375 + ], + [ + "2020-03-24 07:45:00", + 68.06651710256182, + 74.87901306152344, + 73.2021255493164 + ], + [ + "2020-03-24 07:46:00", + 67.9765274358066, + 60.12022018432617, + 73.76215362548828 + ], + [ + "2020-03-24 07:47:00", + 67.96999418600018, + 53.05949020385742, + 73.28720092773438 + ], + [ + "2020-03-24 07:48:00", + 67.79999354000017, + 48.9787483215332, + 73.20462799072266 + ], + [ + "2020-03-24 07:49:00", + 67.60342746002077, + 49.55990219116211, + 72.59485626220703 + ], + [ + "2020-03-24 07:50:00", + 67.50143795130171, + 50.27000427246094, + 73.38900756835938 + ], + [ + "2020-03-24 07:51:00", + 67.39944844258264, + 49.79863766947178, + 72.78111267089844 + ], + [ + "2020-03-24 07:52:00", + 67.29745893386358, + 49.78076171875, + 73.90713500976562 + ], + [ + "2020-03-24 07:53:00", + 67.19546942514451, + 50.86861801147461, + 38.183509826660156 + ], + [ + "2020-03-24 07:54:00", + 67.09347991642545, + 51.039466857910156, + 17.961437225341797 + ], + [ + "2020-03-24 07:55:00", + 66.99149040770638, + 51.160526275634766, + 19.09199333190918 + ], + [ + "2020-03-24 07:56:00", + 66.88950089898731, + 50.949893951416016, + 18.68396759033203 + ], + [ + "2020-03-24 07:57:00", + 66.78751139026825, + 51.169769287109375, + 17.29629898071289 + ], + [ + "2020-03-24 07:58:00", + 66.68552188154918, + 50.19011306762695, + 18.370710372924805 + ] + ] + }, + "events": { + "component": { + "onActionPerformed": { + "config": { + "script": "\tdata \u003d []\n\ttable \u003d []\n\timport datetime\n\tcurrent_datetime\u003ddatetime.datetime.now()\n\tstr_date \u003d current_datetime.strftime(\"%m-%d-%Y %I-%M\")\n\n\n\tif self.getSibling(\"Statistics\").props.currentTabIndex \u003d\u003d 0:\n\t\tresults \u003d self.parent.getChild(\"Statistics\").getChild(\"Induct Details\").getChild(\"Induct Details\").props.filter.results.data\n\t\tif(len(results) \u003e 0):\n\t\t\tif self.parent.getChild(\"Aggregation_Mode\").getChild(\"Dropdown_Aggregation_mode\").props.value \u003d\u003d \"Count\":\n\t\t\t\theaders \u003d [\"Start Timestamp\", \"End Timestamp\", \"Sorter\",\"Induct\",\"Total (#)\",\"Single Carrier (#)\",\"Double Carrier (#)\"]\n\t\t\t\tfor result in results:\n\t\t\t\t\tdata.append([result[\u0027Startstamp\u0027],result[\u0027Endtstamp\u0027],result[\u0027SorterName\u0027],result[\u0027InductName\u0027],result[\u0027Total_count\u0027],result[\u0027singlecarrier_count\u0027],result[\u0027doublecarrier_count\u0027]])\n\t\t\telif self.parent.getChild(\"Aggregation_Mode\").getChild(\"Dropdown_Aggregation_mode\").props.value \u003d\u003d \"Percentage\":\n\t\t\t\theaders \u003d [\"Start Timestamp\", \"End Timestamp\", \"Sorter\",\"Induct\",\"Total (%)\",\"Single Carrier (%)\",\"Double Carrier (%)\"]\n\t\t\t\tfor result in results:\n\t\t\t\t\tdata.append([result[\u0027Startstamp\u0027],result[\u0027Endtstamp\u0027],result[\u0027SorterName\u0027],result[\u0027InductName\u0027],result[\u0027Total_perc\u0027],result[\u0027SingleCarrier_perc\u0027],result[\u0027DoubleCarrier_perc\u0027]])\n\t\t\telif self.parent.getChild(\"Aggregation_Mode\").getChild(\"Dropdown_Aggregation_mode\").props.value \u003d\u003d \"Rate\":\n\t\t\t\theaders \u003d [\"Start Timestamp\", \"End Timestamp\", \"Sorter\",\"Induct\",\"Total (pph)\",\"Single Carrier (pph)\",\"Double Carrier (pph)\"]\n\t\t\t\tfor result in results:\n\t\t\t\t\tdata.append([result[\u0027Startstamp\u0027],result[\u0027Endtstamp\u0027],result[\u0027SorterName\u0027],result[\u0027InductName\u0027],result[\u0027Total_rate\u0027],result[\u0027SingleCarrier_rate\u0027],result[\u0027DoubleCarrier_rate\u0027]])\n\t\n\t\telse:\n\t\t\ttest_table \u003d system.dataset.toPyDataSet(self.parent.getChild(\"Statistics\").getChild(\"Induct Details\").getChild(\"Induct Details\").props.data)\n\t\t\n\t\t\tif self.parent.getChild(\"Aggregation_Mode\").getChild(\"Dropdown_Aggregation_mode\").props.value \u003d\u003d \"Count\":\n\t\t\t\theaders \u003d [\"Start Timestamp\", \"End Timestamp\", \"Sorter\",\"Induct\",\"Total (#)\",\"Single Carrier (#)\",\"Double Carrier (#)\"]\n\t\t\t\tfor result in test_table:\n\t\t\t\t\tdata.append([result[\u0027Startstamp\u0027],result[\u0027Endtstamp\u0027],result[\u0027SorterName\u0027],result[\u0027InductName\u0027],result[\u0027Total_count\u0027],result[\u0027singlecarrier_count\u0027],result[\u0027doublecarrier_count\u0027]])\n\t\t\telif self.parent.getChild(\"Aggregation_Mode\").getChild(\"Dropdown_Aggregation_mode\").props.value \u003d\u003d \"Percentage\":\n\t\t\t\theaders \u003d [\"Start Timestamp\", \"End Timestamp\", \"Sorter\",\"Induct\",\"Total (%)\",\"Single Carrier (%)\",\"Double Carrier (%)\"]\n\t\t\t\tfor result in test_table:\n\t\t\t\t\tdata.append([result[\u0027Startstamp\u0027],result[\u0027Endtstamp\u0027],result[\u0027SorterName\u0027],result[\u0027InductName\u0027],result[\u0027Total_perc\u0027],result[\u0027SingleCarrier_perc\u0027],result[\u0027DoubleCarrier_perc\u0027]])\n\t\t\telif self.parent.getChild(\"Aggregation_Mode\").getChild(\"Dropdown_Aggregation_mode\").props.value \u003d\u003d \"Rate\":\n\t\t\t\theaders \u003d [\"Start Timestamp\", \"End Timestamp\", \"Sorter\",\"Induct\",\"Total (pph)\",\"Single Carrier (pph)\",\"Double Carrier (pph)\"]\n\t\t\t\tfor result in test_table:\n\t\t\t\t\tdata.append([result[\u0027Startstamp\u0027],result[\u0027Endtstamp\u0027],result[\u0027SorterName\u0027],result[\u0027InductName\u0027],result[\u0027Total_rate\u0027],result[\u0027SingleCarrier_rate\u0027],result[\u0027DoubleCarrier_rate\u0027]])\n\t\t\n\t\ttable \u003d system.dataset.toDataSet(headers, data)\t\n\t\tcsv \u003d system.dataset.toCSV(table,1,0,1)\n\t\tsystem.perspective.download(filename \u003d str_date+\u0027 Induct Details.csv\u0027, data \u003d csv)\t\n\n\t\n\telif self.getSibling(\"Statistics\").props.currentTabIndex \u003d\u003d 1:\n\t\tresults \u003d self.parent.getChild(\"Statistics\").getChild(\"Scanner_Details\").getChild(\"Scanner Details\").props.filter.results.data\n\t\tif(len(results) \u003e 0):\n\t\t\tif self.parent.getChild(\"Aggregation_Mode\").getChild(\"Dropdown_Aggregation_mode\").props.value \u003d\u003d \"Count\":\n\t\t\t\theaders \u003d [\"Start Timestamp\", \"End Timestamp\", \"Sorter\",\"Scanner\",\"Total (#)\",\"Good Read (#)\",\"No Read (#)\",\"Multi Read (#)\",\"No Code (#)\"]\n\t\t\t\tfor result in results:\n\t\t\t\t\tdata.append([result[\u0027Startstamp\u0027],result[\u0027Endtstamp\u0027],result[\u0027SorterName\u0027],result[\u0027ScannerName\u0027],result[\u0027Total_count\u0027],result[\u0027GoodRead_count\u0027],result[\u0027NoRead_count\u0027],result[\u0027MultiLabelRead_count\u0027],result[\u0027NoCode_count\u0027]])\n\t\t\telif self.parent.getChild(\"Aggregation_Mode\").getChild(\"Dropdown_Aggregation_mode\").props.value \u003d\u003d \"Percentage\":\n\t\t\t\theaders \u003d [\"Start Timestamp\", \"End Timestamp\", \"Sorter\",\"Scanner\",\"Total (%)\",\"Good Read (%)\",\"No Read (%)\",\"Multi Read (%)\",\"No Code (%)\"]\n\t\t\t\tfor result in results:\n\t\t\t\t\tdata.append([result[\u0027Startstamp\u0027],result[\u0027Endtstamp\u0027],result[\u0027SorterName\u0027],result[\u0027ScannerName\u0027],result[\u0027Total_perc\u0027],result[\u0027GoodRead_perc\u0027],result[\u0027NoRead_perc\u0027],result[\u0027MultiLabelRead_perc\u0027],result[\u0027NoCode_perc\u0027]])\n\t\t\telif self.parent.getChild(\"Aggregation_Mode\").getChild(\"Dropdown_Aggregation_mode\").props.value \u003d\u003d \"Rate\":\n\t\t\t\theaders \u003d [\"Start Timestamp\", \"End Timestamp\", \"Sorter\",\"Scanner\",\"Total (pph)\",\"Good Read (pph)\",\"No Read (pph)\",\"Multi Read (pph)\",\"No Code (pph)\"]\n\t\t\t\tfor result in results:\n\t\t\t\t\tdata.append([result[\u0027Startstamp\u0027],result[\u0027Endtstamp\u0027],result[\u0027SorterName\u0027],result[\u0027ScannerName\u0027],result[\u0027Total_rate\u0027],result[\u0027GoodRead_rate\u0027],result[\u0027NoRead_rate\u0027],result[\u0027MultiLabelRead_rate\u0027],result[\u0027NoCode_rate\u0027]])\n\t\n\t\telse:\n\t\t\ttest_table \u003d system.dataset.toPyDataSet(self.parent.getChild(\"Statistics\").getChild(\"Scanner_Details\").getChild(\"Scanner Details\").props.data)\n\t\t\n\t\t\tif self.parent.getChild(\"Aggregation_Mode\").getChild(\"Dropdown_Aggregation_mode\").props.value \u003d\u003d \"Count\":\n\t\t\t\theaders \u003d [\"Start Timestamp\", \"End Timestamp\", \"Sorter\",\"Scanner\",\"Total (#)\",\"Good Read (#)\",\"No Read (#)\",\"Multi Read (#)\",\"No Code (#)\"]\n\t\t\t\tfor result in test_table:\n\t\t\t\t\tdata.append([result[\u0027Startstamp\u0027],result[\u0027Endtstamp\u0027],result[\u0027SorterName\u0027],result[\u0027ScannerName\u0027],result[\u0027Total_count\u0027],result[\u0027GoodRead_count\u0027],result[\u0027NoRead_count\u0027],result[\u0027MultiLabelRead_count\u0027],result[\u0027NoCode_count\u0027]])\n\t\t\telif self.parent.getChild(\"Aggregation_Mode\").getChild(\"Dropdown_Aggregation_mode\").props.value \u003d\u003d \"Percentage\":\n\t\t\t\theaders \u003d [\"Start Timestamp\", \"End Timestamp\", \"Sorter\",\"Scanner\",\"Total (%)\",\"Good Read (%)\",\"No Read (%)\",\"Multi Read (%)\",\"No Code (%)\"]\n\t\t\t\tfor result in test_table:\n\t\t\t\t\tdata.append([result[\u0027Startstamp\u0027],result[\u0027Endtstamp\u0027],result[\u0027SorterName\u0027],result[\u0027ScannerName\u0027],result[\u0027Total_perc\u0027],result[\u0027GoodRead_perc\u0027],result[\u0027NoRead_perc\u0027],result[\u0027MultiLabelRead_perc\u0027],result[\u0027NoCode_perc\u0027]])\n\t\t\telif self.parent.getChild(\"Aggregation_Mode\").getChild(\"Dropdown_Aggregation_mode\").props.value \u003d\u003d \"Rate\":\n\t\t\t\theaders \u003d [\"Start Timestamp\", \"End Timestamp\", \"Sorter\",\"Scanner\",\"Total (pph)\",\"Good Read (pph)\",\"No Read (pph)\",\"Multi Read (pph)\",\"No Code (pph)\"]\n\t\t\t\tfor result in test_table:\n\t\t\t\t\tdata.append([result[\u0027Startstamp\u0027],result[\u0027Endtstamp\u0027],result[\u0027SorterName\u0027],result[\u0027ScannerName\u0027],result[\u0027Total_rate\u0027],result[\u0027GoodRead_rate\u0027],result[\u0027NoRead_rate\u0027],result[\u0027MultiLabelRead_rate\u0027],result[\u0027NoCode_rate\u0027]])\n\t\t\t\n\t\ttable \u003d system.dataset.toDataSet(headers, data)\t\n\t\tcsv \u003d system.dataset.toCSV(table,1,0,1)\n\t\tsystem.perspective.download(filename \u003d str_date+\u0027 Scanner Details.csv\u0027, data \u003d csv)\n\t\n\t\n\telif self.getSibling(\"Statistics\").props.currentTabIndex \u003d\u003d 2:\n\t\tresults \u003d self.parent.getChild(\"Statistics\").getChild(\"Sorter Summary\").getChild(\"Sorter Summary\").props.filter.results.data\n\t\tif(len(results) \u003e 0):\n\t\t\tif self.parent.getChild(\"Aggregation_Mode\").getChild(\"Dropdown_Aggregation_mode\").props.value \u003d\u003d \"Count\":\n\t\t\t\theaders \u003d [\"Start Timestamp\", \"End Timestamp\", \"Sorter\",\"Inducted (#)\",\"Sorted (#)\",\"Awcs Recirc (#)\",\"Operational Recirc (#)\",\"Machine Recirc (#)\"]\n\t\t\t\tfor result in results:\n\t\t\t\t\tdata.append([result[\u0027Startstamp\u0027],result[\u0027Endtstamp\u0027],result[\u0027SorterName\u0027],result[\u0027Induct_count\u0027],result[\u0027Sorted_count\u0027],result[\u0027AWCSRecirc_count\u0027],result[\u0027OperRecirc_count\u0027],result[\u0027MachineRecirc_count\u0027]])\n\t\t\telif self.parent.getChild(\"Aggregation_Mode\").getChild(\"Dropdown_Aggregation_mode\").props.value \u003d\u003d \"Percentage\":\n\t\t\t\theaders \u003d [\"Start Timestamp\", \"End Timestamp\", \"Sorter\",\"Inducted (%)\",\"Sorted (%)\",\"Awcs Recirc (%)\",\"Operational Recirc (%)\",\"Machine Recirc (%)\"]\n\t\t\t\tfor result in results:\n\t\t\t\t\tdata.append([result[\u0027Startstamp\u0027],result[\u0027Endtstamp\u0027],result[\u0027SorterName\u0027],result[\u0027Induct_perc\u0027],result[\u0027Sorted_perc\u0027],result[\u0027AWCSRecirc_perc\u0027],result[\u0027OperRecirc_perc\u0027],result[\u0027MachineRecirc_perc\u0027]])\n\t\t\telif self.parent.getChild(\"Aggregation_Mode\").getChild(\"Dropdown_Aggregation_mode\").props.value \u003d\u003d \"Rate\":\n\t\t\t\theaders \u003d [\"Start Timestamp\", \"End Timestamp\", \"Sorter\",\"Inducted (pph)\",\"Sorted (pph)\",\"Awcs Recirc (pph)\",\"Operational Recirc (pph)\",\"Machine Recirc (pph)\"]\n\t\t\t\tfor result in results:\n\t\t\t\t\tdata.append([result[\u0027Startstamp\u0027],result[\u0027Endtstamp\u0027],result[\u0027SorterName\u0027],result[\u0027Induct_rate\u0027],result[\u0027Sorted_rate\u0027],result[\u0027AWCSRecirc_rate\u0027],result[\u0027OperRecirc_rate\u0027],result[\u0027MachineRecirc_rate\u0027]])\n\t\n\t\telse:\n\t\t\ttest_table \u003d system.dataset.toPyDataSet(self.parent.getChild(\"Statistics\").getChild(\"Sorter Summary\").getChild(\"Sorter Summary\").props.data)\n\t\t\n\t\t\tif self.parent.getChild(\"Aggregation_Mode\").getChild(\"Dropdown_Aggregation_mode\").props.value \u003d\u003d \"Count\":\n\t\t\t\theaders \u003d [\"Start Timestamp\", \"End Timestamp\", \"Sorter\",\"Inducted (#)\",\"Sorted (#)\",\"Awcs Recirc (#)\",\"Operational Recirc (#)\",\"Machine Recirc (#)\"]\n\t\t\t\tfor result in test_table:\n\t\t\t\t\tdata.append([result[\u0027Startstamp\u0027],result[\u0027Endtstamp\u0027],result[\u0027SorterName\u0027],result[\u0027Induct_count\u0027],result[\u0027Sorted_count\u0027],result[\u0027AWCSRecirc_count\u0027],result[\u0027OperRecirc_count\u0027],result[\u0027MachineRecirc_count\u0027]])\n\t\t\telif self.parent.getChild(\"Aggregation_Mode\").getChild(\"Dropdown_Aggregation_mode\").props.value \u003d\u003d \"Percentage\":\n\t\t\t\theaders \u003d [\"Start Timestamp\", \"End Timestamp\", \"Sorter\",\"Inducted (%)\",\"Sorted (%)\",\"Awcs Recirc (%)\",\"Operational Recirc (%)\",\"Machine Recirc (%)\"]\n\t\t\t\tfor result in test_table:\n\t\t\t\t\tdata.append([result[\u0027Startstamp\u0027],result[\u0027Endtstamp\u0027],result[\u0027SorterName\u0027],result[\u0027Induct_perc\u0027],result[\u0027Sorted_perc\u0027],result[\u0027AWCSRecirc_perc\u0027],result[\u0027OperRecirc_perc\u0027],result[\u0027MachineRecirc_perc\u0027]])\n\t\t\telif self.parent.getChild(\"Aggregation_Mode\").getChild(\"Dropdown_Aggregation_mode\").props.value \u003d\u003d \"Rate\":\n\t\t\t\theaders \u003d [\"Start Timestamp\", \"End Timestamp\", \"Sorter\",\"Inducted (pph)\",\"Sorted (pph)\",\"Awcs Recirc (pph)\",\"Operational Recirc (pph)\",\"Machine Recirc (pph)\"]\n\t\t\t\tfor result in test_table:\n\t\t\t\t\tdata.append([result[\u0027Startstamp\u0027],result[\u0027Endtstamp\u0027],result[\u0027SorterName\u0027],result[\u0027Induct_rate\u0027],result[\u0027Sorted_rate\u0027],result[\u0027AWCSRecirc_rate\u0027],result[\u0027OperRecirc_rate\u0027],result[\u0027MachineRecirc_rate\u0027]])\n\t\t\t\n\t\ttable \u003d system.dataset.toDataSet(headers, data)\t\n\t\tcsv \u003d system.dataset.toCSV(table,1,0,1)\n\t\tsystem.perspective.download(filename \u003d str_date+\u0027 Sorter Summary.csv\u0027, data \u003d csv)\n\n\t\n\telif self.getSibling(\"Statistics\").props.currentTabIndex \u003d\u003d 3:\n\t\tresults \u003d self.parent.getChild(\"Statistics\").getChild(\"Sorter Details\").getChild(\"Sorter Details\").props.filter.results.data\n\t\tif(len(results) \u003e 0):\n\t\t\tif self.parent.getChild(\"Aggregation_Mode\").getChild(\"Dropdown_Aggregation_mode\").props.value \u003d\u003d \"Count\":\n\t\t\t\theaders \u003d [\"Start Timestamp\", \"End Timestamp\", \"Sorter\",\"Inducted (#)\",\"Sorted (#)\",\"Assigned (#)\",\"Dest Inv (#)\",\"Dest None (#)\",\"Dest Dis (#)\",\"Dest Full (#)\",\"Unexpected (#)\",\"Dest Fault (#)\",\"Div Fail (#)\",\"Gap Err (#)\",\"Lost (#)\",\"Track Err (#)\",\"Unknown (#)\",\"Unsafe (#)\"]\n\t\t\t\tfor result in results:\n\t\t\t\t\tdata.append([result[\u0027Startstamp\u0027],result[\u0027Endtstamp\u0027],result[\u0027SorterName\u0027],result[\u0027inducted_count\u0027],result[\u0027sorted_count\u0027],result[\u0027assigned_count\u0027],result[\u0027destinv_count\u0027],result[\u0027destnone_count\u0027],result[\u0027destdis_count\u0027],result[\u0027destfull_count\u0027],result[\u0027unexpected_count\u0027],result[\u0027destfault_count\u0027],result[\u0027divfail_count\u0027],result[\u0027gaperr_count\u0027],result[\u0027lost_count\u0027],result[\u0027trackerr_count\u0027],result[\u0027unknownn_count\u0027],result[\u0027unsafe_count\u0027]])\n\t\t\telif self.parent.getChild(\"Aggregation_Mode\").getChild(\"Dropdown_Aggregation_mode\").props.value \u003d\u003d \"Percentage\":\n\t\t\t\theaders \u003d [\"Start Timestamp\", \"End Timestamp\", \"Sorter\",\"Inducted (%)\",\"Sorted (%)\",\"Assigned (%)\",\"Dest Inv (%)\",\"Dest None (%)\",\"Dest Dis (%)\",\"Dest Full (%)\",\"Unexpected (%)\",\"Dest Fault (%)\",\"Div Fail (%)\",\"Gap Err (%)\",\"Lost (%)\",\"Track Err (%)\",\"Unknown (%)\",\"Unsafe (%)\"]\n\t\t\t\tfor result in results:\n\t\t\t\t\tdata.append([result[\u0027Startstamp\u0027],result[\u0027Endtstamp\u0027],result[\u0027SorterName\u0027],result[\u0027inducted_perc\u0027],result[\u0027sorted_perc\u0027],result[\u0027assigned_perc\u0027],result[\u0027destinv_perc\u0027],result[\u0027destnone_perc\u0027],result[\u0027destdis_perc\u0027],result[\u0027destfull_perc\u0027],result[\u0027unexpected_perc\u0027],result[\u0027destfault_perc\u0027],result[\u0027divfail_perc\u0027],result[\u0027gaperr_perc\u0027],result[\u0027lost_perc\u0027],result[\u0027trackerr_perc\u0027],result[\u0027unknown_perc\u0027],result[\u0027unsafe_perc\u0027]])\n\t\t\telif self.parent.getChild(\"Aggregation_Mode\").getChild(\"Dropdown_Aggregation_mode\").props.value \u003d\u003d \"Rate\":\n\t\t\t\theaders \u003d [\"Start Timestamp\", \"End Timestamp\", \"Sorter\",\"Inducted (pph)\",\"Sorted (pph)\",\"Assigned (pph)\",\"Dest Inv (pph)\",\"Dest None (pph)\",\"Dest Dis (pph)\",\"Dest Full (pph)\",\"Unexpected (pph)\",\"Dest Fault (pph)\",\"Div Fail (pph)\",\"Gap Err (pph)\",\"Lost (pph)\",\"Track Err (pph)\",\"Unknown (pph)\",\"Unsafe (pph)\"]\n\t\t\t\tfor result in results:\n\t\t\t\t\tdata.append([result[\u0027Startstamp\u0027],result[\u0027Endtstamp\u0027],result[\u0027SorterName\u0027],result[\u0027inducted_rate\u0027],result[\u0027sorted_rate\u0027],result[\u0027assigned_rate\u0027],result[\u0027destinv_rate\u0027],result[\u0027destnone_rate\u0027],result[\u0027destdis_rate\u0027],result[\u0027destfull_rate\u0027],result[\u0027unexpected_rate\u0027],result[\u0027destfault_rate\u0027],result[\u0027divfail_rate\u0027],result[\u0027gaperr_rate\u0027],result[\u0027lost_rate\u0027],result[\u0027trackerr_rate\u0027],result[\u0027unknown_rate\u0027],result[\u0027unsafe_rate\u0027]])\n\t\t\n\t\telse:\n\t\t\ttest_table \u003d system.dataset.toPyDataSet(self.parent.getChild(\"Statistics\").getChild(\"Sorter Details\").getChild(\"Sorter Details\").props.data)\n\t\t\n\t\t\tif self.parent.getChild(\"Aggregation_Mode\").getChild(\"Dropdown_Aggregation_mode\").props.value \u003d\u003d \"Count\":\n\t\t\t\theaders \u003d [\"Start Timestamp\", \"End Timestamp\", \"Sorter\",\"Inducted (#)\",\"Sorted (#)\",\"Assigned (#)\",\"Dest Inv (#)\",\"Dest None (#)\",\"Dest Dis (#)\",\"Dest Full (#)\",\"Unexpected (#)\",\"Dest Fault (#)\",\"Div Fail (#)\",\"Gap Err (#)\",\"Lost (#)\",\"Track Err (#)\",\"Unknown (#)\",\"Unsafe (#)\"]\n\t\t\t\tfor result in test_table:\n\t\t\t\t\tdata.append([result[\u0027Startstamp\u0027],result[\u0027Endtstamp\u0027],result[\u0027SorterName\u0027],result[\u0027inducted_count\u0027],result[\u0027sorted_count\u0027],result[\u0027sorted_count\u0027],result[\u0027destinv_count\u0027],result[\u0027destnone_count\u0027],result[\u0027destdis_count\u0027],result[\u0027destfull_count\u0027],result[\u0027unexpected_count\u0027],result[\u0027destfault_count\u0027],result[\u0027divfail_count\u0027],result[\u0027gaperr_count\u0027],result[\u0027lost_count\u0027],result[\u0027trackerr_count\u0027],result[\u0027unknownn_count\u0027],result[\u0027unsafe_count\u0027]])\n\t\t\telif self.parent.getChild(\"Aggregation_Mode\").getChild(\"Dropdown_Aggregation_mode\").props.value \u003d\u003d \"Percentage\":\n\t\t\t\theaders \u003d [\"Start Timestamp\", \"End Timestamp\", \"Sorter\",\"Inducted (%)\",\"Sorted (%)\",\"Assigned (%)\",\"Dest Inv (%)\",\"Dest None (%)\",\"Dest Dis (%)\",\"Dest Full (%)\",\"Unexpected (%)\",\"Dest Fault (%)\",\"Div Fail (%)\",\"Gap Err (%)\",\"Lost (%)\",\"Track Err (%)\",\"Unknown (%)\",\"Unsafe (%)\"]\n\t\t\t\tfor result in test_table:\n\t\t\t\t\tdata.append([result[\u0027Startstamp\u0027],result[\u0027Endtstamp\u0027],result[\u0027SorterName\u0027],result[\u0027inducted_perc\u0027],result[\u0027sorted_perc\u0027],result[\u0027assigned_perc\u0027],result[\u0027destinv_perc\u0027],result[\u0027destnone_perc\u0027],result[\u0027destdis_perc\u0027],result[\u0027destfull_perc\u0027],result[\u0027unexpected_perc\u0027],result[\u0027destfault_perc\u0027],result[\u0027divfail_perc\u0027],result[\u0027gaperr_perc\u0027],result[\u0027lost_perc\u0027],result[\u0027trackerr_perc\u0027],result[\u0027unknown_perc\u0027],result[\u0027unsafe_perc\u0027]])\n\t\t\telif self.parent.getChild(\"Aggregation_Mode\").getChild(\"Dropdown_Aggregation_mode\").props.value \u003d\u003d \"Rate\":\n\t\t\t\theaders \u003d [\"Start Timestamp\", \"End Timestamp\", \"Sorter\",\"Inducted (pph)\",\"Sorted (pph)\",\"Assigned (pph)\",\"Dest Inv (pph)\",\"Dest None (pph)\",\"Dest Dis (pph)\",\"Dest Full (pph)\",\"Unexpected (pph)\",\"Dest Fault (pph)\",\"Div Fail (pph)\",\"Gap Err (pph)\",\"Lost (pph)\",\"Track Err (pph)\",\"Unknown (pph)\",\"Unsafe (pph)\"]\n\t\t\t\tfor result in test_table:\n\t\t\t\t\tdata.append([result[\u0027Startstamp\u0027],result[\u0027Endtstamp\u0027],result[\u0027SorterName\u0027],result[\u0027inducted_rate\u0027],result[\u0027sorted_rate\u0027],result[\u0027assigned_rate\u0027],result[\u0027destinv_rate\u0027],result[\u0027destnone_rate\u0027],result[\u0027destdis_rate\u0027],result[\u0027destfull_rate\u0027],result[\u0027unexpected_rate\u0027],result[\u0027destfault_rate\u0027],result[\u0027divfail_rate\u0027],result[\u0027gaperr_rate\u0027],result[\u0027lost_rate\u0027],result[\u0027trackerr_rate\u0027],result[\u0027unknown_rate\u0027],result[\u0027unsafe_rate\u0027]])\n\t\t\t\n\t\ttable \u003d system.dataset.toDataSet(headers, data)\t\n\t\tcsv \u003d system.dataset.toCSV(table,1,0,1)\n\t\tsystem.perspective.download(filename \u003d str_date+\u0027 Sorter Details.csv\u0027, data \u003d csv)\n\t\t\n\t\n\telif self.getSibling(\"Statistics\").props.currentTabIndex \u003d\u003d 4:\n\t\t\tresults \u003d self.parent.getChild(\"Statistics\").getChild(\"Lane Details\").getChild(\"Lane Details\").props.filter.results.data\n\t\t\tif(len(results) \u003e 0):\n\t\t\t\tif self.parent.getChild(\"Aggregation_Mode\").getChild(\"Dropdown_Aggregation_mode\").props.value \u003d\u003d \"Count\":\n\t\t\t\t\theaders \u003d [\"Start Timestamp\", \"End Timestamp\", \"Sorter\",\"Lane\",\"Total (#)\",\"Diverted (#)\",\"Dest Full (#)\",\"Dest Jam (#)\",\"Dest Disabled (#)\",\"Dest Fault (#)\",\"Divert Fail (#)\",\"Lost (#)\",\"Unsafe (#)\",\"Dim Error (#)\",\"Gap Error (#)\",\"Unknown (#)\"]\n\t\t\t\t\tfor result in results:\n\t\t\t\t\t\tdata.append([result[\u0027Startstamp\u0027],result[\u0027Endtstamp\u0027],result[\u0027SorterName\u0027],result[\u0027Lane\u0027],result[\u0027Total_count\u0027],result[\u0027Diverted_count\u0027],result[\u0027Destfull_count\u0027],result[\u0027DestJam_count\u0027],result[\u0027DestDis_count\u0027],result[\u0027DestFault_count\u0027],result[\u0027DivertFail_count\u0027],result[\u0027Lost_count\u0027],result[\u0027Unsafe_count\u0027],result[\u0027Dim_count\u0027],result[\u0027GapErr_count\u0027],result[\u0027Unknown_count\u0027]])\n\t\t\t\telif self.parent.getChild(\"Aggregation_Mode\").getChild(\"Dropdown_Aggregation_mode\").props.value \u003d\u003d \"Percentage\":\n\t\t\t\t\theaders \u003d [\"Start Timestamp\", \"End Timestamp\", \"Sorter\",\"Lane\",\"Total (%)\",\"Diverted (%)\",\"Dest Full (%)\",\"Dest Jam (%)\",\"Dest Disabled (%)\",\"Dest Fault (%)\",\"Divert Fail (%)\",\"Lost (%)\",\"Unsafe (%)\",\"Dim Error (%)\",\"Gap Error (%)\",\"Unknown (%)\"]\n\t\t\t\t\tfor result in results:\n\t\t\t\t\t\tdata.append([result[\u0027Startstamp\u0027],result[\u0027Endtstamp\u0027],result[\u0027SorterName\u0027],result[\u0027Lane\u0027],result[\u0027total_perc\u0027],result[\u0027Diverted_perc\u0027],result[\u0027destfull_perc\u0027],result[\u0027destjam_perc\u0027],result[\u0027destdisabled_perc\u0027],result[\u0027destfault_perc\u0027],result[\u0027DivertFail_perc\u0027],result[\u0027lost_perc\u0027],result[\u0027unsafe_perc\u0027],result[\u0027dim_perc\u0027],result[\u0027gaperr_perc\u0027],result[\u0027unknown_perc\u0027]])\n\t\t\t\telif self.parent.getChild(\"Aggregation_Mode\").getChild(\"Dropdown_Aggregation_mode\").props.value \u003d\u003d \"Rate\":\n\t\t\t\t\theaders \u003d [\"Start Timestamp\", \"End Timestamp\", \"Sorter\",\"Lane\",\"Total (pph)\",\"Diverted (pph)\",\"Dest Full (pph)\",\"Dest Jam (pph)\",\"Dest Disabled (pph)\",\"Dest Fault (pph)\",\"Divert Fail (pph)\",\"Lost (pph)\",\"Unsafe (pph)\",\"Dim Error (pph)\",\"Gap Error (pph)\",\"Unknown (pph)\"]\n\t\t\t\t\tfor result in results:\n\t\t\t\t\t\tdata.append([result[\u0027Startstamp\u0027],result[\u0027Endtstamp\u0027],result[\u0027SorterName\u0027],result[\u0027Lane\u0027],result[\u0027total_rate\u0027],result[\u0027Diverted_rate\u0027],result[\u0027destfull_rate\u0027],result[\u0027destjam_rate\u0027],result[\u0027destdisabled_rate\u0027],result[\u0027destfault_rate\u0027],result[\u0027DivertFail_rate\u0027],result[\u0027lost_rate\u0027],result[\u0027unsafe_rate\u0027],result[\u0027dim_rate\u0027],result[\u0027gaperr_rate\u0027],result[\u0027unknown_rate\u0027]])\n\t\t\t\n\t\t\telse:\n\t\t\t\ttest_table \u003d system.dataset.toPyDataSet(self.parent.getChild(\"Statistics\").getChild(\"Lane Details\").getChild(\"Lane Details\").props.data)\n\t\t\t\n\t\t\t\tif self.parent.getChild(\"Aggregation_Mode\").getChild(\"Dropdown_Aggregation_mode\").props.value \u003d\u003d \"Count\":\n\t\t\t\t\theaders \u003d [\"Start Timestamp\", \"End Timestamp\", \"Sorter\",\"Lane\",\"Total (#)\",\"Diverted (#)\",\"Dest Full (#)\",\"Dest Jam (#)\",\"Dest Disabled (#)\",\"Dest Fault (#)\",\"Divert Fail (#)\",\"Lost (#)\",\"Unsafe (#)\",\"Dim Error (#)\",\"Gap Error (#)\",\"Unknown (#)\"]\n\t\t\t\t\tfor result in test_table:\n\t\t\t\t\t\tdata.append([result[\u0027Startstamp\u0027],result[\u0027Endtstamp\u0027],result[\u0027SorterName\u0027],result[\u0027Lane\u0027],result[\u0027Total_count\u0027],result[\u0027Diverted_count\u0027],result[\u0027Destfull_count\u0027],result[\u0027DestJam_count\u0027],result[\u0027DestDis_count\u0027],result[\u0027DestFault_count\u0027],result[\u0027DivertFail_count\u0027],result[\u0027Lost_count\u0027],result[\u0027Unsafe_count\u0027],result[\u0027Dim_count\u0027],result[\u0027GapErr_count\u0027],result[\u0027Unknown_count\u0027]])\n\t\t\t\telif self.parent.getChild(\"Aggregation_Mode\").getChild(\"Dropdown_Aggregation_mode\").props.value \u003d\u003d \"Percentage\":\n\t\t\t\t\theaders \u003d [\"Start Timestamp\", \"End Timestamp\", \"Sorter\",\"Lane\",\"Total (%)\",\"Diverted (%)\",\"Dest Full (%)\",\"Dest Jam (%)\",\"Dest Disabled (%)\",\"Dest Fault (%)\",\"Divert Fail (%)\",\"Lost (%)\",\"Unsafe (%)\",\"Dim Error (%)\",\"Gap Error (%)\",\"Unknown (%)\"]\n\t\t\t\t\tfor result in test_table:\n\t\t\t\t\t\tdata.append([result[\u0027Startstamp\u0027],result[\u0027Endtstamp\u0027],result[\u0027SorterName\u0027],result[\u0027Lane\u0027],result[\u0027total_perc\u0027],result[\u0027Diverted_perc\u0027],result[\u0027destfull_perc\u0027],result[\u0027destjam_perc\u0027],result[\u0027destdisabled_perc\u0027],result[\u0027destfault_perc\u0027],result[\u0027DivertFail_perc\u0027],result[\u0027lost_perc\u0027],result[\u0027unsafe_perc\u0027],result[\u0027dim_perc\u0027],result[\u0027gaperr_perc\u0027],result[\u0027unknown_perc\u0027]])\n\t\t\t\telif self.parent.getChild(\"Aggregation_Mode\").getChild(\"Dropdown_Aggregation_mode\").props.value \u003d\u003d \"Rate\":\n\t\t\t\t\theaders \u003d [\"Start Timestamp\", \"End Timestamp\", \"Sorter\",\"Lane\",\"Total (pph)\",\"Diverted (pph)\",\"Dest Full (pph)\",\"Dest Jam (pph)\",\"Dest Disabled (pph)\",\"Dest Fault (pph)\",\"Divert Fail (pph)\",\"Lost (pph)\",\"Unsafe (pph)\",\"Dim Error (pph)\",\"Gap Error (pph)\",\"Unknown (pph)\"]\n\t\t\t\t\tfor result in test_table:\n\t\t\t\t\t\tdata.append([result[\u0027Startstamp\u0027],result[\u0027Endtstamp\u0027],result[\u0027SorterName\u0027],result[\u0027Lane\u0027],result[\u0027total_rate\u0027],result[\u0027Diverted_rate\u0027],result[\u0027destfull_rate\u0027],result[\u0027destjam_rate\u0027],result[\u0027destdisabled_rate\u0027],result[\u0027destfault_rate\u0027],result[\u0027DivertFail_rate\u0027],result[\u0027lost_rate\u0027],result[\u0027unsafe_rate\u0027],result[\u0027dim_rate\u0027],result[\u0027gaperr_rate\u0027],result[\u0027unknown_rate\u0027]])\n\t\t\t\t\n\t\t\ttable \u003d system.dataset.toDataSet(headers, data)\t\n\t\t\tcsv \u003d system.dataset.toCSV(table,1,0,1)\n\t\t\tsystem.perspective.download(filename \u003d str_date+\u0027 Lane Details.csv\u0027, data \u003d csv)\n\n\t\n\telif self.getSibling(\"Statistics\").props.currentTabIndex \u003d\u003d 5:\n\t\t\tresults \u003d self.parent.getChild(\"Statistics\").getChild(\"Hourly_Induct\").getChild(\"Hourly_Induct\").props.filter.results.data\n\t\t\tif(len(results) \u003e 0):\n\t\t\t\tif self.parent.getChild(\"Aggregation_Mode\").getChild(\"Dropdown_Aggregation_mode\").props.value \u003d\u003d \"Count\":\n\t\t\t\t\theaders \u003d [\"Start Timestamp\", \"Hour\", \"Total (#)\",\"Single Carrier (#)\",\"Double Carrier (#)\"]\n\t\t\t\t\tfor result in results:\n\t\t\t\t\t\tdata.append([result[\u0027Start Timestamp\u0027],result[\u0027Hour\u0027],result[\u0027Total (#)\u0027],result[\u0027Single Carrier (#)\u0027],result[\u0027Double Carrier (#)\u0027]])\n\t\t\t\telif self.parent.getChild(\"Aggregation_Mode\").getChild(\"Dropdown_Aggregation_mode\").props.value \u003d\u003d \"Percentage\":\n\t\t\t\t\theaders \u003d [\"Start Timestamp\",\"Hour\",\"Total (%)\",\"Single Carrier (%)\",\"Double Carrier (%)\"]\n\t\t\t\t\tfor result in results:\n\t\t\t\t\t\tdata.append([result[\u0027Start Timestamp\u0027],result[\u0027Hour\u0027],result[\u0027Total (%\u0027],result[\u0027Single Carrier (%)\u0027],result[\u0027Double Carrier (%)\u0027]])\n\t\t\t\telif self.parent.getChild(\"Aggregation_Mode\").getChild(\"Dropdown_Aggregation_mode\").props.value \u003d\u003d \"Rate\":\n\t\t\t\t\theaders \u003d [\"Start Timestamp\", \"Hour\", \"Total (pph)\",\"Single Carrier (pph)\",\"Double Carrier (pph)\"]\n\t\t\t\t\tfor result in results:\n\t\t\t\t\t\tdata.append([result[\u0027Start Timestamp\u0027],result[\u0027Hour\u0027],result[\u0027Total (pph)\u0027],result[\u0027Single Carrier (pph)\u0027],result[\u0027Double Carrier (pph)\u0027]])\n\t\t\t\n\t\t\telse:\n\t\t\t\ttest_table \u003d system.dataset.toPyDataSet(self.parent.getChild(\"Statistics\").getChild(\"Hourly_Induct\").getChild(\"Hourly_Induct\").props.data)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\tif self.parent.getChild(\"Aggregation_Mode\").getChild(\"Dropdown_Aggregation_mode\").props.value \u003d\u003d \"Count\":\n\t\t\t\t\theaders \u003d [\"Start Timestamp\", \"Hour\", \"Total (#)\",\"Single Carrier (#)\",\"Double Carrier (#)\"]\n\t\t\t\t\tfor result in test_table:\n\t\t\t\t\t\tdata.append([result[\u0027Start Timestamp\u0027],result[\u0027Hour\u0027],result[\u0027Total (#)\u0027],result[\u0027Single Carrier (#)\u0027],result[\u0027Double Carrier (#)\u0027]])\n\t\t\t\telif self.parent.getChild(\"Aggregation_Mode\").getChild(\"Dropdown_Aggregation_mode\").props.value \u003d\u003d \"Percentage\":\n\t\t\t\t\theaders \u003d [\"Start Timestamp\",\"Hour\",\"Total (%)\",\"Single Carrier (%)\",\"Double Carrier (%)\"]\n\t\t\t\t\tfor result in test_table:\n\t\t\t\t\t\tdata.append([result[\u0027Start Timestamp\u0027],result[\u0027Hour\u0027],result[\u0027Total (%)\u0027],result[\u0027Single Carrier (%)\u0027],result[\u0027Double Carrier (%)\u0027]])\n\t\t\t\telif self.parent.getChild(\"Aggregation_Mode\").getChild(\"Dropdown_Aggregation_mode\").props.value \u003d\u003d \"Rate\":\n\t\t\t\t\theaders \u003d [\"Start Timestamp\", \"Hour\", \"Total (pph)\",\"Single Carrier (pph)\",\"Double Carrier (pph)\"]\n\t\t\t\t\tfor result in test_table:\n\t\t\t\t\t\tdata.append([result[\u0027Start Timestamp\u0027],result[\u0027Hour\u0027],result[\u0027Total (pph)\u0027],result[\u0027Single Carrier (pph)\u0027],result[\u0027Double Carrier (pph)\u0027]])\n\t\t\t\n\t\t\ttable \u003d system.dataset.toDataSet(headers, data)\t\n\t\t\tcsv \u003d system.dataset.toCSV(table,1,0,1)\n\t\t\tsystem.perspective.download(filename \u003d str_date+\u0027 Hourly Induct.csv\u0027, data \u003d csv)\n\t\n\t\n\telif self.getSibling(\"Statistics\").props.currentTabIndex \u003d\u003d 6:\n\t\t\tresults \u003d self.parent.getChild(\"Statistics\").getChild(\"Hourly_Scanner\").getChild(\"Hourly_Scanner\").props.filter.results.data\n\t\t\tif(len(results) \u003e 0):\n\t\t\t\tif self.parent.getChild(\"Aggregation_Mode\").getChild(\"Dropdown_Aggregation_mode\").props.value \u003d\u003d \"Count\":\n\t\t\t\t\theaders \u003d [\"Start Timestamp\", \"Hour\", \"Total (#)\",\"Good Read (#)\",\"No Read (#)\",\"Multi Read (#)\",\"No code (#)\"]\n\t\t\t\t\tfor result in results:\n\t\t\t\t\t\tdata.append([result[\u0027Start Timestamp\u0027],result[\u0027Hour\u0027],result[\u0027Total (#)\u0027],result[\u0027Good Read (#)\u0027],result[\u0027No Read (#)\u0027],result[\u0027Multi Read (#)\u0027],result[\u0027No code (#)\u0027]])\n\t\t\t\telif self.parent.getChild(\"Aggregation_Mode\").getChild(\"Dropdown_Aggregation_mode\").props.value \u003d\u003d \"Percentage\":\n\t\t\t\t\theaders \u003d [\"Start Timestamp\", \"Hour\", \"Total (%)\",\"Good Read (%)\",\"No Read (%)\",\"Multi Read (%)\",\"No Code (%)\"]\n\t\t\t\t\tfor result in results:\n\t\t\t\t\t\tdata.append([result[\u0027Start Timestamp\u0027],result[\u0027Hour\u0027],result[\u0027Total (%)\u0027],result[\u0027Good Read (%)\u0027],result[\u0027No Read (%)\u0027],result[\u0027Multi Read (%)\u0027],result[\u0027No Code (%)\u0027]])\n\t\t\t\telif self.parent.getChild(\"Aggregation_Mode\").getChild(\"Dropdown_Aggregation_mode\").props.value \u003d\u003d \"Rate\":\n\t\t\t\t\theaders \u003d [\"Start Timestamp\",\"Hour\",\"Total (pph)\",\"Good Read (pph)\",\"No Read (pph)\",\"Multi Read (pph)\",\"No Code (pph)\"]\n\t\t\t\t\tfor result in results:\n\t\t\t\t\t\tdata.append([result[\u0027Start Timestamp\u0027],result[\u0027Hour\u0027],result[\u0027Total (pph)\u0027],result[\u0027Good Read (pph)\u0027],result[\u0027No Read (pph)\u0027],result[\u0027Multi Read (pph)\u0027],result[\u0027No Code (pph)\u0027]])\n\t\t\t\n\t\t\telse:\n\t\t\t\ttest_table \u003d system.dataset.toPyDataSet(self.parent.getChild(\"Statistics\").getChild(\"Hourly_Scanner\").getChild(\"Hourly_Scanner\").props.data)\n\t\t\t\n\t\t\t\tif self.parent.getChild(\"Aggregation_Mode\").getChild(\"Dropdown_Aggregation_mode\").props.value \u003d\u003d \"Count\":\n\t\t\t\t\theaders \u003d [\"Start Timestamp\", \"Hour\", \"Total (#)\",\"Good Read (#)\",\"No Read (#)\",\"Multi Read (#)\",\"No code (#)\"]\n\t\t\t\t\tfor result in test_table:\n\t\t\t\t\t\tdata.append([result[\u0027Start Timestamp\u0027],result[\u0027Hour\u0027],result[\u0027Total (#)\u0027],result[\u0027Good Read (#)\u0027],result[\u0027No Read (#)\u0027],result[\u0027Multi Read (#)\u0027],result[\u0027No code (#)\u0027]])\n\t\t\t\telif self.parent.getChild(\"Aggregation_Mode\").getChild(\"Dropdown_Aggregation_mode\").props.value \u003d\u003d \"Percentage\":\n\t\t\t\t\theaders \u003d [\"Start Timestamp\", \"Hour\", \"Total (%)\",\"Good Read (%)\",\"No Read (%)\",\"Multi Read (%)\",\"No Code (%)\"]\n\t\t\t\t\tfor result in test_table:\n\t\t\t\t\t\tdata.append([result[\u0027Start Timestamp\u0027],result[\u0027Hour\u0027],result[\u0027Total (%)\u0027],result[\u0027Good Read (%)\u0027],result[\u0027No Read (%)\u0027],result[\u0027Multi Read (%)\u0027],result[\u0027No Code (%)\u0027]])\n\t\t\t\telif self.parent.getChild(\"Aggregation_Mode\").getChild(\"Dropdown_Aggregation_mode\").props.value \u003d\u003d \"Rate\":\n\t\t\t\t\theaders \u003d [\"Start Timestamp\",\"Hour\",\"Total (pph)\",\"Good Read (pph)\",\"No Read (pph)\",\"Multi Read (pph)\",\"No Code (pph)\"]\n\t\t\t\t\tfor result in test_table:\n\t\t\t\t\t\tdata.append([result[\u0027Start Timestamp\u0027],result[\u0027Hour\u0027],result[\u0027Total (pph)\u0027],result[\u0027Good Read (pph)\u0027],result[\u0027No Read (pph)\u0027],result[\u0027Multi Read (pph)\u0027],result[\u0027No Code (pph)\u0027]])\n\t\t\t\t\n\t\t\ttable \u003d system.dataset.toDataSet(headers, data)\t\n\t\t\tcsv \u003d system.dataset.toCSV(table,1,0,1)\n\t\t\tsystem.perspective.download(filename \u003d str_date+\u0027 Hourly Scanner.csv\u0027, data \u003d csv)\n\t\t\t\n\t\t\t\n\telif self.getSibling(\"Statistics\").props.currentTabIndex \u003d\u003d 7:\n\t\t\tresults \u003d self.parent.getChild(\"Statistics\").getChild(\"Hourly_Sorter_Summary\").getChild(\"Hourly_Sorter_Summary\").props.filter.results.data\n\t\t\tif(len(results) \u003e 0):\n\t\t\t\tif self.parent.getChild(\"Aggregation_Mode\").getChild(\"Dropdown_Aggregation_mode\").props.value \u003d\u003d \"Count\":\n\t\t\t\t\theaders \u003d [\"Start Timestamp\", \"Hour\",\"Inducted (#)\",\"Sorted (#)\",\"Awcs Recirc (#)\",\"Operational Recirc (#)\",\"Machine Recirc (#)\"]\n\t\t\t\t\tfor result in results:\n\t\t\t\t\t\tdata.append([result[\u0027Start Timestamp\u0027],result[\u0027Hour\u0027],result[\u0027Inducted (#)\u0027],result[\u0027Sorted (#)\u0027],result[\u0027Awcs Recirc (#)\u0027],result[\u0027Operational Recirc (#)\u0027],result[\u0027Machine Recirc (#)\u0027]])\n\t\t\t\telif self.parent.getChild(\"Aggregation_Mode\").getChild(\"Dropdown_Aggregation_mode\").props.value \u003d\u003d \"Percentage\":\n\t\t\t\t\theaders \u003d [\"Start Timestamp\", \"Hour\",\"Inducted (%)\",\"Sorted (%)\",\"Awcs Recirc (%)\",\"Operational Recirc (%)\",\"Machine Recirc (%)\"]\n\t\t\t\t\tfor result in results:\n\t\t\t\t\t\tdata.append([result[\u0027Start Timestamp\u0027],result[\u0027Hour\u0027],result[\u0027Inducted (%)\u0027],result[\u0027Sorted (%)\u0027],result[\u0027Awcs Recirc (%)\u0027],result[\u0027Operational Recirc (%)\u0027],result[\u0027Machine Recirc (%)\u0027]])\n\t\t\t\telif self.parent.getChild(\"Aggregation_Mode\").getChild(\"Dropdown_Aggregation_mode\").props.value \u003d\u003d \"Rate\":\n\t\t\t\t\theaders \u003d [\"Start Timestamp\", \"Hour\",\"Inducted (pph)\",\"Sorted (pph)\",\"Awcs Recirc (pph)\",\"Operational Recirc (pph)\",\"Machine Recirc (pph)\"]\n\t\t\t\t\tfor result in results:\n\t\t\t\t\t\tdata.append([result[\u0027Start Timestamp\u0027],result[\u0027Hour\u0027],result[\u0027Inducted (pph)\u0027],result[\u0027Sorted (pph)\u0027],result[\u0027Awcs Recirc (pph)\u0027],result[\u0027Operational Recirc (pph)\u0027],result[\u0027Machine Recirc (pph)\u0027]])\n\t\t\n\t\t\telse:\n\t\t\t\ttest_table \u003d system.dataset.toPyDataSet(self.parent.getChild(\"Statistics\").getChild(\"Hourly_Sorter_Summary\").getChild(\"Hourly_Sorter_Summary\").props.data)\n\t\t\t\n\t\t\t\tif self.parent.getChild(\"Aggregation_Mode\").getChild(\"Dropdown_Aggregation_mode\").props.value \u003d\u003d \"Count\":\n\t\t\t\t\theaders \u003d [\"Start Timestamp\", \"Hour\",\"Inducted (#)\",\"Sorted (#)\",\"Awcs Recirc (#)\",\"Operational Recirc (#)\",\"Machine Recirc (#)\"]\n\t\t\t\t\tfor result in test_table:\n\t\t\t\t\t\tdata.append([result[\u0027Start Timestamp\u0027],result[\u0027Hour\u0027],result[\u0027Inducted (#)\u0027],result[\u0027Sorted (#)\u0027],result[\u0027Awcs Recirc (#)\u0027],result[\u0027Operational Recirc (#)\u0027],result[\u0027Machine Recirc (#)\u0027]])\n\t\t\t\telif self.parent.getChild(\"Aggregation_Mode\").getChild(\"Dropdown_Aggregation_mode\").props.value \u003d\u003d \"Percentage\":\n\t\t\t\t\theaders \u003d [\"Start Timestamp\", \"Hour\",\"Inducted (%)\",\"Sorted (%)\",\"Awcs Recirc (%)\",\"Operational Recirc (%)\",\"Machine Recirc (%)\"]\n\t\t\t\t\tfor result in test_table:\n\t\t\t\t\t\tdata.append([result[\u0027Start Timestamp\u0027],result[\u0027Hour\u0027],result[\u0027Inducted (%)\u0027],result[\u0027Sorted (%)\u0027],result[\u0027Awcs Recirc (%)\u0027],result[\u0027Operational Recirc (%)\u0027],result[\u0027Machine Recirc (%)\u0027]])\n\t\t\t\telif self.parent.getChild(\"Aggregation_Mode\").getChild(\"Dropdown_Aggregation_mode\").props.value \u003d\u003d \"Rate\":\n\t\t\t\t\theaders \u003d [\"Start Timestamp\", \"Hour\",\"Inducted (pph)\",\"Sorted (pph)\",\"Awcs Recirc (pph)\",\"Operational Recirc (pph)\",\"Machine Recirc (pph)\"]\n\t\t\t\t\tfor result in test_table:\n\t\t\t\t\t\tdata.append([result[\u0027Start Timestamp\u0027],result[\u0027Hour\u0027],result[\u0027Inducted (pph)\u0027],result[\u0027Sorted (pph)\u0027],result[\u0027Awcs Recirc (pph)\u0027],result[\u0027Operational Recirc (pph)\u0027],result[\u0027Machine Recirc (pph)\u0027]])\n\t\t\t\t\n\t\t\ttable \u003d system.dataset.toDataSet(headers, data)\t\n\t\t\tcsv \u003d system.dataset.toCSV(table,1,0,1)\n\t\t\tsystem.perspective.download(filename \u003d str_date+\u0027 Hourly Sorter Summary.csv\u0027, data \u003d csv)\n\t\n\t\t\n\telif self.getSibling(\"Statistics\").props.currentTabIndex \u003d\u003d 8:\n\t\tresults \u003d self.parent.getChild(\"Statistics\").getChild(\"Hourly_Sorter_Details\").getChild(\"Hourly_Sorter_Details\").props.filter.results.data\n\t\tif(len(results) \u003e 0):\n\t\t\tif self.parent.getChild(\"Aggregation_Mode\").getChild(\"Dropdown_Aggregation_mode\").props.value \u003d\u003d \"Count\":\n\t\t\t\theaders \u003d [\"Start Timestamp\", \"Hour\",\"Inducted (#)\",\"Sorted (#)\",\"Dest Inv (#)\",\"Dest None (#)\",\"Dest Dis (#)\",\"Dest Full (#)\",\"Unexpected (#)\",\"Dest Fault (#)\",\"Div Fail (#)\",\"Gap Err (#)\",\"Lost (#)\",\"Track Err (#)\",\"Unknown (#)\",\"Unsafe (#)\"]\n\t\t\t\tfor result in results:\n\t\t\t\t\tdata.append([result[\u0027Start Timestamp\u0027],result[\u0027Hour\u0027],result[\u0027Inducted (#)\u0027],result[\u0027Sorted (#)\u0027],result[\u0027Dest Inv (#)\u0027],result[\u0027Dest None (#)\u0027],result[\u0027Dest Dis (#)\u0027],result[\u0027Dest Full (#)\u0027],result[\u0027Unexpected (#)\u0027],result[\u0027Dest Fault (#)\u0027],result[\u0027Div Fail (#)\u0027],result[\u0027Gap Err (#)\u0027],result[\u0027Lost (#)\u0027],result[\u0027Track Err (#)\u0027],result[\u0027Unknown (#)\u0027],result[\u0027Unsafe (#)\u0027]])\n\t\t\telif self.parent.getChild(\"Aggregation_Mode\").getChild(\"Dropdown_Aggregation_mode\").props.value \u003d\u003d \"Percentage\":\n\t\t\t\theaders \u003d [\"Start Timestamp\", \"Hour\",\"Inducted (%)\",\"Sorted (%)\",\"Dest Inv (%)\",\"Dest None (%)\",\"Dest Dis (%)\",\"Dest Full (%)\",\"Unexpected (%)\",\"Dest Fault (%)\",\"Div Fail (%)\",\"Gap Err (%)\",\"Lost (%)\",\"Track Err (%)\",\"Unknown (%)\",\"Unsafe (%)\"]\n\t\t\t\tfor result in results:\n\t\t\t\t\tdata.append([result[\u0027Start Timestamp\u0027],result[\u0027Hour\u0027],result[\u0027Inducted (%)\u0027],result[\u0027Sorted (%)\u0027],result[\u0027Dest Inv (%)\u0027],result[\u0027Dest None (%)\u0027],result[\u0027Dest Dis (%)\u0027],result[\u0027Dest Full (%)\u0027],result[\u0027Unexpected (%)\u0027],result[\u0027Dest Fault (%)\u0027],result[\u0027Div Fail (%)\u0027],result[\u0027Gap Err (%)\u0027],result[\u0027Lost (%)\u0027],result[\u0027Track Err (%)\u0027],result[\u0027Unknown (%)\u0027],result[\u0027Unsafe (%)\u0027]])\n\t\t\telif self.parent.getChild(\"Aggregation_Mode\").getChild(\"Dropdown_Aggregation_mode\").props.value \u003d\u003d \"Rate\":\n\t\t\t\theaders \u003d [\"Start Timestamp\", \"Hour\",\"Inducted (pph)\",\"Sorted (pph)\",\"Dest Inv (pph)\",\"Dest None (pph)\",\"Dest Dis (pph)\",\"Dest Full (pph)\",\"Unexpected (pph)\",\"Dest Fault (pph)\",\"Div Fail (pph)\",\"Gap Err (pph)\",\"Lost (pph)\",\"Track Err (pph)\",\"Unknown (pph)\",\"Unsafe (pph)\"]\n\t\t\t\tfor result in results:\n\t\t\t\t\tdata.append([result[\u0027Start Timestamp\u0027],result[\u0027Hour\u0027],result[\u0027Inducted (pph)\u0027],result[\u0027Sorted (pph)\u0027],result[\u0027Dest Inv (pph)\u0027],result[\u0027Dest None (pph)\u0027],result[\u0027Dest Dis (pph)\u0027],result[\u0027Dest Full (pph)\u0027],result[\u0027Unexpected (pph)\u0027],result[\u0027Dest Fault (pph)\u0027],result[\u0027Div Fail (pph)\u0027],result[\u0027Gap Err (pph)\u0027],result[\u0027Lost (pph)\u0027],result[\u0027Track Err (pph)\u0027],result[\u0027Unknown (pph)\u0027],result[\u0027Unsafe (pph)\u0027]])\n\t\t\n\t\telse:\n\t\t\ttest_table \u003d system.dataset.toPyDataSet(self.parent.getChild(\"Statistics\").getChild(\"Hourly_Sorter_Details\").getChild(\"Hourly_Sorter_Details\").props.data)\n\t\t\n\t\t\tif self.parent.getChild(\"Aggregation_Mode\").getChild(\"Dropdown_Aggregation_mode\").props.value \u003d\u003d \"Count\":\n\t\t\t\theaders \u003d [\"Start Timestamp\", \"Hour\",\"Inducted (#)\",\"Sorted (#)\",\"Dest Inv (#)\",\"Dest None (#)\",\"Dest Dis (#)\",\"Dest Full (#)\",\"Unexpected (#)\",\"Dest Fault (#)\",\"Div Fail (#)\",\"Gap Err (#)\",\"Lost (#)\",\"Track Err (#)\",\"Unknown (#)\",\"Unsafe (#)\"]\n\t\t\t\tfor result in test_table:\n\t\t\t\t\tdata.append([result[\u0027Start Timestamp\u0027],result[\u0027Hour\u0027],result[\u0027Inducted (#)\u0027],result[\u0027Sorted (#)\u0027],result[\u0027Dest Inv (#)\u0027],result[\u0027Dest None (#)\u0027],result[\u0027Dest Dis (#)\u0027],result[\u0027Dest Full (#)\u0027],result[\u0027Unexpected (#)\u0027],result[\u0027Dest Fault (#)\u0027],result[\u0027Div Fail (#)\u0027],result[\u0027Gap Err (#)\u0027],result[\u0027Lost (#)\u0027],result[\u0027Track Err (#)\u0027],result[\u0027Unknown (#)\u0027],result[\u0027Unsafe (#)\u0027]])\n\t\t\telif self.parent.getChild(\"Aggregation_Mode\").getChild(\"Dropdown_Aggregation_mode\").props.value \u003d\u003d \"Percentage\":\n\t\t\t\theaders \u003d [\"Start Timestamp\", \"Hour\",\"Inducted (%)\",\"Sorted (%)\",\"Dest Inv (%)\",\"Dest None (%)\",\"Dest Dis (%)\",\"Dest Full (%)\",\"Unexpected (%)\",\"Dest Fault (%)\",\"Div Fail (%)\",\"Gap Err (%)\",\"Lost (%)\",\"Track Err (%)\",\"Unknown (%)\",\"Unsafe (%)\"]\n\t\t\t\tfor result in test_table:\n\t\t\t\t\tdata.append([result[\u0027Start Timestamp\u0027],result[\u0027Hour\u0027],result[\u0027Inducted (%)\u0027],result[\u0027Sorted (%)\u0027],result[\u0027Dest Inv (%)\u0027],result[\u0027Dest None (%)\u0027],result[\u0027Dest Dis (%)\u0027],result[\u0027Dest Full (%)\u0027],result[\u0027Unexpected (%)\u0027],result[\u0027Dest Fault (%)\u0027],result[\u0027Div Fail (%)\u0027],result[\u0027Gap Err (%)\u0027],result[\u0027Lost (%)\u0027],result[\u0027Track Err (%)\u0027],result[\u0027Unknown (%)\u0027],result[\u0027Unsafe (%)\u0027]])\n\t\t\telif self.parent.getChild(\"Aggregation_Mode\").getChild(\"Dropdown_Aggregation_mode\").props.value \u003d\u003d \"Rate\":\n\t\t\t\theaders \u003d [\"Start Timestamp\", \"Hour\",\"Inducted (pph)\",\"Sorted (pph)\",\"Dest Inv (pph)\",\"Dest None (pph)\",\"Dest Dis (pph)\",\"Dest Full (pph)\",\"Unexpected (pph)\",\"Dest Fault (pph)\",\"Div Fail (pph)\",\"Gap Err (pph)\",\"Lost (pph)\",\"Track Err (pph)\",\"Unknown (pph)\",\"Unsafe (pph)\"]\n\t\t\t\tfor result in test_table:\n\t\t\t\t\tdata.append([result[\u0027Start Timestamp\u0027],result[\u0027Hour\u0027],result[\u0027Inducted (pph)\u0027],result[\u0027Sorted (pph)\u0027],result[\u0027Dest Inv (pph)\u0027],result[\u0027Dest None (pph)\u0027],result[\u0027Dest Dis (pph)\u0027],result[\u0027Dest Full (pph)\u0027],result[\u0027Unexpected (pph)\u0027],result[\u0027Dest Fault (pph)\u0027],result[\u0027Div Fail (pph)\u0027],result[\u0027Gap Err (pph)\u0027],result[\u0027Lost (pph)\u0027],result[\u0027Track Err (pph)\u0027],result[\u0027Unknown (pph)\u0027],result[\u0027Unsafe (pph)\u0027]])\n\t\t\t\n\t\ttable \u003d system.dataset.toDataSet(headers, data)\t\n\t\tcsv \u003d system.dataset.toCSV(table,1,0,1)\n\t\tsystem.perspective.download(filename \u003d str_date+\u0027 Hourly Sorter Details.csv\u0027, data \u003d csv)\n\t\t\n\t\n\telif self.getSibling(\"Statistics\").props.currentTabIndex \u003d\u003d 9:\n\t\tresults \u003d self.parent.getChild(\"Statistics\").getChild(\"Hourly_Lane\").getChild(\"Hourly_Lane\").props.filter.results.data\n\t\tif(len(results) \u003e 0):\n\t\t\tif self.parent.getChild(\"Aggregation_Mode\").getChild(\"Dropdown_Aggregation_mode\").props.value \u003d\u003d \"Count\":\n\t\t\t\theaders \u003d [\"Start Timestamp\", \"Hour\",\"Total (#)\",\"Diverted (#)\",\"Dest Full (#)\",\"Dest Jam (#)\",\"Dest Disabled (#)\",\"Dest Fault (#)\",\"Divert Fail (#)\",\"Lost (#)\",\"Unsafe (#)\",\"Dim Error (#)\",\"Gap Error (#)\",\"Unknown (#)\"]\n\t\t\t\tfor result in results:\n\t\t\t\t\tdata.append([result[\u0027endt\u0027],result[\u0027rownumber\u0027],result[\u0027Total_count\u0027],result[\u0027Diverted_count\u0027],result[\u0027Destfull_count\u0027],result[\u0027DestJam_count\u0027],result[\u0027DestDis_count\u0027],result[\u0027DestFault_count\u0027],result[\u0027DivertFail_count\u0027],result[\u0027Lost_count\u0027],result[\u0027Unsafe_count\u0027],result[\u0027Dim_count\u0027],result[\u0027GapErr_count\u0027],result[\u0027Unknown_count\u0027]])\n\t\t\telif self.parent.getChild(\"Aggregation_Mode\").getChild(\"Dropdown_Aggregation_mode\").props.value \u003d\u003d \"Percentage\":\n\t\t\t\theaders \u003d [\"Start Timestamp\", \"Hour\",\"Total (%)\",\"Diverted (%)\",\"Dest Full (%)\",\"Dest Jam (%)\",\"Dest Disabled (%)\",\"Dest Fault (%)\",\"Divert Fail (%)\",\"Lost (%)\",\"Unsafe (%)\",\"Dim Error (%)\",\"Gap Error (%)\",\"Unknown (%)\"]\n\t\t\t\tfor result in results:\n\t\t\t\t\tdata.append([result[\u0027endt\u0027],result[\u0027rownumber\u0027],result[\u0027total_perc\u0027],result[\u0027Diverted_perc\u0027],result[\u0027destfull_perc\u0027],result[\u0027destjam_perc\u0027],result[\u0027destdisabled_perc\u0027],result[\u0027destfault_perc\u0027],result[\u0027DivertFail_perc\u0027],result[\u0027lost_perc\u0027],result[\u0027unsafe_perc\u0027],result[\u0027dim_perc\u0027],result[\u0027gaperr_perc\u0027],result[\u0027unknown_perc\u0027]])\n\t\t\telif self.parent.getChild(\"Aggregation_Mode\").getChild(\"Dropdown_Aggregation_mode\").props.value \u003d\u003d \"Rate\":\n\t\t\t\theaders \u003d [\"Start Timestamp\", \"Hour\",\"Total (pph)\",\"Diverted (pph)\",\"Dest Full (pph)\",\"Dest Jam (pph)\",\"Dest Disabled (pph)\",\"Dest Fault (pph)\",\"Divert Fail (pph)\",\"Lost (pph)\",\"Unsafe (pph)\",\"Dim Error (pph)\",\"Gap Error (pph)\",\"Unknown (pph)\"]\n\t\t\t\tfor result in results:\n\t\t\t\t\tdata.append([result[\u0027endt\u0027],result[\u0027rownumber\u0027],result[\u0027total_rate\u0027],result[\u0027Diverted_rate\u0027],result[\u0027destfull_rate\u0027],result[\u0027destjam_rate\u0027],result[\u0027destdisabled_rate\u0027],result[\u0027destfault_rate\u0027],result[\u0027DivertFail_rate\u0027],result[\u0027lost_rate\u0027],result[\u0027unsafe_rate\u0027],result[\u0027dim_rate\u0027],result[\u0027gaperr_rate\u0027],result[\u0027unknown_rate\u0027]])\n\t\t\t\n\t\telse:\n\t\t\ttest_table \u003d system.dataset.toPyDataSet(self.parent.getChild(\"Statistics\").getChild(\"Hourly_Lane\").getChild(\"Hourly_Lane\").props.data)\n\t\t\t\n\t\t\tif self.parent.getChild(\"Aggregation_Mode\").getChild(\"Dropdown_Aggregation_mode\").props.value \u003d\u003d \"Count\":\n\t\t\t\theaders \u003d [\"Start Timestamp\",\"Hour\",\"Total (#)\",\"Diverted (#)\",\"Dest Full (#)\",\"Dest Jam (#)\",\"Dest Disabled (#)\",\"Dest Fault (#)\",\"Divert Fail (#)\",\"Lost (#)\",\"Unsafe (#)\",\"Dim Err (#)\",\"Gap Error (#)\",\"Unknown (#)\"]\n\t\t\t\tfor result in test_table:\n\t\t\t\t\tdata.append([result[\u0027Start Timestamp\u0027],result[\u0027Hour\u0027],result[\u0027Total (#)\u0027],result[\u0027Diverted (#)\u0027],result[\u0027Dest Full (#)\u0027],result[\u0027Dest Jam (#)\u0027],result[\u0027Dest Disabled (#)\u0027],result[\u0027Dest Fault (#)\u0027],result[\u0027Divert Fail (#)\u0027],result[\u0027Lost (#)\u0027],result[\u0027Unsafe (#)\u0027],result[\u0027Dim Err (#)\u0027],result[\u0027Gap Err (#)\u0027],result[\u0027Unknown (#)\u0027]])\n\t\t\telif self.parent.getChild(\"Aggregation_Mode\").getChild(\"Dropdown_Aggregation_mode\").props.value \u003d\u003d \"Percentage\":\n\t\t\t\theaders \u003d [\"Start Timestamp\", \"Hour\",\"Total (%)\",\"Diverted (%)\",\"Dest Full (%)\",\"Dest Jam (%)\",\"Dest Disabled (%)\",\"Dest Fault (%)\",\"Divert Fail (%)\",\"Lost (%)\",\"Unsafe (%)\",\"Dim Err (%)\",\"Gap Error (%)\",\"Unknown (%)\"]\n\t\t\t\tfor result in test_table:\n\t\t\t\t\tdata.append([result[\u0027Start Timestamp\u0027],result[\u0027Hour\u0027],result[\u0027Total (%)\u0027],result[\u0027Diverted (%)\u0027],result[\u0027Dest Full (%)\u0027],result[\u0027Dest Jam (%)\u0027],result[\u0027Dest Disabled (%)\u0027],result[\u0027Dest Fault (%)\u0027],result[\u0027Divert Fail (%)\u0027],result[\u0027Lost (%)\u0027],result[\u0027Unsafe (%)\u0027],result[\u0027Dim Err (%)\u0027],result[\u0027Gap Err (%)\u0027],result[\u0027Unknown (%)\u0027]])\n\t\t\telif self.parent.getChild(\"Aggregation_Mode\").getChild(\"Dropdown_Aggregation_mode\").props.value \u003d\u003d \"Rate\":\n\t\t\t\theaders \u003d [\"Start Timestamp\", \"Hour\",\"Total (pph)\",\"Diverted (pph)\",\"Dest Full (pph)\",\"Dest Jam (pph)\",\"Dest Disabled (pph)\",\"Dest Fault (pph)\",\"Divert Fail (pph)\",\"Lost (pph)\",\"Unsafe (pph)\",\"Dim Err (pph)\",\"Gap Error (pph)\",\"Unknown (pph)\"]\n\t\t\t\tfor result in test_table:\n\t\t\t\t\tdata.append([result[\u0027Start Timestamp\u0027],result[\u0027Hour\u0027],result[\u0027Total (pph)\u0027],result[\u0027Diverted (pph)\u0027],result[\u0027Dest Full (pph)\u0027],result[\u0027Dest Jam (pph)\u0027],result[\u0027Dest Disabled (pph)\u0027],result[\u0027Dest Fault (pph)\u0027],result[\u0027Divert Fail (pph)\u0027],result[\u0027Lost (pph)\u0027],result[\u0027Unsafe (pph)\u0027],result[\u0027Dim Err (pph)\u0027],result[\u0027Gap Err (pph)\u0027],result[\u0027Unknown (pph)\u0027]])\n\t\t\t\t\n\t\ttable \u003d system.dataset.toDataSet(headers, data)\t\n\t\tcsv \u003d system.dataset.toCSV(table,1,0,1)\n\t\tsystem.perspective.download(filename \u003d str_date+\u0027 Hourly Lane.csv\u0027, data \u003d csv)\n\t\t\t\n\t\t\t\n\telif self.getSibling(\"Statistics\").props.currentTabIndex \u003d\u003d 12:\n\t\t\tresults \u003d self.parent.getChild(\"Statistics\").getChild(\"Dumper cycles\").getChild(\"Dumper cycles\").props.filter.results.data\n\t\t\tif(len(results) \u003e 0):\n\t\t\t\tif self.parent.getChild(\"Aggregation_Mode\").getChild(\"Dropdown_Aggregation_mode\").props.value \u003d\u003d \"Count\":\n\t\t\t\t\theaders \u003d [\"Start Timestamp\",\"Hour\",\"Cycles of ULGL1\",\"Cycles of ULGL2\",\"Cycles of ULGL3\"]\n\t\t\t\t\tfor result in results:\n\t\t\t\t\t\tdata.append([result[\u0027Start Timestamp\u0027],result[\u0027Hour\u0027],result[\u0027Cycles of ULGL1\u0027],result[\u0027Cycles of ULGL2\u0027],result[\u0027Cycles of ULGL3\u0027]])\n\t\t\t\telif self.parent.getChild(\"Aggregation_Mode\").getChild(\"Dropdown_Aggregation_mode\").props.value \u003d\u003d \"Percentage\":\n\t\t\t\t\theaders \u003d [\"Start Timestamp\",\"Hour\",\"Cycles of ULGL1 (%)\",\"Cycles of ULGL2 (%)\",\"Cycles of ULGL3 (%)\"]\n\t\t\t\t\tfor result in results:\n\t\t\t\t\t\tdata.append([result[\u0027Start Timestamp\u0027],result[\u0027Hour\u0027],result[\u0027Cycles of ULGL1 (%)\u0027],result[\u0027Cycles of ULGL2 (%)\u0027],result[\u0027Cycles of ULGL3 (%)\u0027]])\n\t\t\t\telif self.parent.getChild(\"Aggregation_Mode\").getChild(\"Dropdown_Aggregation_mode\").props.value \u003d\u003d \"Rate\":\n\t\t\t\t\theaders \u003d [\"Start Timestamp\",\"Hour\",\"Cycles of ULGL1 (cph)\",\"Cycles of ULGL2 (cph)\",\"Cycles of ULGL3 (cph)\"]\n\t\t\t\t\tfor result in results:\n\t\t\t\t\t\tdata.append([result[\u0027Start Timestamp\u0027],result[\u0027Hour\u0027],result[\u0027Cycles of ULGL1 (cph)\u0027],result[\u0027Cycles of ULGL2 (cph)\u0027],result[\u0027Cycles of ULGL3 (cph)\u0027]])\n\t\t\t\t\t\n\t\t\telse:\n\t\t\t\ttest_table \u003d system.dataset.toPyDataSet(self.parent.getChild(\"Statistics\").getChild(\"Dumper cycles\").getChild(\"Dumper cycles\").props.data)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\tif self.parent.getChild(\"Aggregation_Mode\").getChild(\"Dropdown_Aggregation_mode\").props.value \u003d\u003d \"Count\":\n\t\t\t\t\theaders \u003d [\"Start Timestamp\",\"Hour\",\"Cycles of ULGL1\",\"Cycles of ULGL2\",\"Cycles of ULGL3\"]\n\t\t\t\t\tfor result in test_table:\n\t\t\t\t\t\tdata.append([result[\u0027Start Timestamp\u0027],result[\u0027Hour\u0027],result[\u0027Cycles of ULGL1\u0027],result[\u0027Cycles of ULGL2\u0027],result[\u0027Cycles of ULGL3\u0027]])\n\t\t\t\telif self.parent.getChild(\"Aggregation_Mode\").getChild(\"Dropdown_Aggregation_mode\").props.value \u003d\u003d \"Percentage\":\n\t\t\t\t\theaders \u003d [\"Start Timestamp\",\"Hour\",\"Cycles of ULGL1 (%)\",\"Cycles of ULGL2 (%)\",\"Cycles of ULGL3 (%)\"]\n\t\t\t\t\tfor result in test_table:\n\t\t\t\t\t\tdata.append([result[\u0027Start Timestamp\u0027],result[\u0027Hour\u0027],result[\u0027Cycles of ULGL1 (%)\u0027],result[\u0027Cycles of ULGL2 (%)\u0027],result[\u0027Cycles of ULGL3 (%)\u0027]])\n\t\t\t\telif self.parent.getChild(\"Aggregation_Mode\").getChild(\"Dropdown_Aggregation_mode\").props.value \u003d\u003d \"Rate\":\n\t\t\t\t\theaders \u003d [\"Start Timestamp\",\"Hour\",\"Cycles of ULGL1 (cph)\",\"Cycles of ULGL2 (cph)\",\"Cycles of ULGL3 (cph)\"]\n\t\t\t\t\tfor result in test_table:\n\t\t\t\t\t\tdata.append([result[\u0027Start Timestamp\u0027],result[\u0027Hour\u0027],result[\u0027Cycles of ULGL1 (cph)\u0027],result[\u0027Cycles of ULGL2 (cph)\u0027],result[\u0027Cycles of ULGL3 (cph)\u0027]])\t\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\ttable \u003d system.dataset.toDataSet(headers, data)\t\n\t\t\tcsv \u003d system.dataset.toCSV(table,1,0,1)\n\t\t\tsystem.perspective.download(filename \u003d str_date+\u0027 Dumper cycles.csv\u0027, data \u003d csv)\n\t\t\t\t\t\n\t\t\t\t\t\n\telif self.getSibling(\"Statistics\").props.currentTabIndex \u003d\u003d 10:\n\n\t\t\tresults \u003d self.parent.getChild(\"Statistics\").getChild(\"Total Full1\").getChild(\"Total Full1\").props.filter.results.data\n\t\t\tif(len(results) \u003e 0):\n\t\t\t\tif self.parent.getChild(\"Aggregation_Mode\").getChild(\"Dropdown_Aggregation_mode\").props.value \u003d\u003d \"Count\":\n\t\t\t\t\theaders \u003d [\"Start Timestamp\",\"Hour\",\"Cycles of ULGL1\",\"Cycles of ULGL2\",\"Cycles of ULGL3\"]\n\t\t\t\t\tfor result in results:\n\t\t\t\t\t\tdata.append([result[\u0027Start Timestamp\u0027],result[\u0027Hour\u0027],result[\u0027Cycles of ULGL1\u0027],result[\u0027Cycles of ULGL2\u0027],result[\u0027Cycles of ULGL3\u0027]])\n\t\t\t\telif self.parent.getChild(\"Aggregation_Mode\").getChild(\"Dropdown_Aggregation_mode\").props.value \u003d\u003d \"Percentage\":\n\t\t\t\t\theaders \u003d [\"Start Timestamp\",\"Hour\",\"Cycles of ULGL1 (%)\",\"Cycles of ULGL2 (%)\",\"Cycles of ULGL3 (%)\"]\n\t\t\t\t\tfor result in results:\n\t\t\t\t\t\tdata.append([result[\u0027Start Timestamp\u0027],result[\u0027Hour\u0027],result[\u0027Cycles of ULGL1 (%)\u0027],result[\u0027Cycles of ULGL2 (%)\u0027],result[\u0027Cycles of ULGL3 (%)\u0027]])\n\t\t\t\telif self.parent.getChild(\"Aggregation_Mode\").getChild(\"Dropdown_Aggregation_mode\").props.value \u003d\u003d \"Rate\":\n\t\t\t\t\theaders \u003d [\"Start Timestamp\",\"Hour\",\"Cycles of ULGL1 (cph)\",\"Cycles of ULGL2 (cph)\",\"Cycles of ULGL3 (cph)\"]\n\t\t\t\t\tfor result in results:\n\t\t\t\t\t\tdata.append([result[\u0027Start Timestamp\u0027],result[\u0027Hour\u0027],result[\u0027Cycles of ULGL1 (cph)\u0027],result[\u0027Cycles of ULGL2 (cph)\u0027],result[\u0027Cycles of ULGL3 (cph)\u0027]])\n\t\t\t\n\t\t\telse:\n\t\t\t\ttest_table \u003d system.dataset.toPyDataSet(self.parent.getChild(\"Statistics\").getChild(\"Total Full1\").getChild(\"Total Full1\").props.data)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\tif self.parent.getChild(\"Aggregation_Mode\").getChild(\"Dropdown_Aggregation_mode\").props.value \u003d\u003d \"Count\":\n\t\t\t\t\theaders \u003d [\"Lane\",\"Total (#)\",\"DestFull (#)\"]\n\t\t\t\t\tfor result in test_table:\n\t\t\t\t\t\tdata.append([result[\u0027Lane\u0027],result[\u0027Total (#)\u0027],result[\u0027DestFull (#)\u0027]])\n\t\t\t\telif self.parent.getChild(\"Aggregation_Mode\").getChild(\"Dropdown_Aggregation_mode\").props.value \u003d\u003d \"Percentage\":\n\t\t\t\t\theaders \u003d [\"Lane\",\"Total (%)\",\"DestFull (%)\"]\n\t\t\t\t\tfor result in test_table:\n\t\t\t\t\t\tdata.append([result[\u0027Lane\u0027],result[\u0027Total (%)\u0027],result[\u0027DestFull (%)\u0027]])\n\t\t\t\telif self.parent.getChild(\"Aggregation_Mode\").getChild(\"Dropdown_Aggregation_mode\").props.value \u003d\u003d \"Rate\":\n\t\t\t\t\theaders \u003d [\"Lane\",\"Total (pph)\",\"DestFull (pph)\"]\n\t\t\t\t\tfor result in test_table:\n\t\t\t\t\t\tdata.append([result[\u0027Lane\u0027],result[\u0027Total (pph)\u0027],result[\u0027DestFull (pph)\u0027]])\t\t\t\t\t\t\t\n\t\t\t\n\t\t\ttable \u003d system.dataset.toDataSet(headers, data)\t\n\t\t\tcsv \u003d system.dataset.toCSV(table,1,0,1)\n\t\t\tsystem.perspective.download(filename \u003d str_date+\u0027 Lane Total Full.csv\u0027, data \u003d csv)\n\t\t\t\n\telif self.getSibling(\"Statistics\").props.currentTabIndex \u003d\u003d 11:\n\t\t\n\t\t\tresults \u003d self.parent.getChild(\"Statistics\").getChild(\"Jam Area\").getChild(\"Jam Area\").props.filter.results.data\n\t\t\tif(len(results) \u003e 0):\n\t\t\t\tif self.parent.getChild(\"Aggregation_Mode\").getChild(\"Dropdown_Aggregation_mode\").props.value \u003d\u003d \"Count\":\n\t\t\t\t\theaders \u003d [\"Start Stamp\",\"End Stamp\",\"Total Jam (#)\",\"Dumpers Jam (#)\", \"Inbound Jam (#)\",\"Runout Jam (#)\",\"Sorter Recirc Jam (#)\"]\n\t\t\t\t\tfor result in results:\n\t\t\t\t\t\tdata.append([result[\u0027Startstamp\u0027],result[\u0027Endtstamp\u0027],result[\u0027Total_Jam\u0027],result[\u0027Dumpers_jam\u0027],result[\u0027Inbound_jam\u0027],result[\u0027Runout_jam\u0027],result[\u0027Sorter_Recirc_jam\u0027]])\n\t\t\t\telif self.parent.getChild(\"Aggregation_Mode\").getChild(\"Dropdown_Aggregation_mode\").props.value \u003d\u003d \"Percentage\":\n\t\t\t\t\theaders \u003d [\"Start Stamp\",\"End Stamp\",\"Total Jam (%)\",\"Dumpers Jam (%)\", \"Inbound Jam (%)\",\"Runout Jam (%)\",\"Sorter Recirc Jam (%)\"]\n\t\t\t\t\tfor result in results:\n\t\t\t\t\t\tdata.append([result[\u0027Startstamp\u0027],result[\u0027Endtstamp\u0027],result[\u0027Total_perc\u0027],result[\u0027Dumpers_perc\u0027],result[\u0027Inbound_perc\u0027],result[\u0027Runout_perc\u0027],result[\u0027Sorter_Recirc_perc\u0027]])\n\n\t\t\t\n\t\t\telse:\n\t\t\t\ttest_table \u003d system.dataset.toPyDataSet(self.parent.getChild(\"Statistics\").getChild(\"Jam Area\").getChild(\"Jam Area\").props.data)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\tif self.parent.getChild(\"Aggregation_Mode\").getChild(\"Dropdown_Aggregation_mode\").props.value \u003d\u003d \"Count\":\n\t\t\t\t\theaders \u003d [\"Start Stamp\",\"End Stamp\",\"Total Jam (#)\",\"Dumpers Jam (#)\", \"Inbound Jam (#)\",\"Runout Jam (#)\",\"Sorter Recirc Jam (#)\"]\n\t\t\t\t\tfor result in test_table:\n\t\t\t\t\t\tdata.append([result[\u0027Startstamp\u0027],result[\u0027Endtstamp\u0027],result[\u0027Total_Jam\u0027],result[\u0027Dumpers_jam\u0027],result[\u0027Inbound_jam\u0027],result[\u0027Runout_jam\u0027],result[\u0027Sorter_Recirc_jam\u0027]])\n\t\t\t\telif self.parent.getChild(\"Aggregation_Mode\").getChild(\"Dropdown_Aggregation_mode\").props.value \u003d\u003d \"Percentage\":\n\t\t\t\t\theaders \u003d [\"Start Stamp\",\"End Stamp\",\"Total Jam (%)\",\"Dumpers Jam (%)\", \"Inbound Jam (%)\",\"Runout Jam (%)\",\"Sorter Recirc Jam (%)\"]\n\t\t\t\t\tfor result in test_table:\n\t\t\t\t\t\tdata.append([result[\u0027Startstamp\u0027],result[\u0027Endtstamp\u0027],result[\u0027Total_perc\u0027],result[\u0027Dumpers_perc\u0027],result[\u0027Inbound_perc\u0027],result[\u0027Runout_perc\u0027],result[\u0027Sorter_Recirc_perc\u0027]])\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\n\t\t\ttable \u003d system.dataset.toDataSet(headers, data)\t\n\t\t\tcsv \u003d system.dataset.toCSV(table,1,0,1)\n\t\t\tsystem.perspective.download(filename \u003d str_date+\u0027 Jam Areas.csv\u0027, data \u003d csv)\t\t\t\t\t\t\n\t\t\t\t\t" + }, + "scope": "G", + "type": "script" + } + } + }, + "meta": { + "name": "ExportToCSV", + "tooltip": { + "enabled": true, + "location": "bottom", + "style": { + "backgroundColor": "#2B2B2BBF", + "color": "#FFFFFF", + "fontSize": 14, + "textAlign": "left", + "white-space": "pre" + }, + "sustain": 2000 + } + }, + "position": { + "height": 0.03, + "width": 0.0625, + "x": 0.9351, + "y": -0.0132 + }, + "propConfig": { + "meta.tooltip.text": { + "binding": { + "config": { + "expression": "\"About: Export to CSV\"+ \r\n\"\\n\"+\r\n\"\\n\"+\"Which tab is open that\"+ \r\n\"\\n\"+\"table will be exported to CSV\"+ \r\n\"\\n\"+\"file after clicking on the button.\"" + }, + "type": "expr" + } + } + }, + "props": { + "mode": "percent", + "style": { + "classes": "Button_Action", + "fontFamily": "Arial", + "marginBottom": "2px", + "marginTop": "16px" + }, + "text": "Export to CSV" + }, + "type": "ia.input.button" + }, + { + "children": [ + { + "meta": { + "name": "LPeriod" + }, + "position": { + "basis": "60px" + }, + "props": { + "style": { + "color": "#FFFFFF" + }, + "text": "Period:" + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "Period" + }, + "position": { + "basis": "160px" + }, + "props": { + "options": [ + { + "label": "Past 30 Min", + "value": "Past 30 Min" + }, + { + "label": "Past Hour", + "value": "Past Hour" + }, + { + "label": "Past 2 Hour", + "value": "Past 2 Hour" + }, + { + "label": "Past 4 Hour", + "value": "Past 4 Hour" + }, + { + "label": "Past 8 Hour", + "value": "Past 8 Hour" + }, + { + "label": "Current Day", + "value": "Current Day" + }, + { + "label": "Morning", + "value": "Morning" + }, + { + "label": "Daylight", + "value": "Daylight" + }, + { + "label": "Twilight", + "value": "Twilight" + }, + { + "label": "Night", + "value": "Night" + }, + { + "label": "Wrap Down", + "value": "Wrap Down" + }, + { + "label": "Current Sort", + "value": "Current Sort" + }, + { + "label": "Custom", + "value": "Custom" + } + ], + "value": "Past Hour" + }, + "type": "ia.input.dropdown" + }, + { + "meta": { + "name": "Spare_0" + }, + "position": { + "basis": "18.1px" + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "Start Date" + }, + "position": { + "basis": "85px" + }, + "props": { + "style": { + "color": "#FFFFFF" + }, + "text": "Start Date:" + }, + "type": "ia.display.label" + }, + { + "custom": { + "Selected": { + "$": [ + "ts", + 192, + 1689168205405 + ], + "$ts": 1688473380000 + } + }, + "events": { + "component": { + "onActionPerformed": { + "config": { + "script": "\t\n\tself.custom.Selected \u003d self.props.value" + }, + "scope": "G", + "type": "script" + } + } + }, + "meta": { + "name": "StartTime" + }, + "propConfig": { + "props.enabled": { + "binding": { + "config": { + "expression": "{../Period.props.value} \u003d \"Custom\"" + }, + "type": "expr" + } + }, + "props.maxDate": { + "binding": { + "config": { + "expression": "now()" + }, + "type": "expr" + } + }, + "props.startDate": { + "binding": { + "config": { + "path": "../Period.props.value" + }, + "transforms": [ + { + "fallback": "todate(now())", + "inputType": "expression", + "mappings": [ + { + "input": "\"Past 30 Min\"", + "output": "todate(dateFormat(dateArithmetic(now(),-30, \"Minute\"), \"yyyy-MM-dd HH:mm:ss\"))" + }, + { + "input": "\"Past Hour\"", + "output": "todate(dateFormat(dateArithmetic(now(),-1, \"Hour\"), \"yyyy-MM-dd HH:mm:ss\"))" + }, + { + "input": "\"Past 2 Hour\"", + "output": "todate(dateFormat(dateArithmetic(now(),-2, \"Hour\"), \"yyyy-MM-dd HH:mm:ss\"))" + }, + { + "input": "\"Past 4 Hour\"", + "output": "todate(dateFormat(dateArithmetic(now(),-4, \"Hour\"), \"yyyy-MM-dd HH:mm:ss\"))" + }, + { + "input": "\"Past 8 Hour\"", + "output": "todate(dateFormat(dateArithmetic(now(),-8, \"Hour\"), \"yyyy-MM-dd HH:mm:ss\"))" + }, + { + "input": "\"Current Day\"", + "output": "todate(dateFormat(dateArithmetic(now(0),0, \"Day\"), \"yyyy-MM-dd 00:00:00\"))" + }, + { + "input": "\"Morning\"", + "output": "if (dateFormat(dateArithmetic(now(),0, \"Day\"), \"HH:mm:ss\")\u003c\"2:30:00\",\r dateFormat(dateArithmetic(now(0),-1, \"Day\"), \"yyyy-MM-dd 2:30:00\"),todate(dateFormat(dateArithmetic(now(0),0, \"Day\"), \"yyyy-MM-dd 2:30:00\")))" + }, + { + "input": "\"Daylight\"", + "output": "if (dateFormat(dateArithmetic(now(),0, \"Day\"), \"HH:mm:ss\")\u003c\"7:30:00\", todate(dateFormat(dateArithmetic(now(0),-1, \"Day\"), \"yyyy-MM-dd 7:30:00\")),todate(dateFormat(dateArithmetic(now(0),0, \"Day\"), \"yyyy-MM-dd 7:30:00\")))" + }, + { + "input": "\"Twilight\"", + "output": "if (dateFormat(dateArithmetic(now(),0, \"Hours\"), \"HH:mm:ss\")\u003c\"13:00:00\", todate(dateFormat(dateArithmetic(now(0),-1, \"Day\"), \"yyyy-MM-dd 13:00:00\")),todate(dateFormat(dateArithmetic(now(0),0, \"Day\"), \"yyyy-MM-dd 13:00:00\")))" + }, + { + "input": "\"Night\"", + "output": "if (dateFormat(dateArithmetic(now(),0, \"Day\"), \"HH:mm:ss\")\u003c\"18:30:00\", todate(dateFormat(dateArithmetic(now(0),-1, \"Day\"), \"yyyy-MM-dd 18:30:00\")),todate(dateFormat(dateArithmetic(now(0),0, \"Day\"), \"yyyy-MM-dd 18:30:00\")))" + }, + { + "input": "\"Wrap Down\"", + "output": "if (dateFormat(dateArithmetic(now(),0, \"Day\"), \"HH:mm:ss\")\u003c\"23:30:00\", todate(dateFormat(dateArithmetic(now(0),-1, \"Day\"), \"yyyy-MM-dd 23:30:00\")),todate(dateFormat(dateArithmetic(now(0),0, \"Day\"), \"yyyy-MM-dd 23:30:00\")))" + }, + { + "input": "\"Current Sort\"", + "output": "if (dateFormat(dateArithmetic(now(),0, \"Day\"), \"HH:mm:ss\")\u003c\"7:30:00\", todate(dateFormat(dateArithmetic(now(0),0, \"Day\"), \"yyyy-MM-dd 2:30:00\")), \r if (dateFormat(dateArithmetic(now(),0, \"Day\"), \"HH:mm:ss\")\u003c\"13:00:00\",todate(dateFormat(dateArithmetic(now(0),0, \"Day\"), \"yyyy-MM-dd 7:30:00\")),\r if (dateFormat(dateArithmetic(now(),0, \"Day\"), \"HH:mm:ss\")\u003c\"18:30:00\",todate(dateFormat(dateArithmetic(now(0),0, \"Day\"), \"yyyy-MM-dd 13:00:00\")),\r if (dateFormat(dateArithmetic(now(),0, \"Day\"), \"HH:mm:ss\")\u003c\"23:30:00\",todate(dateFormat(dateArithmetic(now(0),0, \"Day\"), \"yyyy-MM-dd 18:30:00\")),\r if (dateFormat(dateArithmetic(now(),0, \"Day\"), \"HH:mm:ss\")\u003c\"2:30:00\", todate(dateFormat(dateArithmetic(now(0),0, \"Day\"), \"yyyy-MM-dd 23:30:00\")),\r todate(dateFormat(dateArithmetic(now(),0, \"Day\"), \"yyyy-MM-dd HH:mm:ss\")))))))" + }, + { + "input": "\"Custom\"", + "output": "{this.props.value}" + } + ], + "outputType": "expression", + "type": "map" + } + ], + "type": "property" + }, + "onChange": { + "enabled": null, + "script": "\t\n\tif self.getSibling(\"Period\").props.value !\u003d \"Custom\":\n\t\tself.props.value \u003d self.props.startDate" + } + }, + "props.value": { + "onChange": { + "enabled": null, + "script": "\t\n\tif system.date.secondsBetween(self.props.value,self.getSibling(\"EndTime\").props.value) \u003e 604800 or system.date.secondsBetween(self.props.value,self.getSibling(\"EndTime\").props.value) \u003c 0:\n\t if system.date.secondsBetween(system.date.addSeconds(self.props.value,604800),system.date.now()) \u003c 0: \n\t self.getSibling(\"EndTime\").props.value \u003d system.date.now()\n\t else:\n\t self.getSibling(\"EndTime\").props.value \u003d system.date.addSeconds(self.props.value,604800)" + } + } + }, + "props": { + "dismissOnSelect": false, + "formattedValue": "Aug 4, 2025 6:08 PM", + "formattedValues": { + "date": "Mar 26, 2021", + "datetime": "Mar 26, 2021 12:00 AM", + "time": "12:00 AM" + }, + "value": { + "$": [ + "ts", + 192, + 1754320093050 + ], + "$ts": 1754316493000 + } + }, + "type": "ia.input.date-time-input" + }, + { + "meta": { + "name": "Spare" + }, + "position": { + "basis": "18.1px" + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "End Date" + }, + "position": { + "basis": "81px" + }, + "props": { + "style": { + "color": "#FFFFFF" + }, + "text": "End Date:" + }, + "type": "ia.display.label" + }, + { + "custom": { + "Selected": "value" + }, + "events": { + "component": { + "onActionPerformed": { + "config": { + "script": "\t\n\tself.custom.Selected \u003d self.props.value" + }, + "scope": "G", + "type": "script" + } + } + }, + "meta": { + "name": "EndTime" + }, + "position": { + "basis": "190px" + }, + "propConfig": { + "props.enabled": { + "binding": { + "config": { + "expression": "{../Period.props.value} \u003d \"Custom\"" + }, + "type": "expr" + } + }, + "props.endDate": { + "binding": { + "config": { + "path": "../Period.props.value" + }, + "transforms": [ + { + "fallback": "{this.props.value}", + "inputType": "scalar", + "mappings": [ + { + "input": "Past 30 Min", + "output": "todate(dateFormat(dateArithmetic(now(),0, \"Hour\"), \"yyyy-MM-dd HH:mm:ss\"))" + }, + { + "input": "Past Hour", + "output": "todate(dateFormat(dateArithmetic(now(),0, \"hour\"), \"yyyy-MM-dd HH:mm:ss\"))" + }, + { + "input": "Past 2 Hour", + "output": "todate(dateFormat(dateArithmetic(now(),0, \"hour\"), \"yyyy-MM-dd HH:mm:ss\"))" + }, + { + "input": "Past 4 Hour", + "output": "todate(dateFormat(dateArithmetic(now(),0, \"hour\"), \"yyyy-MM-dd HH:mm:ss\"))" + }, + { + "input": "Past 8 Hour", + "output": "todate(dateFormat(dateArithmetic(now(),0, \"hour\"), \"yyyy-MM-dd HH:mm:ss\"))" + }, + { + "input": "Current Day", + "output": "todate(dateFormat(dateArithmetic(now(),0, \"hour\"), \"yyyy-MM-dd HH:mm:ss\"))" + }, + { + "input": "Morning", + "output": "if (dateFormat(dateArithmetic(now(),0, \"Day\"), \"HH:mm:ss\")\u003c\"2:30:00\",\r todate(dateFormat(dateArithmetic(now(0),-1, \"Day\"), \"yyyy-MM-dd 7:30:00\")),\r if (dateFormat(dateArithmetic(now(),0, \"Day\"), \"HH:mm:ss\")\u003c\"7:30:00\",\r todate(dateFormat(dateArithmetic(now(),0, \"Day\"), \"yyyy-MM-dd HH:mm:ss\")), todate(dateFormat(dateArithmetic(now(0),0, \"Day\"), \"yyyy-MM-dd 7:30:00\"))))" + }, + { + "input": "Daylight", + "output": "if (dateFormat(dateArithmetic(now(),0, \"Day\"), \"HH:mm:ss\")\u003c\"7:30:00\",\r todate(dateFormat(dateArithmetic(now(0),-1, \"Day\"), \"yyyy-MM-dd 13:00:00\")),\r if (dateFormat(dateArithmetic(now(),0, \"Day\"), \"HH:mm:ss\")\u003c\"13:00:00\",\r todate(dateFormat(dateArithmetic(now(),0, \"Day\"), \"yyyy-MM-dd HH:mm:ss\")), todate(dateFormat(dateArithmetic(now(0),0, \"Day\"), \"yyyy-MM-dd 13:00:00\"))))" + }, + { + "input": "Twilight", + "output": "if (dateFormat(dateArithmetic(now(),0, \"Day\"), \"HH:mm:ss\")\u003c\"13:00:00\",\r todate(dateFormat(dateArithmetic(now(0),-1, \"Day\"), \"yyyy-MM-dd 18:30:00\")),\r if (dateFormat(dateArithmetic(now(),0, \"Day\"), \"HH:mm:ss\")\u003c\"18:30:00\",\r todate(dateFormat(dateArithmetic(now(),0, \"Day\"), \"yyyy-MM-dd HH:mm:ss\")), todate(dateFormat(dateArithmetic(now(0),0, \"Day\"), \"yyyy-MM-dd 18:30:00\"))))" + }, + { + "input": "Night", + "output": "if (dateFormat(dateArithmetic(now(),0, \"Day\"), \"HH:mm:ss\")\u003c\"18:30:00\",\r todate(dateFormat(dateArithmetic(now(0),-1, \"Day\"), \"yyyy-MM-dd 23:30:00\")),\r if (dateFormat(dateArithmetic(now(),0, \"Day\"), \"HH:mm:ss\")\u003c\"23:30:00\",\r todate(dateFormat(dateArithmetic(now(),0, \"Day\"), \"yyyy-MM-dd HH:mm:ss\")), todate(dateFormat(dateArithmetic(now(0),0, \"Day\"), \"yyyy-MM-dd 23:30:00\"))))" + }, + { + "input": "Wrap Down", + "output": "if (dateFormat(dateArithmetic(now(),0, \"Day\"), \"HH:mm:ss\")\u003c\"23:30:00\",\r todate(dateFormat(dateArithmetic(now(0),0, \"Day\"), \"yyyy-MM-dd 2:30:00\")),\r if (dateFormat(dateArithmetic(now(),0, \"Day\"), \"HH:mm:ss\")\u003c\"2:30:00\",\r todate(dateFormat(dateArithmetic(now(),0, \"Day\"), \"yyyy-MM-dd HH:mm:ss\")), todate(dateFormat(dateArithmetic(now(0),0, \"Day\"), \"yyyy-MM-dd 2:30:00\"))))" + }, + { + "input": "Current Sort", + "output": "todate(dateFormat(dateArithmetic(now(),0, \"hour\"), \"yyyy-MM-dd HH:mm:ss\"))" + } + ], + "outputType": "expression", + "type": "map" + } + ], + "type": "property" + }, + "onChange": { + "enabled": null, + "script": "\t\n\tif self.getSibling(\"Period\").props.value !\u003d \"Custom\":\n\t\tself.props.value \u003d self.props.endDate" + } + }, + "props.maxDate": { + "binding": { + "config": { + "expression": "if(dateDiff({../StartTime.props.value},now(),\"day\") \u003c 7, now(),dateArithmetic({../StartTime.props.value}, 7, \"days\"))" + }, + "type": "expr" + } + }, + "props.minDate": { + "binding": { + "config": { + "expression": "{../StartTime.props.value}" + }, + "type": "expr" + } + } + }, + "props": { + "dismissOnSelect": false, + "formattedValue": "Aug 4, 2025 7:08 PM", + "formattedValues": { + "date": "Mar 29, 2021", + "datetime": "Mar 29, 2021 1:37 PM", + "time": "1:37 PM" + }, + "value": { + "$": [ + "ts", + 192, + 1754320093050 + ], + "$ts": 1754320093000 + } + }, + "type": "ia.input.date-time-input" + } + ], + "meta": { + "name": "Period_not_Global_0" + }, + "position": { + "height": 0.0269, + "width": 0.413, + "x": 0.0025, + "y": 0.0059 + }, + "propConfig": { + "custom.EndDate": { + "binding": { + "config": { + "path": "./EndTime.props.value" + }, + "type": "property" + } + }, + "custom.StartDate": { + "binding": { + "config": { + "path": "./StartTime.props.value" + }, + "type": "property" + } + } + }, + "props": { + "style": { + "fontFamily": "Arial" + } + }, + "type": "ia.container.flex" + }, + { + "meta": { + "name": "Info", + "tooltip": { + "enabled": true, + "location": "bottom-right", + "style": { + "backgroundColor": "#2B2B2BBF", + "color": "#FFFFFF", + "fontFamily": "Arial", + "fontSize": 14, + "textAlign": "left", + "white-space": "pre" + } + } + }, + "position": { + "height": 0.043, + "width": 0.0208, + "x": 0.9745, + "y": 0.0847 + }, + "propConfig": { + "meta.tooltip.text": { + "binding": { + "config": { + "expression": "if ({view.params.Table} \u003d \"Statistics\" \u0026\u0026 {view.params.Tab_ID} \u003d 0,\r\n\t\"About: Induct Details\"+ \r\n\t\"\\n\"+\r\n\t\"\\n\"+\"Start Timestamp - time of the first value determined by the selected period.\"+\r\n\t\"\\n\"+\"End Timestamp - time of the last value determined by the selected period.\"+\r\n\t\"\\n\"+\"Sorter Number - sorter name.\"+\r\n\t\"\\n\"+\"Induct Number - induct name.\"+\r\n\t\"\\n\"+\"Total Count - the total number of parcels.\"+\r\n\t\"\\n\"+\"Single Carrier Count - the number of single parcels.\"+\r\n\t\"\\n\"+\"Double Carrier Count - the number of paired parcels.\",\r\nif ({view.params.Table} \u003d \"Statistics\" \u0026\u0026 {view.params.Tab_ID} \u003d 1,\r\n\t\"About: Scanner Details\"+ \r\n\t\"\\n\"+\r\n\t\"\\n\"+\"Start Timestamp - time of the first value determined by the selected period.\"+\r\n\t\"\\n\"+\"End Timestamp - time of the last value determined by the selected period.\"+\r\n\t\"\\n\"+\"Sorter Number - sorter name.\"+\r\n\t\"\\n\"+\"Scanner Number - scanner name.\"+\r\n\t\"\\n\"+\"Total Count - total number of scanned parcels.\"+\r\n\t\"\\n\"+\"Good Read Count - number of good reads.\"+\r\n\t\"\\n\"+\"No Read Count - number of noreads.\"+\r\n\t\"\\n\"+\"Multi Read Count - number of multireads.\"+\r\n\t\"\\n\"+\"No Code Count - number of no codes.\",\r\nif ({view.params.Table} \u003d \"Statistics\" \u0026\u0026 {view.params.Tab_ID} \u003d 2,\r\n\t\"About: Sorter Summary\"+ \r\n\t\"\\n\"+\r\n\t\"\\n\"+\"Start Timestamp - time of the first value determined by the selected period.\"+\r\n\t\"\\n\"+\"End Timestamp - time of the last value determined by the selected period.\"+\r\n\t\"\\n\"+\"Sorter Number - sorter name.\"+\r\n\t\"\\n\"+\"Inducted - the total number of received parcels.\"+\r\n\t\"\\n\"+\"Sorted - the number of parcels sorted.\"+\r\n\t\"\\n\"+\"AWCS Recirc - the number of parcels sent for recirc.\"+\r\n\t\"\\n\"+\"Operational Recirc - \"+\r\n\t\"\\n\"+\"Machine Recirc - \",\r\nif ({view.params.Table} \u003d \"Statistics\" \u0026\u0026 {view.params.Tab_ID} \u003d 3,\r\n\t\"About: Sorter Details\"+ \r\n\t\"\\n\"+\r\n\t\"\\n\"+\"Start Timestamp - time of the first value determined by the selected period.\"+\r\n\t\"\\n\"+\"End Timestamp - time of the last value determined by the selected period.\"+\r\n\t\"\\n\"+\"Sorter Number - sorter name.\"+\r\n\t\"\\n\"+\"Inducted Count - the total number of received parcels.\"+\r\n\t\"\\n\"+\"Sorted Count - the number of parcels sorted.\"+\r\n\t\"\\n\"+\"Assigned Count - not applicable.\"+\r\n\t\"\\n\"+\"Destination Inv Count - the total number of the requested destination \\n\\t\\tassigned by AWCS is not valid for the current scan point or sorter.\"+\r\n\t\"\\n\"+\"Dest None Count - not applicable.\"+\r\n\t\"\\n\"+\"Dest Dis Count - not applicable.\"+\r\n\t\"\\n\"+\"Destination Full Count - the total number of the requested destination for \\n\\t\\tthe container was full. \"+\r\n\t\"\\n\"+\"Unexpected Count - the total number of an unexpected container was \\n\\t\\tidentified during sortation.\"+\r\n\t\"\\n\"+\"Destination Fault Count - the total number of the requested destination \\n\\t\\tfor the container was non-operational due to a fault\"+\r\n\t\"\\n\"+\"Divert Fail Count - the total number of the sorter attempted to divert \\n\\t\\tthe container to the requested destination\tbut failed. \"+\r\n\t\"\\n\"+\"Gap Error Count - the total number of containers were inducted into the \\n\\t\\tsorter with less than the minimum gap between containers the \\n\\t\\tsorter supports.\"+\r\n\t\"\\n\"+\"Lost Count - the total number of the container was lost on the sorter after \\n\\t\\tit was scanned at a scan point.\"+\r\n\t\"\\n\"+\"Track Error - the total number of the container was lost on the sorter after \\n\\t\\tit was scanned at a scan point.\"+\r\n\t\"\\n\"+\"Unknown Count - the total number of\"+\r\n\t\"\\n\"+\"Unsafe Count - the total number of the sorter did not attempt to divert \\n\\t\\tthe container to the requested destination because the container \\n\\t\\twas unable to be diverted accurately or safely\",\r\nif ({view.params.Table} \u003d \"Statistics\" \u0026\u0026 {view.params.Tab_ID} \u003d 4,\r\n\t\"About: Lane Details\"+ \r\n\t\"\\n\"+\r\n\t\"\\n\"+\"Start Timestamp - time of the first value determined by the selected period.\"+\r\n\t\"\\n\"+\"End Timestamp - time of the last value determined by the selected period.\"+\r\n\t\"\\n\"+\"Sorter Number - sorter name.\"+\r\n\t\"\\n\"+\"Lane/Chute Number - lane/chute name.\"+\r\n\t\"\\n\"+\"Total Count - total number of diverted parcels on this chute.\"+\r\n\t\"\\n\"+\"Diverted Count - the number of successfully diverted parcels to this chute.\"+\r\n\t\"\\n\"+\"Destination Full Count - the number of full states.\"+\r\n\t\"\\n\"+\"Destination Jam Count - the number of jam states.\"+\r\n\t\"\\n\"+\"Destination Disabled Count - the number of Disabled states.\"+\r\n\t\"\\n\"+\"Destination Fault Count - not applicable.\"+\r\n\t\"\\n\"+\"Divert Fail Count - the number of unsuccessfully diverted parcels to this chute.\"+\r\n\t\"\\n\"+\"Lost Count - not applicable.\"+\r\n\t\"\\n\"+\"Unsafe Count - not applicable.\"+\r\n\t\"\\n\"+\"Dim Error - not applicable.\"+\r\n\t\"\\n\"+\"Gap Error Count - not applicable.\"+\r\n\t\"\\n\"+\"Unknown Count - not applicable.\",\r\nif ({view.params.Table} \u003d \"Statistics\" \u0026\u0026 {view.params.Tab_ID} \u003d 5,\r\n\t\"About: Hourly Induct\"+ \r\n\t\"\\n\"+\r\n\t\"\\n\"+\"Start Timestamp - time value for counting on hourly values.\"+\r\n\t\"\\n\"+\"Hour – Hour of the day (H1-H24) - time in the selected period \\n\\t\\tdivided by whole hours. The choice of the time period \\n\\t\\tthat will be viewed for the Hourly tables should be \\n\\t\\tin whole hours (example: 7:00).\"+\r\n\t\"\\n\"+\"Total (#) - the total number of parcels.\"+\r\n\t\"\\n\"+\"Single Carrier (#) - the number of single parcels.\"+\r\n\t\"\\n\"+\"Double Carrier (#) - the number of paired parcels.\",\r\nif ({view.params.Table} \u003d \"Statistics\" \u0026\u0026 {view.params.Tab_ID} \u003d 6,\r\n\t\"About: Hourly Scanner\"+ \r\n\t\"\\n\"+\r\n\t\"\\n\"+\"Start Timestamp - time value for counting on hourly values.\"+\r\n\t\"\\n\"+\"Hour – Hour of the day (H1-H24) - time in the selected period \\n\\t\\tdivided by whole hours. The choice of the time period \\n\\t\\tthat will be viewed for the Hourly tables should be \\n\\t\\tin whole hours (example: 7:00).\"+\r\n\t\"\\n\"+\"Total (#) - total number of scanned parcels.\"+\r\n\t\"\\n\"+\"Good read (#) - number of good reads.\"+\r\n\t\"\\n\"+\"No Read (#) - number of noreads.\"+\r\n\t\"\\n\"+\"Multi Read (#) - number of multireads.\"+\r\n\t\"\\n\"+\"No Code (#) - number of no codes.\",\r\nif ({view.params.Table} \u003d \"Statistics\" \u0026\u0026 {view.params.Tab_ID} \u003d 7,\r\n\t\"About: Hourly Sorter Summary\"+ \r\n\t\"\\n\"+\r\n\t\"\\n\"+\"Start Timestamp - time value for counting on hourly values.\"+\r\n\t\"\\n\"+\"Hour – Hour of the day (H1-H24) - time in the selected period \\n\\t\\tdivided by whole hours. The choice of the time period \\n\\t\\tthat will be viewed for the Hourly tables should be \\n\\t\\tin whole hours (example: 7:00).\"+\r\n\t\"\\n\"+\"Total Inducted(#) - the total number of received parcels.\"+\r\n\t\"\\n\"+\"Total Sorted(#) - the number of parcels sorted.\"+\r\n\t\"\\n\"+\"AWCS Recirculate (#) - the number of parcels sent for recirc.\"+\r\n\t\"\\n\"+\"Operational Recirculate(#) - \"+\r\n\t\"\\n\"+\"Machine Recirculate(#) - \",\r\nif ({view.params.Table} \u003d \"Statistics\" \u0026\u0026 {view.params.Tab_ID} \u003d 8,\r\n\t\"About: Hourly Sorter Details\"+ \r\n\t\"\\n\"+\r\n\t\"\\n\"+\"Start Timestamp - time value for counting on hourly values.\"+\r\n\t\"\\n\"+\"Hour – Hour of the day (H1-H24) - time in the selected period \\n\\t\\tdivided by whole hours. The choice of the time period \\n\\t\\tthat will be viewed for the Hourly tables should be \\n\\t\\tin whole hours (example: 7:00).\"+\r\n\t\"\\n\"+\"Inducted (#) - the total number of received parcels.\"+\r\n\t\"\\n\"+\"Sorted (#) - the number of parcels sorted.\"+\r\n\t\"\\n\"+\"Assigned (#) - not applicable.\"+\r\n\t\"\\n\"+\"Destination Inv (#) - the total number of the requested destination \\n\\t\\tassigned by AWCS is not valid for the current scan point or sorter.\"+\r\n\t\"\\n\"+\"Dest None (#) - not applicable.\"+\r\n\t\"\\n\"+\"Dest Dis Count - not applicable.\"+\r\n\t\"\\n\"+\"Destination Full (#) - the total number of the requested destination for \\n\\t\\tthe container was full.\"+\r\n\t\"\\n\"+\"Unexpected (#) - the total number of an unexpected container was \\n\\t\\tidentified during sortation.\"+\r\n\t\"\\n\"+\"Destination Fault (#) - the total number of the requested destination \\n\\t\\tfor the container was non-operational due to a fault.\"+\r\n\t\"\\n\"+\"Divert Fail (#) - - the total number of the sorter attempted to divert \\n\\t\\tthe container to the requested destination but failed.\"+\r\n\t\"\\n\"+\"Gap Error (#) - the total number of containers were inducted into the \\n\\t\\tsorter with less than the minimum gap between containers the \\n\\t\\tsorter supports.\"+\r\n\t\"\\n\"+\"Lost (#) - the total number of the container was lost on the sorter after \\n\\t\\tit was scanned at a scan point.\"+\r\n\t\"\\n\"+\"Track Error (#) - the total number of the container was lost on the sorter after \\n\\t\\tit was scanned at a scan point.\"+\r\n\t\"\\n\"+\"Unknown Count (#) - \"+\r\n\t\"\\n\"+\"Unsafe Count (#) - the total number of the sorter did not attempt to divert \\n\\t\\tthe container to the requested destination because the container \\n\\t\\twas unable to be diverted accurately or safely\",\r\nif ({view.params.Table} \u003d \"Statistics\" \u0026\u0026 {view.params.Tab_ID} \u003d 9,\r\n\t\"About: Hourly Lane Details\"+ \r\n\t\"\\n\"+\r\n\t\"\\n\"+\"Start Timestamp - time value for counting on hourly values.\"+\r\n\t\"\\n\"+\"Hour – Hour of the day (H1-H24) - time in the selected period \\n\\t\\tdivided by whole hours. The choice of the time period \\n\\t\\tthat will be viewed for the Hourly tables should be \\n\\t\\tin whole hours (example: 7:00).\"+\r\n\t\"\\n\"+\"Total (#) - total number of diverted parcels on this chute.\"+\r\n\t\"\\n\"+\"Diverted (#) - the number of successfully diverted parcels to this chute.\"+\r\n\t\"\\n\"+\"Destination Full (#) - the number of full states.\"+\r\n\t\"\\n\"+\"Destination Jam (#) - the number of jam states.\"+\r\n\t\"\\n\"+\"Destination Disabled (#) - the number of Disabled states.\"+\r\n\t\"\\n\"+\"Destination Fault Count - not applicable.\"+\r\n\t\"\\n\"+\"Divert Fail (#) - the number of unsuccessfully diverted parcels to this chute.\"+\r\n\t\"\\n\"+\"Lost (#) - not applicable.\"+\r\n\t\"\\n\"+\"Unsafe (#) - not applicable.\"+\r\n\t\"\\n\"+\"Dim (#) - not applicable.\"+\r\n\t\"\\n\"+\"Gap Error (#) - not applicable.\"+\r\n\t\"\\n\"+\"Unknown (#) - not applicable.\",\r\nif ({view.params.Table} \u003d \"Statistics\" \u0026\u0026 {view.params.Tab_ID} \u003d 10,\r\n\t\"About: Lane Total Full\"+\t\r\n\t\"\\n\"+\r\n\t\"\\n\"+\"Lane Number - lane name.\"+\r\n\t\"\\n\"+\"Total Count - total number of diverted parcels on this chute.\"+\r\n\t\"\\n\"+\"Destination Full Count - the number of full states.\",\r\nif ({view.params.Table} \u003d \"Statistics\" \u0026\u0026 {view.params.Tab_ID} \u003d 11,\r\n\t\"About: Jam by Area\"+\t\r\n\t\"\\n\"+\r\n\t\"\\n\"+\"Jam counts by areas\",\r\n\t\r\nif ({view.params.Table} \u003d \"Statistics\" \u0026\u0026 {view.params.Tab_ID} \u003d 12,\r\n\t\"About: Dumper cycles\"+\t\r\n\t\"\\n\"+\r\n\t\"\\n\"+\"Cycles counts by dumpers\",\t\t\r\n\r\n\"not response\")))))))))))))" + }, + "type": "expr" + } + } + }, + "props": { + "fit": { + "mode": "fill" + }, + "source": "/system/images/MyIcon/question64x64.png", + "style": { + "cursor": "pointer" + } + }, + "type": "ia.display.image" + }, + { + "meta": { + "name": "Label" + }, + "position": { + "height": 0.0344, + "width": 0.2536, + "x": 0.5195, + "y": 0.0041 + }, + "propConfig": { + "props.text": { + "binding": { + "config": { + "designerUseLimit": false, + "parameters": { + "endtime": "{../Period_not_Global_0.custom.EndDate}", + "starttime": "{../Period_not_Global_0.custom.StartDate}" + }, + "polling": { + "enabled": true, + "rate": "300" + }, + "queryPath": "Statistics/Max PPH 5 Min" + }, + "transforms": [ + { + "code": "\t\n\tmax_pph \u003d system.dataset.toPyDataSet(value)\n\treturn \"Highest Sorted PPH at 5 min Interval: \" + str(int(max_pph[0][0])) + \" pph\"\n\t\n\t", + "type": "script" + } + ], + "type": "query" + } + } + }, + "props": { + "style": { + "color": "#FFFFFF", + "fontFamily": "Arial", + "fontSize": 20 + } + }, + "type": "ia.display.label" + }, + { + "children": [ + { + "meta": { + "name": "Label_Lane" + }, + "position": { + "basis": "70px" + }, + "props": { + "style": { + "color": "#000000" + }, + "text": "Dumper:" + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "Dumper" + }, + "position": { + "basis": "171px" + }, + "props": { + "options": [ + { + "label": "ULGL1-1", + "value": "ULGL1-1" + }, + { + "label": "ULGL2-1", + "value": "ULGL2-1" + }, + { + "label": "ULGL3-1", + "value": "ULGL3-1" + } + ], + "value": "S0101" + }, + "type": "ia.input.dropdown" + } + ], + "meta": { + "name": "Dumper Drop Down_0", + "visible": false + }, + "position": { + "height": 0.0269, + "width": 0.1219, + "x": 0.8469, + "y": 0.0922 + }, + "propConfig": { + "meta.visible": { + "binding": { + "config": { + "expression": "if ({../Statistics.props.currentTabIndex} \u003d 12 ,\r\ntrue,\r\nfalse)" + }, + "enabled": false, + "type": "expr" + } + } + }, + "props": { + "style": { + "fontFamily": "Arial" + } + }, + "type": "ia.container.flex" + } + ], + "meta": { + "name": "root" + }, + "position": { + "x": -0.0073, + "y": -0.0011 + }, + "props": { + "mode": "percent", + "style": { + "backgroundColor": "#1A4A5E" + } + }, + "type": "ia.container.coord" + } +} \ No newline at end of file diff --git a/.resources/0820d1217c0b9c6ab22fa3b5420467f7cc315cacd36068f6d65a039ffbe4b73b b/.resources/0820d1217c0b9c6ab22fa3b5420467f7cc315cacd36068f6d65a039ffbe4b73b deleted file mode 100644 index 49fef217..00000000 Binary files a/.resources/0820d1217c0b9c6ab22fa3b5420467f7cc315cacd36068f6d65a039ffbe4b73b and /dev/null differ diff --git a/.resources/093644e66684e056824f288752133e821d6d75b0ff1fc5ab8c509bd2dbbbe799 b/.resources/093644e66684e056824f288752133e821d6d75b0ff1fc5ab8c509bd2dbbbe799 new file mode 100644 index 00000000..975f4593 Binary files /dev/null and b/.resources/093644e66684e056824f288752133e821d6d75b0ff1fc5ab8c509bd2dbbbe799 differ diff --git a/.resources/54a52d0f8b1b27893701a3948afcc9b6bb256718e67d1263c88415e11c161483 b/.resources/099c796439e73ce901648c86bb78cdd517d620641de3360ccfac0699beca6be9 similarity index 99% rename from .resources/54a52d0f8b1b27893701a3948afcc9b6bb256718e67d1263c88415e11c161483 rename to .resources/099c796439e73ce901648c86bb78cdd517d620641de3360ccfac0699beca6be9 index f234dfd2..9d12fbad 100644 --- a/.resources/54a52d0f8b1b27893701a3948afcc9b6bb256718e67d1263c88415e11c161483 +++ b/.resources/099c796439e73ce901648c86bb78cdd517d620641de3360ccfac0699beca6be9 @@ -409,7 +409,6 @@ }, "props": { "params": { - "key": "value", "tagProps": [ "System/MCM01/Conveyor/UL14_1", "value", @@ -1372,7 +1371,7 @@ "props": { "params": { "tagProps": [ - "System/MCM01/Photoeyes/TPE/PS3_1_TPE1", + "System/MCM01/PE/TPE/PS3_1_TPE1", "value", "value", "value", @@ -1608,7 +1607,7 @@ "props": { "params": { "tagProps": [ - "System/MCM01/Photoeyes/TPE/PS3_2_TPE1", + "System/MCM01/Photoeye/TPE/PS3_2_TPE1", "value", "value", "value", @@ -4225,7 +4224,7 @@ "props": { "params": { "tagProps": [ - "System/MCM01/SIO/PS3_1_SIO1", + "System/MCM01/IO_Block/SIO/PS3_1_SIO1", "value", "value", "value", diff --git a/.resources/0a6feaac6d7eb35e3b375f89ae3a39d8fd3834c9a0320bdb5957c8446fd5abe8 b/.resources/0a6feaac6d7eb35e3b375f89ae3a39d8fd3834c9a0320bdb5957c8446fd5abe8 deleted file mode 100644 index b14d22ed..00000000 Binary files a/.resources/0a6feaac6d7eb35e3b375f89ae3a39d8fd3834c9a0320bdb5957c8446fd5abe8 and /dev/null differ diff --git a/.resources/0ad7bb1e58f29b464bca7868777571c670253aba153eed8bffdaae47b7ebcc8f b/.resources/0ad7bb1e58f29b464bca7868777571c670253aba153eed8bffdaae47b7ebcc8f deleted file mode 100644 index 91294589..00000000 --- a/.resources/0ad7bb1e58f29b464bca7868777571c670253aba153eed8bffdaae47b7ebcc8f +++ /dev/null @@ -1,732 +0,0 @@ -{ - "custom": { - "FillColour": "value", - "alarm_message": null, - "covert_mode": true, - "disconnected": false, - "display_icon": true, - "error": false, - "isMatch": 0, - "plc": "value", - "priority": 0, - "priority_string": "No active alarms", - "running": false, - "running_status": 0, - "searchId": "PLC01", - "show_error": false, - "show_running": true, - "state": 5, - "state_string": "Unknown" - }, - "params": { - "forceFaultStatus": null, - "forceRunningStatus": null, - "tagProps": [ - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value" - ] - }, - "propConfig": { - "custom.FillColour": { - "persistent": true - }, - "custom.alarm_message": { - "persistent": true - }, - "custom.covert_mode": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case(\t{value},\r\n\t\t0, {session.custom.alarm_filter.show_running},\r\n\t\t1, True,\r\n\t\t2, True,\r\n\t\t3, {session.custom.alarm_filter.show_low_alarm} || {session.custom.alarm_filter.show_running},\r\n\t\t4, {session.custom.alarm_filter.show_diagnostic} || {session.custom.alarm_filter.show_running},\r\n\t\t5, {session.custom.alarm_filter.show_running},\r\n\t\tFalse)", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.disconnected": { - "binding": { - "config": { - "fallbackDelay": 2.5, - "mode": "indirect", - "references": { - "fc": "{session.custom.fc}", - "plc": "{view.custom.plc}" - }, - "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{plc}/DCN" - }, - "transforms": [ - { - "expression": "if(isNull({value}), False, {value})", - "type": "expression" - } - ], - "type": "tag" - }, - "persistent": true - }, - "custom.display_icon": { - "binding": { - "config": { - "expression": "{this.custom.covert_mode}//||{this.custom.isMatch}\u003e0" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.error": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "0 \u003c {value} \u0026\u0026 {value} \u003c 5", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.isMatch": { - "binding": { - "config": { - "expression": "if({view.params.tagProps[0]}\u003d\"value\",0,\nif({this.custom.searchId}\u003d{view.params.tagProps[0]},100,0))" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.plc": { - "binding": { - "config": { - "path": "view.params.tagProps[0]" - }, - "transforms": [ - { - "expression": "split({value}, \"/\")[0]", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.priority": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "fallback": 0, - "inputType": "scalar", - "mappings": [ - { - "input": 1, - "output": 4 - }, - { - "input": 2, - "output": 3 - }, - { - "input": 3, - "output": 2 - }, - { - "input": 4, - "output": 1 - } - ], - "outputType": "scalar", - "type": "map" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.priority_string": { - "binding": { - "config": { - "expression": "case({view.custom.state},\r\n1, \"High\",\r\n2, \"Medium\",\r\n3, \"Low\",\r\n4, \"Diagnostic\",\r\n5, \"No active alarms\",\r\n\"Unknown\")" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.running": { - "binding": { - "config": { - "expression": "{view.custom.running_status} \u003d 3" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.running_status": { - "binding": { - "config": { - "fallbackDelay": 2.5, - "mode": "indirect", - "references": { - "0": "{view.params.tagProps[0]}", - "fc": "{session.custom.fc}" - }, - "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/STATE" - }, - "transforms": [ - { - "expression": "coalesce({value},{view.params.forceRunningStatus},0)", - "type": "expression" - } - ], - "type": "tag" - }, - "persistent": true - }, - "custom.searchId": { - "binding": { - "config": { - "path": "session.custom.searchId" - }, - "type": "property" - }, - "persistent": true - }, - "custom.show_error": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case(\t{value},\r\n\t\t1, True,\r\n\t\t2, True,\r\n\t\t3, {session.custom.alarm_filter.show_low_alarm},\r\n\t\t4, {session.custom.alarm_filter.show_diagnostic},\r\n\t\tFalse)", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.show_running": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case(\t{value},\r\n\t\t1, False,\r\n\t\t2, False,\r\n\t\t{session.custom.alarm_filter.show_running}\r\n\t\t)", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.state": { - "binding": { - "config": { - "fallbackDelay": 2.5, - "mode": "indirect", - "references": { - "0": "{view.params.tagProps[0]}", - "fc": "{session.custom.fc}" - }, - "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/ALARMST" - }, - "transforms": [ - { - "expression": "coalesce({value},{view.params.forceFaultStatus},0)", - "type": "expression" - }, - { - "fallback": null, - "inputType": "scalar", - "mappings": [ - { - "input": 4, - "output": 1 - }, - { - "input": 3, - "output": 2 - }, - { - "input": 2, - "output": 3 - }, - { - "input": 1, - "output": 4 - }, - { - "input": 0, - "output": 5 - } - ], - "outputType": "scalar", - "type": "map" - } - ], - "type": "tag" - }, - "persistent": true - }, - "custom.state_string": { - "binding": { - "config": { - "expression": "case({view.custom.running_status},\r\n1, \"Faulted\",\r\n2, \"Stopped\",\r\n3, \"Running\",\r\n\"Unknown\")" - }, - "type": "expr" - }, - "persistent": true - }, - "params.forceFaultStatus": { - "paramDirection": "input", - "persistent": true - }, - "params.forceRunningStatus": { - "paramDirection": "input", - "persistent": true - }, - "params.tagProps": { - "paramDirection": "inout", - "persistent": true - } - }, - "props": { - "defaultSize": { - "height": 100, - "width": 100 - } - }, - "root": { - "children": [ - { - "meta": { - "name": "Spiral" - }, - "position": { - "height": 0.005, - "width": 0.005, - "x": 0.0225, - "y": 0.0277 - }, - "props": { - "params": { - "tagProps": [ - "", - "", - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value" - ] - }, - "path": "Symbol-Views/Equipment-Views/Spiral" - }, - "type": "ia.display.view" - }, - { - "meta": { - "name": "Spiral_Symbol" - }, - "position": { - "height": 1, - "width": 1 - }, - "propConfig": { - "props.elements[1].elements[0].fill.paint": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case({value},\r\n0,{session.custom.colours.state0},\r\n1,{session.custom.colours.state1},\r\n2,{session.custom.colours.state2},\r\n3,{session.custom.colours.state3},\r\n4,{session.custom.colours.state4},\r\n5,if({view.custom.running},{session.custom.colours.state5},{session.custom.colours.state0}),\r\n6,{session.custom.colours.state6},\r\n{session.custom.colours.fallback}\r\n)", - "type": "expression" - }, - { - "expression": "if({view.custom.display_icon}\u0026\u0026 {view.custom.isMatch}\u003d0,{value},{value}+\u002700\u0027)", - "type": "expression" - } - ], - "type": "property" - } - }, - "props.style.classes": { - "binding": { - "config": { - "expression": "if({session.custom.colours.colour_impaired} \u003d True \u0026\u0026 {view.custom.isMatch} \u003e 0,\r\n{view.custom.state} + 100 + {view.custom.isMatch},\r\n{view.custom.state} + {view.custom.isMatch})" - }, - "transforms": [ - { - "fallback": "", - "inputType": "scalar", - "mappings": [ - { - "input": 101, - "output": "State-Styles/State101" - }, - { - "input": 102, - "output": "State-Styles/State102" - }, - { - "input": 103, - "output": "State-Styles/State103" - }, - { - "input": 104, - "output": "State-Styles/State104" - }, - { - "input": 105, - "output": "State-Styles/State105" - }, - { - "input": 106, - "output": "State-Styles/State106" - }, - { - "input": 201, - "output": "State-Styles/State201" - }, - { - "input": 202, - "output": "State-Styles/State202" - }, - { - "input": 203, - "output": "State-Styles/State203" - }, - { - "input": 204, - "output": "State-Styles/State204" - }, - { - "input": 205, - "output": "State-Styles/State205" - } - ], - "outputType": "style-list", - "type": "map" - } - ], - "type": "expr" - } - } - }, - "props": { - "elements": [ - { - "id": "defs2", - "name": "defs2", - "type": "defs" - }, - { - "elements": [ - { - "cx": "6.6145835", - "cy": "6.6145835", - "fill": {}, - "id": "path234", - "name": "path234", - "r": "6.303678", - "stroke": { - "dasharray": "none", - "paint": "#000000", - "width": "0.23" - }, - "type": "circle" - }, - { - "cx": "6.6145835", - "cy": "6.6145835", - "fill": { - "paint": "transparent" - }, - "id": "path234-7", - "name": "path234-7", - "r": "3.313657", - "stroke": { - "dasharray": "none", - "paint": "#000000", - "width": "0.221" - }, - "type": "circle" - }, - { - "d": "M 6.6188113,9.8749524 6.6103553,3.3542142", - "fill": { - "paint": "transparent" - }, - "id": "path3429", - "name": "path3429", - "stroke": { - "dasharray": "none", - "paint": "#000000", - "width": "0.218" - }, - "type": "path" - }, - { - "d": "M 4.978764,9.47052 8.23181,3.819167", - "fill": { - "paint": "transparent" - }, - "id": "path3429-8", - "name": "path3429-8", - "stroke": { - "dasharray": "none", - "paint": "#000000", - "width": "0.218" - }, - "type": "path" - }, - { - "d": "M 3.818909,8.2200703 9.461806,4.9523781", - "fill": { - "paint": "transparent" - }, - "id": "path3429-8-2", - "name": "path3429-8-2", - "stroke": { - "dasharray": "none", - "paint": "#000000", - "width": "0.218" - }, - "type": "path" - }, - { - "d": "M 3.3168328,6.6175189 9.837571,6.6090589", - "fill": { - "paint": "transparent" - }, - "id": "path3429-8-2-6", - "name": "path3429-8-2-6", - "stroke": { - "dasharray": "none", - "paint": "#000000", - "width": "0.218" - }, - "type": "path" - }, - { - "d": "M 3.7180036,4.9712623 6.8282074,6.7528116", - "fill": { - "paint": "transparent" - }, - "id": "path3429-8-2-6-5", - "name": "path3429-8-2-6-5", - "stroke": { - "dasharray": "none", - "paint": "#000000", - "width": "0.219869" - }, - "type": "path" - }, - { - "d": "M 4.9523763,3.7647768 8.2200718,9.4076712", - "fill": { - "paint": "transparent" - }, - "id": "path3429-8-2-6-5-5", - "name": "path3429-8-2-6-5-5", - "stroke": { - "dasharray": "none", - "paint": "#000000", - "width": "0.218" - }, - "type": "path" - }, - { - "cx": "6.6145835", - "cy": "6.6145835", - "fill": { - "opacity": "1", - "paint": "#fefefe" - }, - "id": "path234-7-0", - "name": "path234-7-0", - "r": "0.26523831", - "stroke": { - "dasharray": "none", - "paint": "#000000", - "width": "0.218" - }, - "type": "circle" - } - ], - "id": "layer1", - "name": "layer1", - "type": "group" - } - ], - "style": {}, - "viewBox": "0 0 13.229166 13.229167" - }, - "type": "ia.shapes.svg" - } - ], - "events": { - "dom": { - "onClick": { - "config": { - "script": "\tsystem.perspective.openDock(\u0027Docked-East\u0027,params\u003d{\u0027tagProps\u0027:self.view.params.tagProps})" - }, - "scope": "G", - "type": "script" - }, - "onDoubleClick": { - "config": { - "script": "\ttagProps \u003d self.view.params.tagProps\n\tsystem.perspective.openPopup(\"StatusPopUP\", \"PopUp-Views/Controller-Equipment/Information\", params \u003d{\"tagProps\":tagProps})\n\t" - }, - "enabled": false, - "scope": "G", - "type": "script" - }, - "onMouseEnter": { - "config": { - "script": "\tfrom time import sleep\n\t\n\talarm \u003d []\n\tmessage \u003d None\n\t\n\tsleep(0.5)\n\t\n\tif system.tag.exists(\"System/aws_data\"):\n\t\tif self.view.params.tagProps[0] !\u003d \"\":\n\t\t\ttags_to_read \u003d system.tag.readBlocking(\"System/aws_data\")\n\t\t\tdecode_alarm_data \u003d system.util.jsonDecode(tags_to_read[0].value)\n\t\t\talarm \u003d [decode_alarm_data[i] for i in decode_alarm_data\n\t\t\t\t\tif decode_alarm_data[i][\u0027sourceId\u0027].startswith(self.view.params.tagProps[0])]\n\t\tif alarm:\n\t\t\talarm \u003d sorted(alarm, key \u003d lambda t:t[\u0027timestamp\u0027], reverse\u003dTrue)\n\t\t\tmessage \u003d max(alarm, key \u003d lambda p:p[\u0027priority\u0027]).get(\u0027message\u0027)\n\t\t\tif len(alarm) \u003e 1:\n\t\t\t\tmessage +\u003d \" (+\" + str(len(alarm)-1) + \")\"\n\tself.view.custom.alarm_message \u003d message" - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "root", - "tooltip": { - "enabled": true, - "location": "top-left", - "style": {} - } - }, - "propConfig": { - "meta.tooltip.style.backgroundColor": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case({value},\r\n0,{session.custom.colours.state0},\r\n1,{session.custom.colours.state1},\r\n2,{session.custom.colours.state2},\r\n3,{session.custom.colours.state3},\r\n4,{session.custom.colours.state4},\r\n5,{session.custom.colours.state5},\r\n6,{session.custom.colours.state6},\r\n{session.custom.colours.fallback}\r\n)", - "type": "expression" - } - ], - "type": "property" - } - }, - "meta.tooltip.style.classes": { - "binding": { - "config": { - "expression": "{view.custom.priority}" - }, - "transforms": [ - { - "fallback": "Alarms-Styles/NoAlarm", - "inputType": "scalar", - "mappings": [ - { - "input": 1, - "output": "Alarms-Styles/Diagnostic" - }, - { - "input": 2, - "output": "Alarms-Styles/Low" - }, - { - "input": 3, - "output": "Alarms-Styles/Medium" - }, - { - "input": 4, - "output": "Alarms-Styles/High" - } - ], - "outputType": "style-list", - "type": "map" - } - ], - "type": "expr" - } - }, - "meta.tooltip.style.color": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "if({session.custom.colours.colour_impaired},\r\n\t\u0027#000000\u0027,\r\n\tcase(\t{value},\r\n\t\t\t1,\u0027#FFFFFF\u0027,\r\n\t\t\t2,\u0027#000000\u0027,\r\n\t\t\t3,\u0027#000000\u0027,\r\n\t\t\t4,\u0027#FFFFFF\u0027,\r\n\t\t\t5,\u0027#FFFFFF\u0027,\r\n\t\t\t\u0027#000000\u0027)\r\n\t)", - "type": "expression" - } - ], - "type": "property" - } - }, - "meta.tooltip.text": { - "binding": { - "config": { - "expression": "if({view.custom.disconnected} \u003d False,\n\tif(isNull({view.custom.alarm_message}),\n\t\"Source Id: \" + {view.params.tagProps[0]} +\n\t\", Priority: \" + {view.custom.priority_string} +\n\t\", State: \" + {view.custom.state_string},\n\t\"Source Id: \" + {view.params.tagProps[0]} +\n\t\", Alarm: \" + {view.custom.alarm_message} +\n\t\", Priority: \" + {view.custom.priority_string} +\n\t\", State: \" + {view.custom.state_string}),\n\"Source Id: \" +{view.params.tagProps[0]} + \", Priority: Unknown, State: Unknown\")" - }, - "type": "expr" - } - }, - "props.style.classes": { - "binding": { - "config": { - "path": "view.custom.disconnected" - }, - "transforms": [ - { - "fallback": "Disconnects/Device-Connected", - "inputType": "scalar", - "mappings": [ - { - "input": true, - "output": "Disconnects/Device-Disconnected" - }, - { - "input": false, - "output": "Disconnects/Device-Connected" - } - ], - "outputType": "style-list", - "type": "map" - } - ], - "type": "property" - } - } - }, - "props": { - "aspectRatio": "1:1", - "mode": "percent", - "style": { - "cursor": "pointer" - } - }, - "type": "ia.container.coord" - } -} \ No newline at end of file diff --git a/.resources/0b69a2600dea457666fc3df215032010eeadae6fec9009a7bcc3a854b45edf25 b/.resources/0b69a2600dea457666fc3df215032010eeadae6fec9009a7bcc3a854b45edf25 deleted file mode 100644 index dcdc17ce..00000000 Binary files a/.resources/0b69a2600dea457666fc3df215032010eeadae6fec9009a7bcc3a854b45edf25 and /dev/null differ diff --git a/.resources/0d4ee3b7a19f8d643b9530956a1c2cbbb06a3816427bdb531284beff98a09acc b/.resources/0d4ee3b7a19f8d643b9530956a1c2cbbb06a3816427bdb531284beff98a09acc deleted file mode 100644 index 21642e63..00000000 Binary files a/.resources/0d4ee3b7a19f8d643b9530956a1c2cbbb06a3816427bdb531284beff98a09acc and /dev/null differ diff --git a/.resources/0dcc504a7cdff8175f2d25e1071fc7ea0a66ea01e57811a5a0c9225cee3c53df b/.resources/0dcc504a7cdff8175f2d25e1071fc7ea0a66ea01e57811a5a0c9225cee3c53df new file mode 100644 index 00000000..266cc2e9 Binary files /dev/null and b/.resources/0dcc504a7cdff8175f2d25e1071fc7ea0a66ea01e57811a5a0c9225cee3c53df differ diff --git a/.resources/0e574a657f2409006a0fc869305665e36f595223ea7ff96608daaa03368da2f2 b/.resources/0e574a657f2409006a0fc869305665e36f595223ea7ff96608daaa03368da2f2 deleted file mode 100644 index 4e758880..00000000 --- a/.resources/0e574a657f2409006a0fc869305665e36f595223ea7ff96608daaa03368da2f2 +++ /dev/null @@ -1,656 +0,0 @@ -{ - "custom": { - "FillColour": "value", - "alarm_message": null, - "covert_mode": true, - "disconnected": false, - "display_icon": true, - "error": false, - "isMatch": 0, - "plc": "value", - "priority": 0, - "priority_string": "No active alarms", - "running": false, - "running_status": 0, - "searchId": "value", - "show_error": false, - "show_running": true, - "state": 5, - "state_string": "Unknown" - }, - "params": { - "forceFaultStatus": null, - "forceRunningStatus": null, - "tagProps": [ - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value" - ] - }, - "propConfig": { - "custom.FillColour": { - "persistent": true - }, - "custom.alarm_message": { - "persistent": true - }, - "custom.covert_mode": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case(\t{value},\r\n\t\t0, {session.custom.alarm_filter.show_running},\r\n\t\t1, True,\r\n\t\t2, True,\r\n\t\t3, {session.custom.alarm_filter.show_low_alarm} || {session.custom.alarm_filter.show_running},\r\n\t\t4, {session.custom.alarm_filter.show_diagnostic} || {session.custom.alarm_filter.show_running},\r\n\t\t5, {session.custom.alarm_filter.show_running},\r\n\t\tFalse)", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.disconnected": { - "binding": { - "config": { - "fallbackDelay": 2.5, - "mode": "indirect", - "references": { - "fc": "{session.custom.fc}", - "plc": "{view.custom.plc}" - }, - "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{plc}/DCN" - }, - "transforms": [ - { - "expression": "if(isNull({value}), False, {value})", - "type": "expression" - } - ], - "type": "tag" - }, - "persistent": true - }, - "custom.display_icon": { - "binding": { - "config": { - "expression": "{this.custom.covert_mode}//||{this.custom.isMatch}\u003e0" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.error": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "0 \u003c {value} \u0026\u0026 {value} \u003c 5", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.isMatch": { - "binding": { - "config": { - "expression": "if({view.params.tagProps[0]}\u003d\"value\",0,\nif({this.custom.searchId}\u003d{view.params.tagProps[0]},100,0))" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.plc": { - "binding": { - "config": { - "path": "view.params.tagProps[0]" - }, - "transforms": [ - { - "expression": "split({value}, \"/\")[0]", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.priority": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "fallback": 0, - "inputType": "scalar", - "mappings": [ - { - "input": 1, - "output": 4 - }, - { - "input": 2, - "output": 3 - }, - { - "input": 3, - "output": 2 - }, - { - "input": 4, - "output": 1 - } - ], - "outputType": "scalar", - "type": "map" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.priority_string": { - "binding": { - "config": { - "expression": "case({view.custom.state},\r\n1, \"High\",\r\n2, \"Medium\",\r\n3, \"Low\",\r\n4, \"Diagnostic\",\r\n5, \"No active alarms\",\r\n\"Unknown\")" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.running": { - "binding": { - "config": { - "expression": "{view.custom.running_status} \u003d 3" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.running_status": { - "binding": { - "config": { - "fallbackDelay": 2.5, - "mode": "indirect", - "references": { - "0": "{view.params.tagProps[0]}", - "fc": "{session.custom.fc}" - }, - "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/STATE" - }, - "transforms": [ - { - "expression": "coalesce({value},{view.params.forceRunningStatus},0)", - "type": "expression" - } - ], - "type": "tag" - }, - "persistent": true - }, - "custom.searchId": { - "binding": { - "config": { - "path": "session.custom.searchId" - }, - "type": "property" - }, - "persistent": true - }, - "custom.show_error": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case(\t{value},\r\n\t\t1, True,\r\n\t\t2, True,\r\n\t\t3, {session.custom.alarm_filter.show_low_alarm},\r\n\t\t4, {session.custom.alarm_filter.show_diagnostic},\r\n\t\tFalse)", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.show_running": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case(\t{value},\r\n\t\t1, False,\r\n\t\t2, False,\r\n\t\t{session.custom.alarm_filter.show_running}\r\n\t\t)", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.state": { - "binding": { - "config": { - "fallbackDelay": 2.5, - "mode": "indirect", - "references": { - "0": "{view.params.tagProps[0]}", - "fc": "{session.custom.fc}" - }, - "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/ALARMST" - }, - "transforms": [ - { - "expression": "coalesce({value},{view.params.forceFaultStatus},0)", - "type": "expression" - }, - { - "fallback": null, - "inputType": "scalar", - "mappings": [ - { - "input": 4, - "output": 1 - }, - { - "input": 3, - "output": 2 - }, - { - "input": 2, - "output": 3 - }, - { - "input": 1, - "output": 4 - }, - { - "input": 0, - "output": 5 - } - ], - "outputType": "scalar", - "type": "map" - } - ], - "type": "tag" - }, - "persistent": true - }, - "custom.state_string": { - "binding": { - "config": { - "expression": "case({view.custom.running_status},\r\n1, \"Faulted\",\r\n2, \"Stopped\",\r\n3, \"Running\",\r\n\"Unknown\")" - }, - "type": "expr" - }, - "persistent": true - }, - "params.forceFaultStatus": { - "paramDirection": "input", - "persistent": true - }, - "params.forceRunningStatus": { - "paramDirection": "input", - "persistent": true - }, - "params.tagProps": { - "paramDirection": "inout", - "persistent": true - } - }, - "props": { - "defaultSize": { - "height": 100, - "width": 100 - } - }, - "root": { - "children": [ - { - "meta": { - "name": "PPI" - }, - "position": { - "height": 1, - "width": 1 - }, - "propConfig": { - "props.elements[1].elements[0].fill.paint": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case({value},\r\n0,{session.custom.colours.state0},\r\n1,{session.custom.colours.state1},\r\n2,{session.custom.colours.state2},\r\n3,{session.custom.colours.state3},\r\n4,{session.custom.colours.state4},\r\n5,{session.custom.colours.state5},\r\n6,{session.custom.colours.state6},\r\n{session.custom.colours.fallback}\r\n)", - "type": "expression" - }, - { - "expression": "if({view.custom.display_icon}\u0026\u0026 {view.custom.isMatch}\u003d0,{value},{value}+\u002700\u0027)", - "type": "expression" - } - ], - "type": "property" - } - }, - "props.style.classes": { - "binding": { - "config": { - "expression": "if({session.custom.colours.colour_impaired} \u003d True \u0026\u0026 {view.custom.isMatch} \u003e 0,\r\n{view.custom.state} + 100 + {view.custom.isMatch},\r\n{view.custom.state} + {view.custom.isMatch})" - }, - "transforms": [ - { - "fallback": "", - "inputType": "scalar", - "mappings": [ - { - "input": 101, - "output": "State-Styles/State101" - }, - { - "input": 102, - "output": "State-Styles/State102" - }, - { - "input": 103, - "output": "State-Styles/State103" - }, - { - "input": 104, - "output": "State-Styles/State104" - }, - { - "input": 105, - "output": "State-Styles/State105" - }, - { - "input": 106, - "output": "State-Styles/State106" - }, - { - "input": 201, - "output": "State-Styles/State201" - }, - { - "input": 202, - "output": "State-Styles/State202" - }, - { - "input": 203, - "output": "State-Styles/State203" - }, - { - "input": 204, - "output": "State-Styles/State204" - }, - { - "input": 205, - "output": "State-Styles/State205" - } - ], - "outputType": "style-list", - "type": "map" - } - ], - "type": "expr" - } - } - }, - "props": { - "elements": [ - { - "id": "defs1", - "name": "defs1", - "type": "defs" - }, - { - "elements": [ - { - "cx": "6.6145835", - "cy": "6.6145835", - "fill": {}, - "id": "path1", - "name": "path1", - "r": "6.019948", - "stroke": { - "dasharray": "none", - "paint": "#000000", - "width": "0.264583" - }, - "type": "circle" - }, - { - "d": "m 2.1166666,8.5242134 h 3.175", - "fill": { - "paint": "transparent" - }, - "id": "path2", - "name": "path2", - "stroke": { - "dasharray": "none", - "paint": "#000000", - "width": "0.264583" - }, - "type": "path" - }, - { - "d": "M 7.9374999,8.5242134 H 11.112492", - "fill": { - "paint": "transparent" - }, - "id": "path3", - "name": "path3", - "stroke": { - "dasharray": "none", - "paint": "#000000", - "width": "0.264583" - }, - "type": "path" - }, - { - "d": "M 5.1593748,4.183724 V 8.4170573", - "fill": { - "paint": "transparent" - }, - "id": "path5", - "name": "path5", - "stroke": { - "dasharray": "none", - "paint": "#000000", - "width": "0.264583" - }, - "type": "path" - }, - { - "d": "m 8.2020833,4.1405926 h -3.175", - "fill": { - "paint": "transparent" - }, - "id": "path6", - "name": "path6", - "stroke": { - "dasharray": "none", - "paint": "#000000", - "width": "0.264583" - }, - "type": "path" - }, - { - "d": "M 8.0697914,4.183724 V 8.4170573", - "fill": { - "paint": "transparent" - }, - "id": "path7", - "name": "path7", - "stroke": { - "dasharray": "none", - "paint": "#000000", - "width": "0.264583" - }, - "type": "path" - } - ], - "id": "layer1", - "name": "layer1", - "type": "group" - } - ], - "style": {}, - "viewBox": "0 0 13.229166 13.229167" - }, - "type": "ia.shapes.svg" - } - ], - "events": { - "dom": { - "onClick": { - "config": { - "script": "\tsystem.perspective.openDock(\u0027Docked-East\u0027,params\u003d{\u0027tagProps\u0027:self.view.params.tagProps})" - }, - "scope": "G", - "type": "script" - }, - "onDoubleClick": { - "config": { - "script": "\ttagProps \u003d self.view.params.tagProps\n\tsystem.perspective.openPopup(\"StatusPopUP\", \"PopUp-Views/Controller-Equipment/Information\", params \u003d{\"tagProps\":tagProps})\n\t" - }, - "enabled": false, - "scope": "G", - "type": "script" - }, - "onMouseEnter": { - "config": { - "script": "\tfrom time import sleep\n\t\n\talarm \u003d []\n\tmessage \u003d None\n\t\n\tsleep(0.5)\n\t\n\tif system.tag.exists(\"System/aws_data\"):\n\t\tif self.view.params.tagProps[0] !\u003d \"\":\n\t\t\ttags_to_read \u003d system.tag.readBlocking(\"System/aws_data\")\n\t\t\tdecode_alarm_data \u003d system.util.jsonDecode(tags_to_read[0].value)\n\t\t\talarm \u003d [decode_alarm_data[i] for i in decode_alarm_data\n\t\t\t\t\tif decode_alarm_data[i][\u0027sourceId\u0027].startswith(self.view.params.tagProps[0])]\n\t\tif alarm:\n\t\t\talarm \u003d sorted(alarm, key \u003d lambda t:t[\u0027timestamp\u0027], reverse\u003dTrue)\n\t\t\tmessage \u003d max(alarm, key \u003d lambda p:p[\u0027priority\u0027]).get(\u0027message\u0027)\n\t\t\tif len(alarm) \u003e 1:\n\t\t\t\tmessage +\u003d \" (+\" + str(len(alarm)-1) + \")\"\n\tself.view.custom.alarm_message \u003d message" - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "root", - "tooltip": { - "enabled": true, - "location": "top-left", - "style": {} - } - }, - "propConfig": { - "meta.tooltip.style.backgroundColor": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case({value},\r\n0,{session.custom.colours.state0},\r\n1,{session.custom.colours.state1},\r\n2,{session.custom.colours.state2},\r\n3,{session.custom.colours.state3},\r\n4,{session.custom.colours.state4},\r\n5,{session.custom.colours.state5},\r\n6,{session.custom.colours.state6},\r\n{session.custom.colours.fallback}\r\n)", - "type": "expression" - } - ], - "type": "property" - } - }, - "meta.tooltip.style.classes": { - "binding": { - "config": { - "expression": "{view.custom.priority}" - }, - "transforms": [ - { - "fallback": "Alarms-Styles/NoAlarm", - "inputType": "scalar", - "mappings": [ - { - "input": 1, - "output": "Alarms-Styles/Diagnostic" - }, - { - "input": 2, - "output": "Alarms-Styles/Low" - }, - { - "input": 3, - "output": "Alarms-Styles/Medium" - }, - { - "input": 4, - "output": "Alarms-Styles/High" - } - ], - "outputType": "style-list", - "type": "map" - } - ], - "type": "expr" - } - }, - "meta.tooltip.style.color": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "if({session.custom.colours.colour_impaired},\r\n\t\u0027#000000\u0027,\r\n\tcase(\t{value},\r\n\t\t\t1,\u0027#FFFFFF\u0027,\r\n\t\t\t2,\u0027#000000\u0027,\r\n\t\t\t3,\u0027#000000\u0027,\r\n\t\t\t4,\u0027#FFFFFF\u0027,\r\n\t\t\t5,\u0027#FFFFFF\u0027,\r\n\t\t\t\u0027#000000\u0027)\r\n\t)", - "type": "expression" - } - ], - "type": "property" - } - }, - "meta.tooltip.text": { - "binding": { - "config": { - "expression": "if({view.custom.disconnected} \u003d False,\n\tif(isNull({view.custom.alarm_message}),\n\t\"Source Id: \" + {view.params.tagProps[0]} +\n\t\", Priority: \" + {view.custom.priority_string} +\n\t\", State: \" + {view.custom.state_string},\n\t\"Source Id: \" + {view.params.tagProps[0]} +\n\t\", Alarm: \" + {view.custom.alarm_message} +\n\t\", Priority: \" + {view.custom.priority_string} +\n\t\", State: \" + {view.custom.state_string}),\n\"Source Id: \" +{view.params.tagProps[0]} + \", Priority: Unknown, State: Unknown\")" - }, - "type": "expr" - } - }, - "props.style.classes": { - "binding": { - "config": { - "path": "view.custom.disconnected" - }, - "transforms": [ - { - "fallback": "Disconnects/Device-Connected", - "inputType": "scalar", - "mappings": [ - { - "input": true, - "output": "Disconnects/Device-Disconnected" - }, - { - "input": false, - "output": "Disconnects/Device-Connected" - } - ], - "outputType": "style-list", - "type": "map" - } - ], - "type": "property" - } - } - }, - "props": { - "aspectRatio": "1:1", - "mode": "percent", - "style": { - "cursor": "pointer" - } - }, - "type": "ia.container.coord" - } -} \ No newline at end of file diff --git a/.resources/0f09a1c681c1a4dddc3a6cabd6785bec04020561461a59aeda2db1a0baad3f1a b/.resources/0f09a1c681c1a4dddc3a6cabd6785bec04020561461a59aeda2db1a0baad3f1a deleted file mode 100644 index 7eb98ea7..00000000 --- a/.resources/0f09a1c681c1a4dddc3a6cabd6785bec04020561461a59aeda2db1a0baad3f1a +++ /dev/null @@ -1,773 +0,0 @@ -{ - "custom": { - "api_region_name": "na", - "bucket_options": [ - { - "label": "Image Files", - "value": "na-ignition-image-repo" - }, - { - "label": "Source Files", - "value": "na-ignition-image-source" - } - ], - "default_query_params": { - "bucket": null, - "object_key": null, - "site": null, - "view": null - }, - "destination_view_suffix": null, - "object_key": null, - "stage_config": { - "account_id": "925510716640", - "endpoint": "https://scada-s3-management.narme-scada.rme.amazon.dev/", - "lambda_name": "RMESDScadaS3ManagementFlaskLambda-prod", - "region": "us-east-2", - "repo_bucket": "na-ignition-image-repo", - "s3_region": "us-east-1", - "source_bucket": "na-ignition-image-source" - }, - "view_options_by_site_and_bucket": [], - "view_suffix": null, - "whid_options": [] - }, - "params": { - "query_params": { - "bucket": null, - "object_key": null, - "site": null, - "view": null - } - }, - "propConfig": { - "custom.api_region_name": { - "binding": { - "config": { - "path": "session.custom.aws.prefix" - }, - "type": "property" - }, - "persistent": true - }, - "custom.bucket_options": { - "binding": { - "config": { - "path": "view.custom.stage_config" - }, - "transforms": [ - { - "code": "\treturn [{\u0027value\u0027: value.repo_bucket, \u0027label\u0027: \u0027Image Files\u0027},\n\t\t\t{\u0027value\u0027: value.source_bucket, \u0027label\u0027: \u0027Source Files\u0027}]", - "type": "script" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.default_query_params": { - "persistent": true - }, - "custom.object_key": { - "binding": { - "config": { - "path": "view.params.query_params" - }, - "transforms": [ - { - "code": "\tstage_config \u003d self.custom.stage_config\n\tbucket \u003d self.params.query_params.bucket\n\tsite \u003d self.params.query_params.site\n\tview \u003d self.params.query_params.view\n\tif bucket and site and view:\n\t\tif bucket \u003d\u003d stage_config.repo_bucket:\n\t\t\tsuffix \u003d \u0027.svg\u0027\n\t\t\tsubfolder \u003d \u0027images\u0027\n\t\telse:\n\t\t\tsuffix \u003d \u0027.drawio\u0027\n\t\t\tsubfolder \u003d \u0027source\u0027\n\t\treturn \"SCADA/%s/%s/%s%s\" % (site, subfolder, view, suffix)\n\telse:\n\t\treturn None\n", - "type": "script" - } - ], - "type": "property" - }, - "onChange": { - "enabled": null, - "script": "\td \u003d self.params.query_params\n\tif getattr(currentValue, \u0027value\u0027, None):\n\t\tself.params.query_params.object_key \u003d currentValue.value\n\t" - }, - "persistent": true - }, - "custom.stage_config": { - "binding": { - "config": { - "expression": "{view.custom.api_region_name}" - }, - "transforms": [ - { - "code": "\treturn AWS.s3.STAGE_CONFIG[\u0027prod\u0027][value]", - "type": "script" - } - ], - "type": "expr" - }, - "persistent": true - }, - "custom.view_options_by_site_and_bucket": { - "binding": { - "config": { - "expression": "{view.params.query_params.site}+{view.params.query_params.bucket}" - }, - "transforms": [ - { - "code": "\tbucket \u003d self.params.query_params.bucket\n\tsite \u003d self.params.query_params.site\n\tif bucket and site:\n\t\tfrom AWS.s3 import S3Manager\n\t\tfrom helper.helper import sanitize_tree\n\t\tfrom pprint import pformat\n\t\t\n\t\tapi_stage \u003d \u0027prod\u0027\n\t\tusername \u003d self.session.props.auth.user.userName\n\t\tapi_region_name \u003d self.view.custom.api_region_name\n\t\t\n\t\ts3m \u003d S3Manager(api_stage, api_region_name, username)\n\t\tsuffix \u003d self.custom.view_suffix\n\t\tfiles \u003d sanitize_tree(s3m.fetch_object_list_by_site_and_bucket(site, bucket))\n\t\treturn [{\u0027value\u0027: x[\u0027Filename\u0027].replace(suffix,\u0027\u0027), \n\t\t\t\t\u0027label\u0027: x[\u0027Filename\u0027].replace(suffix,\u0027\u0027)} for x in files]\n\treturn []", - "type": "script" - } - ], - "type": "expr" - }, - "persistent": true - }, - "custom.view_suffix": { - "binding": { - "config": { - "path": "view.params.query_params.bucket" - }, - "transforms": [ - { - "code": "\tif value:\n\t\tstage_config \u003d self.custom.stage_config\n\t\tif value \u003d\u003d stage_config.get(\u0027repo_bucket\u0027, None):\n\t\t\treturn \".svg\"\n\t\tif value \u003d\u003d stage_config.get(\"source_bucket\", None):\n\t\t\treturn \".drawio\"\n\treturn value", - "type": "script" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.whid_options": { - "binding": { - "config": { - "path": "view.params.query_params.bucket" - }, - "transforms": [ - { - "code": "\tif value:\n\t\tfrom AWS.s3 import S3Manager\n\t\t\n\t\tapi_stage \u003d \u0027prod\u0027\n\t\tusername \u003d self.session.props.auth.user.userName\n\t\tapi_region_name \u003d self.custom.api_region_name\n\t\t\n\t\ts3m \u003d S3Manager(\u0027prod\u0027, api_region_name, username)\n\t\t\n\t\treturn [{\u0027value\u0027: x, \u0027label\u0027: x} for x in s3m.fetch_site_list(value)]\n\treturn []", - "type": "script" - } - ], - "type": "property" - }, - "persistent": true - }, - "params.query_params": { - "onChange": { - "enabled": null, - "script": "\tif not missedEvents and origin in (\u0027Binding\u0027, \u0027Script\u0027, \u0027BindingWriteback\u0027):\n\t\tpayload \u003d currentValue.value\n\t\tsystem.perspective.sendMessage(\u0027list_versions_query_params_changed\u0027, payload, scope\u003d\u0027session\u0027)\n\t\t" - }, - "paramDirection": "input", - "persistent": true - } - }, - "props": { - "defaultSize": { - "height": 600 - } - }, - "root": { - "children": [ - { - "children": [ - { - "meta": { - "name": "Label" - }, - "position": { - "shrink": 0 - }, - "props": { - "style": { - "borderStyle": "none", - "classes": "Framework/Card/Title_transparent" - }, - "text": "Select Query Params" - }, - "type": "ia.display.label" - }, - { - "children": [ - { - "events": { - "component": { - "onActionPerformed": { - "config": { - "script": "\t# reset query params to default values \n\t# (stored in `view.custom.default_query_params`)\n\tself.view.params.query_params \u003d self.view.custom.default_query_params" - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "Clear Button", - "tooltip": { - "enabled": true, - "location": "bottom-right", - "text": "Clear Selections" - } - }, - "position": { - "shrink": 0 - }, - "props": { - "image": { - "icon": { - "path": "material/clear_all" - } - }, - "primary": false, - "style": { - "classes": "Input/Button/Secondary_minimal" - }, - "text": "" - }, - "type": "ia.input.button" - }, - { - "events": { - "component": { - "onActionPerformed": { - "config": { - "script": "\t# refresh version table query via message handler\n\tsystem.perspective.sendMessage(\u0027refresh_version_table_data\u0027, scope\u003d\u0027session\u0027)\n\t" - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "Refresh Button", - "tooltip": { - "enabled": true, - "location": "bottom-right", - "text": "Refresh Data" - } - }, - "position": { - "shrink": 0 - }, - "propConfig": { - "props.enabled": { - "binding": { - "config": { - "expression": "!isNull({view.params.query_params.bucket})\r\n\u0026\u0026!isNull({view.params.query_params.site})\r\n\u0026\u0026!isNull({view.params.query_params.view})\r\n\u0026\u0026!isNull({view.params.query_params.object_key})" - }, - "type": "expr" - } - } - }, - "props": { - "image": { - "icon": { - "path": "material/refresh" - } - }, - "primary": false, - "style": { - "classes": "Input/Button/Secondary_minimal" - }, - "text": "" - }, - "type": "ia.input.button" - } - ], - "meta": { - "name": "FlexContainer" - }, - "position": { - "grow": 1 - }, - "props": { - "justify": "flex-end" - }, - "type": "ia.container.flex" - } - ], - "meta": { - "name": "FlexContainer Header" - }, - "position": { - "shrink": 0 - }, - "props": { - "style": { - "classes": "Framework/Card/Title_transparent", - "marginBottom": "2px" - } - }, - "type": "ia.container.flex" - }, - { - "children": [ - { - "children": [ - { - "meta": { - "name": "Label" - }, - "position": { - "basis": "125px", - "shrink": 0 - }, - "props": { - "style": { - "classes": "Framework/Card/Label", - "textAlign": "right" - }, - "text": "Bucket" - }, - "type": "ia.display.label" - }, - { - "meta": { - "name": "Dropdown" - }, - "position": { - "basis": "540px", - "grow": 1 - }, - "propConfig": { - "props.options": { - "binding": { - "config": { - "path": "view.custom.bucket_options" - }, - "type": "property" - } - }, - "props.value": { - "binding": { - "config": { - "bidirectional": true, - "path": "view.params.query_params.bucket" - }, - "type": "property" - } - } - }, - "props": { - "dropdownOptionStyle": { - "overflowWrap": "break-word", - "whiteSpace": "normal" - }, - "showClearIcon": true - }, - "type": "ia.input.dropdown" - }, - { - "events": { - "component": { - "onActionPerformed": { - "config": { - "script": "\tself.view.params.query_params.bucket \u003d None\n\t" - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "Clear Button" - }, - "position": { - "shrink": 0 - }, - "propConfig": { - "props.enabled": { - "binding": { - "config": { - "expression": "!isNull({view.params.query_params.bucket})\r\n\u0026\u0026{view.params.query_params.bucket}!\u003d\u0027\u0027" - }, - "type": "expr" - } - } - }, - "props": { - "image": { - "icon": { - "path": "material/clear" - } - }, - "primary": false, - "style": { - "classes": "Input/Button/Secondary_minimal" - }, - "text": "" - }, - "type": "ia.input.button" - } - ], - "meta": { - "name": "Bucket" - }, - "position": { - "basis": "100%", - "grow": 1 - }, - "props": { - "style": { - "overflow": "hidden" - } - }, - "type": "ia.container.flex" - } - ], - "meta": { - "name": "FlexContainer_1" - }, - "position": { - "shrink": 0 - }, - "props": { - "justify": "center" - }, - "type": "ia.container.flex" - }, - { - "children": [ - { - "children": [ - { - "meta": { - "name": "Label" - }, - "position": { - "basis": "125px", - "shrink": 0 - }, - "props": { - "style": { - "classes": "Framework/Card/Label", - "textAlign": "right" - }, - "text": "Site" - }, - "type": "ia.display.label" - }, - { - "meta": { - "name": "Dropdown" - }, - "position": { - "basis": "540px", - "grow": 1 - }, - "propConfig": { - "props.enabled": { - "binding": { - "config": { - "expression": "!isNull({view.params.query_params.bucket})\r\n\u0026\u0026len({view.params.query_params.bucket})\u003e0" - }, - "type": "expr" - } - }, - "props.options": { - "binding": { - "config": { - "path": "view.custom.whid_options" - }, - "type": "property" - } - }, - "props.value": { - "binding": { - "config": { - "bidirectional": true, - "path": "view.params.query_params.site" - }, - "type": "property" - } - } - }, - "props": { - "dropdownOptionStyle": { - "overflowWrap": "break-word", - "whiteSpace": "normal" - }, - "showClearIcon": true - }, - "type": "ia.input.dropdown" - }, - { - "events": { - "component": { - "onActionPerformed": { - "config": { - "script": "\tself.view.params.query_params.site \u003d None\n\t" - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "Clear Button" - }, - "position": { - "shrink": 0 - }, - "propConfig": { - "props.enabled": { - "binding": { - "config": { - "expression": "!isNull({view.params.query_params.site})\r\n\u0026\u0026{view.params.query_params.site}!\u003d\u0027\u0027" - }, - "type": "expr" - } - } - }, - "props": { - "image": { - "icon": { - "path": "material/clear" - } - }, - "primary": false, - "style": { - "classes": "Input/Button/Secondary_minimal" - }, - "text": "" - }, - "type": "ia.input.button" - } - ], - "meta": { - "name": "Site" - }, - "position": { - "basis": "100%", - "grow": 1 - }, - "props": { - "style": { - "overflow": "hidden" - } - }, - "type": "ia.container.flex" - } - ], - "meta": { - "name": "FlexContainer_2" - }, - "position": { - "shrink": 0 - }, - "props": { - "justify": "center" - }, - "type": "ia.container.flex" - }, - { - "children": [ - { - "children": [ - { - "meta": { - "name": "Label" - }, - "position": { - "basis": "125px", - "shrink": 0 - }, - "props": { - "style": { - "classes": "Framework/Card/Label", - "textAlign": "right" - }, - "text": "View" - }, - "type": "ia.display.label" - }, - { - "meta": { - "name": "Dropdown" - }, - "position": { - "basis": "540px", - "grow": 1 - }, - "propConfig": { - "props.enabled": { - "binding": { - "config": { - "expression": "!isNull({view.params.query_params.bucket})\r\n\u0026\u0026len({view.params.query_params.bucket})\u003e0\r\n\u0026\u0026!isNull({view.params.query_params.site})\r\n\u0026\u0026len({view.params.query_params.site})\u003e0" - }, - "type": "expr" - } - }, - "props.options": { - "binding": { - "config": { - "path": "view.custom.view_options_by_site_and_bucket" - }, - "type": "property" - } - }, - "props.value": { - "binding": { - "config": { - "bidirectional": true, - "path": "view.params.query_params.view" - }, - "type": "property" - } - } - }, - "props": { - "dropdownOptionStyle": { - "overflowWrap": "break-word", - "whiteSpace": "normal" - }, - "showClearIcon": true - }, - "type": "ia.input.dropdown" - }, - { - "events": { - "component": { - "onActionPerformed": { - "config": { - "script": "\tself.view.params.query_params.view \u003d None\n\t" - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "Clear Button" - }, - "position": { - "shrink": 0 - }, - "propConfig": { - "props.enabled": { - "binding": { - "config": { - "expression": "!isNull({view.params.query_params.view})\r\n\u0026\u0026{view.params.query_params.view}!\u003d\u0027\u0027" - }, - "type": "expr" - } - } - }, - "props": { - "image": { - "icon": { - "path": "material/clear" - } - }, - "primary": false, - "style": { - "classes": "Input/Button/Secondary_minimal" - }, - "text": "" - }, - "type": "ia.input.button" - } - ], - "meta": { - "name": "View" - }, - "position": { - "basis": "100%", - "grow": 1 - }, - "props": { - "style": { - "overflow": "hidden" - } - }, - "type": "ia.container.flex" - } - ], - "meta": { - "name": "FlexContainer_3" - }, - "position": { - "shrink": 0 - }, - "props": { - "justify": "center" - }, - "type": "ia.container.flex" - }, - { - "children": [ - { - "children": [ - { - "meta": { - "name": "Label" - }, - "position": { - "basis": "125px", - "shrink": 0 - }, - "props": { - "style": { - "classes": "Framework/Card/Label", - "textAlign": "right" - }, - "text": "Object Key" - }, - "type": "ia.display.label" - }, - { - "meta": { - "name": "Label_0" - }, - "position": { - "grow": 1 - }, - "propConfig": { - "props.text": { - "binding": { - "config": { - "path": "view.params.query_params.object_key" - }, - "type": "property" - } - } - }, - "props": { - "style": { - "classes": "Framework/Card/Value", - "textAlign": "left" - } - }, - "type": "ia.display.label" - } - ], - "meta": { - "name": "Object Key" - }, - "position": { - "basis": "100%", - "grow": 1 - }, - "props": { - "style": { - "overflow": "hidden" - } - }, - "type": "ia.container.flex" - } - ], - "meta": { - "name": "FlexContainer_4" - }, - "position": { - "shrink": 0 - }, - "props": { - "justify": "center" - }, - "type": "ia.container.flex" - } - ], - "meta": { - "name": "root" - }, - "props": { - "direction": "column" - }, - "type": "ia.container.flex" - } -} \ No newline at end of file diff --git a/.resources/11561e03dca08ddf7c4ef661297e67ac67227b56dbd5e73c67cecd48bcb96000 b/.resources/11561e03dca08ddf7c4ef661297e67ac67227b56dbd5e73c67cecd48bcb96000 deleted file mode 100644 index c4431bb8..00000000 Binary files a/.resources/11561e03dca08ddf7c4ef661297e67ac67227b56dbd5e73c67cecd48bcb96000 and /dev/null differ diff --git a/.resources/1364b21d237e2fac60cbbe0f444ff19d88975d0fa06e959d028cff228034e8bf b/.resources/1364b21d237e2fac60cbbe0f444ff19d88975d0fa06e959d028cff228034e8bf new file mode 100644 index 00000000..670f539f --- /dev/null +++ b/.resources/1364b21d237e2fac60cbbe0f444ff19d88975d0fa06e959d028cff228034e8bf @@ -0,0 +1,1249 @@ +{ + "custom": {}, + "params": { + "tagProps": [ + "TAG0", + "TAG1", + "TAG2", + "TAG3", + "TAG4", + "TAG5", + "TAG6", + "TAG7", + "TAG8", + "TAG9", + "TAG10", + "TAG11", + "TAG12", + "TAG13", + "TAG14", + "TAG15", + "TAG16" + ] + }, + "props": { + "defaultSize": { + "height": 1080, + "width": 1920 + } + }, + "root": { + "children": [ + { + "meta": { + "name": "DPM" + }, + "position": { + "height": 1, + "width": 1 + }, + "propConfig": { + "props.params.con_lines[0]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[0]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[10]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[10]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[11]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[11]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[12]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[12]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[13]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[13]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[14]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[14]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[15]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[15]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[16]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[16]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[1]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[1]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[2]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[2]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[3]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[3]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[4]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[4]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[5]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[5]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[6]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[6]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[7]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[7]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[8]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[8]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[9]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[9]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + } + }, + "props": { + "params": { + "con_lines": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + false, + false, + false, + false, + false, + false, + false + ], + "con_lines_visible": [ + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + false, + false, + false, + false, + false, + false, + false + ], + "in": false, + "out": false + }, + "path": "Windows/Tabs/Enternet Windows/Components/DPM_TO_HUB" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL1_1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0232, + "y": 0.4991 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL1_1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.0094, + "y": 0.5394 + }, + "props": { + "text": "UL1_1_VFD1 11.200.1.30", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL1_2" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.023, + "y": 0.6677 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL1_2_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.0068, + "y": 0.7315 + }, + "props": { + "text": "UL1_2_VFD1 11.200.1.31", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL1_3" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0216, + "y": 0.8333 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL1_3_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.0068, + "y": 0.8981 + }, + "props": { + "text": "UL1_3_VFD1 11.200.1.32", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL1_4" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0229, + "y": 0.3333 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL1_4_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.0068, + "y": 0.3986 + }, + "props": { + "text": "UL1_4_VFD1 11.200.1.33", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL1_5" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0229, + "y": 0.1667 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL1_5_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.0068, + "y": 0.2324 + }, + "props": { + "text": "UL1_5_VFD1 11.200.1.34", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL1_6" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0244 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL1_6_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.0068, + "y": 0.0653 + }, + "props": { + "text": "UL1_6_VFD1 11.200.1.35", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL1_7" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.5 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL1_7_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.5117, + "y": 0.1662 + }, + "props": { + "text": "UL1_7_VFD1 11.200.1.36", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL2_2_EXTENDO" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.625 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL2_2_EXTENDO_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.6312, + "y": 0.1664 + }, + "props": { + "text": "UL2_2_EXTENDO 11.200.1.37", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL2_3" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.75 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL2_3_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.75, + "y": 0.1664 + }, + "props": { + "text": "UL2_3_VFD1 11.200.1.38", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL2_4" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.375 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL2_4_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.3864, + "y": 0.1664 + }, + "props": { + "text": "UL2_4_VFD1 11.200.1.39", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL2_5" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.2516, + "y": 0.0019 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL2_5_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.315, + "y": 0.1682 + }, + "props": { + "text": "UL2_5_VFD1 11.200.1.40", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL2_6" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.1245 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL2_6_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.2072, + "y": 0.1646 + }, + "props": { + "text": "UL2_6_VFD1 11.200.1.41", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL2_7" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.8509, + "y": 0.3332 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL2_7_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.947, + "y": 0.3943 + }, + "props": { + "text": "UL2_7_VFD1 11.200.1.42", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL2_8" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.8514, + "y": 0.1667 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL2_8_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.947, + "y": 0.2276 + }, + "props": { + "text": "UL2_8_VFD1 11.200.1.43", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL2_9" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.8528 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL2_9_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.947, + "y": 0.0619 + }, + "props": { + "text": "UL2_9_VFD1 11.200.1.44", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL1_2_FIO1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.8389, + "y": 0.4988 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/FIO_SIO" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL1_2_FIO1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.9349999999999999, + "y": 0.561 + }, + "props": { + "text": "UL1_2_FIO1 11.200.1.45", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL2_3_FIO1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.8381, + "y": 0.6639 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/FIO_SIO" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL2_3_FIO1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.9349999999999999, + "y": 0.7257 + }, + "props": { + "text": "UL2_3_FIO1 11.200.1.46", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "DPM_label" + }, + "position": { + "height": 0.0694, + "width": 0.101, + "x": 0.5831, + "y": 0.6342 + }, + "props": { + "text": "DPM1_PS1-1 11.200.1.2", + "textStyle": { + "fontSize": "2vmin" + } + }, + "type": "ia.display.label" + } + ], + "meta": { + "name": "root" + }, + "position": { + "x": 0.6348, + "y": -0.1546 + }, + "props": { + "mode": "percent" + }, + "type": "ia.container.coord" + } +} \ No newline at end of file diff --git a/.resources/1428b584a5caacab9a11082fb7552690a283509d4aa1f3e214fffde49d107e86 b/.resources/1428b584a5caacab9a11082fb7552690a283509d4aa1f3e214fffde49d107e86 deleted file mode 100644 index 82b52a1d..00000000 --- a/.resources/1428b584a5caacab9a11082fb7552690a283509d4aa1f3e214fffde49d107e86 +++ /dev/null @@ -1,537 +0,0 @@ -{ - "custom": { - "alarm_message": null, - "covert_mode": true, - "disconnected": false, - "display_icon": true, - "error": false, - "isMatch": 0, - "plc": "value", - "priority": 0, - "priority_string": "No active alarms", - "running_status": 0, - "searchId": "value", - "state": 5, - "state_string": "Unknown" - }, - "params": { - "directionLeft": false, - "forceFaultStatus": null, - "forceRunningStatus": null, - "tagProps": [ - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value" - ] - }, - "propConfig": { - "custom.alarm_message": { - "persistent": true - }, - "custom.covert_mode": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case(\t{value},\r\n\t\t0, {session.custom.alarm_filter.show_running},\r\n\t\t1, True,\r\n\t\t2, True,\r\n\t\t3, {session.custom.alarm_filter.show_low_alarm},\r\n\t\t4, {session.custom.alarm_filter.show_diagnostic},\r\n\t\t5, {session.custom.alarm_filter.show_running},\r\n\t\tFalse)", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.disconnected": { - "binding": { - "config": { - "fallbackDelay": 2.5, - "mode": "indirect", - "references": { - "fc": "{session.custom.fc}", - "plc": "{view.custom.plc}" - }, - "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{plc}/DCN" - }, - "transforms": [ - { - "expression": "if(isNull({value}), False, {value})", - "type": "expression" - } - ], - "type": "tag" - }, - "persistent": true - }, - "custom.display_icon": { - "binding": { - "config": { - "expression": "{this.custom.covert_mode}//||{this.custom.isMatch}\u003e0" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.error": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "0 \u003c {value} \u0026\u0026 {value} \u003c 5", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.isMatch": { - "binding": { - "config": { - "expression": "if({view.params.tagProps[0]}\u003d\"value\",0,\nif({this.custom.searchId}\u003d{view.params.tagProps[0]},100,0))\n\n" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.plc": { - "binding": { - "config": { - "path": "view.params.tagProps[0]" - }, - "transforms": [ - { - "expression": "split({value}, \"/\")[0]", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.priority": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "fallback": 0, - "inputType": "scalar", - "mappings": [ - { - "input": 1, - "output": 4 - }, - { - "input": 2, - "output": 3 - }, - { - "input": 3, - "output": 2 - }, - { - "input": 4, - "output": 1 - } - ], - "outputType": "scalar", - "type": "map" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.priority_string": { - "binding": { - "config": { - "expression": "case({view.custom.state},\r\n1, \"High\",\r\n2, \"Medium\",\r\n3, \"Low\",\r\n4, \"Diagnostic\",\r\n5, \"No active alarms\",\r\n\"Unknown\")" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.running_status": { - "binding": { - "config": { - "fallbackDelay": 2.5, - "mode": "indirect", - "references": { - "0": "{view.params.tagProps[0]}", - "fc": "{session.custom.fc}" - }, - "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/STATE" - }, - "transforms": [ - { - "expression": "coalesce({value},{view.params.forceRunningStatus},0)", - "type": "expression" - } - ], - "type": "tag" - }, - "persistent": true - }, - "custom.searchId": { - "binding": { - "config": { - "path": "session.custom.searchId" - }, - "type": "property" - }, - "persistent": true - }, - "custom.state": { - "binding": { - "config": { - "fallbackDelay": 2.5, - "mode": "indirect", - "references": { - "0": "{view.params.tagProps[0]}", - "fc": "{session.custom.fc}" - }, - "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/ALARMST" - }, - "transforms": [ - { - "expression": "coalesce({value},{view.params.forceFaultStatus},0)", - "type": "expression" - }, - { - "fallback": null, - "inputType": "scalar", - "mappings": [ - { - "input": 4, - "output": 1 - }, - { - "input": 3, - "output": 2 - }, - { - "input": 2, - "output": 3 - }, - { - "input": 1, - "output": 4 - }, - { - "input": 0, - "output": 5 - } - ], - "outputType": "scalar", - "type": "map" - } - ], - "type": "tag" - }, - "persistent": true - }, - "custom.state_string": { - "binding": { - "config": { - "expression": "case({view.custom.running_status},\r\n1, \"Faulted\",\r\n2, \"Stopped\",\r\n3, \"Running\",\r\n\"Unknown\")" - }, - "type": "expr" - }, - "persistent": true - }, - "params.directionLeft": { - "paramDirection": "input", - "persistent": true - }, - "params.forceFaultStatus": { - "paramDirection": "input", - "persistent": true - }, - "params.forceRunningStatus": { - "paramDirection": "input", - "persistent": true - }, - "params.tagProps": { - "paramDirection": "inout", - "persistent": true - } - }, - "props": { - "defaultSize": { - "height": 100, - "width": 100 - } - }, - "root": { - "children": [ - { - "meta": { - "name": "ARSAW" - }, - "position": { - "height": 1, - "width": 1 - }, - "propConfig": { - "props.elements[0].fill.paint": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "if({session.custom.colours}[\"state\"+{value}] \u003d null, \r\n{session.custom.colours}[\"Fallback\"],\r\n{session.custom.colours}[\"state\"+{value}])", - "type": "expression" - }, - { - "expression": "if({view.custom.display_icon}\u0026\u0026 {view.custom.isMatch}\u003d0,{value},{value}+\u002700\u0027)", - "type": "expression" - } - ], - "type": "property" - } - }, - "props.style.classes": { - "binding": { - "config": { - "expression": "if({session.custom.colours.colour_impaired} \u003d True \u0026\u0026 {view.custom.isMatch} \u003e 0,\r\n{view.custom.state} + 100 + {view.custom.isMatch},\r\n{view.custom.state} + {view.custom.isMatch})" - }, - "transforms": [ - { - "fallback": "", - "inputType": "scalar", - "mappings": [ - { - "input": 101, - "output": "State-Styles/State101" - }, - { - "input": 102, - "output": "State-Styles/State102" - }, - { - "input": 103, - "output": "State-Styles/State103" - }, - { - "input": 104, - "output": "State-Styles/State104" - }, - { - "input": 105, - "output": "State-Styles/State105" - }, - { - "input": 106, - "output": "State-Styles/State106" - }, - { - "input": 201, - "output": "State-Styles/State201" - }, - { - "input": 202, - "output": "State-Styles/State202" - }, - { - "input": 203, - "output": "State-Styles/State203" - }, - { - "input": 204, - "output": "State-Styles/State204" - }, - { - "input": 205, - "output": "State-Styles/State205" - } - ], - "outputType": "style-list", - "type": "map" - } - ], - "type": "expr" - } - } - }, - "props": { - "elements": [ - { - "d": "m 25,50.5 a 25,25 0 0 1 -25,-25 25,25 0 0 1 25,-25 25,25 0 0 1 25,25 25,25 0 0 1 -25,25 z", - "fill": {}, - "name": "Circle", - "stroke": { - "paint": "#000000", - "width": 1 - }, - "type": "path" - }, - { - "d": "M 8.3000002,34.740002 H 31.04 v 4.26 H 8.3000002 Z M 26.77,12 h 4.260001 V 34.74 H 26.77 Z M 16.110001,12 H 24.64 v 17.049999 h -8.529999 z m 17.059997,0 h 8.53 v 17.049999 h -8.53 z", - "fill": { - "paint": "#000000" - }, - "name": "ARSAW", - "type": "path" - } - ], - "style": {}, - "viewBox": "-0.5 -0.5 51 52" - }, - "type": "ia.shapes.svg" - } - ], - "events": { - "dom": { - "onClick": { - "config": { - "script": "\tsystem.perspective.openDock(\u0027Docked-East\u0027,params\u003d{\u0027tagProps\u0027:self.view.params.tagProps})" - }, - "scope": "G", - "type": "script" - }, - "onDoubleClick": { - "config": { - "script": "\ttagProps \u003d self.view.params.tagProps\n\tsystem.perspective.openPopup(\"StatusPopUP\", \"PopUp-Views/Controller-Equipment/Information\", params \u003d{\"tagProps\":tagProps})\n\t" - }, - "enabled": false, - "scope": "G", - "type": "script" - }, - "onMouseEnter": { - "config": { - "script": "\tfrom time import sleep\n\t\n\talarm \u003d []\n\tmessage \u003d None\n\t\n\tsleep(0.5)\n\t\n\tif system.tag.exists(\"System/aws_data\"):\n\t\tif self.view.params.tagProps[0] !\u003d \"\":\n\t\t\ttags_to_read \u003d system.tag.readBlocking(\"System/aws_data\")\n\t\t\tdecode_alarm_data \u003d system.util.jsonDecode(tags_to_read[0].value)\n\t\t\talarm \u003d [decode_alarm_data[i] for i in decode_alarm_data\n\t\t\t\t\tif decode_alarm_data[i][\u0027sourceId\u0027].startswith(self.view.params.tagProps[0])]\n\t\tif alarm:\n\t\t\talarm \u003d sorted(alarm, key \u003d lambda t:t[\u0027timestamp\u0027], reverse\u003dTrue)\n\t\t\tmessage \u003d max(alarm, key \u003d lambda p:p[\u0027priority\u0027]).get(\u0027message\u0027)\n\t\t\tif len(alarm) \u003e 1:\n\t\t\t\tmessage +\u003d \" (+\" + str(len(alarm)-1) + \")\"\n\tself.view.custom.alarm_message \u003d message" - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "root", - "tooltip": { - "enabled": true, - "location": "top-left", - "style": {} - } - }, - "propConfig": { - "meta.tooltip.style.backgroundColor": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case({value},\r\n0,{session.custom.colours.state0},\r\n1,{session.custom.colours.state1},\r\n2,{session.custom.colours.state2},\r\n3,{session.custom.colours.state3},\r\n4,{session.custom.colours.state4},\r\n5,{session.custom.colours.state5},\r\n6,{session.custom.colours.state6},\r\n{session.custom.colours.fallback}\r\n)", - "type": "expression" - } - ], - "type": "property" - } - }, - "meta.tooltip.style.classes": { - "binding": { - "config": { - "expression": "{view.custom.priority}" - }, - "transforms": [ - { - "fallback": "Alarms-Styles/NoAlarm", - "inputType": "scalar", - "mappings": [ - { - "input": 1, - "output": "Alarms-Styles/Diagnostic" - }, - { - "input": 2, - "output": "Alarms-Styles/Low" - }, - { - "input": 3, - "output": "Alarms-Styles/Medium" - }, - { - "input": 4, - "output": "Alarms-Styles/High" - } - ], - "outputType": "style-list", - "type": "map" - } - ], - "type": "expr" - } - }, - "meta.tooltip.style.color": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "if({session.custom.colours.colour_impaired},\r\n\t\u0027#000000\u0027,\r\n\tcase(\t{value},\r\n\t\t\t1,\u0027#FFFFFF\u0027,\r\n\t\t\t2,\u0027#000000\u0027,\r\n\t\t\t3,\u0027#000000\u0027,\r\n\t\t\t4,\u0027#FFFFFF\u0027,\r\n\t\t\t5,\u0027#FFFFFF\u0027,\r\n\t\t\t\u0027#000000\u0027)\r\n\t)", - "type": "expression" - } - ], - "type": "property" - } - }, - "meta.tooltip.text": { - "binding": { - "config": { - "expression": "if({view.custom.disconnected} \u003d False,\n\tif(isNull({view.custom.alarm_message}),\n\t\"Source Id: \" + {view.params.tagProps[0]} +\n\t\", Priority: \" + {view.custom.priority_string} +\n\t\", State: \" + {view.custom.state_string},\n\t\"Source Id: \" + {view.params.tagProps[0]} +\n\t\", Alarm: \" + {view.custom.alarm_message} +\n\t\", Priority: \" + {view.custom.priority_string} +\n\t\", State: \" + {view.custom.state_string}),\n\"Source Id: \" +{view.params.tagProps[0]} + \", Priority: Unknown, State: Unknown\")" - }, - "type": "expr" - } - }, - "props.style.classes": { - "binding": { - "config": { - "path": "view.custom.disconnected" - }, - "transforms": [ - { - "fallback": "Disconnects/Device-Connected", - "inputType": "scalar", - "mappings": [ - { - "input": true, - "output": "Disconnects/Device-Disconnected" - }, - { - "input": false, - "output": "Disconnects/Device-Connected" - } - ], - "outputType": "style-list", - "type": "map" - } - ], - "type": "property" - } - } - }, - "props": { - "aspectRatio": "1:1", - "mode": "percent", - "style": { - "cursor": "pointer" - } - }, - "type": "ia.container.coord" - } -} \ No newline at end of file diff --git a/.resources/1465dfc35eeca4a3cb56056a611f7b6baed60b5b9d8553bd0808b44297079c78 b/.resources/1465dfc35eeca4a3cb56056a611f7b6baed60b5b9d8553bd0808b44297079c78 deleted file mode 100644 index d554ba8e..00000000 --- a/.resources/1465dfc35eeca4a3cb56056a611f7b6baed60b5b9d8553bd0808b44297079c78 +++ /dev/null @@ -1,58 +0,0 @@ -{ - "custom": {}, - "params": { - "text": "value" - }, - "propConfig": { - "params.text": { - "paramDirection": "input", - "persistent": true - } - }, - "props": { - "defaultSize": { - "height": 30, - "width": 210 - } - }, - "root": { - "children": [ - { - "meta": { - "name": "Label" - }, - "position": { - "basis": "209px", - "grow": 1 - }, - "propConfig": { - "props.text": { - "binding": { - "config": { - "expression": "{view.params.text}" - }, - "type": "expr" - } - } - }, - "props": { - "style": { - "classes": "Text/LeftAlign_with_Padding" - } - }, - "type": "ia.display.label" - } - ], - "meta": { - "name": "root" - }, - "props": { - "alignItems": "center", - "justify": "center", - "style": { - "overflow": "hidden" - } - }, - "type": "ia.container.flex" - } -} \ No newline at end of file diff --git a/.resources/152199220149c5f31bb4f3d44f5d8a96541821bf7208314603bee82d8e4b8def b/.resources/152199220149c5f31bb4f3d44f5d8a96541821bf7208314603bee82d8e4b8def deleted file mode 100644 index 6abef4ed..00000000 Binary files a/.resources/152199220149c5f31bb4f3d44f5d8a96541821bf7208314603bee82d8e4b8def and /dev/null differ diff --git a/.resources/1538919e673a761a99dc0521bf40a939dd6ad8ea54e6697d3267067eb824d92b b/.resources/1538919e673a761a99dc0521bf40a939dd6ad8ea54e6697d3267067eb824d92b deleted file mode 100644 index 00dc9bbc..00000000 --- a/.resources/1538919e673a761a99dc0521bf40a939dd6ad8ea54e6697d3267067eb824d92b +++ /dev/null @@ -1,171 +0,0 @@ -{ - "custom": { - "filter_list": [ - { - "color": "#8B008B", - "filter_id": 5, - "instancePosition": {}, - "instanceStyle": { - "classes": "" - }, - "text": "CP30" - }, - { - "color": "#8B008B", - "filter_id": 3, - "instancePosition": {}, - "instanceStyle": { - "classes": "" - }, - "text": "CP71" - }, - { - "color": "#8B008B", - "filter_id": 4, - "instancePosition": {}, - "instanceStyle": { - "classes": "" - }, - "text": "CP72" - } - ] - }, - "params": { - "filters": [ - { - "color": "#8B008B", - "column": "controller", - "group": 0, - "id": 3, - "text": "CP71" - }, - { - "color": "#8B008B", - "column": "controller", - "group": 0, - "id": 4, - "text": "CP72" - }, - { - "color": "#8B008B", - "column": "controller", - "group": 0, - "id": 5, - "text": "CP30" - } - ], - "group_name": "value" - }, - "propConfig": { - "custom.filter_list": { - "binding": { - "config": { - "path": "view.params.filters" - }, - "transforms": [ - { - "code": "\tinstances \u003d []\n\tfor filter in value:\n\t\tinstance \u003d {\"instanceStyle\": {\n\t\t \t\t\t\"classes\": \"\"},\n\t\t \t\t\t \"instancePosition\": {}}\n\t \tinstance[\u0027text\u0027] \u003d filter.text\n\t \tinstance[\u0027color\u0027] \u003d filter.color\n\t \tinstance[\u0027filter_id\u0027] \u003d filter.id\n\t \tinstances.append(instance)\n\t\n\treturn sorted(instances, key\u003dlambda d: d[\u0027text\u0027])", - "type": "script" - } - ], - "type": "property" - }, - "persistent": true - }, - "params.filters": { - "paramDirection": "input", - "persistent": true - }, - "params.group_name": { - "paramDirection": "input", - "persistent": true - } - }, - "props": { - "defaultSize": { - "height": 178, - "width": 214 - } - }, - "root": { - "children": [ - { - "meta": { - "name": "Title" - }, - "position": { - "basis": "32px" - }, - "propConfig": { - "props.text": { - "binding": { - "config": { - "expression": "UPPER({view.params.group_name})" - }, - "type": "expr" - } - } - }, - "props": { - "style": { - "borderBottomStyle": "solid", - "borderBottomWidth": 1, - "classes": "Title/Text", - "fontSize": 13, - "marginLeft": "10%", - "marginRight": "10%", - "textAlign": "center" - } - }, - "type": "ia.display.label" - }, - { - "meta": { - "name": "Filters" - }, - "position": { - "basis": "138px", - "shrink": 0 - }, - "propConfig": { - "props.instances": { - "binding": { - "config": { - "path": "view.params.filters" - }, - "transforms": [ - { - "code": "\treturn sorted(value, key\u003dlambda d: d[\u0027text\u0027])", - "type": "script" - } - ], - "type": "property" - } - } - }, - "props": { - "alignContent": "flex-start", - "direction": "column", - "path": "Objects/PowerTable/FilterMenuItem", - "style": { - "marginBottom": 5, - "marginLeft": "12%", - "marginRight": "12%" - }, - "useDefaultViewWidth": false - }, - "type": "ia.display.flex-repeater" - } - ], - "meta": { - "name": "root" - }, - "props": { - "direction": "column", - "style": { - "overflow": "visible" - } - }, - "type": "ia.container.flex" - } -} \ No newline at end of file diff --git a/.resources/18c80a4f762da4b537404310ec581a77272c004c03554723585824ff12d8dad2 b/.resources/18c80a4f762da4b537404310ec581a77272c004c03554723585824ff12d8dad2 new file mode 100644 index 00000000..f1f480bd Binary files /dev/null and b/.resources/18c80a4f762da4b537404310ec581a77272c004c03554723585824ff12d8dad2 differ diff --git a/.resources/19896732ef5bfec6b66c2bf77bed7e7d663b1a4ccaf5e90cde9adb29628db978 b/.resources/19896732ef5bfec6b66c2bf77bed7e7d663b1a4ccaf5e90cde9adb29628db978 deleted file mode 100644 index 1feb1355..00000000 --- a/.resources/19896732ef5bfec6b66c2bf77bed7e7d663b1a4ccaf5e90cde9adb29628db978 +++ /dev/null @@ -1,604 +0,0 @@ -{ - "custom": { - "FillColour": "value", - "alarm_message": null, - "covert_mode": true, - "disconnected": false, - "display_icon": true, - "error": false, - "isMatch": 0, - "plc": "value", - "priority": 0, - "priority_string": "No active alarms", - "running": false, - "running_status": 0, - "searchId": "value", - "show_error": false, - "show_running": true, - "state": 5, - "state_string": "Unknown" - }, - "params": { - "forceFaultStatus": null, - "forceRunningStatus": null, - "tagProps": [ - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value" - ] - }, - "propConfig": { - "custom.FillColour": { - "persistent": true - }, - "custom.alarm_message": { - "persistent": true - }, - "custom.covert_mode": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case(\t{value},\r\n\t\t0, {session.custom.alarm_filter.show_running},\r\n\t\t1, True,\r\n\t\t2, True,\r\n\t\t3, {session.custom.alarm_filter.show_low_alarm} || {session.custom.alarm_filter.show_running},\r\n\t\t4, {session.custom.alarm_filter.show_diagnostic} || {session.custom.alarm_filter.show_running},\r\n\t\t5, {session.custom.alarm_filter.show_running},\r\n\t\tFalse)", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.disconnected": { - "binding": { - "config": { - "fallbackDelay": 2.5, - "mode": "indirect", - "references": { - "fc": "{session.custom.fc}", - "plc": "{view.custom.plc}" - }, - "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{plc}/DCN" - }, - "transforms": [ - { - "expression": "if(isNull({value}), False, {value})", - "type": "expression" - } - ], - "type": "tag" - }, - "persistent": true - }, - "custom.display_icon": { - "binding": { - "config": { - "expression": "{this.custom.covert_mode}//||{this.custom.isMatch}\u003e0" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.error": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "0 \u003c {value} \u0026\u0026 {value} \u003c 5", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.isMatch": { - "binding": { - "config": { - "expression": "if({view.params.tagProps[0]}\u003d\"value\",0,\nif({this.custom.searchId}\u003d{view.params.tagProps[0]},100,0))" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.plc": { - "binding": { - "config": { - "path": "view.params.tagProps[0]" - }, - "transforms": [ - { - "expression": "split({value}, \"/\")[0]", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.priority": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "fallback": 0, - "inputType": "scalar", - "mappings": [ - { - "input": 1, - "output": 4 - }, - { - "input": 2, - "output": 3 - }, - { - "input": 3, - "output": 2 - }, - { - "input": 4, - "output": 1 - } - ], - "outputType": "scalar", - "type": "map" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.priority_string": { - "binding": { - "config": { - "expression": "case({view.custom.state},\r\n1, \"High\",\r\n2, \"Medium\",\r\n3, \"Low\",\r\n4, \"Diagnostic\",\r\n5, \"No active alarms\",\r\n\"Unknown\")" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.running": { - "binding": { - "config": { - "expression": "{view.custom.running_status} \u003d 3" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.running_status": { - "binding": { - "config": { - "fallbackDelay": 2.5, - "mode": "indirect", - "references": { - "0": "{view.params.tagProps[0]}", - "fc": "{session.custom.fc}" - }, - "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/STATE" - }, - "transforms": [ - { - "expression": "coalesce({value},{view.params.forceRunningStatus},0)", - "type": "expression" - } - ], - "type": "tag" - }, - "persistent": true - }, - "custom.searchId": { - "binding": { - "config": { - "path": "session.custom.searchId" - }, - "type": "property" - }, - "persistent": true - }, - "custom.show_error": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case(\t{value},\r\n\t\t1, True,\r\n\t\t2, True,\r\n\t\t3, {session.custom.alarm_filter.show_low_alarm},\r\n\t\t4, {session.custom.alarm_filter.show_diagnostic},\r\n\t\tFalse)", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.show_running": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case(\t{value},\r\n\t\t1, False,\r\n\t\t2, False,\r\n\t\t{session.custom.alarm_filter.show_running}\r\n\t\t)", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.state": { - "binding": { - "config": { - "fallbackDelay": 2.5, - "mode": "indirect", - "references": { - "0": "{view.params.tagProps[0]}", - "fc": "{session.custom.fc}" - }, - "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/ALARMST" - }, - "transforms": [ - { - "expression": "coalesce({value},{view.params.forceFaultStatus},0)", - "type": "expression" - }, - { - "fallback": null, - "inputType": "scalar", - "mappings": [ - { - "input": 4, - "output": 1 - }, - { - "input": 3, - "output": 2 - }, - { - "input": 2, - "output": 3 - }, - { - "input": 1, - "output": 4 - }, - { - "input": 0, - "output": 5 - } - ], - "outputType": "scalar", - "type": "map" - } - ], - "type": "tag" - }, - "persistent": true - }, - "custom.state_string": { - "binding": { - "config": { - "expression": "case({view.custom.running_status},\r\n1, \"Faulted\",\r\n2, \"Stopped\",\r\n3, \"Running\",\r\n\"Unknown\")" - }, - "type": "expr" - }, - "persistent": true - }, - "params.forceFaultStatus": { - "paramDirection": "input", - "persistent": true - }, - "params.forceRunningStatus": { - "paramDirection": "input", - "persistent": true - }, - "params.tagProps": { - "paramDirection": "inout", - "persistent": true - } - }, - "props": { - "defaultSize": { - "height": 100, - "width": 100 - } - }, - "root": { - "children": [ - { - "meta": { - "name": "Photocell (Lift)" - }, - "position": { - "height": 1, - "width": 1 - }, - "propConfig": { - "props.elements[1].elements[0].fill.paint": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case({value},\r\n0,{session.custom.colours.state0},\r\n1,{session.custom.colours.state1},\r\n2,{session.custom.colours.state2},\r\n3,{session.custom.colours.state3},\r\n4,{session.custom.colours.state4},\r\n5,{session.custom.colours.state5},\r\n6,{session.custom.colours.state6},\r\n{session.custom.colours.fallback}\r\n)", - "type": "expression" - }, - { - "expression": "if({view.custom.display_icon}\u0026\u0026 {view.custom.isMatch}\u003d0,{value},{value}+\u002700\u0027)", - "type": "expression" - } - ], - "type": "property" - } - }, - "props.style.classes": { - "binding": { - "config": { - "expression": "if({session.custom.colours.colour_impaired} \u003d True \u0026\u0026 {view.custom.isMatch} \u003e 0,\r\n{view.custom.state} + 100 + {view.custom.isMatch},\r\n{view.custom.state} + {view.custom.isMatch})" - }, - "transforms": [ - { - "fallback": "", - "inputType": "scalar", - "mappings": [ - { - "input": 101, - "output": "State-Styles/State101" - }, - { - "input": 102, - "output": "State-Styles/State102" - }, - { - "input": 103, - "output": "State-Styles/State103" - }, - { - "input": 104, - "output": "State-Styles/State104" - }, - { - "input": 105, - "output": "State-Styles/State105" - }, - { - "input": 106, - "output": "State-Styles/State106" - }, - { - "input": 202, - "output": "State-Styles/State201" - }, - { - "input": 201, - "output": "State-Styles/State202" - }, - { - "input": 203, - "output": "State-Styles/State203" - }, - { - "input": 204, - "output": "State-Styles/State204" - }, - { - "input": 205, - "output": "State-Styles/State205" - } - ], - "outputType": "style-list", - "type": "map" - } - ], - "type": "expr" - } - } - }, - "props": { - "elements": [ - { - "id": "defs1", - "name": "defs1", - "type": "defs" - }, - { - "elements": [ - { - "cx": "6.6145835", - "cy": "6.6145835", - "fill": {}, - "id": "path1", - "name": "path1", - "r": "6.0761814", - "stroke": { - "dasharray": "none", - "paint": "#000000", - "width": "0.264583" - }, - "type": "circle" - }, - { - "cx": "6.6145835", - "cy": "6.6145835", - "fill": { - "opacity": "1", - "paint": "#000000" - }, - "id": "path2", - "name": "path2", - "rx": "0.5251264", - "ry": "0.52512622", - "stroke": { - "dasharray": "none", - "paint": "#000000", - "width": "0.272664" - }, - "type": "ellipse" - } - ], - "id": "layer1", - "name": "layer1", - "type": "group" - } - ], - "style": {}, - "viewBox": "0 0 13.229166 13.229167" - }, - "type": "ia.shapes.svg" - } - ], - "events": { - "dom": { - "onClick": { - "config": { - "script": "\tsystem.perspective.openDock(\u0027Docked-East\u0027,params\u003d{\u0027tagProps\u0027:self.view.params.tagProps})" - }, - "scope": "G", - "type": "script" - }, - "onDoubleClick": { - "config": { - "script": "\ttagProps \u003d self.view.params.tagProps\n\tsystem.perspective.openPopup(\"StatusPopUP\", \"PopUp-Views/Controller-Equipment/Information\", params \u003d{\"tagProps\":tagProps})\n\t" - }, - "enabled": false, - "scope": "G", - "type": "script" - }, - "onMouseEnter": { - "config": { - "script": "\tfrom time import sleep\n\t\n\talarm \u003d []\n\tmessage \u003d None\n\t\n\tsleep(0.5)\n\t\n\tif system.tag.exists(\"System/aws_data\"):\n\t\tif self.view.params.tagProps[0] !\u003d \"\":\n\t\t\ttags_to_read \u003d system.tag.readBlocking(\"System/aws_data\")\n\t\t\tdecode_alarm_data \u003d system.util.jsonDecode(tags_to_read[0].value)\n\t\t\talarm \u003d [decode_alarm_data[i] for i in decode_alarm_data\n\t\t\t\t\tif decode_alarm_data[i][\u0027sourceId\u0027].startswith(self.view.params.tagProps[0])]\n\t\tif alarm:\n\t\t\talarm \u003d sorted(alarm, key \u003d lambda t:t[\u0027timestamp\u0027], reverse\u003dTrue)\n\t\t\tmessage \u003d max(alarm, key \u003d lambda p:p[\u0027priority\u0027]).get(\u0027message\u0027)\n\t\t\tif len(alarm) \u003e 1:\n\t\t\t\tmessage +\u003d \" (+\" + str(len(alarm)-1) + \")\"\n\tself.view.custom.alarm_message \u003d message" - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "root", - "tooltip": { - "enabled": true, - "location": "top-left", - "style": {} - } - }, - "propConfig": { - "meta.tooltip.style.backgroundColor": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case({value},\r\n0,{session.custom.colours.state0},\r\n1,{session.custom.colours.state1},\r\n2,{session.custom.colours.state2},\r\n3,{session.custom.colours.state3},\r\n4,{session.custom.colours.state4},\r\n5,{session.custom.colours.state5},\r\n6,{session.custom.colours.state6},\r\n{session.custom.colours.fallback}\r\n)", - "type": "expression" - } - ], - "type": "property" - } - }, - "meta.tooltip.style.classes": { - "binding": { - "config": { - "expression": "{view.custom.priority}" - }, - "transforms": [ - { - "fallback": "Alarms-Styles/NoAlarm", - "inputType": "scalar", - "mappings": [ - { - "input": 1, - "output": "Alarms-Styles/Diagnostic" - }, - { - "input": 2, - "output": "Alarms-Styles/Low" - }, - { - "input": 3, - "output": "Alarms-Styles/Medium" - }, - { - "input": 4, - "output": "Alarms-Styles/High" - } - ], - "outputType": "style-list", - "type": "map" - } - ], - "type": "expr" - } - }, - "meta.tooltip.style.color": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "if({session.custom.colours.colour_impaired},\r\n\t\u0027#000000\u0027,\r\n\tcase(\t{value},\r\n\t\t\t1,\u0027#FFFFFF\u0027,\r\n\t\t\t2,\u0027#000000\u0027,\r\n\t\t\t3,\u0027#000000\u0027,\r\n\t\t\t4,\u0027#FFFFFF\u0027,\r\n\t\t\t5,\u0027#FFFFFF\u0027,\r\n\t\t\t\u0027#000000\u0027)\r\n\t)", - "type": "expression" - } - ], - "type": "property" - } - }, - "meta.tooltip.text": { - "binding": { - "config": { - "expression": "if({view.custom.disconnected} \u003d False,\n\tif(isNull({view.custom.alarm_message}),\n\t\"Source Id: \" + {view.params.tagProps[0]} +\n\t\", Priority: \" + {view.custom.priority_string} +\n\t\", State: \" + {view.custom.state_string},\n\t\"Source Id: \" + {view.params.tagProps[0]} +\n\t\", Alarm: \" + {view.custom.alarm_message} +\n\t\", Priority: \" + {view.custom.priority_string} +\n\t\", State: \" + {view.custom.state_string}),\n\"Source Id: \" +{view.params.tagProps[0]} + \", Priority: Unknown, State: Unknown\")" - }, - "type": "expr" - } - }, - "props.style.classes": { - "binding": { - "config": { - "path": "view.custom.disconnected" - }, - "transforms": [ - { - "fallback": "Disconnects/Device-Connected", - "inputType": "scalar", - "mappings": [ - { - "input": true, - "output": "Disconnects/Device-Disconnected" - }, - { - "input": false, - "output": "Disconnects/Device-Connected" - } - ], - "outputType": "style-list", - "type": "map" - } - ], - "type": "property" - } - } - }, - "props": { - "aspectRatio": "1:1", - "mode": "percent", - "style": { - "cursor": "pointer" - } - }, - "type": "ia.container.coord" - } -} \ No newline at end of file diff --git a/.resources/19932f8242486eb363913bbc1193e860bfc1bc1a7b30359e65ef9954a2f1d904 b/.resources/19932f8242486eb363913bbc1193e860bfc1bc1a7b30359e65ef9954a2f1d904 new file mode 100644 index 00000000..327a5b16 Binary files /dev/null and b/.resources/19932f8242486eb363913bbc1193e860bfc1bc1a7b30359e65ef9954a2f1d904 differ diff --git a/.resources/1ad9c030b8179563f769ebdac64bf86a162921ecb250289a814a4213ded8f62b b/.resources/1ad9c030b8179563f769ebdac64bf86a162921ecb250289a814a4213ded8f62b deleted file mode 100644 index 01020b01..00000000 Binary files a/.resources/1ad9c030b8179563f769ebdac64bf86a162921ecb250289a814a4213ded8f62b and /dev/null differ diff --git a/.resources/1b9f1e01a760098af2605fd4590d00702933323c55ca042029ef0940bc569d13 b/.resources/1b9f1e01a760098af2605fd4590d00702933323c55ca042029ef0940bc569d13 new file mode 100644 index 00000000..7bee8e2e Binary files /dev/null and b/.resources/1b9f1e01a760098af2605fd4590d00702933323c55ca042029ef0940bc569d13 differ diff --git a/.resources/1c285a373423eb95c76667fb6748dfde0c5e79c856c817bf66c19605ecb2e0bf b/.resources/1c285a373423eb95c76667fb6748dfde0c5e79c856c817bf66c19605ecb2e0bf new file mode 100644 index 00000000..9d930a8a --- /dev/null +++ b/.resources/1c285a373423eb95c76667fb6748dfde0c5e79c856c817bf66c19605ecb2e0bf @@ -0,0 +1,7396 @@ +{ + "custom": {}, + "params": { + "highlightTagPath": "" + }, + "propConfig": { + "params.highlightTagPath": { + "onChange": { + "enabled": null, + "script": "\tutils.handleTagHighlight(self.view, currentValue)" + }, + "paramDirection": "input", + "persistent": true + } + }, + "props": { + "defaultSize": { + "height": 1080, + "width": 1920 + } + }, + "root": { + "children": [ + { + "meta": { + "name": "MCM05 Sorter Destination, chutes and Bypass" + }, + "position": { + "height": 1, + "width": 1 + }, + "props": { + "elements": [ + { + "id": "defs1", + "name": "defs1", + "type": "defs" + }, + { + "elements": [ + { + "d": "m 314.74327,705.91704 -26.7511,13.00976 8.9447,16.8393 58.9283,-29.80895 z", + "fill": { + "paint": "#ffffff" + }, + "id": "path3-2-2", + "name": "path3-2-2", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "type": "path" + }, + { + "d": "m -704.11377,-1741.7306 h 18.98731 v 1553.00807 h -18.98731 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect1-6-2-0-0-4-8-1-2-2-0-6", + "name": "rect1-6-2-0-0-4-8-1-2-2-0-6", + "stroke": { + "paint": "#000000" + }, + "transform": "matrix(0,-1,-1,0,0,0)", + "type": "path" + }, + { + "d": "m -408.61801,-1743.4325 h 18.98719 v 1561.00403 h -18.98719 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect1-6-2-0-0-4-8-1-2-2-0-6-8", + "name": "rect1-6-2-0-0-4-8-1-2-2-0-6-8", + "stroke": { + "paint": "#000000" + }, + "transform": "matrix(0,-1,-1,0,0,0)", + "type": "path" + }, + { + "d": "m 138.60294,-666.10168 h 18.98699 v 232.16473 h -18.98699 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect1-6-2-0-0-6-8-3-3-4", + "name": "rect1-6-2-0-0-6-8-3-3-4", + "stroke": { + "paint": "#000000" + }, + "transform": "scale(1,-1)", + "type": "path" + }, + { + "d": "m 1783.4964,659.49337 c 1.2578,19.15432 -9.7509,42.28221 -39.7546,44.58993 l 0.1236,-18.99853 c 16.4117,-2.07644 20.3875,-12.47908 20.7754,-25.49499 8.4481,-0.006 13.1214,0.006 18.8556,-0.0964 z", + "fill": { + "paint": "#ffffff" + }, + "id": "path1", + "name": "path1", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "type": "path" + }, + { + "d": "m 138.68387,667.76892 c 1.38411,28.84067 18.5217,36.53777 47.64299,36.37606 l 0.0793,-18.86737 c -14.21718,0.35465 -26.05599,-2.74745 -28.93288,-17.50869 z", + "fill": { + "paint": "#ffffff" + }, + "id": "path1-4", + "name": "path1-4", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "type": "path" + }, + { + "d": "m 180.44722,389.59459 c -23.02838,-0.27046 -40.8634,15.15247 -41.78919,42.54463 l 18.82652,0.15071 c 1.28679,-17.40119 11.28536,-23.34739 23.12338,-23.70483 z", + "fill": { + "paint": "#ffffff" + }, + "id": "path1-4-6", + "name": "path1-4-6", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "type": "path" + }, + { + "d": "m -887.34143,-479.83374 h 18.67375 v 66.99113 h -18.67375 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect1-6-2-0-0-8-7-6-9-0-9-6-84-7-0-3", + "name": "rect1-6-2-0-0-8-7-6-9-0-9-6-84-7-0-3", + "stroke": { + "paint": "#000000" + }, + "transform": "scale(-1)", + "type": "path" + }, + { + "d": "m -865.29596,-479.83374 h 18.67375 v 66.99113 h -18.67375 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect1", + "name": "rect1", + "stroke": { + "paint": "#000000" + }, + "transform": "scale(-1)", + "type": "path" + }, + { + "d": "m -843.02325,-479.83374 h 18.67374 v 66.99113 h -18.67374 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect2", + "name": "rect2", + "stroke": { + "paint": "#000000" + }, + "transform": "scale(-1)", + "type": "path" + }, + { + "d": "m -817.20508,-479.83374 h 18.67375 v 66.99113 h -18.67375 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect3", + "name": "rect3", + "stroke": { + "paint": "#000000" + }, + "transform": "scale(-1)", + "type": "path" + }, + { + "d": "m -795.04596,-479.83374 h 18.61695 v 66.99112 h -18.61695 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect4", + "name": "rect4", + "stroke": { + "paint": "#000000" + }, + "transform": "scale(-1)", + "type": "path" + }, + { + "d": "m -770.2959,-479.83374 h 18.67375 v 66.99113 h -18.67375 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect5", + "name": "rect5", + "stroke": { + "paint": "#000000" + }, + "transform": "scale(-1)", + "type": "path" + }, + { + "d": "m -748.13678,-479.83374 h 18.61695 v 66.99112 h -18.61695 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect6", + "name": "rect6", + "stroke": { + "paint": "#000000" + }, + "transform": "scale(-1)", + "type": "path" + }, + { + "d": "m -723.47778,-479.65186 h 18.67374 v 66.99113 h -18.67374 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect7", + "name": "rect7", + "stroke": { + "paint": "#000000" + }, + "transform": "scale(-1)", + "type": "path" + }, + { + "d": "m -701.20508,-479.65186 h 18.67375 v 66.99113 h -18.67375 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect8", + "name": "rect8", + "stroke": { + "paint": "#000000" + }, + "transform": "scale(-1)", + "type": "path" + }, + { + "d": "m -675.3869,-479.65186 h 18.67374 v 66.99113 h -18.67374 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect9", + "name": "rect9", + "stroke": { + "paint": "#000000" + }, + "transform": "scale(-1)", + "type": "path" + }, + { + "d": "m -653.22778,-479.65186 h 18.61695 v 66.99112 h -18.61695 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect10", + "name": "rect10", + "stroke": { + "paint": "#000000" + }, + "transform": "scale(-1)", + "type": "path" + }, + { + "d": "m -628.47772,-479.65186 h 18.67374 v 66.99113 h -18.67374 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect11", + "name": "rect11", + "stroke": { + "paint": "#000000" + }, + "transform": "scale(-1)", + "type": "path" + }, + { + "d": "m -606.3186,-479.65186 h 18.61695 v 66.99112 h -18.61695 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect12", + "name": "rect12", + "stroke": { + "paint": "#000000" + }, + "transform": "scale(-1)", + "type": "path" + }, + { + "d": "m -582.34143,-479.65186 h 18.67375 v 66.99113 h -18.67375 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect13", + "name": "rect13", + "stroke": { + "paint": "#000000" + }, + "transform": "scale(-1)", + "type": "path" + }, + { + "d": "m -560.06873,-479.65186 h 18.67375 v 66.99113 h -18.67375 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect14", + "name": "rect14", + "stroke": { + "paint": "#000000" + }, + "transform": "scale(-1)", + "type": "path" + }, + { + "d": "m -535.3869,-479.3338 h 18.67374 v 66.99113 h -18.67374 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect15", + "name": "rect15", + "stroke": { + "paint": "#000000" + }, + "transform": "scale(-1)", + "type": "path" + }, + { + "d": "m -513.22778,-479.3338 h 18.61695 v 66.99112 h -18.61695 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect16", + "name": "rect16", + "stroke": { + "paint": "#000000" + }, + "transform": "scale(-1)", + "type": "path" + }, + { + "d": "m -488.47772,-479.3338 h 18.67374 v 66.99113 h -18.67374 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect17", + "name": "rect17", + "stroke": { + "paint": "#000000" + }, + "transform": "scale(-1)", + "type": "path" + }, + { + "d": "m -466.3186,-479.3338 h 18.61695 v 66.99112 h -18.61695 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect18", + "name": "rect18", + "stroke": { + "paint": "#000000" + }, + "transform": "scale(-1)", + "type": "path" + }, + { + "d": "m -442.11414,-479.3338 h 18.67375 v 66.99113 h -18.67375 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect19", + "name": "rect19", + "stroke": { + "paint": "#000000" + }, + "transform": "scale(-1)", + "type": "path" + }, + { + "d": "m -419.84143,-479.3338 h 18.67375 v 66.99113 h -18.67375 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect20", + "name": "rect20", + "stroke": { + "paint": "#000000" + }, + "transform": "scale(-1)", + "type": "path" + }, + { + "d": "m -396.29599,-479.60645 h 18.67375 v 66.99113 h -18.67375 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect21", + "name": "rect21", + "stroke": { + "paint": "#000000" + }, + "transform": "scale(-1)", + "type": "path" + }, + { + "d": "m -374.13687,-479.60645 h 18.61695 v 66.99112 h -18.61695 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect22", + "name": "rect22", + "stroke": { + "paint": "#000000" + }, + "transform": "scale(-1)", + "type": "path" + }, + { + "d": "m -349.38681,-479.60645 h 18.67375 v 66.99113 h -18.67375 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect23", + "name": "rect23", + "stroke": { + "paint": "#000000" + }, + "transform": "scale(-1)", + "type": "path" + }, + { + "d": "m -327.22769,-479.60645 h 18.61695 v 66.99112 h -18.61695 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect24", + "name": "rect24", + "stroke": { + "paint": "#000000" + }, + "transform": "scale(-1)", + "type": "path" + }, + { + "d": "m -303.56873,-479.37918 h 18.67375 v 66.99113 h -18.67375 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect25", + "name": "rect25", + "stroke": { + "paint": "#000000" + }, + "transform": "scale(-1)", + "type": "path" + }, + { + "d": "m -281.40961,-479.37918 h 18.61695 v 66.99112 h -18.61695 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect26", + "name": "rect26", + "stroke": { + "paint": "#000000" + }, + "transform": "scale(-1)", + "type": "path" + }, + { + "d": "m -258.65955,-479.37918 h 18.67375 v 66.99113 h -18.67375 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect27", + "name": "rect27", + "stroke": { + "paint": "#000000" + }, + "transform": "scale(-1)", + "type": "path" + }, + { + "d": "m -236.50043,-479.37918 h 18.61695 v 66.99112 h -18.61695 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect28", + "name": "rect28", + "stroke": { + "paint": "#000000" + }, + "transform": "scale(-1)", + "type": "path" + }, + { + "d": "m -213.88684,-479.15192 h 18.67375 v 66.99113 h -18.67375 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect29", + "name": "rect29", + "stroke": { + "paint": "#000000" + }, + "transform": "scale(-1)", + "type": "path" + }, + { + "d": "m -191.72769,-479.15192 h 18.61695 v 66.99112 h -18.61695 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect30", + "name": "rect30", + "stroke": { + "paint": "#000000" + }, + "transform": "scale(-1)", + "type": "path" + }, + { + "d": "m -888.61414,-383.92465 h 18.67375 v 66.99112 h -18.67375 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect31", + "name": "rect31", + "stroke": { + "paint": "#000000" + }, + "transform": "scale(-1)", + "type": "path" + }, + { + "d": "m -866.56866,-383.92465 h 18.67374 v 66.99112 h -18.67374 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect32", + "name": "rect32", + "stroke": { + "paint": "#000000" + }, + "transform": "scale(-1)", + "type": "path" + }, + { + "d": "m -844.29596,-383.92465 h 18.67375 v 66.99112 h -18.67375 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect33", + "name": "rect33", + "stroke": { + "paint": "#000000" + }, + "transform": "scale(-1)", + "type": "path" + }, + { + "d": "m -814.47778,-383.92465 h 18.67374 v 66.99112 h -18.67374 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect34", + "name": "rect34", + "stroke": { + "paint": "#000000" + }, + "transform": "scale(-1)", + "type": "path" + }, + { + "d": "m -792.31866,-383.92465 h 18.61694 v 66.99112 h -18.61694 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect35", + "name": "rect35", + "stroke": { + "paint": "#000000" + }, + "transform": "scale(-1)", + "type": "path" + }, + { + "d": "m -769.5686,-383.92465 h 18.67374 v 66.99112 h -18.67374 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect36", + "name": "rect36", + "stroke": { + "paint": "#000000" + }, + "transform": "scale(-1)", + "type": "path" + }, + { + "d": "m -735.40948,-383.92465 h 18.61694 v 66.99112 h -18.61694 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect37", + "name": "rect37", + "stroke": { + "paint": "#000000" + }, + "transform": "scale(-1)", + "type": "path" + }, + { + "d": "m -712.75049,-383.74277 h 18.67375 v 66.99113 h -18.67375 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect38", + "name": "rect38", + "stroke": { + "paint": "#000000" + }, + "transform": "scale(-1)", + "type": "path" + }, + { + "d": "m -688.47778,-383.74277 h 18.67374 v 66.99113 h -18.67374 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect39", + "name": "rect39", + "stroke": { + "paint": "#000000" + }, + "transform": "scale(-1)", + "type": "path" + }, + { + "d": "m -666.65961,-383.74277 h 18.67375 v 66.99113 h -18.67375 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect40", + "name": "rect40", + "stroke": { + "paint": "#000000" + }, + "transform": "scale(-1)", + "type": "path" + }, + { + "d": "m -638.50049,-383.74277 h 18.61695 v 66.99112 h -18.61695 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect41", + "name": "rect41", + "stroke": { + "paint": "#000000" + }, + "transform": "scale(-1)", + "type": "path" + }, + { + "d": "m -613.75043,-383.74277 h 18.67375 v 66.99113 h -18.67375 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect42", + "name": "rect42", + "stroke": { + "paint": "#000000" + }, + "transform": "scale(-1)", + "type": "path" + }, + { + "d": "m -577.59131,-383.74277 h 18.61695 v 66.99112 h -18.61695 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect43", + "name": "rect43", + "stroke": { + "paint": "#000000" + }, + "transform": "scale(-1)", + "type": "path" + }, + { + "d": "m -549.57397,-383.50171 h 18.67374 v 66.99113 h -18.67374 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect44", + "name": "rect44", + "stroke": { + "paint": "#000000" + }, + "transform": "scale(-1)", + "type": "path" + }, + { + "d": "m -526.50049,-383.42471 h 18.61695 v 66.99112 h -18.61695 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect47", + "name": "rect47", + "stroke": { + "paint": "#000000" + }, + "transform": "scale(-1)", + "type": "path" + }, + { + "d": "m -499.75043,-383.42471 h 18.67375 v 66.99112 h -18.67375 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect48", + "name": "rect48", + "stroke": { + "paint": "#000000" + }, + "transform": "scale(-1)", + "type": "path" + }, + { + "d": "m -477.59131,-383.42471 h 18.61695 v 66.99112 h -18.61695 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect49", + "name": "rect49", + "stroke": { + "paint": "#000000" + }, + "transform": "scale(-1)", + "type": "path" + }, + { + "d": "m -451.38687,-383.42471 h 18.67374 v 66.99112 h -18.67374 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect50", + "name": "rect50", + "stroke": { + "paint": "#000000" + }, + "transform": "scale(-1)", + "type": "path" + }, + { + "d": "m -429.11417,-383.42471 h 18.67375 v 66.99112 h -18.67375 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect51", + "name": "rect51", + "stroke": { + "paint": "#000000" + }, + "transform": "scale(-1)", + "type": "path" + }, + { + "d": "m -391.56873,-383.69736 h 18.67375 v 66.99113 h -18.67375 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect52", + "name": "rect52", + "stroke": { + "paint": "#000000" + }, + "transform": "scale(-1)", + "type": "path" + }, + { + "d": "m -365.40961,-383.69736 h 18.61695 v 66.99112 h -18.61695 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect53", + "name": "rect53", + "stroke": { + "paint": "#000000" + }, + "transform": "scale(-1)", + "type": "path" + }, + { + "d": "m -342.65955,-383.69736 h 18.67375 v 66.99113 h -18.67375 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect54", + "name": "rect54", + "stroke": { + "paint": "#000000" + }, + "transform": "scale(-1)", + "type": "path" + }, + { + "d": "m -318.50043,-383.69736 h 18.61695 v 66.99112 h -18.61695 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect55", + "name": "rect55", + "stroke": { + "paint": "#000000" + }, + "transform": "scale(-1)", + "type": "path" + }, + { + "d": "m -296.84146,-383.47009 h 18.67374 v 66.99112 h -18.67374 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect56", + "name": "rect56", + "stroke": { + "paint": "#000000" + }, + "transform": "scale(-1)", + "type": "path" + }, + { + "d": "m 370.32281,706.0875 -26.7511,13.00976 8.9447,16.8393 58.9283,-29.80895 z", + "fill": { + "paint": "#ffffff" + }, + "id": "path71", + "name": "path71", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "type": "path" + }, + { + "d": "m 190.46079,706.25391 -58.51246,26.30521 8.9447,16.8393 8.17926,-3.05242 -0.0679,21.69014 19.71927,0.16095 0.8905,-31.01417 61.96857,-30.88893 z", + "fill": { + "paint": "#ffffff" + }, + "id": "path73", + "name": "path73", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "type": "path" + }, + { + "d": "m 256.51982,706.33426 -58.51246,26.30521 8.9447,16.8393 8.17926,-3.05242 -0.0679,21.69014 19.71927,0.16095 0.8905,-31.01417 61.96857,-30.88893 z", + "fill": { + "paint": "#ffffff" + }, + "id": "path74", + "name": "path74", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "type": "path" + }, + { + "d": "m 1118.4896,411.05853 58.5125,26.30521 -8.9447,16.8393 -8.1793,-3.05242 0.068,21.69014 -19.7193,0.16095 -0.8905,-31.01417 -61.9685,-30.88893 z", + "fill": { + "paint": "#ffffff" + }, + "id": "path157", + "name": "path157", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "type": "path" + }, + { + "d": "m 1039.4611,410.94127 29.2511,13.50976 -9.9447,17.3393 -60.4283,-30.80895 z", + "fill": { + "paint": "#ffffff" + }, + "id": "path158", + "name": "path158", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "type": "path" + }, + { + "d": "m 955.6528,411.02163 26.7511,13.00976 -8.9447,16.8393 -58.92829,-29.80895 z", + "fill": { + "paint": "#ffffff" + }, + "id": "path159", + "name": "path159", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "type": "path" + }, + { + "d": "m 1416.2154,706.40082 -58.5124,26.30521 8.9447,16.8393 8.1792,-3.05242 -0.068,21.69014 19.7193,0.16095 0.8905,-31.01417 61.9686,-30.88893 z", + "fill": { + "paint": "#ffffff" + }, + "id": "path160", + "name": "path160", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "type": "path" + }, + { + "d": "m 1476.7698,706.34805 -58.5124,26.30521 8.9447,16.8393 8.1792,-3.05242 -0.068,21.69014 19.7193,0.16095 0.8905,-31.01417 61.9686,-30.88893 z", + "fill": { + "paint": "#ffffff" + }, + "id": "path161", + "name": "path161", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "type": "path" + }, + { + "d": "m 1540.9515,706.2677 -58.5124,26.30521 8.9447,16.8393 8.1792,-3.05242 -0.068,21.69014 19.7193,0.16095 0.8905,-31.01417 61.9686,-30.88893 z", + "fill": { + "paint": "#ffffff" + }, + "id": "path162", + "name": "path162", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "type": "path" + }, + { + "d": "m 1609.1204,706.42004 -58.5124,26.30521 8.9447,16.8393 8.1792,-3.05242 -0.068,21.69014 19.7193,0.16095 0.8905,-31.01417 61.9686,-30.88893 z", + "fill": { + "paint": "#ffffff" + }, + "id": "path163", + "name": "path163", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "type": "path" + }, + { + "d": "m 1290.671,479.83456 h -18.6169 v -66.99112 h 18.6169 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect181", + "name": "rect181", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 1269.3075,479.77777 h -18.6738 v -66.99113 h 18.6738 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect182", + "name": "rect182", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 1247.9438,479.89627 h -18.6737 v -66.99113 h 18.6737 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect183", + "name": "rect183", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 1335.9189,479.81995 h -18.6169 v -66.99112 h 18.6169 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect186", + "name": "rect186", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 1314.5352,479.78381 h -18.6738 v -66.99112 h 18.6738 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect187", + "name": "rect187", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 1379.9321,479.92789 h -18.6169 v -66.99112 h 18.6169 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect188", + "name": "rect188", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 1358.455,479.87106 h -18.6738 v -66.99112 h 18.6738 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect189", + "name": "rect189", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 1425.578,479.81995 h -18.6169 v -66.99112 h 18.6169 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect208", + "name": "rect208", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 1404.1942,479.78381 h -18.6737 v -66.99112 h 18.6737 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect209", + "name": "rect209", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 1469.5912,479.92789 h -18.617 v -66.99112 h 18.617 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect210", + "name": "rect210", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 1448.114,479.87106 h -18.6737 v -66.99112 h 18.6737 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect211", + "name": "rect211", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 1514.5553,479.81995 h -18.617 v -66.99112 h 18.617 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect212", + "name": "rect212", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 1493.1715,479.78381 h -18.6737 v -66.99112 h 18.6737 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect213", + "name": "rect213", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 1558.5685,479.92789 h -18.617 v -66.99112 h 18.617 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect214", + "name": "rect214", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 1537.0913,479.87106 h -18.6737 v -66.99112 h 18.6737 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect215", + "name": "rect215", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 1603.4189,480.04721 h -18.6169 v -66.99112 h 18.6169 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect216", + "name": "rect216", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 1582.0352,480.01108 h -18.6738 v -66.99113 h 18.6738 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect217", + "name": "rect217", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 1647.4321,480.15515 h -18.6169 v -66.99112 h 18.6169 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect218", + "name": "rect218", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 1625.955,480.09833 h -18.6738 V 413.1072 h 18.6738 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect219", + "name": "rect219", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 1692.0553,480.04721 h -18.617 v -66.99112 h 18.617 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect220", + "name": "rect220", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 1670.6715,480.01108 h -18.6737 v -66.99113 h 18.6737 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect221", + "name": "rect221", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 1714.5913,480.09833 h -18.6737 V 413.1072 h 18.6737 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect223", + "name": "rect223", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 1226.3138,383.73233 h -18.6169 v -66.99112 h 18.6169 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect226", + "name": "rect226", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 1271.5618,383.71771 h -18.617 v -66.99112 h 18.617 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect229", + "name": "rect229", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 1250.178,383.68158 h -18.6738 v -66.99113 h 18.6738 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect230", + "name": "rect230", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 1315.575,383.82565 h -18.617 v -66.99112 h 18.617 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect231", + "name": "rect231", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "M 1294.0978,383.76883 H 1275.424 V 316.7777 h 18.6738 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect232", + "name": "rect232", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 1377.7208,383.71771 h -18.6169 v -66.99112 h 18.6169 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect233", + "name": "rect233", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 1339.837,383.68158 h -18.6737 v -66.99113 h 18.6737 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect234", + "name": "rect234", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 1401.734,383.82565 h -18.6169 v -66.99112 h 18.6169 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect235", + "name": "rect235", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 1446.6981,383.71771 h -18.6169 v -66.99112 h 18.6169 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect237", + "name": "rect237", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 1425.3143,383.68158 h -18.6737 v -66.99113 h 18.6737 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect238", + "name": "rect238", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 1506.2113,383.82565 h -18.6169 v -66.99112 h 18.6169 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect239", + "name": "rect239", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 1469.2341,383.76883 h -18.6737 V 316.7777 h 18.6737 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect240", + "name": "rect240", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 1551.0618,383.94498 h -18.617 v -66.99112 h 18.617 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect241", + "name": "rect241", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 1529.678,383.90884 h -18.6738 v -66.99112 h 18.6738 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect242", + "name": "rect242", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 1595.075,384.05292 h -18.617 V 317.0618 h 18.617 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect243", + "name": "rect243", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 1573.5978,383.99609 h -18.6738 v -66.99112 h 18.6738 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect244", + "name": "rect244", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 1657.1981,383.94498 h -18.6169 v -66.99112 h 18.6169 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect245", + "name": "rect245", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 1619.3143,383.90884 h -18.6737 v -66.99112 h 18.6737 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect246", + "name": "rect246", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 1679.7341,383.99609 h -18.6737 v -66.99112 h 18.6737 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect247", + "name": "rect247", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 1703.5618,384.17224 h -18.617 v -66.99112 h 18.617 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect248", + "name": "rect248", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 1726.0978,384.22336 h -18.6738 v -66.99113 h 18.6738 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect249", + "name": "rect249", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 1764.4453,-657.58014 h 18.987 v 235.18208 h -18.987 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect250", + "name": "rect250", + "stroke": { + "paint": "#000000" + }, + "transform": "scale(1,-1)", + "type": "path" + }, + { + "d": "m 1745.2485,389.6198 c 22.6615,0.25731 36.2196,4.56265 37.954,30.72645 l -18.6186,-0.15208 c -4.4254,-11.64255 -5.3024,-10.75532 -19.4961,-11.58389 z", + "fill": { + "paint": "#ffffff" + }, + "id": "path250", + "name": "path250", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "type": "path" + }, + { + "d": "m 562.10297,-1853.6643 h 18.67374 v 66.9911 h -18.67374 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect256", + "name": "rect256", + "stroke": { + "paint": "#000000" + }, + "transform": "rotate(90)", + "type": "path" + }, + { + "d": "m 583.77539,-1853.6758 h 18.61695 v 66.9911 h -18.61695 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect257", + "name": "rect257", + "stroke": { + "paint": "#000000" + }, + "transform": "rotate(90)", + "type": "path" + }, + { + "d": "m 632.88934,-1853.9972 h 18.67375 v 66.9911 h -18.67375 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect258", + "name": "rect258", + "stroke": { + "paint": "#000000" + }, + "transform": "rotate(90)", + "type": "path" + }, + { + "d": "m 608.78351,-1853.6356 h 18.67374 v 66.9911 h -18.67374 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect260", + "name": "rect260", + "stroke": { + "paint": "#000000" + }, + "transform": "rotate(90)", + "type": "path" + }, + { + "d": "m 425.07547,-1853.6307 h 18.67375 v 66.9911 h -18.67375 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect265", + "name": "rect265", + "stroke": { + "paint": "#000000" + }, + "transform": "rotate(90)", + "type": "path" + }, + { + "d": "m 446.74789,-1853.6422 h 18.61695 v 66.9911 h -18.61695 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect266", + "name": "rect266", + "stroke": { + "paint": "#000000" + }, + "transform": "rotate(90)", + "type": "path" + }, + { + "d": "m 495.86185,-1853.9636 h 18.67374 v 66.9911 h -18.67374 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect267", + "name": "rect267", + "stroke": { + "paint": "#000000" + }, + "transform": "rotate(90)", + "type": "path" + }, + { + "d": "m 517.17743,-1854.1244 h 18.61695 v 66.9911 h -18.61695 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect268", + "name": "rect268", + "stroke": { + "paint": "#000000" + }, + "transform": "rotate(90)", + "type": "path" + }, + { + "d": "m 471.75601,-1853.6021 h 18.67375 v 66.9912 h -18.67375 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect269", + "name": "rect269", + "stroke": { + "paint": "#000000" + }, + "transform": "rotate(90)", + "type": "path" + }, + { + "d": "m 561.90918,-1760.0958 h 18.67375 v 66.9911 h -18.67375 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect270", + "name": "rect270", + "stroke": { + "paint": "#000000" + }, + "transform": "rotate(90)", + "type": "path" + }, + { + "d": "m 583.5816,-1760.1073 h 18.61695 v 66.9911 H 583.5816 Z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect271", + "name": "rect271", + "stroke": { + "paint": "#000000" + }, + "transform": "rotate(90)", + "type": "path" + }, + { + "d": "m 632.69556,-1760.4287 h 18.67374 v 66.9911 h -18.67374 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect272", + "name": "rect272", + "stroke": { + "paint": "#000000" + }, + "transform": "rotate(90)", + "type": "path" + }, + { + "d": "m 608.58972,-1760.0671 h 18.67375 v 66.9911 h -18.67375 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect274", + "name": "rect274", + "stroke": { + "paint": "#000000" + }, + "transform": "rotate(90)", + "type": "path" + }, + { + "d": "m 890.43631,412.7044 3.00556,28.17711 0.24111,39.17318 16.88051,-0.0804 V 441.2834 l 2.99511,-28.59276 z", + "fill": { + "paint": "#ffffff" + }, + "id": "path3-8", + "name": "path3-8", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "type": "path" + }, + { + "d": "m 1178.7748,412.42318 3.0056,28.17711 0.2411,39.17318 16.8805,-0.0804 v -38.69089 l 2.9951,-28.59276 z", + "fill": { + "paint": "#ffffff" + }, + "id": "path3-8-1", + "name": "path3-8-1", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "type": "path" + }, + { + "d": "m 1224.9247,479.77816 h -18.6737 v -66.99113 h 18.6737 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect183-8", + "name": "rect183-8", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 267.94877,383.47009 h -18.67374 v -66.99112 h 18.67374 z", + "fill": { + "paint": "#ffffff" + }, + "id": "path2", + "name": "path2", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "M 236.98454,383.47009 H 218.3108 v -66.99112 h 18.67374 z", + "fill": { + "paint": "#ffffff" + }, + "id": "path3", + "name": "path3", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 216.02031,383.47009 h -18.67374 v -66.99112 h 18.67374 z", + "fill": { + "paint": "#ffffff" + }, + "id": "path4", + "name": "path4", + "stroke": { + "paint": "#000000" + }, + "type": "path" + } + ], + "id": "layer1", + "name": "layer1", + "type": "group" + } + ], + "preserveAspectRatio": "none", + "viewBox": "0 0 1920 1080" + }, + "type": "ia.shapes.svg" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect1-6-2-0-0-8-7-6-9-0-9-6-84-7-0-3", + "inheritedGroupPrefix": "CON", + "name": "S013003", + "originalName": "rect1-6-2-0-0-8-7-6-9-0-9-6-84-7-0-3" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.4521, + "y": 0.404 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/D2C/S013003" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect1", + "inheritedGroupPrefix": "CON", + "name": "S013005", + "originalName": "rect1" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.4406, + "y": 0.404 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/D2C/S013005" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect2", + "inheritedGroupPrefix": "CON", + "name": "S013007", + "originalName": "rect2" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.429, + "y": 0.404 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/D2C/S013007" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect3", + "inheritedGroupPrefix": "CON", + "name": "S013009", + "originalName": "rect3" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.4156, + "y": 0.404 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/D2C/S013009" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect4", + "inheritedGroupPrefix": "CON", + "name": "S013011", + "originalName": "rect4" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.404, + "y": 0.404 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/D2C/S013011" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect5", + "inheritedGroupPrefix": "CON", + "name": "S013013", + "originalName": "rect5" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.3911, + "y": 0.404 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/D2C/S013013" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect6", + "inheritedGroupPrefix": "CON", + "name": "S013015", + "originalName": "rect6" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.3796, + "y": 0.404 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/D2C/S013015" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect7", + "inheritedGroupPrefix": "CON", + "name": "S013017", + "originalName": "rect7" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.3667, + "y": 0.4039 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/D2C/S013017" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect8", + "inheritedGroupPrefix": "CON", + "name": "S013019", + "originalName": "rect8" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.3551, + "y": 0.4039 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/D2C/S013019" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect9", + "inheritedGroupPrefix": "CON", + "name": "S013021", + "originalName": "rect9" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.3417, + "y": 0.4039 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/D2C/S013021" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect10", + "inheritedGroupPrefix": "CON", + "name": "S013023", + "originalName": "rect10" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.3302, + "y": 0.4039 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/D2C/S013023" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect11", + "inheritedGroupPrefix": "CON", + "name": "S013025", + "originalName": "rect11" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.3173, + "y": 0.4039 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/D2C/S013025" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect12", + "inheritedGroupPrefix": "CON", + "name": "S013027", + "originalName": "rect12" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.3057, + "y": 0.4039 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/D2C/S013027" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect13", + "inheritedGroupPrefix": "CON", + "name": "S013029", + "originalName": "rect13" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.2932, + "y": 0.4039 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/D2C/S013029" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect14", + "inheritedGroupPrefix": "CON", + "name": "S013031", + "originalName": "rect14" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.2816, + "y": 0.4039 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/D2C/S013031" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect15", + "inheritedGroupPrefix": "CON", + "name": "S013033", + "originalName": "rect15" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.2688, + "y": 0.4036 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/D2C/S013033" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect16", + "inheritedGroupPrefix": "CON", + "name": "S013035", + "originalName": "rect16" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.2573, + "y": 0.4036 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/D2C/S013035" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect17", + "inheritedGroupPrefix": "CON", + "name": "S013037", + "originalName": "rect17" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.2443, + "y": 0.4036 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/D2C/S013037" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect18", + "inheritedGroupPrefix": "CON", + "name": "S013039", + "originalName": "rect18" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.2328, + "y": 0.4036 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/D2C/S013039" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect19", + "inheritedGroupPrefix": "CON", + "name": "S013041", + "originalName": "rect19" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.2202, + "y": 0.4036 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/D2C/S013041" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect20", + "inheritedGroupPrefix": "CON", + "name": "S013043", + "originalName": "rect20" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.2086, + "y": 0.4036 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/D2C/S013043" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect21", + "inheritedGroupPrefix": "CON", + "name": "S013045", + "originalName": "rect21" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.1963, + "y": 0.4038 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/D2C/S013045" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect22", + "inheritedGroupPrefix": "CON", + "name": "S013047", + "originalName": "rect22" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.1848, + "y": 0.4038 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/D2C/S013047" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect23", + "inheritedGroupPrefix": "CON", + "name": "S013049", + "originalName": "rect23" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.1719, + "y": 0.4038 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/D2C/S013049" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect24", + "inheritedGroupPrefix": "CON", + "name": "S013051", + "originalName": "rect24" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.1604, + "y": 0.4038 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/D2C/S013051" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect25", + "inheritedGroupPrefix": "CON", + "name": "S013053", + "originalName": "rect25" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.148, + "y": 0.4036 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/D2C/S013053" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect26", + "inheritedGroupPrefix": "CON", + "name": "S013055", + "originalName": "rect26" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.1365, + "y": 0.4036 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/D2C/S013055" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect27", + "inheritedGroupPrefix": "CON", + "name": "S013057", + "originalName": "rect27" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.1246, + "y": 0.4036 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/D2C/S013057" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect28", + "inheritedGroupPrefix": "CON", + "name": "S013059", + "originalName": "rect28" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.1131, + "y": 0.4036 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/D2C/S013059" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect29", + "inheritedGroupPrefix": "CON", + "name": "S013061", + "originalName": "rect29" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.1013, + "y": 0.4034 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/D2C/S013061" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect30", + "inheritedGroupPrefix": "CON", + "name": "S013063", + "originalName": "rect30" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.0898, + "y": 0.4034 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/D2C/S013063" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect31", + "inheritedGroupPrefix": "CON", + "name": "S013004", + "originalName": "rect31" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": "270deg" + }, + "width": 0.0104, + "x": 0.4527, + "y": 0.3152 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/PalletBuild/S013004" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect32", + "inheritedGroupPrefix": "CON", + "name": "S013006", + "originalName": "rect32" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": "270deg" + }, + "width": 0.0104, + "x": 0.4413, + "y": 0.3152 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/PalletBuild/S013006" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect33", + "inheritedGroupPrefix": "CON", + "name": "S013008", + "originalName": "rect33" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": "270deg" + }, + "width": 0.0104, + "x": 0.4297, + "y": 0.3152 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/PalletBuild/S013008" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect34", + "inheritedGroupPrefix": "CON", + "name": "S013010", + "originalName": "rect34" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": "270deg" + }, + "width": 0.0104, + "x": 0.4141, + "y": 0.3152 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/PalletBuild/S013010" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect35", + "inheritedGroupPrefix": "CON", + "name": "S013012", + "originalName": "rect35" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": "270deg" + }, + "width": 0.0104, + "x": 0.4026, + "y": 0.3152 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/PalletBuild/S013012" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect36", + "inheritedGroupPrefix": "CON", + "name": "S013014", + "originalName": "rect36" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": "270deg" + }, + "width": 0.0104, + "x": 0.3907, + "y": 0.3152 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/PalletBuild/S013014" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect37", + "inheritedGroupPrefix": "CON", + "name": "S013018", + "originalName": "rect37" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": "270deg" + }, + "width": 0.0104, + "x": 0.373, + "y": 0.3152 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/PalletBuild/S013018" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect38", + "inheritedGroupPrefix": "CON", + "name": "S013020", + "originalName": "rect38" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": "270deg" + }, + "width": 0.0104, + "x": 0.3612, + "y": 0.315 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/PalletBuild/S013020" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect39", + "inheritedGroupPrefix": "CON", + "name": "S013022", + "originalName": "rect39" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": "270deg" + }, + "width": 0.0104, + "x": 0.3485, + "y": 0.315 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/PalletBuild/S013022" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect40", + "inheritedGroupPrefix": "CON", + "name": "S013024", + "originalName": "rect40" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": "270deg" + }, + "width": 0.0104, + "x": 0.3371, + "y": 0.315 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/PalletBuild/S013024" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect41", + "inheritedGroupPrefix": "CON", + "name": "S013026", + "originalName": "rect41" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": "270deg" + }, + "width": 0.0104, + "x": 0.3225, + "y": 0.315 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/PalletBuild/S013026" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect42", + "inheritedGroupPrefix": "CON", + "name": "S013028", + "originalName": "rect42" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": "270deg" + }, + "width": 0.0104, + "x": 0.3096, + "y": 0.315 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/PalletBuild/S013028" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect43", + "inheritedGroupPrefix": "CON", + "name": "S013032", + "originalName": "rect43" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": "270deg" + }, + "width": 0.0104, + "x": 0.2908, + "y": 0.315 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/PalletBuild/S013032" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect44", + "inheritedGroupPrefix": "CON", + "name": "S013034", + "originalName": "rect44" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": "270deg" + }, + "width": 0.0104, + "x": 0.2762, + "y": 0.3148 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/PalletBuild/S013034" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect47", + "inheritedGroupPrefix": "CON", + "name": "S013036", + "originalName": "rect47" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": "270deg" + }, + "width": 0.0104, + "x": 0.2642, + "y": 0.3148 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/PalletBuild/S013036" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect48", + "inheritedGroupPrefix": "CON", + "name": "S013038", + "originalName": "rect48" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": "270deg" + }, + "width": 0.0104, + "x": 0.2502, + "y": 0.3148 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/PalletBuild/S013038" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect49", + "inheritedGroupPrefix": "CON", + "name": "S013040", + "originalName": "rect49" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": "270deg" + }, + "width": 0.0104, + "x": 0.2387, + "y": 0.3148 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/PalletBuild/S013040" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect50", + "inheritedGroupPrefix": "CON", + "name": "S013042", + "originalName": "rect50" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": "270deg" + }, + "width": 0.0104, + "x": 0.225, + "y": 0.3148 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/PalletBuild/S013042" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect51", + "inheritedGroupPrefix": "CON", + "name": "S013044", + "originalName": "rect51" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": "270deg" + }, + "width": 0.0104, + "x": 0.2134, + "y": 0.3148 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/PalletBuild/S013044" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect52", + "inheritedGroupPrefix": "CON", + "name": "S013048", + "originalName": "rect52" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": "270deg" + }, + "width": 0.0104, + "x": 0.1939, + "y": 0.315 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/PalletBuild/S013048" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect53", + "inheritedGroupPrefix": "CON", + "name": "S013050", + "originalName": "rect53" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": "270deg" + }, + "width": 0.0104, + "x": 0.1803, + "y": 0.315 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/PalletBuild/S013050" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect54", + "inheritedGroupPrefix": "CON", + "name": "S013052", + "originalName": "rect54" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": "270deg" + }, + "width": 0.0104, + "x": 0.1684, + "y": 0.315 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/PalletBuild/S013052" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect55", + "inheritedGroupPrefix": "CON", + "name": "S013054", + "originalName": "rect55" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": "270deg" + }, + "width": 0.0104, + "x": 0.1558, + "y": 0.315 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/PalletBuild/S013054" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect56", + "inheritedGroupPrefix": "CON", + "name": "S013056", + "originalName": "rect56" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": "270deg" + }, + "width": 0.0104, + "x": 0.1445, + "y": 0.3148 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/PalletBuild/S013056" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect181", + "inheritedGroupPrefix": "CON", + "name": "S012061", + "originalName": "rect181" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.6624, + "y": 0.404 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/D2C/S012061" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect182", + "inheritedGroupPrefix": "CON", + "name": "S012063", + "originalName": "rect182" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.6513, + "y": 0.404 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/D2C/S012063" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect183", + "inheritedGroupPrefix": "CON", + "name": "S012065", + "originalName": "rect183" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.6396, + "y": 0.4041 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/D2C/S012065" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect186", + "inheritedGroupPrefix": "CON", + "name": "S012057", + "originalName": "rect186" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.686, + "y": 0.404 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/D2C/S012057" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect187", + "inheritedGroupPrefix": "CON", + "name": "S012059", + "originalName": "rect187" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.6743, + "y": 0.404 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/D2C/S012059" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect188", + "inheritedGroupPrefix": "CON", + "name": "S012053", + "originalName": "rect188" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.7089, + "y": 0.4041 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/D2C/S012053" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect189", + "inheritedGroupPrefix": "CON", + "name": "S012055", + "originalName": "rect189" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.6977, + "y": 0.4041 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/D2C/S012055" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect208", + "inheritedGroupPrefix": "CON", + "name": "S012049", + "originalName": "rect208" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.7327, + "y": 0.404 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/D2C/S012049" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect209", + "inheritedGroupPrefix": "CON", + "name": "S012051", + "originalName": "rect209" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.7215, + "y": 0.404 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/D2C/S012051" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect210", + "inheritedGroupPrefix": "CON", + "name": "S012045", + "originalName": "rect210" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.7556, + "y": 0.4041 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/D2C/S012045" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect211", + "inheritedGroupPrefix": "CON", + "name": "S012047", + "originalName": "rect211" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.7444, + "y": 0.4041 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/D2C/S012047" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect212", + "inheritedGroupPrefix": "CON", + "name": "S012041", + "originalName": "rect212" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.779, + "y": 0.404 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/D2C/S012041" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect213", + "inheritedGroupPrefix": "CON", + "name": "S012043", + "originalName": "rect213" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.7679, + "y": 0.404 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/D2C/S012043" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect214", + "inheritedGroupPrefix": "CON", + "name": "S012037", + "originalName": "rect214" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.802, + "y": 0.4041 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/D2C/S012037" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect215", + "inheritedGroupPrefix": "CON", + "name": "S012039", + "originalName": "rect215" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.7908, + "y": 0.4041 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/D2C/S012039" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect216", + "inheritedGroupPrefix": "CON", + "name": "S012033", + "originalName": "rect216" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.8253, + "y": 0.4042 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/D2C/S012033" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect217", + "inheritedGroupPrefix": "CON", + "name": "S012035", + "originalName": "rect217" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.8142, + "y": 0.4042 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/D2C/S012035" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect218", + "inheritedGroupPrefix": "CON", + "name": "S012029", + "originalName": "rect218" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.8482, + "y": 0.4043 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/D2C/S012029" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect219", + "inheritedGroupPrefix": "CON", + "name": "S012031", + "originalName": "rect219" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.837, + "y": 0.4043 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/D2C/S012031" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect220", + "inheritedGroupPrefix": "CON", + "name": "S012025", + "originalName": "rect220" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.8712, + "y": 0.4042 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/D2C/S012025" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect221", + "inheritedGroupPrefix": "CON", + "name": "S012027", + "originalName": "rect221" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.8601, + "y": 0.4042 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/D2C/S012027" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect223", + "inheritedGroupPrefix": "CON", + "name": "S012023", + "originalName": "rect223" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.8829, + "y": 0.4043 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/D2C/S012023" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect226", + "inheritedGroupPrefix": "CON", + "name": "S012068", + "originalName": "rect226" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": "270deg" + }, + "width": 0.0104, + "x": 0.6284, + "y": 0.315 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/PalletBuild/S012068" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect229", + "inheritedGroupPrefix": "CON", + "name": "S012064", + "originalName": "rect229" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": "270deg" + }, + "width": 0.0104, + "x": 0.6525, + "y": 0.315 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/PalletBuild/S012064" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect230", + "inheritedGroupPrefix": "CON", + "name": "S012066", + "originalName": "rect230" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": "270deg" + }, + "width": 0.0104, + "x": 0.6408, + "y": 0.315 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/PalletBuild/S012066" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect231", + "inheritedGroupPrefix": "CON", + "name": "S012060", + "originalName": "rect231" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": "270deg" + }, + "width": 0.0104, + "x": 0.6749, + "y": 0.3151 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/PalletBuild/S012060" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect232", + "inheritedGroupPrefix": "CON", + "name": "S012062", + "originalName": "rect232" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": "270deg" + }, + "width": 0.0104, + "x": 0.6642, + "y": 0.3151 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/PalletBuild/S012062" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect233", + "inheritedGroupPrefix": "CON", + "name": "S012056", + "originalName": "rect233" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": "270deg" + }, + "width": 0.0104, + "x": 0.7075, + "y": 0.315 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/PalletBuild/S012056" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect234", + "inheritedGroupPrefix": "CON", + "name": "S012058", + "originalName": "rect234" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": "270deg" + }, + "width": 0.0104, + "x": 0.6875, + "y": 0.315 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/PalletBuild/S012058" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect235", + "inheritedGroupPrefix": "CON", + "name": "S012052", + "originalName": "rect235" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": "270deg" + }, + "width": 0.0104, + "x": 0.72, + "y": 0.3151 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/PalletBuild/S012052" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect237", + "inheritedGroupPrefix": "CON", + "name": "S012048", + "originalName": "rect237" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": "270deg" + }, + "width": 0.0104, + "x": 0.7434, + "y": 0.315 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/PalletBuild/S012048" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect238", + "inheritedGroupPrefix": "CON", + "name": "S012050", + "originalName": "rect238" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": "270deg" + }, + "width": 0.0104, + "x": 0.7323, + "y": 0.315 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/PalletBuild/S012050" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect239", + "inheritedGroupPrefix": "CON", + "name": "S012044", + "originalName": "rect239" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": "270deg" + }, + "width": 0.0104, + "x": 0.7742, + "y": 0.3151 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/PalletBuild/S012044" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect240", + "inheritedGroupPrefix": "CON", + "name": "S012046", + "originalName": "rect240" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": "270deg" + }, + "width": 0.0104, + "x": 0.7552, + "y": 0.3151 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/PalletBuild/S012046" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect241", + "inheritedGroupPrefix": "CON", + "name": "S012038", + "originalName": "rect241" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": "270deg" + }, + "width": 0.0104, + "x": 0.7975, + "y": 0.3152 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/PalletBuild/S012038" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect242", + "inheritedGroupPrefix": "CON", + "name": "S012042", + "originalName": "rect242" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": "270deg" + }, + "width": 0.0104, + "x": 0.7864, + "y": 0.3152 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/PalletBuild/S012042" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect243", + "inheritedGroupPrefix": "CON", + "name": "S012034", + "originalName": "rect243" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": "270deg" + }, + "width": 0.0104, + "x": 0.8205, + "y": 0.3153 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/PalletBuild/S012034" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect244", + "inheritedGroupPrefix": "CON", + "name": "S012036", + "originalName": "rect244" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": "270deg" + }, + "width": 0.0104, + "x": 0.8093, + "y": 0.3153 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/PalletBuild/S012036" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect245", + "inheritedGroupPrefix": "CON", + "name": "S012030", + "originalName": "rect245" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": "270deg" + }, + "width": 0.0104, + "x": 0.8533, + "y": 0.3152 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/PalletBuild/S012030" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect246", + "inheritedGroupPrefix": "CON", + "name": "S012032", + "originalName": "rect246" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": "270deg" + }, + "width": 0.0104, + "x": 0.8338, + "y": 0.3152 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/PalletBuild/S012032" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect247", + "inheritedGroupPrefix": "CON", + "name": "S012028", + "originalName": "rect247" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": "270deg" + }, + "width": 0.0104, + "x": 0.8645, + "y": 0.3153 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/PalletBuild/S012028" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect248", + "inheritedGroupPrefix": "CON", + "name": "S012026", + "originalName": "rect248" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": "270deg" + }, + "width": 0.0104, + "x": 0.8772, + "y": 0.3154 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/PalletBuild/S012026" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect249", + "inheritedGroupPrefix": "CON", + "name": "S012024", + "originalName": "rect249" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": "270deg" + }, + "width": 0.0104, + "x": 0.8889, + "y": 0.3155 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/PalletBuild/S012024" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect256", + "inheritedGroupPrefix": "CON", + "name": "S012008", + "originalName": "rect256" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 0 + }, + "width": 0.0104, + "x": 0.9428, + "y": 0.5203 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/PalletBuild/S012008" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect257", + "inheritedGroupPrefix": "CON", + "name": "S012006", + "originalName": "rect257" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 0 + }, + "width": 0.0104, + "x": 0.9428, + "y": 0.5404 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/PalletBuild/S012006" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect258", + "inheritedGroupPrefix": "CON", + "name": "S012002", + "originalName": "rect258" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 0 + }, + "width": 0.0104, + "x": 0.943, + "y": 0.5859 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/PalletBuild/S012002" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect260", + "inheritedGroupPrefix": "CON", + "name": "S012004", + "originalName": "rect260" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 0 + }, + "width": 0.0104, + "x": 0.9428, + "y": 0.5635 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/PalletBuild/S012004" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect265", + "inheritedGroupPrefix": "CON", + "name": "S012022", + "originalName": "rect265" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 0 + }, + "width": 0.0104, + "x": 0.9428, + "y": 0.393 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/PalletBuild/S012022" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect266", + "inheritedGroupPrefix": "CON", + "name": "S012020", + "originalName": "rect266" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 0 + }, + "width": 0.0104, + "x": 0.9428, + "y": 0.413 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/PalletBuild/S012020" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect267", + "inheritedGroupPrefix": "CON", + "name": "S012016", + "originalName": "rect267" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 0 + }, + "width": 0.0104, + "x": 0.943, + "y": 0.4585 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/PalletBuild/S012016" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect268", + "inheritedGroupPrefix": "CON", + "name": "S012014", + "originalName": "rect268" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 0 + }, + "width": 0.0104, + "x": 0.943, + "y": 0.4782 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/PalletBuild/S012014" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect269", + "inheritedGroupPrefix": "CON", + "name": "S012018", + "originalName": "rect269" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 0 + }, + "width": 0.0104, + "x": 0.9428, + "y": 0.4362 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/PalletBuild/S012018" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect270", + "inheritedGroupPrefix": "CON", + "name": "S012007", + "originalName": "rect270" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 180 + }, + "width": 0.0104, + "x": 0.8941, + "y": 0.5192 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/D2C/S012007" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect271", + "inheritedGroupPrefix": "CON", + "name": "S012005", + "originalName": "rect271" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 180 + }, + "width": 0.0104, + "x": 0.8941, + "y": 0.5393 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/D2C/S012005" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect272", + "inheritedGroupPrefix": "CON", + "name": "S012001", + "originalName": "rect272" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 180 + }, + "width": 0.0104, + "x": 0.8942, + "y": 0.5847 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/D2C/S012001" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect274", + "inheritedGroupPrefix": "CON", + "name": "S012003", + "originalName": "rect274" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 180 + }, + "width": 0.0104, + "x": 0.894, + "y": 0.5624 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/D2C/S012003" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect275", + "inheritedGroupPrefix": "CON", + "name": "S012067", + "originalName": "rect275" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.628, + "y": 0.4039 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/D2C/S012067" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect276", + "inheritedGroupPrefix": "CON", + "name": "S013001", + "originalName": "rect276" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.4647, + "y": 0.4067 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/D2C/S013001" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect275", + "inheritedGroupPrefix": "CON", + "name": "S012069", + "originalName": "rect275" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.6149, + "y": 0.4064 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/D2C/S012069" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "MCM01_Button" + }, + "position": { + "height": 0.0435, + "width": 0.1156, + "x": 0.0927, + "y": 0.7629 + }, + "props": { + "params": { + "pageid": "DetailedView/MCM01 Bulk Inbound", + "panel_id": "value", + "text": "MCM01 Bulk Inbound" + }, + "path": "Symbol-Views/Equipment-Views/Area_Nav_Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S013050_JR1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.1818, + "y": 0.2778 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM05/Station/Chute_JR/S013050_JR1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S013042_JR1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.2271, + "y": 0.2769 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM05/Station/Chute_JR/S013042_JR1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S013034_JR1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.2781, + "y": 0.2769 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM05/Station/Chute_JR/S013034_JR1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S013026_JR1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.324, + "y": 0.2769 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM05/Station/Chute_JR/S013026_JR1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S013018_JR1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.375, + "y": 0.2769 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM05/Station/Chute_JR/S013018_JR1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S013010_JR1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.4161, + "y": 0.2769 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM05/Station/Chute_JR/S013010_JR1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S013004_JR1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.4547, + "y": 0.2769 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM05/Station/Chute_JR/S013004_JR1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "VS01C_FIOM14" + }, + "position": { + "height": 0.0185, + "width": 0.0104, + "x": 0.1688, + "y": 0.3374 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM05/IO_BLOCK/FIO/VS01C_FIOM14", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/DeviceStatus" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "VS01C_FIOM12" + }, + "position": { + "height": 0.0185, + "width": 0.0104, + "x": 0.2136, + "y": 0.3374 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM05/IO_BLOCK/FIO/VS01C_FIOM12", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/DeviceStatus" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "VS01C_FIOM10" + }, + "position": { + "height": 0.0185, + "width": 0.0104, + "x": 0.2641, + "y": 0.3374 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM05/IO_BLOCK/FIO/VS01C_FIOM10", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/DeviceStatus" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "VS01C_FIOM08" + }, + "position": { + "height": 0.0185, + "width": 0.0104, + "x": 0.3099, + "y": 0.3374 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM05/IO_BLOCK/FIO/VS01C_FIOM08", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/DeviceStatus" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "VS01C_FIOM06" + }, + "position": { + "height": 0.0185, + "width": 0.0104, + "x": 0.361, + "y": 0.3365 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM05/IO_BLOCK/FIO/VS01C_FIOM06", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/DeviceStatus" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "VS01C_FIOM04" + }, + "position": { + "height": 0.0185, + "width": 0.0104, + "x": 0.4026, + "y": 0.3365 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM05/IO_BLOCK/FIO/VS01C_FIOM04", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/DeviceStatus" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "VS01C_FIOM02" + }, + "position": { + "height": 0.0185, + "width": 0.0104, + "x": 0.4526, + "y": 0.3365 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM05/IO_BLOCK/FIO/VS01C_FIOM02", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/DeviceStatus" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "VS01C_FIOM15" + }, + "position": { + "height": 0.0185, + "width": 0.0104, + "x": 0.113, + "y": 0.3824 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM05/IO_BLOCK/FIO/VS01C_FIOM15", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/DeviceStatus" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "VS01C_FIOM13" + }, + "position": { + "height": 0.0185, + "width": 0.0104, + "x": 0.1604, + "y": 0.3815 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM05/IO_BLOCK/FIO/VS01C_FIOM13", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/DeviceStatus" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "VS01C_FIOM11" + }, + "position": { + "height": 0.0185, + "width": 0.0104, + "x": 0.2083, + "y": 0.3815 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM05/IO_BLOCK/FIO/VS01C_FIOM11", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/DeviceStatus" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "VS01C_FIOM09" + }, + "position": { + "height": 0.0185, + "width": 0.0104, + "x": 0.2573, + "y": 0.3815 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM05/IO_BLOCK/FIO/VS01C_FIOM09", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/DeviceStatus" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "VS01C_FIOM07" + }, + "position": { + "height": 0.0185, + "width": 0.0104, + "x": 0.3057, + "y": 0.3815 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM05/IO_BLOCK/FIO/VS01C_FIOM07", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/DeviceStatus" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "VS01C_FIOM05" + }, + "position": { + "height": 0.0185, + "width": 0.0104, + "x": 0.3552, + "y": 0.3815 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM05/IO_BLOCK/FIO/VS01C_FIOM05", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/DeviceStatus" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "VS01C_FIOM03" + }, + "position": { + "height": 0.0185, + "width": 0.0104, + "x": 0.4042, + "y": 0.3815 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM05/IO_BLOCK/FIO/VS01C_FIOM03", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/DeviceStatus" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "VS01C_FIOM01" + }, + "position": { + "height": 0.0185, + "width": 0.0104, + "x": 0.4521, + "y": 0.3824 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM05/IO_BLOCK/FIO/VS01C_FIOM01", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/DeviceStatus" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S013057_JR1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.1271, + "y": 0.4463 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM05/Station/Chute_JR/S013057_JR1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S013049_JR1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.174, + "y": 0.4463 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM05/Station/Chute_JR/S013049_JR1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S013041_JR1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.2224, + "y": 0.4463 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM05/Station/Chute_JR/S013041_JR1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S013033_JR1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.2703, + "y": 0.4472 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM05/Station/Chute_JR/S013033_JR1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S013025_JR1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.3198, + "y": 0.4472 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM05/Station/Chute_JR/S013025_JR1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S013017_JR1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.3688, + "y": 0.4472 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM05/Station/Chute_JR/S013017_JR1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S013009_JR1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.4177, + "y": 0.4472 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM05/Station/Chute_JR/S013009_JR1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S013001_JR1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.4667, + "y": 0.4463 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM05/Station/Chute_JR/S013001_JR1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S012064_JR1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.6542, + "y": 0.2777 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM05/Station/Chute_JR/S012064_JR1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "VS01B_FIOM17" + }, + "position": { + "height": 0.0185, + "width": 0.0104, + "x": 0.6412, + "y": 0.3374 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM05/IO_BLOCK/FIO/VS01B_FIOM17", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/DeviceStatus" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "VS01B_FIOM15" + }, + "position": { + "height": 0.0185, + "width": 0.0104, + "x": 0.675, + "y": 0.3379 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM05/IO_BLOCK/FIO/VS01B_FIOM15", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/DeviceStatus" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "VS01B_FIOM13" + }, + "position": { + "height": 0.0185, + "width": 0.0104, + "x": 0.7193, + "y": 0.3379 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM05/IO_BLOCK/FIO/VS01B_FIOM13", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/DeviceStatus" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S012056_JR1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.7104, + "y": 0.2786 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM05/Station/Chute_JR/S012056_JR1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "VS01B_FIOM11" + }, + "position": { + "height": 0.0185, + "width": 0.0104, + "x": 0.7745, + "y": 0.3379 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM05/IO_BLOCK/FIO/VS01B_FIOM11", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/DeviceStatus" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S012048_JR1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.7458, + "y": 0.2786 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM05/Station/Chute_JR/S012048_JR1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S012032_JR1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.8354, + "y": 0.2768 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM05/Station/Chute_JR/S012032_JR1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "VS01B_FIOM08" + }, + "position": { + "height": 0.0185, + "width": 0.0104, + "x": 0.8083, + "y": 0.336 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM05/IO_BLOCK/FIO/VS01B_FIOM08", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/DeviceStatus" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "VS01B_FIOM06" + }, + "position": { + "height": 0.0185, + "width": 0.0104, + "x": 0.8662, + "y": 0.3379 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM05/IO_BLOCK/FIO/VS01B_FIOM06", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/DeviceStatus" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S012024_JR1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.8906, + "y": 0.2786 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM05/Station/Chute_JR/S012024_JR1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "VS01B_FIOM16" + }, + "position": { + "height": 0.0185, + "width": 0.0104, + "x": 0.6401, + "y": 0.3823 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM05/IO_BLOCK/FIO/VS01B_FIOM16", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/DeviceStatus" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S012063_JR1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.6531, + "y": 0.4481 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM05/Station/Chute_JR/S012063_JR1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S012055_JR1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.7, + "y": 0.4481 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM05/Station/Chute_JR/S012055_JR1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "VS01B_FIOM14" + }, + "position": { + "height": 0.0185, + "width": 0.0104, + "x": 0.686, + "y": 0.3842 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM05/IO_BLOCK/FIO/VS01B_FIOM14", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/DeviceStatus" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "VS01B_FIOM12" + }, + "position": { + "height": 0.0185, + "width": 0.0104, + "x": 0.7214, + "y": 0.3842 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM05/IO_BLOCK/FIO/VS01B_FIOM12", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/DeviceStatus" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S012047_JR1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.7458, + "y": 0.4481 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM05/Station/Chute_JR/S012047_JR1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "VS01B_FIOM10" + }, + "position": { + "height": 0.0185, + "width": 0.0104, + "x": 0.7682, + "y": 0.3842 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM05/IO_BLOCK/FIO/VS01B_FIOM10", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/DeviceStatus" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S012039_JR1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.7927, + "y": 0.4481 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM05/Station/Chute_JR/S012039_JR1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S012031_JR1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.8391, + "y": 0.4481 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM05/Station/Chute_JR/S012031_JR1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "VS01B_FIOM07" + }, + "position": { + "height": 0.0185, + "width": 0.0104, + "x": 0.8141, + "y": 0.3842 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM05/IO_BLOCK/FIO/VS01B_FIOM07", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/DeviceStatus" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "VS01B_FIOM05" + }, + "position": { + "height": 0.0185, + "width": 0.0104, + "x": 0.8714, + "y": 0.3842 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM05/IO_BLOCK/FIO/VS01B_FIOM05", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/DeviceStatus" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S01223_JR1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.8849, + "y": 0.4481 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM05/Station/Chute_JR/S01223_JR1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S012018_JR1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.9677, + "y": 0.3963 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM05/Station/Chute_JR/S012018_JR1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "VS01B_FIOM04" + }, + "position": { + "height": 0.0185, + "width": 0.0104, + "x": 0.9318, + "y": 0.3926 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM05/IO_BLOCK/FIO/VS01B_FIOM04", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/DeviceStatus" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "VS01B_FIOM03" + }, + "position": { + "height": 0.0185, + "width": 0.0104, + "x": 0.9313, + "y": 0.4593 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM05/IO_BLOCK/FIO/VS01B_FIOM03", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/DeviceStatus" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "VS01B_FIOM02" + }, + "position": { + "height": 0.0185, + "width": 0.0104, + "x": 0.9313, + "y": 0.563 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM05/IO_BLOCK/FIO/VS01B_FIOM02", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/DeviceStatus" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "VS01B_FIOM01" + }, + "position": { + "height": 0.0185, + "width": 0.0104, + "x": 0.9073, + "y": 0.563 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM05/IO_BLOCK/FIO/VS01B_FIOM01", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/DeviceStatus" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S012002_JR1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.9682, + "y": 0.5889 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM05/Station/Chute_JR/S012002_JR1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S012001_JR1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.8729, + "y": 0.5889 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM05/Station/Chute_JR/S012001_JR1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S012014_JR1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.9677, + "y": 0.4815 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM05/Station/Chute_JR/S012014_JR1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "DPM01_VS01C" + }, + "position": { + "height": 0.0139, + "rotate": { + "angle": 0 + }, + "width": 0.0156, + "x": 0.2634, + "y": 0.3624 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM05/IO_BLOCK/DPM/DPM01_VS01C", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/ControlCabinet" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "DPM01_VS01B" + }, + "position": { + "height": 0.0139, + "rotate": { + "angle": 0 + }, + "width": 0.0156, + "x": 0.7738, + "y": 0.3624 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM05/IO_BLOCK/DPM/DPM01_VS01B", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/ControlCabinet" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S012042_JR1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.7891, + "y": 0.2768 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM05/Station/Chute_JR/S012042_JR1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "MCM05" + }, + "position": { + "height": 0.0139, + "rotate": { + "angle": 0 + }, + "width": 0.0156, + "x": 0.4969, + "y": 0.4408 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM05/MCM05", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/MCM" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect56", + "inheritedGroupPrefix": "CON", + "name": "S013058", + "originalName": "rect56" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": "270deg" + }, + "width": 0.0104, + "x": 0.1294, + "y": 0.3148 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/PalletBuild/S013058" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect56", + "inheritedGroupPrefix": "CON", + "name": "S013062", + "originalName": "rect56" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": "270deg" + }, + "width": 0.0104, + "x": 0.1133, + "y": 0.3148 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/PalletBuild/S013062" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect56", + "inheritedGroupPrefix": "CON", + "name": "S013064", + "originalName": "rect56" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": "270deg" + }, + "width": 0.0104, + "x": 0.1023, + "y": 0.3148 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM05/Chute/PalletBuild/S013064" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S013003_JR1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.4536, + "y": 0.4463 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM05/Station/Chute_JR/S013003_JR1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "MCM02_Button" + }, + "position": { + "height": 0.0417, + "width": 0.1078, + "x": 0.6023, + "y": 0.7629 + }, + "props": { + "params": { + "pageid": "DetailedView/MCM02 Fluid Inbound", + "panel_id": "value", + "text": "MCM02 Fluid Inbound" + }, + "path": "Symbol-Views/Equipment-Views/Area_Nav_Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "MCM03_Button" + }, + "position": { + "height": 0.0417, + "width": 0.1078, + "x": 0.753, + "y": 0.7629 + }, + "props": { + "params": { + "pageid": "DetailedView/MCM03 Fluid Inbound", + "panel_id": "value", + "text": "MCM03 Fluid Inbound" + }, + "path": "Symbol-Views/Equipment-Views/Area_Nav_Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "MCM05_Button_0" + }, + "position": { + "height": 0.0426, + "width": 0.1521, + "x": 0.4582, + "y": 0.5736 + }, + "props": { + "params": { + "pageid": "DetailedView/MCM04 Sorter Destination, Chutes and Bypass", + "panel_id": "value", + "text": "MCM04 Sorter Destination, Chutes and Bypass" + }, + "path": "Symbol-Views/Equipment-Views/Area_Nav_Button" + }, + "type": "ia.display.view" + } + ], + "meta": { + "name": "root" + }, + "props": { + "mode": "percent", + "style": { + "backgroundColor": "#FFFFFF" + } + }, + "type": "ia.container.coord" + } +} \ No newline at end of file diff --git a/.resources/1d500934385c9aa906d293c618e1ca46efcaa0b850832ca57156f88a4235cf24 b/.resources/1d500934385c9aa906d293c618e1ca46efcaa0b850832ca57156f88a4235cf24 deleted file mode 100644 index c03fd910..00000000 Binary files a/.resources/1d500934385c9aa906d293c618e1ca46efcaa0b850832ca57156f88a4235cf24 and /dev/null differ diff --git a/.resources/1db38cccc2519d7b3f2c4e62bb291a44d8e2d924470b0f144c977f1841b2a18e b/.resources/1db38cccc2519d7b3f2c4e62bb291a44d8e2d924470b0f144c977f1841b2a18e deleted file mode 100644 index a80ad414..00000000 --- a/.resources/1db38cccc2519d7b3f2c4e62bb291a44d8e2d924470b0f144c977f1841b2a18e +++ /dev/null @@ -1,92 +0,0 @@ -{ - "custom": {}, - "params": { - "enabled": true, - "placeholder": "", - "target_message_handler": null, - "val": "" - }, - "propConfig": { - "params.enabled": { - "paramDirection": "input", - "persistent": true - }, - "params.placeholder": { - "paramDirection": "input", - "persistent": true - }, - "params.target_message_handler": { - "paramDirection": "input", - "persistent": true - }, - "params.val": { - "onChange": { - "enabled": null, - "script": "\tval \u003d currentValue.value\n\tif val:\n\t\tif self.params.target_message_handler:\n\t\t\tsystem.perspective.sendMessage(\n\t\t\t\tself.params.target_message_handler,\n\t\t\t\t{\u0027value\u0027: val},\n\t\t\t\tscope\u003d\u0027session\u0027\n\t\t\t)\n" - }, - "paramDirection": "input", - "persistent": true - } - }, - "props": { - "defaultSize": { - "height": 32, - "width": 200 - } - }, - "root": { - "children": [ - { - "meta": { - "name": "Field Number" - }, - "position": { - "basis": "172px", - "grow": 1, - "shrink": 0 - }, - "propConfig": { - "props.enabled": { - "binding": { - "config": { - "path": "view.params.enabled" - }, - "type": "property" - } - }, - "props.placeholder": { - "binding": { - "config": { - "path": "view.params.placeholder" - }, - "type": "property" - } - }, - "props.text": { - "binding": { - "config": { - "path": "view.params.val" - }, - "overlayOptOut": true, - "type": "property" - } - } - }, - "props": { - "style": { - "margin": "2px", - "marginRight": "26px" - } - }, - "type": "ia.input.text-field" - } - ], - "meta": { - "name": "root" - }, - "props": { - "justify": "center" - }, - "type": "ia.container.flex" - } -} \ No newline at end of file diff --git a/.resources/1fe0b11da4da6f0b055261743cb8f25143f70a52bb33b7fc01f479efafd67fcb b/.resources/1fe0b11da4da6f0b055261743cb8f25143f70a52bb33b7fc01f479efafd67fcb deleted file mode 100644 index 459bb13d..00000000 --- a/.resources/1fe0b11da4da6f0b055261743cb8f25143f70a52bb33b7fc01f479efafd67fcb +++ /dev/null @@ -1,1021 +0,0 @@ -{ - "custom": { - "FillColour": "value", - "alarm_message": null, - "covert_mode": true, - "disconnected": false, - "display_icon": true, - "error": false, - "isMatch": 0, - "plc": "value", - "priority": 0, - "priority_string": "No active alarms", - "running": false, - "running_status": 0, - "searchId": "PLC01", - "show_error": false, - "show_running": true, - "state": 5, - "state_string": "Unknown" - }, - "params": { - "forceFaultStatus": null, - "forceRunningStatus": null, - "tagProps": [ - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value" - ] - }, - "propConfig": { - "custom.FillColour": { - "persistent": true - }, - "custom.alarm_message": { - "persistent": true - }, - "custom.covert_mode": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case(\t{value},\r\n\t\t0, {session.custom.alarm_filter.show_running},\r\n\t\t1, True,\r\n\t\t2, True,\r\n\t\t3, {session.custom.alarm_filter.show_low_alarm} || {session.custom.alarm_filter.show_running},\r\n\t\t4, {session.custom.alarm_filter.show_diagnostic} || {session.custom.alarm_filter.show_running},\r\n\t\t5, {session.custom.alarm_filter.show_running},\r\n\t\tFalse)", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.disconnected": { - "binding": { - "config": { - "fallbackDelay": 2.5, - "mode": "indirect", - "references": { - "fc": "{session.custom.fc}", - "plc": "{view.custom.plc}" - }, - "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{plc}/DCN" - }, - "transforms": [ - { - "expression": "if(isNull({value}), False, {value})", - "type": "expression" - } - ], - "type": "tag" - }, - "persistent": true - }, - "custom.display_icon": { - "binding": { - "config": { - "expression": "{this.custom.covert_mode}//||{this.custom.isMatch}\u003e0" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.error": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "0 \u003c {value} \u0026\u0026 {value} \u003c 5", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.isMatch": { - "binding": { - "config": { - "expression": "if({view.params.tagProps[0]}\u003d\"value\",0,\nif({this.custom.searchId}\u003d{view.params.tagProps[0]},100,0))" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.plc": { - "binding": { - "config": { - "path": "view.params.tagProps[0]" - }, - "transforms": [ - { - "expression": "split({value}, \"/\")[0]", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.priority": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "fallback": 0, - "inputType": "scalar", - "mappings": [ - { - "input": 1, - "output": 4 - }, - { - "input": 2, - "output": 3 - }, - { - "input": 3, - "output": 2 - }, - { - "input": 4, - "output": 1 - } - ], - "outputType": "scalar", - "type": "map" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.priority_string": { - "binding": { - "config": { - "expression": "case({view.custom.state},\r\n1, \"High\",\r\n2, \"Medium\",\r\n3, \"Low\",\r\n4, \"Diagnostic\",\r\n5, \"No active alarms\",\r\n\"Unknown\")" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.running": { - "binding": { - "config": { - "expression": "{view.custom.running_status} \u003d 3" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.running_status": { - "binding": { - "config": { - "fallbackDelay": 2.5, - "mode": "indirect", - "references": { - "0": "{view.params.tagProps[0]}", - "fc": "{session.custom.fc}" - }, - "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/STATE" - }, - "transforms": [ - { - "expression": "coalesce({value},{view.params.forceRunningStatus},0)", - "type": "expression" - } - ], - "type": "tag" - }, - "persistent": true - }, - "custom.searchId": { - "binding": { - "config": { - "path": "session.custom.searchId" - }, - "type": "property" - }, - "persistent": true - }, - "custom.show_error": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case(\t{value},\r\n\t\t1, True,\r\n\t\t2, True,\r\n\t\t3, {session.custom.alarm_filter.show_low_alarm},\r\n\t\t4, {session.custom.alarm_filter.show_diagnostic},\r\n\t\tFalse)", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.show_running": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case(\t{value},\r\n\t\t1, False,\r\n\t\t2, False,\r\n\t\t{session.custom.alarm_filter.show_running}\r\n\t\t)", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.state": { - "binding": { - "config": { - "fallbackDelay": 2.5, - "mode": "indirect", - "references": { - "0": "{view.params.tagProps[0]}", - "fc": "{session.custom.fc}" - }, - "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/ALARMST" - }, - "transforms": [ - { - "expression": "coalesce({value},{view.params.forceFaultStatus},0)", - "type": "expression" - }, - { - "fallback": null, - "inputType": "scalar", - "mappings": [ - { - "input": 4, - "output": 1 - }, - { - "input": 3, - "output": 2 - }, - { - "input": 2, - "output": 3 - }, - { - "input": 1, - "output": 4 - }, - { - "input": 0, - "output": 5 - } - ], - "outputType": "scalar", - "type": "map" - } - ], - "type": "tag" - }, - "persistent": true - }, - "custom.state_string": { - "binding": { - "config": { - "expression": "case({view.custom.running_status},\r\n1, \"Faulted\",\r\n2, \"Stopped\",\r\n3, \"Running\",\r\n\"Unknown\")" - }, - "type": "expr" - }, - "persistent": true - }, - "params.forceFaultStatus": { - "paramDirection": "input", - "persistent": true - }, - "params.forceRunningStatus": { - "paramDirection": "input", - "persistent": true - }, - "params.tagProps": { - "paramDirection": "inout", - "persistent": true - } - }, - "props": { - "defaultSize": { - "height": 100, - "width": 100 - } - }, - "root": { - "children": [ - { - "meta": { - "name": "KPS_Symbol" - }, - "position": { - "height": 1, - "width": 1 - }, - "propConfig": { - "props.elements[10].fill.paint": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case({value},\r\n0,{session.custom.colours.state0},\r\n1,{session.custom.colours.state1},\r\n2,{session.custom.colours.state2},\r\n3,{session.custom.colours.state3},\r\n4,{session.custom.colours.state4},\r\n5,if({view.custom.running},{session.custom.colours.state5},{session.custom.colours.state0}),\r\n6,{session.custom.colours.state6},\r\n{session.custom.colours.fallback}\r\n)", - "type": "expression" - }, - { - "expression": "if({view.custom.display_icon}\u0026\u0026 {view.custom.isMatch}\u003d0,{value},{value}+\u002700\u0027)", - "type": "expression" - } - ], - "type": "property" - } - }, - "props.elements[11].elements[0].elements[0].fill.paint": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case({value},\r\n0,{session.custom.colours.state0},\r\n1,{session.custom.colours.state1},\r\n2,{session.custom.colours.state2},\r\n3,{session.custom.colours.state3},\r\n4,{session.custom.colours.state4},\r\n5,if({view.custom.running},{session.custom.colours.state5},{session.custom.colours.state0}),\r\n6,{session.custom.colours.state6},\r\n{session.custom.colours.fallback}\r\n)", - "type": "expression" - }, - { - "expression": "if({view.custom.display_icon}\u0026\u0026 {view.custom.isMatch}\u003d0,{value},{value}+\u002700\u0027)", - "type": "expression" - } - ], - "type": "property" - } - }, - "props.elements[11].elements[1].fill.paint": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case({value},\r\n0,{session.custom.colours.state0},\r\n1,{session.custom.colours.state1},\r\n2,{session.custom.colours.state2},\r\n3,{session.custom.colours.state3},\r\n4,{session.custom.colours.state4},\r\n5,if({view.custom.running},{session.custom.colours.state5},{session.custom.colours.state0}),\r\n6,{session.custom.colours.state6},\r\n{session.custom.colours.fallback}\r\n)", - "type": "expression" - }, - { - "expression": "if({view.custom.display_icon}\u0026\u0026 {view.custom.isMatch}\u003d0,{value},{value}+\u002700\u0027)", - "type": "expression" - } - ], - "type": "property" - } - }, - "props.elements[11].elements[2].fill.paint": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case({value},\r\n0,{session.custom.colours.state0},\r\n1,{session.custom.colours.state1},\r\n2,{session.custom.colours.state2},\r\n3,{session.custom.colours.state3},\r\n4,{session.custom.colours.state4},\r\n5,if({view.custom.running},{session.custom.colours.state5},{session.custom.colours.state0}),\r\n6,{session.custom.colours.state6},\r\n{session.custom.colours.fallback}\r\n)", - "type": "expression" - }, - { - "expression": "if({view.custom.display_icon}\u0026\u0026 {view.custom.isMatch}\u003d0,{value},{value}+\u002700\u0027)", - "type": "expression" - } - ], - "type": "property" - } - }, - "props.elements[1].fill.paint": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case({value},\r\n0,{session.custom.colours.state0},\r\n1,{session.custom.colours.state1},\r\n2,{session.custom.colours.state2},\r\n3,{session.custom.colours.state3},\r\n4,{session.custom.colours.state4},\r\n5,if({view.custom.running},{session.custom.colours.state5},{session.custom.colours.state0}),\r\n6,{session.custom.colours.state6},\r\n{session.custom.colours.fallback}\r\n)", - "type": "expression" - }, - { - "expression": "if({view.custom.display_icon}\u0026\u0026 {view.custom.isMatch}\u003d0,{value},{value}+\u002700\u0027)", - "type": "expression" - } - ], - "type": "property" - } - }, - "props.elements[4].elements[0].fill.paint": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case({value},\r\n0,{session.custom.colours.state0},\r\n1,{session.custom.colours.state1},\r\n2,{session.custom.colours.state2},\r\n3,{session.custom.colours.state3},\r\n4,{session.custom.colours.state4},\r\n5,if({view.custom.running},{session.custom.colours.state5},{session.custom.colours.state0}),\r\n6,{session.custom.colours.state6},\r\n{session.custom.colours.fallback}\r\n)", - "type": "expression" - }, - { - "expression": "if({view.custom.display_icon}\u0026\u0026 {view.custom.isMatch}\u003d0,{value},{value}+\u002700\u0027)", - "type": "expression" - } - ], - "type": "property" - } - }, - "props.elements[4].elements[1].fill.paint": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case({value},\r\n0,{session.custom.colours.state0},\r\n1,{session.custom.colours.state1},\r\n2,{session.custom.colours.state2},\r\n3,{session.custom.colours.state3},\r\n4,{session.custom.colours.state4},\r\n5,if({view.custom.running},{session.custom.colours.state5},{session.custom.colours.state0}),\r\n6,{session.custom.colours.state6},\r\n{session.custom.colours.fallback}\r\n)", - "type": "expression" - }, - { - "expression": "if({view.custom.display_icon}\u0026\u0026 {view.custom.isMatch}\u003d0,{value},{value}+\u002700\u0027)", - "type": "expression" - } - ], - "type": "property" - } - }, - "props.elements[5].fill.paint": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case({value},\r\n0,{session.custom.colours.state0},\r\n1,{session.custom.colours.state1},\r\n2,{session.custom.colours.state2},\r\n3,{session.custom.colours.state3},\r\n4,{session.custom.colours.state4},\r\n5,if({view.custom.running},{session.custom.colours.state5},{session.custom.colours.state0}),\r\n6,{session.custom.colours.state6},\r\n{session.custom.colours.fallback}\r\n)", - "type": "expression" - }, - { - "expression": "if({view.custom.display_icon}\u0026\u0026 {view.custom.isMatch}\u003d0,{value},{value}+\u002700\u0027)", - "type": "expression" - } - ], - "type": "property" - } - }, - "props.elements[6].fill.paint": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case({value},\r\n0,{session.custom.colours.state0},\r\n1,{session.custom.colours.state1},\r\n2,{session.custom.colours.state2},\r\n3,{session.custom.colours.state3},\r\n4,{session.custom.colours.state4},\r\n5,if({view.custom.running},{session.custom.colours.state5},{session.custom.colours.state0}),\r\n6,{session.custom.colours.state6},\r\n{session.custom.colours.fallback}\r\n)", - "type": "expression" - }, - { - "expression": "if({view.custom.display_icon}\u0026\u0026 {view.custom.isMatch}\u003d0,{value},{value}+\u002700\u0027)", - "type": "expression" - } - ], - "type": "property" - } - }, - "props.style.classes": { - "binding": { - "config": { - "expression": "if({session.custom.colours.colour_impaired} \u003d True \u0026\u0026 {view.custom.isMatch} \u003e 0,\n{view.custom.state} + 100 + {view.custom.isMatch},\n{view.custom.state} + {view.custom.isMatch})" - }, - "transforms": [ - { - "fallback": "", - "inputType": "scalar", - "mappings": [ - { - "input": 101, - "output": "State-Styles/State101" - }, - { - "input": 102, - "output": "State-Styles/State102" - }, - { - "input": 103, - "output": "State-Styles/State103" - }, - { - "input": 104, - "output": "State-Styles/State104" - }, - { - "input": 105, - "output": "State-Styles/State105" - }, - { - "input": 106, - "output": "State-Styles/State106" - }, - { - "input": 201, - "output": "State-Styles/State201" - }, - { - "input": 202, - "output": "State-Styles/State202" - }, - { - "input": 203, - "output": "State-Styles/State203" - }, - { - "input": 204, - "output": "State-Styles/State204" - }, - { - "input": 205, - "output": "State-Styles/State205" - } - ], - "outputType": "style-list", - "type": "map" - } - ], - "type": "expr" - } - } - }, - "props": { - "elements": [ - { - "id": "defs2", - "name": "defs2", - "type": "defs" - }, - { - "d": "M 2.5706316,14.829176 A 8.6886292,8.8029537 0 0 1 3.7045976,2.4348857 8.6886292,8.8029537 0 0 1 15.938255,3.5801235 8.6886292,8.8029537 0 0 1 14.811492,15.975088 8.6886292,8.8029537 0 0 1 2.5771713,14.837148", - "fill": {}, - "id": "path392", - "name": "path392", - "stroke": { - "dasharray": "none", - "miterlimit": "4", - "paint": "#000000", - "width": "0.301" - }, - "type": "path" - }, - { - "d": "m 9.5390129,4.6864138 v 4.054911", - "fill": { - "paint": "#ffffff" - }, - "id": "path5019", - "name": "path5019", - "stroke": { - "width": "0.995" - }, - "style": { - "InkscapeStroke": "none", - "color": "#000000" - }, - "type": "path" - }, - { - "d": "M 9.4725388,4.3208071 V 10.203752", - "fill": { - "paint": "#ffffff" - }, - "id": "path5287", - "name": "path5287", - "stroke": { - "width": "0.264583" - }, - "style": { - "InkscapeStroke": "none", - "color": "#000000" - }, - "type": "path" - }, - { - "elements": [ - { - "d": "m 3.5355633,13.180222 a 1.7980549,1.7980549 0 0 1 0.2346668,-2.531606 1.7980549,1.7980549 0 0 1 2.5316754,0.233921 1.7980549,1.7980549 0 0 1 -0.2331762,2.531744 1.7980549,1.7980549 0 0 1 -2.5318126,-0.23243", - "fill": { - "opacity": "1" - }, - "id": "path5410", - "name": "path5410", - "stroke": { - "dasharray": "none", - "linecap": "butt", - "miterlimit": "4", - "opacity": "1", - "paint": "#000000", - "width": "0.264583" - }, - "type": "path" - }, - { - "d": "m 4.4777183,12.373384 a 0.50880533,0.50880533 0 0 1 0.066405,-0.716383 0.50880533,0.50880533 0 0 1 0.7164019,0.06619 0.50880533,0.50880533 0 0 1 -0.065983,0.716422 0.50880533,0.50880533 0 0 1 -0.7164408,-0.06577", - "fill": { - "opacity": "1" - }, - "id": "path5410-5", - "name": "path5410-5", - "stroke": { - "dasharray": "none", - "linecap": "butt", - "miterlimit": "4", - "opacity": "1", - "paint": "#000000", - "width": "0.264583" - }, - "type": "path" - } - ], - "id": "g5618", - "name": "g5618", - "transform": "translate(-0.53179165,0.03323698)", - "type": "group" - }, - { - "d": "M 4.2949151,5.1775781 A 0.50880533,0.50880533 0 0 1 4.3613201,4.4611957 0.50880533,0.50880533 0 0 1 5.0777219,4.5273898 0.50880533,0.50880533 0 0 1 5.0117388,5.2438111 0.50880533,0.50880533 0 0 1 4.2952981,5.1780389", - "fill": { - "opacity": "1" - }, - "id": "path5410-5-0", - "name": "path5410-5-0", - "stroke": { - "dasharray": "none", - "linecap": "butt", - "miterlimit": "4", - "opacity": "1", - "paint": "#000000", - "width": "0.264583" - }, - "type": "path" - }, - { - "d": "m 12.182905,4.9268147 a 0.81870443,0.81870443 0 0 1 0.106851,-1.1527109 0.81870443,0.81870443 0 0 1 1.152742,0.106511 0.81870443,0.81870443 0 0 1 -0.106172,1.1527735 0.81870443,0.81870443 0 0 1 -1.152804,-0.1058322", - "fill": { - "opacity": "1" - }, - "id": "path5410-5-0-4", - "name": "path5410-5-0-4", - "stroke": { - "dasharray": "none", - "linecap": "butt", - "miterlimit": "4", - "opacity": "1", - "paint": "#000000", - "width": "0.264583" - }, - "type": "path" - }, - { - "d": "M 6.1038118,11.509128 4.1664144,4.9099388", - "fill": { - "opacity": "1", - "paint": "#ffffff" - }, - "id": "path5480", - "name": "path5480", - "stroke": { - "dasharray": "none", - "linecap": "butt", - "miterlimit": "4", - "opacity": "1", - "paint": "#000000", - "width": "0.226268" - }, - "type": "path" - }, - { - "d": "M 15.295408,12.27744 13.587526,4.1416262", - "fill": { - "opacity": "1", - "paint": "#ffffff" - }, - "id": "path5480-7", - "name": "path5480-7", - "stroke": { - "dasharray": "none", - "linecap": "butt", - "miterlimit": "4", - "opacity": "1", - "paint": "#000000", - "width": "0.235884" - }, - "type": "path" - }, - { - "d": "M 4.754402,4.3462292 12.628538,3.5974087", - "fill": { - "opacity": "1", - "paint": "#ffffff" - }, - "id": "path5482", - "name": "path5482", - "stroke": { - "dasharray": "none", - "linecap": "butt", - "miterlimit": "4", - "opacity": "1", - "paint": "#000000", - "width": "0.271714" - }, - "type": "path" - }, - { - "fill": { - "opacity": 1 - }, - "height": "0.96387237", - "id": "rect5506", - "name": "rect5506", - "stroke": { - "dasharray": "none", - "linecap": "butt", - "miterlimit": "4", - "opacity": "1", - "paint": "#000000", - "width": "0.264583" - }, - "transform": "rotate(-17.383769)", - "type": "rect", - "width": "9.3728275", - "x": "1.5237854", - "y": "16.281492" - }, - { - "elements": [ - { - "elements": [ - { - "fill": { - "opacity": "1" - }, - "height": "4.0549111", - "id": "rect5508", - "name": "rect5508", - "stroke": { - "dasharray": "none", - "linecap": "butt", - "miterlimit": "4", - "opacity": "1", - "paint": "#000000", - "width": "0.264583" - }, - "type": "rect", - "width": "4.9855466", - "x": "6.6806326", - "y": "6.6806326" - }, - { - "elements": [ - { - "fill": { - "opacity": "1", - "paint": "#000000" - }, - "id": "tspan5562", - "name": "tspan5562", - "stroke": { - "dasharray": "none", - "width": "0.128701" - }, - "text": "K", - "type": "tspan", - "x": "7.4878073", - "y": "10.346892" - } - ], - "fill": { - "opacity": "1", - "paint": "#000000" - }, - "id": "text5564", - "name": "text5564", - "stroke": { - "dasharray": "none", - "linecap": "butt", - "miterlimit": "4", - "opacity": "1", - "paint": "#000000", - "width": "0.128701" - }, - "style": { - "fontSize": "3.94435px" - }, - "transform": "scale(1.029236,0.97159447)", - "type": "text", - "x": "7.4878073", - "y": "10.346892" - } - ], - "id": "g5623", - "name": "g5623", - "transform": "translate(0.26589582,0.03323698)", - "type": "group" - }, - { - "fill": { - "opacity": "1" - }, - "height": "0.69797659", - "id": "rect5625", - "name": "rect5625", - "stroke": { - "dasharray": "none", - "linecap": "butt", - "miterlimit": "4", - "opacity": "1", - "paint": "#000000", - "width": "0.264583" - }, - "type": "rect", - "width": "4.9855466", - "x": "6.9465284", - "y": "6.0158935" - }, - { - "fill": { - "opacity": "1" - }, - "height": "0.69797659", - "id": "rect5625-3", - "name": "rect5625-3", - "stroke": { - "dasharray": "none", - "linecap": "butt", - "miterlimit": "4", - "opacity": "1", - "paint": "#000000", - "width": "0.264583" - }, - "type": "rect", - "width": "4.9855466", - "x": "6.9465284", - "y": "10.718925" - } - ], - "id": "g5655", - "name": "g5655", - "type": "group" - } - ], - "style": {}, - "viewBox": "0 0 18.520832 18.520834" - }, - "type": "ia.shapes.svg" - } - ], - "events": { - "dom": { - "onClick": { - "config": { - "script": "\tsystem.perspective.openDock(\u0027Docked-East\u0027,params\u003d{\u0027tagProps\u0027:self.view.params.tagProps})" - }, - "scope": "G", - "type": "script" - }, - "onDoubleClick": { - "config": { - "script": "\ttagProps \u003d self.view.params.tagProps\n\tsystem.perspective.openPopup(\"StatusPopUP\", \"PopUp-Views/Controller-Equipment/Information\", params \u003d{\"tagProps\":tagProps})\n\t" - }, - "enabled": false, - "scope": "G", - "type": "script" - }, - "onMouseEnter": { - "config": { - "script": "\tfrom time import sleep\n\t\n\talarm \u003d []\n\tmessage \u003d None\n\t\n\tsleep(0.5)\n\t\n\tif system.tag.exists(\"System/aws_data\"):\n\t\tif self.view.params.tagProps[0] !\u003d \"\":\n\t\t\ttags_to_read \u003d system.tag.readBlocking(\"System/aws_data\")\n\t\t\tdecode_alarm_data \u003d system.util.jsonDecode(tags_to_read[0].value)\n\t\t\talarm \u003d [decode_alarm_data[i] for i in decode_alarm_data\n\t\t\t\t\tif decode_alarm_data[i][\u0027sourceId\u0027].startswith(self.view.params.tagProps[0])]\n\t\tif alarm:\n\t\t\talarm \u003d sorted(alarm, key \u003d lambda t:t[\u0027timestamp\u0027], reverse\u003dTrue)\n\t\t\tmessage \u003d max(alarm, key \u003d lambda p:p[\u0027priority\u0027]).get(\u0027message\u0027)\n\t\t\tif len(alarm) \u003e 1:\n\t\t\t\tmessage +\u003d \" (+\" + str(len(alarm)-1) + \")\"\n\tself.view.custom.alarm_message \u003d message" - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "root", - "tooltip": { - "enabled": true, - "location": "top-left", - "style": {} - } - }, - "propConfig": { - "meta.tooltip.style.backgroundColor": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case({value},\r\n0,{session.custom.colours.state0},\r\n1,{session.custom.colours.state1},\r\n2,{session.custom.colours.state2},\r\n3,{session.custom.colours.state3},\r\n4,{session.custom.colours.state4},\r\n5,{session.custom.colours.state5},\r\n6,{session.custom.colours.state6},\r\n{session.custom.colours.fallback}\r\n)", - "type": "expression" - } - ], - "type": "property" - } - }, - "meta.tooltip.style.classes": { - "binding": { - "config": { - "expression": "{view.custom.priority}" - }, - "transforms": [ - { - "fallback": "Alarms-Styles/NoAlarm", - "inputType": "scalar", - "mappings": [ - { - "input": 1, - "output": "Alarms-Styles/Diagnostic" - }, - { - "input": 2, - "output": "Alarms-Styles/Low" - }, - { - "input": 3, - "output": "Alarms-Styles/Medium" - }, - { - "input": 4, - "output": "Alarms-Styles/High" - } - ], - "outputType": "style-list", - "type": "map" - } - ], - "type": "expr" - } - }, - "meta.tooltip.style.color": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "if({session.custom.colours.colour_impaired},\r\n\t\u0027#000000\u0027,\r\n\tcase(\t{value},\r\n\t\t\t1,\u0027#FFFFFF\u0027,\r\n\t\t\t2,\u0027#000000\u0027,\r\n\t\t\t3,\u0027#000000\u0027,\r\n\t\t\t4,\u0027#FFFFFF\u0027,\r\n\t\t\t5,\u0027#FFFFFF\u0027,\r\n\t\t\t\u0027#000000\u0027)\r\n\t)", - "type": "expression" - } - ], - "type": "property" - } - }, - "meta.tooltip.text": { - "binding": { - "config": { - "expression": "if({view.custom.disconnected} \u003d False,\n\tif(isNull({view.custom.alarm_message}),\n\t\"Source Id: \" + {view.params.tagProps[0]} +\n\t\", Priority: \" + {view.custom.priority_string} +\n\t\", State: \" + {view.custom.state_string},\n\t\"Source Id: \" + {view.params.tagProps[0]} +\n\t\", Alarm: \" + {view.custom.alarm_message} +\n\t\", Priority: \" + {view.custom.priority_string} +\n\t\", State: \" + {view.custom.state_string}),\n\"Source Id: \" +{view.params.tagProps[0]} + \", Priority: Unknown, State: Unknown\")" - }, - "type": "expr" - } - }, - "props.style.classes": { - "binding": { - "config": { - "path": "view.custom.disconnected" - }, - "transforms": [ - { - "fallback": "Disconnects/Device-Connected", - "inputType": "scalar", - "mappings": [ - { - "input": true, - "output": "Disconnects/Device-Disconnected" - }, - { - "input": false, - "output": "Disconnects/Device-Connected" - } - ], - "outputType": "style-list", - "type": "map" - } - ], - "type": "property" - } - } - }, - "props": { - "aspectRatio": "1:1", - "mode": "percent", - "style": { - "cursor": "pointer" - } - }, - "type": "ia.container.coord" - } -} \ No newline at end of file diff --git a/.resources/453c65f0b5d3cd65f58b96a961ec0349e509e931dddb56229ef921fb7a63e754 b/.resources/207ee4c1169ec2ce9113cbcd207534c949ae6f6a1e6518023926549ec5514365 similarity index 52% rename from .resources/453c65f0b5d3cd65f58b96a961ec0349e509e931dddb56229ef921fb7a63e754 rename to .resources/207ee4c1169ec2ce9113cbcd207534c949ae6f6a1e6518023926549ec5514365 index 1c34dd47..4f8d4dc5 100644 --- a/.resources/453c65f0b5d3cd65f58b96a961ec0349e509e931dddb56229ef921fb7a63e754 +++ b/.resources/207ee4c1169ec2ce9113cbcd207534c949ae6f6a1e6518023926549ec5514365 @@ -6,9 +6,9 @@ "$": [ "ts", 192, - 1710802671820 + 1754319546004 ], - "$ts": 1710802671820 + "$ts": 1754319545822 } } }, @@ -78,6 +78,143 @@ "grow": 0, "shrink": 0 }, + "instances": [ + { + "Counts": { + "Diag": 0, + "High": 0, + "Low": 0, + "Medium": 0 + }, + "area": "Bulk Inbound", + "instancePosition": {}, + "instanceStyle": { + "classes": "", + "margin": "5px" + }, + "subarea": "", + "tagProps": [ + "MCM05", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + { + "Counts": { + "Diag": 0, + "High": 0, + "Low": 0, + "Medium": 0 + }, + "area": "Fluid Inbound", + "instancePosition": {}, + "instanceStyle": { + "classes": "", + "margin": "5px" + }, + "subarea": "", + "tagProps": [ + "MCM04", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + { + "Counts": { + "Diag": 0, + "High": 0, + "Low": 0, + "Medium": 0 + }, + "area": "Fluid Inbound", + "instancePosition": {}, + "instanceStyle": { + "classes": "", + "margin": "5px" + }, + "subarea": "", + "tagProps": [ + "MCM03", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + { + "Counts": { + "Diag": 0, + "High": 0, + "Low": 0, + "Medium": 0 + }, + "area": "Sorter Destination and Chutes", + "instancePosition": {}, + "instanceStyle": { + "classes": "", + "margin": "5px" + }, + "subarea": "", + "tagProps": [ + "MCM02", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + { + "Counts": { + "Diag": 0, + "High": 0, + "Low": 0, + "Medium": 0 + }, + "area": "Sorter Destination, Chutes and Bypass", + "instancePosition": {}, + "instanceStyle": { + "classes": "", + "margin": "5px" + }, + "subarea": "", + "tagProps": [ + "MCM01", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + } + ], "path": "Symbol-Views/Controller-Views/ControllerStatus", "style": { "overflow": "visible" @@ -89,65 +226,26 @@ ], "custom": { "Devices": [ - "ARSAW1301", - "PLC03", - "ARSAW1302", - "PLC01", - "PLC02", - "PLC98", - "ARSAW1305", - "ARSAW1503", - "PLC08", - "PLC99", - "ARSAW1306", - "ARSAW1504", - "ARSAW1501", - "ARSAW1303", - "PLC06", - "PLC07", - "ARSAW1304", - "ARSAW1502", - "ARSAW1309", - "ARSAW1507", - "ARSAW1508", - "PLC09", - "ARSAW1307", - "ARSAW1505", - "ARSAW1308", - "ARSAW1506", - "PLC20", - "ARSAW1509", - "PLC14", - "PLC80", - "PLC81", - "PLC82", - "PLC16", - "FSC10", - "PLC21", - "PLC22", - "PLC69", - "PLC25", - "PLC26", - "PLC23", - "PLC24", - "PLC97", - "PLC27", - "PLC61", - "PLC60", - "PLC1000", - "PLC13", - "ARSAW1312", - "ARSAW1510", - "ARSAW1511", - "ARSAW1310", - "ARSAW1311", - "ARSAW1512", - "PLC70", - "PLC71", - "PLC32", - "PLC30", - "PLC31", - "PLC15" + [ + "MCM01", + "Bulk Inbound" + ], + [ + "MCM02", + "Fluid Inbound" + ], + [ + "MCM03", + "Fluid Inbound" + ], + [ + "MCM05", + "Sorter Destination and Chutes" + ], + [ + "MCM04", + "Sorter Destination, Chutes and Bypass" + ] ], "count": "value", "delay": 2000, diff --git a/.resources/20e0575fbafeaef7662e00b48b13ae7db4e1945c8fde26e954e1d0d02bec9f03 b/.resources/20e0575fbafeaef7662e00b48b13ae7db4e1945c8fde26e954e1d0d02bec9f03 deleted file mode 100644 index 4e10d2d9..00000000 --- a/.resources/20e0575fbafeaef7662e00b48b13ae7db4e1945c8fde26e954e1d0d02bec9f03 +++ /dev/null @@ -1,46 +0,0 @@ -{ - "custom": {}, - "params": { - "Information": "" - }, - "propConfig": { - "params.Information": { - "paramDirection": "inout", - "persistent": true - } - }, - "props": {}, - "root": { - "children": [ - { - "meta": { - "name": "Markdown" - }, - "position": { - "basis": "200px", - "grow": 1 - }, - "propConfig": { - "props.source": { - "binding": { - "config": { - "bidirectional": true, - "path": "view.params.Information" - }, - "type": "property" - } - } - }, - "type": "ia.display.markdown" - } - ], - "meta": { - "name": "root" - }, - "props": { - "direction": "column", - "justify": "space-evenly" - }, - "type": "ia.container.flex" - } -} \ No newline at end of file diff --git a/.resources/d8797653c60dfdcf743e8fa5a68f540ce79cd94aac7a2a2aa8e0c7827841c744 b/.resources/21b922850da9fea455b7fac7858ef56c5055b9674d99f2196dc5cf7d3f1100cb similarity index 94% rename from .resources/d8797653c60dfdcf743e8fa5a68f540ce79cd94aac7a2a2aa8e0c7827841c744 rename to .resources/21b922850da9fea455b7fac7858ef56c5055b9674d99f2196dc5cf7d3f1100cb index 7a99aa85..5b95179a 100644 --- a/.resources/d8797653c60dfdcf743e8fa5a68f540ce79cd94aac7a2a2aa8e0c7827841c744 +++ b/.resources/21b922850da9fea455b7fac7858ef56c5055b9674d99f2196dc5cf7d3f1100cb @@ -8,14 +8,6 @@ "title": "", "viewPath": "Main-Views/CommandControl" }, - "/CustomView/:customView": { - "title": "", - "viewPath": "Custom-Views/Detail" - }, - "/DetailedView/:detailedView/:plcTagPath": { - "title": "DetailedView", - "viewPath": "Detailed-Views/Detail" - }, "/Device-manager": { "viewPath": "Main-Views/Device-Manager/DeviceManager" }, @@ -34,6 +26,7 @@ "viewPath": "Main-Views/OilMonitoring" }, "/Real-Time": { + "title": "", "viewPath": "Alarm-Views/RealTime" }, "/Temperature": { @@ -51,10 +44,6 @@ "/Windows/Status": { "title": "", "viewPath": "" - }, - "/config": { - "title": "", - "viewPath": "CommissioningTool/PageConfig" } }, "sharedDocks": { @@ -98,13 +87,13 @@ "content": "cover", "handle": "hide", "iconUrl": "", - "id": "Docked-East", + "id": "Docked-Eas-TPR", "modal": false, "resizable": false, "show": "onDemand", "size": 400, "viewParams": {}, - "viewPath": "PopUp-Views/Controller-Equipment/Information-Docked-East" + "viewPath": "PopUp-Views/Controller-Equipment/Information-Tipper" }, { "anchor": "fixed", diff --git a/.resources/664f4cd3101dadc7e90862b7f338dcf7ffd303ed3c62f28188525998f8a0f759 b/.resources/24baef0c8c11135d40294f0124e6c6f2d8abb34f458091265cee9abe56fd7f9c similarity index 99% rename from .resources/664f4cd3101dadc7e90862b7f338dcf7ffd303ed3c62f28188525998f8a0f759 rename to .resources/24baef0c8c11135d40294f0124e6c6f2d8abb34f458091265cee9abe56fd7f9c index 7c11ae97..d1b1cfde 100644 --- a/.resources/664f4cd3101dadc7e90862b7f338dcf7ffd303ed3c62f28188525998f8a0f759 +++ b/.resources/24baef0c8c11135d40294f0124e6c6f2d8abb34f458091265cee9abe56fd7f9c @@ -1,8 +1,8 @@ { "custom": { - "color": "#00FF00", + "color": "#C2C2C2", "priority": "No Active Alarms", - "state": "Normal" + "state": "Closed" }, "params": { "forceFaultStatus": null, diff --git a/.resources/24f7693e6d31f4bd3c30f48a6ca44e244ac69a044158721001d82b2619466619 b/.resources/24f7693e6d31f4bd3c30f48a6ca44e244ac69a044158721001d82b2619466619 new file mode 100644 index 00000000..8613b1ae Binary files /dev/null and b/.resources/24f7693e6d31f4bd3c30f48a6ca44e244ac69a044158721001d82b2619466619 differ diff --git a/.resources/54b5787a747e8fb977497d38594bed722438e8b801286a1a316cca3ed54d8dba b/.resources/25e5a00f30786177df4e7ad37635b6f0d7c313faab87a638a05375a79c91a9d8 similarity index 97% rename from .resources/54b5787a747e8fb977497d38594bed722438e8b801286a1a316cca3ed54d8dba rename to .resources/25e5a00f30786177df4e7ad37635b6f0d7c313faab87a638a05375a79c91a9d8 index 59f61c4a..b13ca1bc 100644 --- a/.resources/54b5787a747e8fb977497d38594bed722438e8b801286a1a316cca3ed54d8dba +++ b/.resources/25e5a00f30786177df4e7ad37635b6f0d7c313faab87a638a05375a79c91a9d8 @@ -5,9 +5,7 @@ "MCM02", "MCM03", "MCM04", - "MCM05", - "MCM06", - "MCM07" + "MCM05" ], "running_state": -1, "state": 0, @@ -465,7 +463,7 @@ "0": "{view.params.tagProps[0]}", "fc": "{session.custom.fc}" }, - "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/STATE" + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" }, "transforms": [ { @@ -483,6 +481,14 @@ { "input": 0, "output": "NOT FAULTED" + }, + { + "input": true, + "output": "FAULTED" + }, + { + "input": false, + "output": "NOT FAULTED" } ], "outputType": "scalar", @@ -577,7 +583,6 @@ "grow": 1 }, "props": { - "currentTabIndex": 1, "menuType": "modern", "tabSize": { "width": 1000 diff --git a/.resources/6e95a1b03f0ee05e07a83853f93278ca67514be2b2ece7026e3e0b5438856412 b/.resources/27b7ed8582c84e2e9e5e6fd5f6f4806ff1522487ae896e9c9cea5d24c3c7fbbe similarity index 64% rename from .resources/6e95a1b03f0ee05e07a83853f93278ca67514be2b2ece7026e3e0b5438856412 rename to .resources/27b7ed8582c84e2e9e5e6fd5f6f4806ff1522487ae896e9c9cea5d24c3c7fbbe index d2c79c80..0672839b 100644 --- a/.resources/6e95a1b03f0ee05e07a83853f93278ca67514be2b2ece7026e3e0b5438856412 +++ b/.resources/27b7ed8582c84e2e9e5e6fd5f6f4806ff1522487ae896e9c9cea5d24c3c7fbbe @@ -7,13 +7,11 @@ def handleClick(data): MCM = row.get("Location", "") MCM_Pages_Map = { - "MCM01": "Detailed-Views/MCM01 Fluid Inbound Merges 1-4", - "MCM02": "Detailed-Views/MCM02 Fluid Inbound Merges 5-7", - "MCM03": "Detailed-Views/MCM03 Non Con", - "MCM04": "Detailed-Views/MCM04 North Bulk Inbound, Fluid Outbound and Problem Solve", - "MCM05": "Detailed-Views/MCM05 South Bulk Inbound, Fluid Outbound and Problem Solve", - "MCM06": "Detailed-Views/MCM06 Non Con", - "MCM07": "Detailed-Views/MCM07 Bypass", + "MCM01": "Detailed-Views/MCM01 Bulk Inbound", + "MCM02": "Detailed-Views/MCM02 Fluid Inbound", + "MCM03": "Detailed-Views/MCM03 Fluid Inbound", + "MCM04": "Detailed-Views/MCM04 Sorter Destination, Chutes and Bypass", + "MCM05": "Detailed-Views/MCM05 Sorter Destination and Chutes", } diff --git a/.resources/2a19a25a64c851effe6d5c33641ba79ef9d9e249c5f58048157d69e6042e135e b/.resources/2a19a25a64c851effe6d5c33641ba79ef9d9e249c5f58048157d69e6042e135e deleted file mode 100644 index 6fe6401d..00000000 --- a/.resources/2a19a25a64c851effe6d5c33641ba79ef9d9e249c5f58048157d69e6042e135e +++ /dev/null @@ -1,710 +0,0 @@ -{ - "custom": { - "font_size": ".57vmax" - }, - "params": {}, - "propConfig": { - "custom.font_size": { - "persistent": true - } - }, - "props": { - "defaultSize": { - "height": 149, - "width": 423 - } - }, - "root": { - "children": [ - { - "children": [ - { - "children": [ - { - "meta": { - "name": "Label" - }, - "position": { - "basis": "160px" - }, - "propConfig": { - "props.textStyle.fontSize": { - "binding": { - "config": { - "path": "view.custom.font_size" - }, - "type": "property" - } - } - }, - "props": { - "text": "Color Legend", - "textStyle": { - "paddingLeft": 5 - } - }, - "type": "ia.display.label" - } - ], - "meta": { - "name": "FlexContainer_4" - }, - "position": { - "basis": "35px", - "grow": 1 - }, - "props": { - "style": { - "backgroundColor": "#3B3B3B", - "borderColor": "#CAC3C3", - "borderStyle": "solid", - "borderWidth": 1, - "overflow": "hidden", - "paddingLeft": 5 - } - }, - "type": "ia.container.flex" - }, - { - "children": [ - { - "children": [ - { - "meta": { - "name": "Label" - }, - "position": { - "basis": "148px", - "grow": 1 - }, - "propConfig": { - "props.textStyle.fontSize": { - "binding": { - "config": { - "path": "view.custom.font_size" - }, - "type": "property" - } - } - }, - "props": { - "text": "MHE Stopped" - }, - "type": "ia.display.label" - } - ], - "meta": { - "name": "FlexContainer", - "tooltip": { - "enabled": true, - "sustain": 1500, - "text": "MHE is stopped (State2)" - } - }, - "position": { - "basis": "200px", - "grow": 1 - }, - "propConfig": { - "props.style.backgroundColor": { - "binding": { - "config": { - "path": "session.custom.colours.state0" - }, - "type": "property" - } - } - }, - "props": { - "style": { - "borderBottomLeftRadius": 4, - "borderBottomRightRadius": 4, - "borderTopLeftRadius": 4, - "borderTopRightRadius": 4, - "marginBottom": 0, - "marginLeft": 10, - "marginRight": 5, - "marginTop": 1, - "overflow": "hidden", - "paddingLeft": 10 - } - }, - "type": "ia.container.flex" - }, - { - "children": [ - { - "meta": { - "name": "Label" - }, - "position": { - "basis": "148px", - "grow": 1 - }, - "propConfig": { - "props.textStyle.fontSize": { - "binding": { - "config": { - "path": "view.custom.font_size" - }, - "type": "property" - } - } - }, - "props": { - "text": "MHE Running" - }, - "type": "ia.display.label" - } - ], - "meta": { - "name": "FlexContainer_0", - "tooltip": { - "enabled": true, - "sustain": 1500, - "text": "MHE is running (State3)" - } - }, - "position": { - "basis": "200px", - "grow": 1 - }, - "propConfig": { - "props.style.backgroundColor": { - "binding": { - "config": { - "path": "session.custom.colours.state5" - }, - "type": "property" - } - } - }, - "props": { - "style": { - "borderBottomLeftRadius": 4, - "borderBottomRightRadius": 4, - "borderTopLeftRadius": 4, - "borderTopRightRadius": 4, - "marginBottom": 0, - "marginLeft": 5, - "marginRight": 10, - "marginTop": 1, - "overflow": "hidden", - "paddingLeft": 10 - } - }, - "type": "ia.container.flex" - } - ], - "meta": { - "name": "FlexContainer" - }, - "position": { - "basis": "45px", - "grow": 1 - }, - "props": { - "style": { - "backgroundColor": "#3B3B3B", - "borderColor": "#CAC3C3", - "borderStyle": "solid", - "borderWidth": 1, - "overflow": "hidden" - } - }, - "type": "ia.container.flex" - }, - { - "children": [ - { - "children": [ - { - "meta": { - "name": "Label" - }, - "position": { - "basis": "148px", - "grow": 1 - }, - "propConfig": { - "props.textStyle.fontSize": { - "binding": { - "config": { - "path": "view.custom.font_size" - }, - "type": "property" - } - } - }, - "props": { - "text": "Healthy" - }, - "type": "ia.display.label" - } - ], - "meta": { - "name": "FlexContainer" - }, - "position": { - "basis": "200px", - "grow": 1 - }, - "propConfig": { - "props.style.backgroundColor": { - "binding": { - "config": { - "path": "session.custom.colours.state5" - }, - "type": "property" - } - } - }, - "props": { - "style": { - "borderBottomLeftRadius": 4, - "borderBottomRightRadius": 4, - "borderTopLeftRadius": 4, - "borderTopRightRadius": 4, - "marginBottom": 0, - "marginLeft": 10, - "marginRight": 5, - "marginTop": 1, - "overflow": "hidden", - "paddingLeft": 10 - } - }, - "type": "ia.container.flex" - }, - { - "children": [ - { - "meta": { - "name": "Label" - }, - "position": { - "basis": "148px", - "grow": 1 - }, - "propConfig": { - "props.textStyle.fontSize": { - "binding": { - "config": { - "path": "view.custom.font_size" - }, - "type": "property" - } - } - }, - "props": { - "text": "Diagnostic" - }, - "type": "ia.display.label" - } - ], - "meta": { - "name": "FlexContainer_0", - "tooltip": { - "enabled": true, - "sustain": 1500, - "text": "Diagnostic Information" - } - }, - "position": { - "basis": "200px", - "grow": 1 - }, - "propConfig": { - "props.style.backgroundColor": { - "binding": { - "config": { - "path": "session.custom.colours.state4" - }, - "type": "property" - } - } - }, - "props": { - "style": { - "borderBottomLeftRadius": 4, - "borderBottomRightRadius": 4, - "borderTopLeftRadius": 4, - "borderTopRightRadius": 4, - "marginBottom": 0, - "marginLeft": 5, - "marginRight": 10, - "marginTop": 1, - "overflow": "hidden", - "paddingLeft": 10 - } - }, - "type": "ia.container.flex" - } - ], - "meta": { - "name": "FlexContainer_0", - "tooltip": { - "enabled": true, - "sustain": 1500, - "text": "Healthy, no active alarms" - } - }, - "position": { - "basis": "45px", - "grow": 1 - }, - "props": { - "style": { - "backgroundColor": "#3B3B3B", - "borderColor": "#CAC3C3", - "borderStyle": "solid", - "borderWidth": 1, - "overflow": "hidden" - } - }, - "type": "ia.container.flex" - }, - { - "children": [ - { - "children": [ - { - "meta": { - "name": "Label" - }, - "position": { - "basis": "148px", - "grow": 1 - }, - "propConfig": { - "props.textStyle.fontSize": { - "binding": { - "config": { - "path": "view.custom.font_size" - }, - "type": "property" - } - } - }, - "props": { - "text": "Low", - "textStyle": { - "color": "#000000" - } - }, - "type": "ia.display.label" - } - ], - "meta": { - "name": "FlexContainer", - "tooltip": { - "enabled": true, - "sustain": 1500, - "text": "Running at reduced capacity" - } - }, - "position": { - "basis": "200px", - "grow": 1 - }, - "propConfig": { - "props.style.backgroundColor": { - "binding": { - "config": { - "path": "session.custom.colours.state3" - }, - "type": "property" - } - } - }, - "props": { - "style": { - "borderBottomLeftRadius": 4, - "borderBottomRightRadius": 4, - "borderTopLeftRadius": 4, - "borderTopRightRadius": 4, - "marginBottom": 0, - "marginLeft": 10, - "marginRight": 5, - "marginTop": 1, - "overflow": "hidden", - "paddingLeft": 10 - } - }, - "type": "ia.container.flex" - }, - { - "children": [ - { - "meta": { - "name": "Label" - }, - "position": { - "basis": "148px", - "grow": 1 - }, - "propConfig": { - "props.textStyle.fontSize": { - "binding": { - "config": { - "path": "view.custom.font_size" - }, - "type": "property" - } - } - }, - "props": { - "text": "Medium" - }, - "type": "ia.display.label" - } - ], - "meta": { - "name": "FlexContainer_0", - "tooltip": { - "enabled": true, - "sustain": 1500, - "text": "Controlled stop" - } - }, - "position": { - "basis": "200px", - "grow": 1 - }, - "propConfig": { - "props.style.backgroundColor": { - "binding": { - "config": { - "path": "session.custom.colours.state2" - }, - "type": "property" - } - } - }, - "props": { - "style": { - "borderBottomLeftRadius": 4, - "borderBottomRightRadius": 4, - "borderTopLeftRadius": 4, - "borderTopRightRadius": 4, - "marginBottom": 0, - "marginLeft": 5, - "marginRight": 10, - "marginTop": 1, - "overflow": "hidden", - "paddingLeft": 10 - } - }, - "type": "ia.container.flex" - } - ], - "meta": { - "name": "FlexContainer_1" - }, - "position": { - "basis": "45px", - "grow": 1 - }, - "props": { - "style": { - "backgroundColor": "#3B3B3B", - "borderBottomLeftRadius": 4, - "borderBottomRightRadius": 4, - "borderColor": "#CAC3C3", - "borderStyle": "solid", - "borderTopLeftRadius": 4, - "borderTopRightRadius": 4, - "borderWidth": 1, - "overflow": "hidden", - "paddingLeft": 1 - } - }, - "type": "ia.container.flex" - }, - { - "children": [ - { - "children": [ - { - "meta": { - "name": "Label" - }, - "position": { - "basis": "148px", - "grow": 1 - }, - "propConfig": { - "props.textStyle.fontSize": { - "binding": { - "config": { - "path": "view.custom.font_size" - }, - "type": "property" - } - } - }, - "props": { - "text": "High" - }, - "type": "ia.display.label" - } - ], - "meta": { - "name": "FlexContainer", - "tooltip": { - "enabled": true, - "sustain": 1500, - "text": "Uncontrolled stop" - } - }, - "position": { - "basis": "200px", - "grow": 1 - }, - "propConfig": { - "props.style.backgroundColor": { - "binding": { - "config": { - "path": "session.custom.colours.state1" - }, - "type": "property" - } - } - }, - "props": { - "style": { - "borderBottomLeftRadius": 4, - "borderBottomRightRadius": 4, - "borderTopLeftRadius": 4, - "borderTopRightRadius": 4, - "marginBottom": 0, - "marginLeft": 10, - "marginRight": 5, - "marginTop": 1, - "overflow": "hidden", - "paddingLeft": 10 - } - }, - "type": "ia.container.flex" - }, - { - "children": [ - { - "events": { - "component": { - "onActionPerformed": { - "config": { - "draggable": true, - "id": "K1uUHAix", - "modal": true, - "overlayDismiss": true, - "resizable": true, - "showCloseIcon": true, - "title": "Legend", - "type": "open", - "viewPath": "PopUp-Views/Legend", - "viewportBound": false - }, - "scope": "C", - "type": "popup" - } - } - }, - "meta": { - "name": "Button" - }, - "position": { - "basis": "168px", - "grow": 1 - }, - "propConfig": { - "props.textStyle.fontSize": { - "binding": { - "config": { - "path": "view.custom.font_size" - }, - "type": "property" - } - } - }, - "props": { - "image": { - "icon": { - "path": "material/legend_toggle" - }, - "style": { - "backgroundColor": "#555555" - } - }, - "justify": "start", - "style": { - "backgroundColor": "#555555", - "paddingLeft": 8 - }, - "text": "DETAILS" - }, - "type": "ia.input.button" - } - ], - "meta": { - "name": "FlexContainer_0" - }, - "position": { - "basis": "200px", - "grow": 1 - }, - "props": { - "style": { - "backgroundColor": "#555555", - "marginBottom": 0, - "marginLeft": 5, - "marginRight": 10, - "marginTop": 1 - } - }, - "type": "ia.container.flex" - } - ], - "meta": { - "name": "FlexContainer_2" - }, - "position": { - "basis": "45px", - "grow": 1 - }, - "props": { - "style": { - "backgroundColor": "#3B3B3B", - "borderColor": "#CAC3C3", - "borderStyle": "solid", - "borderWidth": 1, - "overflow": "hidden" - } - }, - "type": "ia.container.flex" - } - ], - "meta": { - "name": "FlexContainer_6" - }, - "position": { - "basis": "800px", - "grow": 1 - }, - "props": { - "direction": "column" - }, - "type": "ia.container.flex" - } - ], - "meta": { - "name": "root" - }, - "props": { - "direction": "column", - "style": { - "classes": "Background-Styles/Controller" - } - }, - "type": "ia.container.flex" - } -} \ No newline at end of file diff --git a/.resources/2e50f8fb0336530aedd48f8333d47af6701bf0fa96d8513dfb09b3b292c45fde b/.resources/2e50f8fb0336530aedd48f8333d47af6701bf0fa96d8513dfb09b3b292c45fde deleted file mode 100644 index 8e0b6ad7..00000000 Binary files a/.resources/2e50f8fb0336530aedd48f8333d47af6701bf0fa96d8513dfb09b3b292c45fde and /dev/null differ diff --git a/.resources/2e5683cf5727147574314cff0f5e8b1f64849804010f9cbac028d41e12983364 b/.resources/2e5683cf5727147574314cff0f5e8b1f64849804010f9cbac028d41e12983364 deleted file mode 100644 index c8dc790d..00000000 Binary files a/.resources/2e5683cf5727147574314cff0f5e8b1f64849804010f9cbac028d41e12983364 and /dev/null differ diff --git a/.resources/2e7e2b7993724d732f068745b0537c0b6f3d16e13a0930ca7ed0906b4bd1ce2f b/.resources/2e7e2b7993724d732f068745b0537c0b6f3d16e13a0930ca7ed0906b4bd1ce2f deleted file mode 100644 index c1dcae3e..00000000 Binary files a/.resources/2e7e2b7993724d732f068745b0537c0b6f3d16e13a0930ca7ed0906b4bd1ce2f and /dev/null differ diff --git a/.resources/2fc578154dc75587ee67175b3e34ae64bde67cac8b9fe6b5013edc2e82b455c7 b/.resources/2fc578154dc75587ee67175b3e34ae64bde67cac8b9fe6b5013edc2e82b455c7 deleted file mode 100644 index b5cf61ac..00000000 --- a/.resources/2fc578154dc75587ee67175b3e34ae64bde67cac8b9fe6b5013edc2e82b455c7 +++ /dev/null @@ -1,99 +0,0 @@ -{ - "custom": {}, - "params": { - "styleClass": "", - "text": "" - }, - "propConfig": { - "params.styleClass": { - "paramDirection": "input", - "persistent": true - }, - "params.stylePath": { - "paramDirection": "input", - "persistent": true - }, - "params.text": { - "binding": { - "config": { - "expression": "{view.params.text}" - }, - "type": "expr" - }, - "paramDirection": "inout", - "persistent": true - } - }, - "props": { - "defaultSize": { - "height": 40, - "width": 210 - } - }, - "root": { - "children": [ - { - "meta": { - "name": "TextInput" - }, - "position": { - "basis": "10px", - "grow": 1 - }, - "propConfig": { - "props.style.classes": { - "binding": { - "config": { - "expression": "{view.params.styleClass}" - }, - "transforms": [ - { - "fallback": "Input/Label/Valid_Entry", - "inputType": "scalar", - "mappings": [ - { - "input": 0, - "output": "Input/Label/Invalid_Entry" - }, - { - "input": 1, - "output": "Input/Label/Valid_Entry" - } - ], - "outputType": "style-list", - "type": "map" - } - ], - "type": "expr" - } - }, - "props.text": { - "binding": { - "config": { - "path": "view.params.text" - }, - "type": "property" - } - } - }, - "props": { - "placeholder": "Enter Value", - "resize": "both", - "style": {} - }, - "type": "ia.input.text-area" - } - ], - "meta": { - "name": "root" - }, - "props": { - "direction": "column", - "justify": "center", - "style": { - "overflow": "hidden" - } - }, - "type": "ia.container.flex" - } -} \ No newline at end of file diff --git a/.resources/305782252bb3dc6c4de1e5ec380cc3b2d591d836f167122cf79cfb0873d0628d b/.resources/305782252bb3dc6c4de1e5ec380cc3b2d591d836f167122cf79cfb0873d0628d new file mode 100644 index 00000000..e2a2f05d Binary files /dev/null and b/.resources/305782252bb3dc6c4de1e5ec380cc3b2d591d836f167122cf79cfb0873d0628d differ diff --git a/.resources/30e60a1f29e5eb731f4b029c87def51a28ae73bd00b9f3c8ff83877207471706 b/.resources/30e60a1f29e5eb731f4b029c87def51a28ae73bd00b9f3c8ff83877207471706 deleted file mode 100644 index 1d8f5b71..00000000 Binary files a/.resources/30e60a1f29e5eb731f4b029c87def51a28ae73bd00b9f3c8ff83877207471706 and /dev/null differ diff --git a/.resources/03bbd4ec8290c2728691a8b0a72d7a1da83baa83363a2d6a6a5fb5fe82315d84 b/.resources/31a18d570117d48bc8ff977c475e259b30544e3b06eb884abc78c9c03a3f460c similarity index 99% rename from .resources/03bbd4ec8290c2728691a8b0a72d7a1da83baa83363a2d6a6a5fb5fe82315d84 rename to .resources/31a18d570117d48bc8ff977c475e259b30544e3b06eb884abc78c9c03a3f460c index d0f52341..77e354b1 100644 --- a/.resources/03bbd4ec8290c2728691a8b0a72d7a1da83baa83363a2d6a6a5fb5fe82315d84 +++ b/.resources/31a18d570117d48bc8ff977c475e259b30544e3b06eb884abc78c9c03a3f460c @@ -1,8 +1,8 @@ { "custom": { - "color": "#FF0000", - "priority": "High", - "state": "EStopped" + "color": "#C2C2C2", + "priority": "No Active Alarms", + "state": "Closed" }, "params": { "directionLeft": false, diff --git a/.resources/3592d6c1cf1aa33a51d516cf8a5f40e51c5622ed6c771a6014defc5be723fd70 b/.resources/3592d6c1cf1aa33a51d516cf8a5f40e51c5622ed6c771a6014defc5be723fd70 deleted file mode 100644 index e3d6bcfc..00000000 Binary files a/.resources/3592d6c1cf1aa33a51d516cf8a5f40e51c5622ed6c771a6014defc5be723fd70 and /dev/null differ diff --git a/.resources/3636db4cad4badec00cd68e8decfc5c86b145fe0e2fa9c712ecf35b91264887a b/.resources/3636db4cad4badec00cd68e8decfc5c86b145fe0e2fa9c712ecf35b91264887a deleted file mode 100644 index 6e9e003a..00000000 Binary files a/.resources/3636db4cad4badec00cd68e8decfc5c86b145fe0e2fa9c712ecf35b91264887a and /dev/null differ diff --git a/.resources/367cdac2cab7ad0b2f9518b8f3f46aae1df4932c23ee6c9a722e9a73965e93a2 b/.resources/367cdac2cab7ad0b2f9518b8f3f46aae1df4932c23ee6c9a722e9a73965e93a2 new file mode 100644 index 00000000..c6dbe7af Binary files /dev/null and b/.resources/367cdac2cab7ad0b2f9518b8f3f46aae1df4932c23ee6c9a722e9a73965e93a2 differ diff --git a/.resources/398cca2ef669bfc5f34baf63ce93b2b89e70927aa2e1616b72beba7e95067d26 b/.resources/398cca2ef669bfc5f34baf63ce93b2b89e70927aa2e1616b72beba7e95067d26 deleted file mode 100644 index 7097455c..00000000 --- a/.resources/398cca2ef669bfc5f34baf63ce93b2b89e70927aa2e1616b72beba7e95067d26 +++ /dev/null @@ -1,687 +0,0 @@ -{ - "custom": { - "FillColour": "value", - "alarm_message": null, - "covert_mode": true, - "disconnected": false, - "display_icon": true, - "error": false, - "isMatch": 0, - "plc": "value", - "priority": 0, - "priority_string": "No active alarms", - "running": false, - "running_status": 0, - "searchId": "PLC01", - "show_error": false, - "show_running": true, - "state": 5, - "state_string": "Unknown" - }, - "params": { - "forceFaultStatus": null, - "forceRunningStatus": null, - "tagProps": [ - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value" - ] - }, - "propConfig": { - "custom.FillColour": { - "persistent": true - }, - "custom.alarm_message": { - "persistent": true - }, - "custom.covert_mode": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case(\t{value},\r\n\t\t0, {session.custom.alarm_filter.show_running},\r\n\t\t1, True,\r\n\t\t2, True,\r\n\t\t3, {session.custom.alarm_filter.show_low_alarm} || {session.custom.alarm_filter.show_running},\r\n\t\t4, {session.custom.alarm_filter.show_diagnostic} || {session.custom.alarm_filter.show_running},\r\n\t\t5, {session.custom.alarm_filter.show_running},\r\n\t\tFalse)", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.disconnected": { - "binding": { - "config": { - "fallbackDelay": 2.5, - "mode": "indirect", - "references": { - "fc": "{session.custom.fc}", - "plc": "{view.custom.plc}" - }, - "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{plc}/DCN" - }, - "transforms": [ - { - "expression": "if(isNull({value}), False, {value})", - "type": "expression" - } - ], - "type": "tag" - }, - "persistent": true - }, - "custom.display_icon": { - "binding": { - "config": { - "expression": "{this.custom.covert_mode}//||{this.custom.isMatch}\u003e0" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.error": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "0 \u003c {value} \u0026\u0026 {value} \u003c 5", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.isMatch": { - "binding": { - "config": { - "expression": "if({view.params.tagProps[0]}\u003d\"value\",0,\nif({this.custom.searchId}\u003d{view.params.tagProps[0]},100,0))" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.plc": { - "binding": { - "config": { - "path": "view.params.tagProps[0]" - }, - "transforms": [ - { - "expression": "split({value}, \"/\")[0]", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.priority": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "fallback": 0, - "inputType": "scalar", - "mappings": [ - { - "input": 1, - "output": 4 - }, - { - "input": 2, - "output": 3 - }, - { - "input": 3, - "output": 2 - }, - { - "input": 4, - "output": 1 - } - ], - "outputType": "scalar", - "type": "map" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.priority_string": { - "binding": { - "config": { - "expression": "case({view.custom.state},\r\n1, \"High\",\r\n2, \"Medium\",\r\n3, \"Low\",\r\n4, \"Diagnostic\",\r\n5, \"No active alarms\",\r\n\"Unknown\")" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.running": { - "binding": { - "config": { - "expression": "{view.custom.running_status} \u003d 3" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.running_status": { - "binding": { - "config": { - "fallbackDelay": 2.5, - "mode": "indirect", - "references": { - "0": "{view.params.tagProps[0]}", - "fc": "{session.custom.fc}" - }, - "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/STATE" - }, - "transforms": [ - { - "expression": "coalesce({value},{view.params.forceRunningStatus},0)", - "type": "expression" - } - ], - "type": "tag" - }, - "persistent": true - }, - "custom.searchId": { - "binding": { - "config": { - "path": "session.custom.searchId" - }, - "type": "property" - }, - "persistent": true - }, - "custom.show_error": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case(\t{value},\r\n\t\t1, True,\r\n\t\t2, True,\r\n\t\t3, {session.custom.alarm_filter.show_low_alarm},\r\n\t\t4, {session.custom.alarm_filter.show_diagnostic},\r\n\t\tFalse)", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.show_running": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case(\t{value},\r\n\t\t1, False,\r\n\t\t2, False,\r\n\t\t{session.custom.alarm_filter.show_running}\r\n\t\t)", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.state": { - "binding": { - "config": { - "fallbackDelay": 2.5, - "mode": "indirect", - "references": { - "0": "{view.params.tagProps[0]}", - "fc": "{session.custom.fc}" - }, - "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/ALARMST" - }, - "transforms": [ - { - "expression": "coalesce({value},{view.params.forceFaultStatus},0)", - "type": "expression" - }, - { - "fallback": null, - "inputType": "scalar", - "mappings": [ - { - "input": 4, - "output": 1 - }, - { - "input": 3, - "output": 2 - }, - { - "input": 2, - "output": 3 - }, - { - "input": 1, - "output": 4 - }, - { - "input": 0, - "output": 5 - } - ], - "outputType": "scalar", - "type": "map" - } - ], - "type": "tag" - }, - "persistent": true - }, - "custom.state_string": { - "binding": { - "config": { - "expression": "case({view.custom.running_status},\r\n1, \"Faulted\",\r\n2, \"Stopped\",\r\n3, \"Running\",\r\n\"Unknown\")" - }, - "type": "expr" - }, - "persistent": true - }, - "params.forceFaultStatus": { - "paramDirection": "input", - "persistent": true - }, - "params.forceRunningStatus": { - "paramDirection": "input", - "persistent": true - }, - "params.tagProps": { - "paramDirection": "inout", - "persistent": true - } - }, - "props": { - "defaultSize": { - "height": 100, - "width": 100 - } - }, - "root": { - "children": [ - { - "meta": { - "name": "LIFT_Symbol" - }, - "position": { - "height": 1, - "width": 1 - }, - "propConfig": { - "props.elements[1].fill.paint": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case({value},\r\n0,{session.custom.colours.state0},\r\n1,{session.custom.colours.state1},\r\n2,{session.custom.colours.state2},\r\n3,{session.custom.colours.state3},\r\n4,{session.custom.colours.state4},\r\n5,if({view.custom.running},{session.custom.colours.state5},{session.custom.colours.state0}),\r\n6,{session.custom.colours.state6},\r\n{session.custom.colours.fallback}\r\n)", - "type": "expression" - }, - { - "expression": "if({view.custom.display_icon}\u0026\u0026 {view.custom.isMatch}\u003d0,{value},{value}+\u002700\u0027)", - "type": "expression" - } - ], - "type": "property" - } - }, - "props.elements[4].elements[0].fill.paint": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case({value},\r\n0,{session.custom.colours.state0},\r\n1,{session.custom.colours.state1},\r\n2,{session.custom.colours.state2},\r\n3,{session.custom.colours.state3},\r\n4,{session.custom.colours.state4},\r\n5,if({view.custom.running},{session.custom.colours.state5},{session.custom.colours.state0}),\r\n6,{session.custom.colours.state6},\r\n{session.custom.colours.fallback}\r\n)", - "type": "expression" - }, - { - "expression": "if({view.custom.display_icon}\u0026\u0026 {view.custom.isMatch}\u003d0,{value},{value}+\u002700\u0027)", - "type": "expression" - } - ], - "type": "property" - } - }, - "props.elements[4].elements[1].fill.paint": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case({value},\r\n0,{session.custom.colours.state0},\r\n1,{session.custom.colours.state1},\r\n2,{session.custom.colours.state2},\r\n3,{session.custom.colours.state3},\r\n4,{session.custom.colours.state4},\r\n5,if({view.custom.running},{session.custom.colours.state5},{session.custom.colours.state0}),\r\n6,{session.custom.colours.state6},\r\n{session.custom.colours.fallback}\r\n)", - "type": "expression" - }, - { - "expression": "if({view.custom.display_icon}\u0026\u0026 {view.custom.isMatch}\u003d0,{value},{value}+\u002700\u0027)", - "type": "expression" - } - ], - "type": "property" - } - }, - "props.style.classes": { - "binding": { - "config": { - "expression": "if({session.custom.colours.colour_impaired} \u003d True \u0026\u0026 {view.custom.isMatch} \u003e 0,\n{view.custom.state} + 100 + {view.custom.isMatch},\n{view.custom.state} + {view.custom.isMatch})" - }, - "transforms": [ - { - "fallback": "", - "inputType": "scalar", - "mappings": [ - { - "input": 101, - "output": "State-Styles/State101" - }, - { - "input": 102, - "output": "State-Styles/State102" - }, - { - "input": 103, - "output": "State-Styles/State103" - }, - { - "input": 104, - "output": "State-Styles/State104" - }, - { - "input": 105, - "output": "State-Styles/State105" - }, - { - "input": 106, - "output": "State-Styles/State106" - }, - { - "input": 201, - "output": "State-Styles/State201" - }, - { - "input": 202, - "output": "State-Styles/State202" - }, - { - "input": 203, - "output": "State-Styles/State203" - }, - { - "input": 204, - "output": "State-Styles/State204" - }, - { - "input": 205, - "output": "State-Styles/State205" - } - ], - "outputType": "style-list", - "type": "map" - } - ], - "type": "expr" - } - } - }, - "props": { - "elements": [ - { - "id": "defs2", - "name": "defs2", - "type": "defs" - }, - { - "d": "M 2.5706316,14.829176 A 8.6886292,8.8029537 0 0 1 3.7045976,2.4348857 8.6886292,8.8029537 0 0 1 15.938255,3.5801235 8.6886292,8.8029537 0 0 1 14.811492,15.975088 8.6886292,8.8029537 0 0 1 2.5771713,14.837148", - "fill": {}, - "id": "path392", - "name": "path392", - "stroke": { - "dasharray": "none", - "miterlimit": "4", - "paint": "#000000", - "width": "0.301" - }, - "type": "path" - }, - { - "d": "m 9.5390129,4.6864138 v 4.054911", - "fill": { - "paint": "#ffffff" - }, - "id": "path5019", - "name": "path5019", - "stroke": { - "width": "0.995" - }, - "style": { - "InkscapeStroke": "none", - "color": "#000000" - }, - "type": "path" - }, - { - "d": "M 9.4725388,4.3208071 V 10.203752", - "fill": { - "paint": "#ffffff" - }, - "id": "path5287", - "name": "path5287", - "stroke": { - "width": "0.264583" - }, - "style": { - "InkscapeStroke": "none", - "color": "#000000" - }, - "type": "path" - }, - { - "elements": [ - { - "d": "M 5.5505752,8.3092441 H 12.962422 L 9.2349587,2.4863396 Z", - "fill": { - "opacity": "1" - }, - "id": "path5305", - "name": "path5305", - "stroke": { - "dasharray": "none", - "linecap": "butt", - "miterlimit": "4", - "opacity": "1", - "paint": "#000000", - "width": "0.656167" - }, - "type": "path" - }, - { - "d": "M 5.5653282,10.042435 H 12.977175 L 9.2497117,15.865339 Z", - "fill": { - "opacity": "1" - }, - "id": "path5305-1", - "name": "path5305-1", - "stroke": { - "dasharray": "none", - "linecap": "butt", - "miterlimit": "4", - "opacity": "1", - "paint": "#000000", - "width": "0.656167" - }, - "type": "path" - } - ], - "id": "g5310", - "name": "g5310", - "type": "group" - } - ], - "style": {}, - "viewBox": "0 0 18.520832 18.520834" - }, - "type": "ia.shapes.svg" - } - ], - "events": { - "dom": { - "onClick": { - "config": { - "script": "\tsystem.perspective.openDock(\u0027Docked-East\u0027,params\u003d{\u0027tagProps\u0027:self.view.params.tagProps})" - }, - "scope": "G", - "type": "script" - }, - "onDoubleClick": { - "config": { - "script": "\ttagProps \u003d self.view.params.tagProps\n\tsystem.perspective.openPopup(\"StatusPopUP\", \"PopUp-Views/Controller-Equipment/Information\", params \u003d{\"tagProps\":tagProps})\n\t" - }, - "enabled": false, - "scope": "G", - "type": "script" - }, - "onMouseEnter": { - "config": { - "script": "\tfrom time import sleep\n\t\n\talarm \u003d []\n\tmessage \u003d None\n\t\n\tsleep(0.5)\n\t\n\tif system.tag.exists(\"System/aws_data\"):\n\t\tif self.view.params.tagProps[0] !\u003d \"\":\n\t\t\ttags_to_read \u003d system.tag.readBlocking(\"System/aws_data\")\n\t\t\tdecode_alarm_data \u003d system.util.jsonDecode(tags_to_read[0].value)\n\t\t\talarm \u003d [decode_alarm_data[i] for i in decode_alarm_data\n\t\t\t\t\tif decode_alarm_data[i][\u0027sourceId\u0027].startswith(self.view.params.tagProps[0])]\n\t\tif alarm:\n\t\t\talarm \u003d sorted(alarm, key \u003d lambda t:t[\u0027timestamp\u0027], reverse\u003dTrue)\n\t\t\tmessage \u003d max(alarm, key \u003d lambda p:p[\u0027priority\u0027]).get(\u0027message\u0027)\n\t\t\tif len(alarm) \u003e 1:\n\t\t\t\tmessage +\u003d \" (+\" + str(len(alarm)-1) + \")\"\n\tself.view.custom.alarm_message \u003d message" - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "root", - "tooltip": { - "enabled": true, - "location": "top-left", - "style": {} - } - }, - "propConfig": { - "meta.tooltip.style.backgroundColor": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case({value},\r\n0,{session.custom.colours.state0},\r\n1,{session.custom.colours.state1},\r\n2,{session.custom.colours.state2},\r\n3,{session.custom.colours.state3},\r\n4,{session.custom.colours.state4},\r\n5,{session.custom.colours.state5},\r\n6,{session.custom.colours.state6},\r\n{session.custom.colours.fallback}\r\n)", - "type": "expression" - } - ], - "type": "property" - } - }, - "meta.tooltip.style.classes": { - "binding": { - "config": { - "expression": "{view.custom.priority}" - }, - "transforms": [ - { - "fallback": "Alarms-Styles/NoAlarm", - "inputType": "scalar", - "mappings": [ - { - "input": 1, - "output": "Alarms-Styles/Diagnostic" - }, - { - "input": 2, - "output": "Alarms-Styles/Low" - }, - { - "input": 3, - "output": "Alarms-Styles/Medium" - }, - { - "input": 4, - "output": "Alarms-Styles/High" - } - ], - "outputType": "style-list", - "type": "map" - } - ], - "type": "expr" - } - }, - "meta.tooltip.style.color": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "if({session.custom.colours.colour_impaired},\r\n\t\u0027#000000\u0027,\r\n\tcase(\t{value},\r\n\t\t\t1,\u0027#FFFFFF\u0027,\r\n\t\t\t2,\u0027#000000\u0027,\r\n\t\t\t3,\u0027#000000\u0027,\r\n\t\t\t4,\u0027#FFFFFF\u0027,\r\n\t\t\t5,\u0027#FFFFFF\u0027,\r\n\t\t\t\u0027#000000\u0027)\r\n\t)", - "type": "expression" - } - ], - "type": "property" - } - }, - "meta.tooltip.text": { - "binding": { - "config": { - "expression": "if({view.custom.disconnected} \u003d False,\n\tif(isNull({view.custom.alarm_message}),\n\t\"Source Id: \" + {view.params.tagProps[0]} +\n\t\", Priority: \" + {view.custom.priority_string} +\n\t\", State: \" + {view.custom.state_string},\n\t\"Source Id: \" + {view.params.tagProps[0]} +\n\t\", Alarm: \" + {view.custom.alarm_message} +\n\t\", Priority: \" + {view.custom.priority_string} +\n\t\", State: \" + {view.custom.state_string}),\n\"Source Id: \" +{view.params.tagProps[0]} + \", Priority: Unknown, State: Unknown\")" - }, - "type": "expr" - } - }, - "props.style.classes": { - "binding": { - "config": { - "path": "view.custom.disconnected" - }, - "transforms": [ - { - "fallback": "Disconnects/Device-Connected", - "inputType": "scalar", - "mappings": [ - { - "input": true, - "output": "Disconnects/Device-Disconnected" - }, - { - "input": false, - "output": "Disconnects/Device-Connected" - } - ], - "outputType": "style-list", - "type": "map" - } - ], - "type": "property" - } - } - }, - "props": { - "aspectRatio": "1:1", - "mode": "percent", - "style": { - "cursor": "pointer" - } - }, - "type": "ia.container.coord" - } -} \ No newline at end of file diff --git a/.resources/3b4520dc99ca3192b56f4677bee960dc08c620d6c8391f64beb735a9d97343df b/.resources/3b4520dc99ca3192b56f4677bee960dc08c620d6c8391f64beb735a9d97343df deleted file mode 100644 index e772522e..00000000 --- a/.resources/3b4520dc99ca3192b56f4677bee960dc08c620d6c8391f64beb735a9d97343df +++ /dev/null @@ -1,598 +0,0 @@ -{ - "custom": { - "alarm_message": null, - "covert_mode": true, - "disconnected": false, - "display_icon": true, - "error": false, - "isMatch": 0, - "plc": "value", - "priority": 0, - "priority_string": "No active alarms", - "running": false, - "running_status": 0, - "searchId": "value", - "show_error": false, - "show_running": true, - "state": 5, - "state_string": "Unknown" - }, - "params": { - "forceFaultStatus": null, - "forceRunningStatus": null, - "tagProps": [ - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value" - ] - }, - "propConfig": { - "custom.alarm_message": { - "persistent": true - }, - "custom.covert_mode": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case(\t{value},\r\n\t\t0, {session.custom.alarm_filter.show_running},\r\n\t\t1, True,\r\n\t\t2, True,\r\n\t\t3, {session.custom.alarm_filter.show_low_alarm} || {session.custom.alarm_filter.show_running},\r\n\t\t4, {session.custom.alarm_filter.show_diagnostic} || {session.custom.alarm_filter.show_running},\r\n\t\t5, {session.custom.alarm_filter.show_running},\r\n\t\tFalse)", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.disconnected": { - "binding": { - "config": { - "fallbackDelay": 2.5, - "mode": "indirect", - "references": { - "fc": "{session.custom.fc}", - "plc": "{view.custom.plc}" - }, - "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{plc}/DCN" - }, - "transforms": [ - { - "expression": "if(isNull({value}), False, {value})", - "type": "expression" - } - ], - "type": "tag" - }, - "persistent": true - }, - "custom.display_icon": { - "binding": { - "config": { - "expression": "{this.custom.covert_mode}//||{this.custom.isMatch}\u003e0" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.error": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "0 \u003c {value} \u0026\u0026 {value} \u003c 5", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.isMatch": { - "binding": { - "config": { - "expression": "if({view.params.tagProps[0]}\u003d\"value\",0,\nif({this.custom.searchId}\u003d{view.params.tagProps[0]},100,0))" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.plc": { - "binding": { - "config": { - "path": "view.params.tagProps[0]" - }, - "transforms": [ - { - "expression": "split({value}, \"/\")[0]", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.priority": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "fallback": 0, - "inputType": "scalar", - "mappings": [ - { - "input": 1, - "output": 4 - }, - { - "input": 2, - "output": 3 - }, - { - "input": 3, - "output": 2 - }, - { - "input": 4, - "output": 1 - } - ], - "outputType": "scalar", - "type": "map" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.priority_string": { - "binding": { - "config": { - "expression": "case({view.custom.state},\r\n1, \"High\",\r\n2, \"Medium\",\r\n3, \"Low\",\r\n4, \"Diagnostic\",\r\n5, \"No active alarms\",\r\n\"Unknown\")" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.running": { - "binding": { - "config": { - "expression": "{view.custom.running_status} \u003d 3" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.running_status": { - "binding": { - "config": { - "fallbackDelay": 2.5, - "mode": "indirect", - "references": { - "0": "{view.params.tagProps[0]}", - "fc": "{session.custom.fc}" - }, - "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/STATE" - }, - "transforms": [ - { - "expression": "coalesce({value},{view.params.forceRunningStatus},0)", - "type": "expression" - } - ], - "type": "tag" - }, - "persistent": true - }, - "custom.searchId": { - "binding": { - "config": { - "path": "session.custom.searchId" - }, - "type": "property" - }, - "persistent": true - }, - "custom.show_error": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case(\t{value},\r\n\t\t1, True,\r\n\t\t2, True,\r\n\t\t3, {session.custom.alarm_filter.show_low_alarm},\r\n\t\t4, {session.custom.alarm_filter.show_diagnostic},\r\n\t\tFalse)", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.show_running": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case(\t{value},\r\n\t\t1, False,\r\n\t\t2, False,\r\n\t\t{session.custom.alarm_filter.show_running}\r\n\t\t)", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.state": { - "binding": { - "config": { - "fallbackDelay": 2.5, - "mode": "indirect", - "references": { - "0": "{view.params.tagProps[0]}", - "fc": "{session.custom.fc}" - }, - "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/ALARMST" - }, - "transforms": [ - { - "expression": "coalesce({value},{view.params.forceFaultStatus},0)", - "type": "expression" - }, - { - "fallback": null, - "inputType": "scalar", - "mappings": [ - { - "input": 4, - "output": 1 - }, - { - "input": 3, - "output": 2 - }, - { - "input": 2, - "output": 3 - }, - { - "input": 1, - "output": 4 - }, - { - "input": 0, - "output": 5 - } - ], - "outputType": "scalar", - "type": "map" - } - ], - "type": "tag" - }, - "persistent": true - }, - "custom.state_string": { - "binding": { - "config": { - "expression": "case({view.custom.running_status},\r\n1, \"Faulted\",\r\n2, \"Stopped\",\r\n3, \"Running\",\r\n\"Unknown\")" - }, - "type": "expr" - }, - "persistent": true - }, - "params.forceFaultStatus": { - "paramDirection": "input", - "persistent": true - }, - "params.forceRunningStatus": { - "paramDirection": "input", - "persistent": true - }, - "params.tagProps": { - "paramDirection": "inout", - "persistent": true - } - }, - "props": { - "defaultSize": { - "height": 100, - "width": 100 - } - }, - "root": { - "children": [ - { - "meta": { - "name": "SLAM" - }, - "position": { - "height": 1, - "width": 1 - }, - "propConfig": { - "props.elements[0].elements[0].fill.paint": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case({value},\r\n0,{session.custom.colours.state0},\r\n1,{session.custom.colours.state1},\r\n2,{session.custom.colours.state2},\r\n3,{session.custom.colours.state3},\r\n4,{session.custom.colours.state4},\r\n5,if({view.custom.running},{session.custom.colours.state5},{session.custom.colours.state0}),\r\n6,{session.custom.colours.state6},\r\n{session.custom.colours.fallback}\r\n)", - "type": "expression" - }, - { - "expression": "if({view.custom.display_icon}\u0026\u0026 {view.custom.isMatch}\u003d0,{value},{value}+\u002700\u0027)", - "type": "expression" - } - ], - "type": "property" - } - }, - "props.style.classes": { - "binding": { - "config": { - "expression": "if({session.custom.colours.colour_impaired} \u003d True \u0026\u0026 {view.custom.isMatch} \u003e 0,\r\n{view.custom.state} + 100 + {view.custom.isMatch},\r\n{view.custom.state} + {view.custom.isMatch})" - }, - "transforms": [ - { - "fallback": "", - "inputType": "scalar", - "mappings": [ - { - "input": 101, - "output": "State-Styles/State101" - }, - { - "input": 102, - "output": "State-Styles/State102" - }, - { - "input": 103, - "output": "State-Styles/State103" - }, - { - "input": 104, - "output": "State-Styles/State104" - }, - { - "input": 105, - "output": "State-Styles/State105" - }, - { - "input": 106, - "output": "State-Styles/State106" - }, - { - "input": 201, - "output": "State-Styles/State201" - }, - { - "input": 202, - "output": "State-Styles/State202" - }, - { - "input": 203, - "output": "State-Styles/State203" - }, - { - "input": 204, - "output": "State-Styles/State204" - }, - { - "input": 205, - "output": "State-Styles/State205" - } - ], - "outputType": "style-list", - "type": "map" - } - ], - "type": "expr" - } - } - }, - "props": { - "elements": [ - { - "elements": [ - { - "d": "M 50.120001,25 C 50.827803,42.132141 31.110082,55.307098 15.552912,48.096988 -0.54598581,42.194727 -5.1724173,18.93609 7.4423281,7.3223305 18.432808,-4.6472699 39.878022,-1.2374264 47.061975,13.018775 49.062621,16.67345 50.124426,20.833557 50.120001,25 Z", - "fill": {}, - "name": "path", - "stroke": { - "paint": "#000000", - "width": 1.5 - }, - "type": "path" - }, - { - "d": "m 18.74,8 c 4.25,0 8.5,0 12.75,0 0,0.5666667 0,1.1333333 0,1.7 -4.25,0 -8.5,0 -12.75,0 0,-0.5666667 0,-1.1333333 0,-1.7 z m 0,2.68 c 4.25,0 8.5,0 12.75,0 0,0.566667 0,1.133333 0,1.7 -4.25,0 -8.5,0 -12.75,0 0,-0.566667 0,-1.133333 0,-1.7 z m 0,2.69 c 4.25,0 8.5,0 12.75,0 0,0.566667 0,1.133333 0,1.7 -4.25,0 -8.5,0 -12.75,0 0,-0.566667 0,-1.133333 0,-1.7 z m 0,2.679999 c 4.25,0 8.5,0 12.75,0 0,0.566667 0,1.133333 0,1.7 -4.25,0 -8.5,0 -12.75,0 0,-0.566667 0,-1.133333 0,-1.7 z M 31.5,18.73 c -0.426667,3.296667 -0.853333,6.593333 -1.28,9.89 -3.4,0 -6.8,0 -10.2,0 -0.423333,-3.296667 -0.846667,-6.593333 -1.27,-9.89 4.25,0 8.5,0 12.75,0 z m 0,13.39 c -0.426667,3.296667 -0.853333,6.593333 -1.28,9.89 -3.4,0 -6.8,0 -10.2,0 -0.423333,-3.296667 -0.846667,-6.593333 -1.27,-9.89 4.25,0 8.5,0 12.75,0 z", - "fill": { - "paint": "#000000" - }, - "name": "path", - "stroke": { - "paint": "#000000", - "width": 0.5 - }, - "type": "path" - }, - { - "d": "m 10.24,8 c 1.416667,0 2.833333,0 4.25,0 0,11.333333 0,22.666667 0,34 -1.416667,0 -2.833333,0 -4.25,0 0,-11.333333 0,-22.666667 0,-34 z m 4.25,12.75 c 7.083333,0 14.166667,0 21.25,0 0,0.566667 0,1.133333 0,1.7 -7.083333,0 -14.166667,0 -21.25,0 0,-0.566667 0,-1.133333 0,-1.7 z M 35.740002,8 c 1.416667,0 2.833333,0 4.25,0 0,11.333333 0,22.666667 0,34 -1.416667,0 -2.833333,0 -4.25,0 0,-11.333333 0,-22.666667 0,-34 z", - "fill": { - "paint": "#000000" - }, - "name": "path", - "stroke": { - "paint": "#000000", - "width": 0.5 - }, - "type": "path" - } - ], - "transform": "matrix(0.98146771,0,0,0.97925914,0.29387469,0.4508585)", - "type": "group" - } - ], - "style": { - "overflow": "hidden" - }, - "viewBox": "-0.5 -0.5 51 51" - }, - "type": "ia.shapes.svg" - } - ], - "events": { - "dom": { - "onClick": { - "config": { - "script": "\tsystem.perspective.openDock(\u0027Docked-East\u0027,params\u003d{\u0027tagProps\u0027:self.view.params.tagProps})" - }, - "scope": "G", - "type": "script" - }, - "onDoubleClick": { - "config": { - "script": "\ttagProps \u003d self.view.params.tagProps\n\tsystem.perspective.openPopup(\"StatusPopUP\", \"PopUp-Views/Controller-Equipment/Information\", params \u003d{\"tagProps\":tagProps})\n\t" - }, - "enabled": false, - "scope": "G", - "type": "script" - }, - "onMouseEnter": { - "config": { - "script": "\tfrom time import sleep\n\t\n\talarm \u003d []\n\tmessage \u003d None\n\t\n\tsleep(0.5)\n\t\n\tif system.tag.exists(\"System/aws_data\"):\n\t\tif self.view.params.tagProps[0] !\u003d \"\":\n\t\t\ttags_to_read \u003d system.tag.readBlocking(\"System/aws_data\")\n\t\t\tdecode_alarm_data \u003d system.util.jsonDecode(tags_to_read[0].value)\n\t\t\talarm \u003d [decode_alarm_data[i] for i in decode_alarm_data\n\t\t\t\t\tif decode_alarm_data[i][\u0027sourceId\u0027].startswith(self.view.params.tagProps[0])]\n\t\tif alarm:\n\t\t\talarm \u003d sorted(alarm, key \u003d lambda t:t[\u0027timestamp\u0027], reverse\u003dTrue)\n\t\t\tmessage \u003d max(alarm, key \u003d lambda p:p[\u0027priority\u0027]).get(\u0027message\u0027)\n\t\t\tif len(alarm) \u003e 1:\n\t\t\t\tmessage +\u003d \" (+\" + str(len(alarm)-1) + \")\"\n\tself.view.custom.alarm_message \u003d message" - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "root", - "tooltip": { - "enabled": true, - "location": "top-left", - "style": {} - } - }, - "propConfig": { - "meta.tooltip.style.backgroundColor": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case({value},\r\n0,{session.custom.colours.state0},\r\n1,{session.custom.colours.state1},\r\n2,{session.custom.colours.state2},\r\n3,{session.custom.colours.state3},\r\n4,{session.custom.colours.state4},\r\n5,{session.custom.colours.state5},\r\n6,{session.custom.colours.state6},\r\n{session.custom.colours.fallback}\r\n)", - "type": "expression" - } - ], - "type": "property" - } - }, - "meta.tooltip.style.classes": { - "binding": { - "config": { - "expression": "{view.custom.priority}" - }, - "transforms": [ - { - "fallback": "Alarms-Styles/NoAlarm", - "inputType": "scalar", - "mappings": [ - { - "input": 1, - "output": "Alarms-Styles/Diagnostic" - }, - { - "input": 2, - "output": "Alarms-Styles/Low" - }, - { - "input": 3, - "output": "Alarms-Styles/Medium" - }, - { - "input": 4, - "output": "Alarms-Styles/High" - } - ], - "outputType": "style-list", - "type": "map" - } - ], - "type": "expr" - } - }, - "meta.tooltip.style.color": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "if({session.custom.colours.colour_impaired},\r\n\t\u0027#000000\u0027,\r\n\tcase(\t{value},\r\n\t\t\t1,\u0027#FFFFFF\u0027,\r\n\t\t\t2,\u0027#000000\u0027,\r\n\t\t\t3,\u0027#000000\u0027,\r\n\t\t\t4,\u0027#FFFFFF\u0027,\r\n\t\t\t5,\u0027#FFFFFF\u0027,\r\n\t\t\t\u0027#000000\u0027)\r\n\t)", - "type": "expression" - } - ], - "type": "property" - } - }, - "meta.tooltip.text": { - "binding": { - "config": { - "expression": "if({view.custom.disconnected} \u003d False,\n\tif(isNull({view.custom.alarm_message}),\n\t\"Source Id: \" + {view.params.tagProps[0]} +\n\t\", Priority: \" + {view.custom.priority_string} +\n\t\", State: \" + {view.custom.state_string},\n\t\"Source Id: \" + {view.params.tagProps[0]} +\n\t\", Alarm: \" + {view.custom.alarm_message} +\n\t\", Priority: \" + {view.custom.priority_string} +\n\t\", State: \" + {view.custom.state_string}),\n\"Source Id: \" +{view.params.tagProps[0]} + \", Priority: Unknown, State: Unknown\")" - }, - "type": "expr" - } - }, - "props.style.classes": { - "binding": { - "config": { - "path": "view.custom.disconnected" - }, - "transforms": [ - { - "fallback": "Disconnects/Device-Connected", - "inputType": "scalar", - "mappings": [ - { - "input": true, - "output": "Disconnects/Device-Disconnected" - }, - { - "input": false, - "output": "Disconnects/Device-Connected" - } - ], - "outputType": "style-list", - "type": "map" - } - ], - "type": "property" - } - } - }, - "props": { - "aspectRatio": "1:1", - "mode": "percent", - "style": { - "cursor": "pointer" - } - }, - "type": "ia.container.coord" - } -} \ No newline at end of file diff --git a/.resources/3bf3d33de11bcd32e7209fcedd142df9929fd33f8f39b0e6afd439ccd0cc138d b/.resources/3bf3d33de11bcd32e7209fcedd142df9929fd33f8f39b0e6afd439ccd0cc138d deleted file mode 100644 index e733f254..00000000 Binary files a/.resources/3bf3d33de11bcd32e7209fcedd142df9929fd33f8f39b0e6afd439ccd0cc138d and /dev/null differ diff --git a/.resources/3c4d210af17d7f181f0e93c4f20a524335b70708743d270a296b300840aca937 b/.resources/3c4d210af17d7f181f0e93c4f20a524335b70708743d270a296b300840aca937 new file mode 100644 index 00000000..a47c3158 Binary files /dev/null and b/.resources/3c4d210af17d7f181f0e93c4f20a524335b70708743d270a296b300840aca937 differ diff --git a/.resources/3cff4b44ffcadb301c9d675c8556fb5b92898fd85fa671c90260372ea1242fb7 b/.resources/3cff4b44ffcadb301c9d675c8556fb5b92898fd85fa671c90260372ea1242fb7 deleted file mode 100644 index 67faf6d3..00000000 Binary files a/.resources/3cff4b44ffcadb301c9d675c8556fb5b92898fd85fa671c90260372ea1242fb7 and /dev/null differ diff --git a/.resources/3d0951232b433834a7ed1ba1a4b85aeeeb58713e5e61123e40e4827e075df7f0 b/.resources/3d0951232b433834a7ed1ba1a4b85aeeeb58713e5e61123e40e4827e075df7f0 new file mode 100644 index 00000000..11197c92 --- /dev/null +++ b/.resources/3d0951232b433834a7ed1ba1a4b85aeeeb58713e5e61123e40e4827e075df7f0 @@ -0,0 +1,9072 @@ +{ + "custom": {}, + "params": { + "highlightTagPath": "" + }, + "propConfig": { + "params.highlightTagPath": { + "onChange": { + "enabled": null, + "script": "\tutils.handleTagHighlight(self.view, currentValue)" + }, + "paramDirection": "input", + "persistent": true + } + }, + "props": { + "defaultSize": { + "height": 1080, + "width": 1920 + } + }, + "root": { + "children": [ + { + "meta": { + "name": "MCM04 Sorter Destination, chutes and Bypass" + }, + "position": { + "height": 1, + "width": 1 + }, + "props": { + "elements": [ + { + "id": "defs1", + "name": "defs1", + "type": "defs" + }, + { + "elements": [ + { + "d": "m 314.74327,705.91704 -26.7511,13.00976 8.9447,16.8393 58.9283,-29.80895 z", + "fill": { + "paint": "#ffffff" + }, + "id": "path3-2-2", + "name": "path3-2-2", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "type": "path" + }, + { + "d": "m -704.11377,-1741.7306 h 18.98731 v 1553.00807 h -18.98731 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect1-6-2-0-0-4-8-1-2-2-0-6", + "name": "rect1-6-2-0-0-4-8-1-2-2-0-6", + "stroke": { + "paint": "#000000" + }, + "transform": "matrix(0,-1,-1,0,0,0)", + "type": "path" + }, + { + "d": "m -408.61801,-1743.4325 h 18.98719 v 1561.00403 h -18.98719 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect1-6-2-0-0-4-8-1-2-2-0-6-8", + "name": "rect1-6-2-0-0-4-8-1-2-2-0-6-8", + "stroke": { + "paint": "#000000" + }, + "transform": "matrix(0,-1,-1,0,0,0)", + "type": "path" + }, + { + "d": "m 138.60294,-666.10168 h 18.98699 v 232.16473 h -18.98699 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect1-6-2-0-0-6-8-3-3-4", + "name": "rect1-6-2-0-0-6-8-3-3-4", + "stroke": { + "paint": "#000000" + }, + "transform": "scale(1,-1)", + "type": "path" + }, + { + "d": "m 1783.4964,659.49337 c 1.2578,19.15432 -9.7509,42.28221 -39.7546,44.58993 l 0.1236,-18.99853 c 16.4117,-2.07644 20.3875,-12.47908 20.7754,-25.49499 8.4481,-0.006 13.1214,0.006 18.8556,-0.0964 z", + "fill": { + "paint": "#ffffff" + }, + "id": "path1", + "name": "path1", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "type": "path" + }, + { + "d": "m 138.68387,667.76892 c 1.38411,28.84067 18.5217,36.53777 47.64299,36.37606 l 0.0793,-18.86737 c -14.21718,0.35465 -26.05599,-2.74745 -28.93288,-17.50869 z", + "fill": { + "paint": "#ffffff" + }, + "id": "path1-4", + "name": "path1-4", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "type": "path" + }, + { + "d": "m 180.44722,389.59459 c -23.02838,-0.27046 -40.8634,15.15247 -41.78919,42.54463 l 18.82652,0.15071 c 1.28679,-17.40119 11.28536,-23.34739 23.12338,-23.70483 z", + "fill": { + "paint": "#ffffff" + }, + "id": "path1-4-6", + "name": "path1-4-6", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "type": "path" + }, + { + "d": "m 973.81207,-585.27325 h 18.67346 v 111.76104 h -18.67346 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect1-6-2-0-0-6-8-3-4-8-07", + "name": "rect1-6-2-0-0-6-8-3-4-8-07", + "stroke": { + "paint": "#000000" + }, + "transform": "scale(1,-1)", + "type": "path" + }, + { + "d": "m 973.71631,-683.42572 h 18.67383 v 96.13603 h -18.67383 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect1-6-2-0-0-6-8-3-4-8-0-0", + "name": "rect1-6-2-0-0-6-8-3-4-8-0-0", + "stroke": { + "paint": "#000000" + }, + "transform": "scale(1,-1)", + "type": "path" + }, + { + "d": "m 546.78522,-227.85776 h 18.67374 v 66.99113 h -18.67374 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect61", + "name": "rect61", + "stroke": { + "paint": "#000000" + }, + "transform": "rotate(90)", + "type": "path" + }, + { + "d": "m 568.42212,-228.01846 h 18.61695 v 66.99112 h -18.61695 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect62", + "name": "rect62", + "stroke": { + "paint": "#000000" + }, + "transform": "rotate(90)", + "type": "path" + }, + { + "d": "m 617.53607,-228.33987 h 18.67375 v 66.99112 h -18.67375 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect63", + "name": "rect63", + "stroke": { + "paint": "#000000" + }, + "transform": "rotate(90)", + "type": "path" + }, + { + "d": "m 638.85156,-228.50058 h 18.61695 v 66.99112 h -18.61695 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect64", + "name": "rect64", + "stroke": { + "paint": "#000000" + }, + "transform": "rotate(90)", + "type": "path" + }, + { + "d": "m 617.29291,-134.20035 h 18.62045 v 27.78077 h -18.62045 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect65", + "name": "rect65", + "stroke": { + "paint": "#000000" + }, + "transform": "rotate(90)", + "type": "path" + }, + { + "d": "m 638.77124,-134.08572 h 18.61848 v 27.77877 h -18.61848 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect66", + "name": "rect66", + "stroke": { + "paint": "#000000" + }, + "transform": "rotate(90)", + "type": "path" + }, + { + "d": "m 593.4704,-228.38007 h 18.67374 v 66.99113 H 593.4704 Z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect67", + "name": "rect67", + "stroke": { + "paint": "#000000" + }, + "transform": "rotate(90)", + "type": "path" + }, + { + "d": "m 549.72974,-134.36105 h 18.62045 v 27.78076 h -18.62045 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect68", + "name": "rect68", + "stroke": { + "paint": "#000000" + }, + "transform": "rotate(90)", + "type": "path" + }, + { + "d": "m 571.20807,-134.24643 h 18.61847 v 27.77878 h -18.61847 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect69", + "name": "rect69", + "stroke": { + "paint": "#000000" + }, + "transform": "rotate(90)", + "type": "path" + }, + { + "d": "m 594.284,-134.16608 h 18.61847 v 27.77878 H 594.284 Z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect70", + "name": "rect70", + "stroke": { + "paint": "#000000" + }, + "transform": "rotate(90)", + "type": "path" + }, + { + "d": "m 370.32281,706.0875 -26.7511,13.00976 8.9447,16.8393 58.9283,-29.80895 z", + "fill": { + "paint": "#ffffff" + }, + "id": "path71", + "name": "path71", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "type": "path" + }, + { + "d": "m 190.46079,706.25391 -58.51246,26.30521 8.9447,16.8393 8.17926,-3.05242 -0.0679,21.69014 19.71927,0.16095 0.8905,-31.01417 61.96857,-30.88893 z", + "fill": { + "paint": "#ffffff" + }, + "id": "path73", + "name": "path73", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "type": "path" + }, + { + "d": "m 256.51982,706.33426 -58.51246,26.30521 8.9447,16.8393 8.17926,-3.05242 -0.0679,21.69014 19.71927,0.16095 0.8905,-31.01417 61.96857,-30.88893 z", + "fill": { + "paint": "#ffffff" + }, + "id": "path74", + "name": "path74", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "type": "path" + }, + { + "d": "m 1013.6186,681.42273 h -18.72472 v -28.66951 h 18.72472 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect74", + "name": "rect74", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 942.10846,680.60132 h -18.72475 v -28.66951 h 18.72475 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect92", + "name": "rect92", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 920.91528,680.48767 h -18.72474 v -28.66951 h 18.72474 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect93", + "name": "rect93", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 899.83575,680.48767 h -18.72474 v -28.66951 h 18.72474 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect94", + "name": "rect94", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 878.52893,680.60132 h -18.72475 v -28.66951 h 18.72475 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect95", + "name": "rect95", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 857.39258,680.60132 h -18.72475 v -28.66951 h 18.72475 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect96", + "name": "rect96", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 835.14758,680.76202 h -18.72474 v -28.66951 h 18.72474 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect97", + "name": "rect97", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 812.95441,680.76202 h -18.72475 v -28.66951 h 18.72475 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect98", + "name": "rect98", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 781.26123,680.64838 h -18.72475 v -28.66951 h 18.72475 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect100", + "name": "rect100", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "M 759.6817,680.64838 H 740.95695 V 651.97887 H 759.6817 Z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect101", + "name": "rect101", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 738.37488,680.76202 h -18.72475 v -28.66951 h 18.72475 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect102", + "name": "rect102", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 717.23853,680.76202 h -18.72475 v -28.66951 h 18.72475 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect103", + "name": "rect103", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "M 694.75488,680.82861 H 676.03014 V 652.1591 h 18.72474 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect104", + "name": "rect104", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "M 672.56171,680.82861 H 653.83696 V 652.1591 h 18.72475 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect105", + "name": "rect105", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 650.86853,680.71497 h -18.72475 v -28.66951 h 18.72475 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect107", + "name": "rect107", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "M 629.289,680.71497 H 610.56425 V 652.04546 H 629.289 Z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect108", + "name": "rect108", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "M 597.98218,680.82861 H 579.25743 V 652.1591 h 18.72475 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect109", + "name": "rect109", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "M 576.84583,680.82861 H 558.12108 V 652.1591 h 18.72475 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect110", + "name": "rect110", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "M 963.67908,738.45551 H 944.95433 V 709.786 h 18.72475 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect111", + "name": "rect111", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "M 942.4859,738.45551 H 923.76115 V 709.786 h 18.72475 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect113", + "name": "rect113", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 920.15637,738.34186 h -18.72474 v -28.66951 h 18.72474 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect114", + "name": "rect114", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "M 899.07684,738.34186 H 880.3521 v -28.66951 h 18.72474 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect115", + "name": "rect115", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "M 877.77002,738.45551 H 859.04527 V 709.786 h 18.72475 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect116", + "name": "rect116", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "M 856.63367,738.45551 H 837.90892 V 709.786 h 18.72475 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect117", + "name": "rect117", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 834.64758,738.13409 h -18.72474 v -28.66951 h 18.72474 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect118", + "name": "rect118", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 812.45441,738.13409 h -18.72475 v -28.66951 h 18.72475 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect119", + "name": "rect119", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 781.76123,738.02045 h -18.72475 v -28.66951 h 18.72475 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect121", + "name": "rect121", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "M 760.6817,738.02045 H 741.95695 V 709.35094 H 760.6817 Z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect122", + "name": "rect122", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 739.37488,738.13409 h -18.72475 v -28.66951 h 18.72475 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect123", + "name": "rect123", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 718.23853,738.13409 h -18.72475 v -28.66951 h 18.72475 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect124", + "name": "rect124", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 696.75488,738.20068 h -18.72474 v -28.66951 h 18.72474 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect125", + "name": "rect125", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 675.06171,738.20068 h -18.72475 v -28.66951 h 18.72475 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect126", + "name": "rect126", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 653.86853,738.08704 h -18.72475 v -28.66951 h 18.72475 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect128", + "name": "rect128", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "M 632.289,738.08704 H 613.56425 V 709.41753 H 632.289 Z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect129", + "name": "rect129", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 598.48218,738.20068 h -18.72475 v -28.66951 h 18.72475 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect130", + "name": "rect130", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 577.34583,738.20068 h -18.72475 v -28.66951 h 18.72475 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect131", + "name": "rect131", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 554.38995,738.13025 h -18.72474 v -28.66951 h 18.72474 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect125-0", + "name": "rect125-0", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 533.19678,738.13025 h -18.72475 v -28.66951 h 18.72475 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect126-3", + "name": "rect126-3", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 512.00363,738.0166 h -18.72475 v -28.66951 h 18.72475 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect128-0", + "name": "rect128-0", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "M 490.9241,738.0166 H 472.19936 V 709.34709 H 490.9241 Z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect129-8", + "name": "rect129-8", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 469.61728,738.13025 h -18.72475 v -28.66951 h 18.72475 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect130-8", + "name": "rect130-8", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 448.48093,738.13025 h -18.72475 v -28.66951 h 18.72475 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect131-3", + "name": "rect131-3", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 554.05096,680.43396 h -18.72474 v -28.66951 h 18.72474 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect125-0-7", + "name": "rect125-0-7", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 532.85779,680.43396 h -18.72475 v -28.66951 h 18.72475 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect126-3-3", + "name": "rect126-3-3", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "M 511.66467,680.32031 H 492.93993 V 651.6508 h 18.72474 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect128-0-2", + "name": "rect128-0-2", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "M 490.58514,680.32031 H 471.8604 V 651.6508 h 18.72474 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect129-8-1", + "name": "rect129-8-1", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 469.27829,680.43396 h -18.72475 v -28.66951 h 18.72475 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect130-8-6", + "name": "rect130-8-6", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 448.14194,680.43396 h -18.72475 v -28.66951 h 18.72475 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect131-3-5", + "name": "rect131-3-5", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m -992.72467,-470.70322 h 19.22473 l 0.0568,27.94226 -19.13382,0.0568 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect131-3-5-4", + "name": "rect131-3-5-4", + "stroke": { + "paint": "#000000" + }, + "transform": "scale(-1)", + "type": "path" + }, + { + "d": "m -1078.838,-471.21863 h 18.7247 v 27.66951 h -18.7247 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect131-3-5-4-3", + "name": "rect131-3-5-4-3", + "stroke": { + "paint": "#000000" + }, + "transform": "scale(-1)", + "type": "path" + }, + { + "d": "m 1101.0269,737.76721 h -18.7248 V 709.0977 h 18.7248 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect132", + "name": "rect132", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 1079.8336,737.76721 h -18.7247 V 709.0977 h 18.7247 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect134", + "name": "rect134", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 1058.6405,737.65356 h -18.7247 v -28.66951 h 18.7247 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect135", + "name": "rect135", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 1037.5609,737.65356 h -18.7247 v -28.66951 h 18.7247 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect136", + "name": "rect136", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "M 1016.2542,737.76721 H 997.52946 V 709.0977 h 18.72474 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect137", + "name": "rect137", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "M 995.27692,738.26721 H 976.55217 V 709.5977 h 18.72475 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect138", + "name": "rect138", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 1144.53,737.76721 h -18.7247 V 709.0977 h 18.7247 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect139", + "name": "rect139", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 1123.0154,737.76721 h -18.7248 V 709.0977 h 18.7248 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect140", + "name": "rect140", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 1034.6285,681.33014 h -18.7248 v -28.66951 h 18.7248 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect141", + "name": "rect141", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 1099.576,681.81226 h -18.7248 v -28.66951 h 18.7248 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect142", + "name": "rect142", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 1056.057,681.33014 h -18.7247 v -28.66951 h 18.7247 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect143", + "name": "rect143", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 1059.9485,-584.1369 18.6734,-11.5 v 121.76105 h -18.6734 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect144", + "name": "rect144", + "stroke": { + "paint": "#000000" + }, + "transform": "scale(1,-1)", + "type": "path" + }, + { + "d": "m 1059.8527,-682.28937 h 18.6738 v 96.13603 h -18.6738 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect145", + "name": "rect145", + "stroke": { + "paint": "#000000" + }, + "transform": "scale(1,-1)", + "type": "path" + }, + { + "d": "m 1142.1138,681.83014 h -18.7248 v -28.66951 h 18.7248 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect146", + "name": "rect146", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 1120.9205,681.83014 h -18.7247 v -28.66951 h 18.7247 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect147", + "name": "rect147", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 1238.7712,737.76721 h -18.7247 V 709.0977 h 18.7247 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect148", + "name": "rect148", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 1217.578,737.76721 h -18.7247 V 709.0977 h 18.7247 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect149", + "name": "rect149", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 1196.3849,737.65356 h -18.7248 v -28.66951 h 18.7248 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect150", + "name": "rect150", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 1281.953,737.76721 h -18.7247 V 709.0977 h 18.7247 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect151", + "name": "rect151", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "M 1260.7598,737.76721 H 1242.035 V 709.0977 h 18.7248 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect152", + "name": "rect152", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 1240.4917,680.59485 h -18.7247 v -28.66951 h 18.7247 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect153", + "name": "rect153", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 1219.2985,680.59485 h -18.7248 v -28.66951 h 18.7248 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect154", + "name": "rect154", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 1197.1053,680.9812 h -18.7247 v -28.66951 h 18.7247 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect155", + "name": "rect155", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 1283.6735,680.59485 h -18.7248 v -28.66951 h 18.7248 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect156", + "name": "rect156", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 1262.4802,680.59485 h -18.7247 v -28.66951 h 18.7247 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect157", + "name": "rect157", + "stroke": { + "paint": "#000000" + }, + "type": "path" + }, + { + "d": "m 1118.4896,411.05853 58.5125,26.30521 -8.9447,16.8393 -8.1793,-3.05242 0.068,21.69014 -19.7193,0.16095 -0.8905,-31.01417 -61.9685,-30.88893 z", + "fill": { + "paint": "#ffffff" + }, + "id": "path157", + "name": "path157", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "type": "path" + }, + { + "d": "m 1039.4611,410.94127 29.2511,13.50976 -9.9447,17.3393 -60.4283,-30.80895 z", + "fill": { + "paint": "#ffffff" + }, + "id": "path158", + "name": "path158", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "type": "path" + }, + { + "d": "m 955.6528,411.02163 26.7511,13.00976 -8.9447,16.8393 -58.92829,-29.80895 z", + "fill": { + "paint": "#ffffff" + }, + "id": "path159", + "name": "path159", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "type": "path" + }, + { + "d": "m 1416.2154,706.40082 -58.5124,26.30521 8.9447,16.8393 8.1792,-3.05242 -0.068,21.69014 19.7193,0.16095 0.8905,-31.01417 61.9686,-30.88893 z", + "fill": { + "paint": "#ffffff" + }, + "id": "path160", + "name": "path160", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "type": "path" + }, + { + "d": "m 1476.7698,706.34805 -58.5124,26.30521 8.9447,16.8393 8.1792,-3.05242 -0.068,21.69014 19.7193,0.16095 0.8905,-31.01417 61.9686,-30.88893 z", + "fill": { + "paint": "#ffffff" + }, + "id": "path161", + "name": "path161", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "type": "path" + }, + { + "d": "m 1540.9515,706.2677 -58.5124,26.30521 8.9447,16.8393 8.1792,-3.05242 -0.068,21.69014 19.7193,0.16095 0.8905,-31.01417 61.9686,-30.88893 z", + "fill": { + "paint": "#ffffff" + }, + "id": "path162", + "name": "path162", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "type": "path" + }, + { + "d": "m 1609.1204,706.42004 -58.5124,26.30521 8.9447,16.8393 8.1792,-3.05242 -0.068,21.69014 19.7193,0.16095 0.8905,-31.01417 61.9686,-30.88893 z", + "fill": { + "paint": "#ffffff" + }, + "id": "path163", + "name": "path163", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "type": "path" + }, + { + "d": "m 1764.4453,-657.58014 h 18.987 v 235.18208 h -18.987 z", + "fill": { + "paint": "#ffffff" + }, + "id": "rect250", + "name": "rect250", + "stroke": { + "paint": "#000000" + }, + "transform": "scale(1,-1)", + "type": "path" + }, + { + "d": "m 1745.2485,389.6198 c 22.6615,0.25731 36.2196,4.56265 37.954,30.72645 l -18.6186,-0.15208 c -4.4254,-11.64255 -5.3024,-10.75532 -19.4961,-11.58389 z", + "fill": { + "paint": "#ffffff" + }, + "id": "path250", + "name": "path250", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "type": "path" + }, + { + "d": "m 1284.9652,709.05954 3.0056,28.17711 0.2411,39.17318 16.8805,-0.0804 v -38.69089 l 2.9951,-28.59276 z", + "fill": { + "paint": "#ffffff" + }, + "id": "path3-8-2", + "name": "path3-8-2", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "type": "path" + } + ], + "id": "layer1", + "name": "layer1", + "type": "group" + } + ], + "preserveAspectRatio": "none", + "viewBox": "0 0 1920 1080" + }, + "type": "ia.shapes.svg" + }, + { + "meta": { + "elementPrefix": null, + "id": "rect1-6-2-0-0-6-8-3-4-8-07", + "name": "BYAB_3", + "originalName": "rect1-6-2-0-0-6-8-3-4-8-07" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -90 + }, + "width": 0.0104, + "x": 0.5068, + "y": 0.48 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM04/Conveyor/VFD/BYAB_3_VFD1" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": null, + "id": "rect1-6-2-0-0-6-8-3-4-8-0-0", + "name": "BYAB_2", + "originalName": "rect1-6-2-0-0-6-8-3-4-8-0-0" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -90 + }, + "width": 0.0104, + "x": 0.5067, + "y": 0.5827 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM04/Conveyor/VFD/BYAB_2_VFD1" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": null, + "id": "rect131", + "name": "S011014", + "originalName": "rect131" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.2906, + "y": 0.6605 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM04/Chute/PalletBuild/S011014" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": null, + "id": "rect144", + "name": "BYCB_3", + "originalName": "rect144" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -90 + }, + "width": 0.0104, + "x": 0.5517, + "y": 0.4799 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM04/Conveyor/VFD/BYCB_3_VFD1" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": null, + "id": "rect145", + "name": "BYCB_2", + "originalName": "rect145" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -90 + }, + "width": 0.0104, + "x": 0.5517, + "y": 0.5826 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM04/Conveyor/VFD/BYCB_2_VFD1" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": null, + "id": "rect277", + "name": "S011076", + "originalName": "rect277" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.6705, + "y": 0.6821 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM04/Chute/PalletBuild/S011076" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect61", + "inheritedGroupPrefix": "CON", + "name": "S013079", + "originalName": "rect61" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 0 + }, + "width": 0.0104, + "x": 0.096, + "y": 0.5057 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM04/Chute/D2C/S013079" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect62", + "inheritedGroupPrefix": "CON", + "name": "S013081", + "originalName": "rect62" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 0 + }, + "width": 0.0104, + "x": 0.0961, + "y": 0.5257 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM04/Chute/D2C/S013081" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect63", + "inheritedGroupPrefix": "CON", + "name": "S013085", + "originalName": "rect63" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 0 + }, + "width": 0.0104, + "x": 0.0963, + "y": 0.5712 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM04/Chute/D2C/S013085" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect64", + "inheritedGroupPrefix": "CON", + "name": "S013087", + "originalName": "rect64" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 0 + }, + "width": 0.0104, + "x": 0.0964, + "y": 0.5909 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM04/Chute/D2C/S013087" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect65", + "inheritedGroupPrefix": "CON", + "name": "S013086", + "originalName": "rect65" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 180 + }, + "width": 0.0104, + "x": 0.0575, + "y": 0.5709 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM04/Chute/PalletBuild/S013086" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect66", + "inheritedGroupPrefix": "CON", + "name": "S013088", + "originalName": "rect66" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 180 + }, + "width": 0.0104, + "x": 0.0574, + "y": 0.5908 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM04/Chute/PalletBuild/S013088" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect67", + "inheritedGroupPrefix": "CON", + "name": "S013083", + "originalName": "rect67" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 0 + }, + "width": 0.0104, + "x": 0.0963, + "y": 0.5489 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM04/Chute/D2C/S013083" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect68", + "inheritedGroupPrefix": "CON", + "name": "S013080", + "originalName": "rect68" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 180 + }, + "width": 0.0104, + "x": 0.0575, + "y": 0.5084 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM04/Chute/PalletBuild/S013080" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect69", + "inheritedGroupPrefix": "CON", + "name": "S013082", + "originalName": "rect69" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 180 + }, + "width": 0.0104, + "x": 0.0575, + "y": 0.5283 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM04/Chute/PalletBuild/S013082" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect70", + "inheritedGroupPrefix": "CON", + "name": "S013084", + "originalName": "rect70" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 180 + }, + "width": 0.0104, + "x": 0.0574, + "y": 0.5496 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM04/Chute/PalletBuild/S013084" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect74", + "inheritedGroupPrefix": "CON", + "name": "S011049", + "originalName": "rect74" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": "270deg" + }, + "width": 0.0104, + "x": 0.5177, + "y": 0.6081 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM04/Chute/D2C/S011049" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect92", + "inheritedGroupPrefix": "CON", + "name": "S011045", + "originalName": "rect92" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": "270deg" + }, + "width": 0.0104, + "x": 0.4806, + "y": 0.6072 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM04/Chute/D2C/S011045" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect93", + "inheritedGroupPrefix": "CON", + "name": "S011043", + "originalName": "rect93" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": "270deg" + }, + "width": 0.0104, + "x": 0.4696, + "y": 0.6071 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM04/Chute/D2C/S011043" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect94", + "inheritedGroupPrefix": "CON", + "name": "S011039", + "originalName": "rect94" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": "270deg" + }, + "width": 0.0104, + "x": 0.4471, + "y": 0.6071 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM04/Chute/D2C/S011039" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect95", + "inheritedGroupPrefix": "CON", + "name": "S011037", + "originalName": "rect95" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": "270deg" + }, + "width": 0.0104, + "x": 0.4365, + "y": 0.6072 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM04/Chute/D2C/S011037" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect96", + "inheritedGroupPrefix": "CON", + "name": "S011035", + "originalName": "rect96" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": "270deg" + }, + "width": 0.0104, + "x": 0.425, + "y": 0.6072 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM04/Chute/D2C/S011035" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect97", + "inheritedGroupPrefix": "CON", + "name": "S011033", + "originalName": "rect97" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": "270deg" + }, + "width": 0.0104, + "x": 0.4127, + "y": 0.6073 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM04/Chute/D2C/S011033" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect98", + "inheritedGroupPrefix": "CON", + "name": "S011031", + "originalName": "rect98" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": "270deg" + }, + "width": 0.0104, + "x": 0.3969, + "y": 0.6073 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM04/Chute/D2C/S011031" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect100", + "inheritedGroupPrefix": "CON", + "name": "S011029", + "originalName": "rect100" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": "270deg" + }, + "width": 0.0104, + "x": 0.3854, + "y": 0.6072 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM04/Chute/D2C/S011029" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect101", + "inheritedGroupPrefix": "CON", + "name": "S011027", + "originalName": "rect101" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": "270deg" + }, + "width": 0.0104, + "x": 0.3744, + "y": 0.6072 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM04/Chute/D2C/S011027" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect102", + "inheritedGroupPrefix": "CON", + "name": "S011025", + "originalName": "rect102" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": "270deg" + }, + "width": 0.0104, + "x": 0.3633, + "y": 0.6073 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM04/Chute/D2C/S011025" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect103", + "inheritedGroupPrefix": "CON", + "name": "S011023", + "originalName": "rect103" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": "270deg" + }, + "width": 0.0104, + "x": 0.3523, + "y": 0.6073 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM04/Chute/D2C/S011023" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect104", + "inheritedGroupPrefix": "CON", + "name": "S011021", + "originalName": "rect104" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": "270deg" + }, + "width": 0.0104, + "x": 0.34, + "y": 0.6074 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM04/Chute/D2C/S011021" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect105", + "inheritedGroupPrefix": "CON", + "name": "S011019", + "originalName": "rect105" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": "270deg" + }, + "width": 0.0104, + "x": 0.3285, + "y": 0.6074 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM04/Chute/D2C/S011019" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect107", + "inheritedGroupPrefix": "CON", + "name": "S011017", + "originalName": "rect107" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": "270deg" + }, + "width": 0.0104, + "x": 0.3175, + "y": 0.6073 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM04/Chute/D2C/S011017" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect108", + "inheritedGroupPrefix": "CON", + "name": "S011015", + "originalName": "rect108" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": "270deg" + }, + "width": 0.0104, + "x": 0.3013, + "y": 0.6073 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM04/Chute/D2C/S011015" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect109", + "inheritedGroupPrefix": "CON", + "name": "S011013", + "originalName": "rect109" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": "270deg" + }, + "width": 0.0104, + "x": 0.2907, + "y": 0.6074 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM04/Chute/D2C/S011013" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect110", + "inheritedGroupPrefix": "CON", + "name": "S011011", + "originalName": "rect110" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": "270deg" + }, + "width": 0.0104, + "x": 0.2786, + "y": 0.6074 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM04/Chute/D2C/S011011" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect111", + "inheritedGroupPrefix": "CON", + "name": "S011048", + "originalName": "rect111" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.4918, + "y": 0.6608 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM04/Chute/PalletBuild/S011048" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect113", + "inheritedGroupPrefix": "CON", + "name": "S011046", + "originalName": "rect113" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.4808, + "y": 0.6608 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM04/Chute/PalletBuild/S011046" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect114", + "inheritedGroupPrefix": "CON", + "name": "S011044", + "originalName": "rect114" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.4692, + "y": 0.6607 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM04/Chute/PalletBuild/S011044" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect115", + "inheritedGroupPrefix": "CON", + "name": "S011042", + "originalName": "rect115" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.4582, + "y": 0.6607 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM04/Chute/PalletBuild/S011042" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect116", + "inheritedGroupPrefix": "CON", + "name": "S011040", + "originalName": "rect116" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.4471, + "y": 0.6608 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM04/Chute/PalletBuild/S011040" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect117", + "inheritedGroupPrefix": "CON", + "name": "S011038", + "originalName": "rect117" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.4361, + "y": 0.6608 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM04/Chute/PalletBuild/S011038" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect118", + "inheritedGroupPrefix": "CON", + "name": "S011036", + "originalName": "rect118" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.4241, + "y": 0.6605 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM04/Chute/PalletBuild/S011036" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect119", + "inheritedGroupPrefix": "CON", + "name": "S011034", + "originalName": "rect119" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.4131, + "y": 0.6605 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM04/Chute/PalletBuild/S011034" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect121", + "inheritedGroupPrefix": "CON", + "name": "S011032", + "originalName": "rect121" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.3973, + "y": 0.6604 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM04/Chute/PalletBuild/S011032" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect122", + "inheritedGroupPrefix": "CON", + "name": "S011030", + "originalName": "rect122" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.3864, + "y": 0.6604 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM04/Chute/PalletBuild/S011030" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect123", + "inheritedGroupPrefix": "CON", + "name": "S011028", + "originalName": "rect123" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.3753, + "y": 0.6605 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM04/Chute/PalletBuild/S011028" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect124", + "inheritedGroupPrefix": "CON", + "name": "S011026", + "originalName": "rect124" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.3637, + "y": 0.6605 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM04/Chute/PalletBuild/S011026" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect125", + "inheritedGroupPrefix": "CON", + "name": "S011024", + "originalName": "rect125" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.3525, + "y": 0.6605 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM04/Chute/PalletBuild/S011024" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect126", + "inheritedGroupPrefix": "CON", + "name": "S011022", + "originalName": "rect126" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.3415, + "y": 0.6605 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM04/Chute/PalletBuild/S011022" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect128", + "inheritedGroupPrefix": "CON", + "name": "S011020", + "originalName": "rect128" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.3305, + "y": 0.6604 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM04/Chute/PalletBuild/S011020" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect129", + "inheritedGroupPrefix": "CON", + "name": "S011018", + "originalName": "rect129" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.3195, + "y": 0.6604 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM04/Chute/PalletBuild/S011018" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect130", + "inheritedGroupPrefix": "CON", + "name": "S011016", + "originalName": "rect130" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.3016, + "y": 0.6605 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM04/Chute/PalletBuild/S011016" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect132", + "inheritedGroupPrefix": "CON", + "name": "S011060", + "originalName": "rect132" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.5634, + "y": 0.6606 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM04/Chute/PalletBuild/S011060" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect134", + "inheritedGroupPrefix": "CON", + "name": "S011058", + "originalName": "rect134" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.5523, + "y": 0.6606 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM04/Chute/PalletBuild/S011058" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect135", + "inheritedGroupPrefix": "CON", + "name": "S011056", + "originalName": "rect135" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.5413, + "y": 0.6605 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM04/Chute/PalletBuild/S011056" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect136", + "inheritedGroupPrefix": "CON", + "name": "S011054", + "originalName": "rect136" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.5303, + "y": 0.6605 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM04/Chute/PalletBuild/S011054" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect137", + "inheritedGroupPrefix": "CON", + "name": "S011052", + "originalName": "rect137" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.5187, + "y": 0.6606 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM04/Chute/PalletBuild/S011052" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect138", + "inheritedGroupPrefix": "CON", + "name": "S011050", + "originalName": "rect138" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.5085, + "y": 0.6606 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM04/Chute/PalletBuild/S011050" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect139", + "inheritedGroupPrefix": "CON", + "name": "S011064", + "originalName": "rect139" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.5853, + "y": 0.6606 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM04/Chute/PalletBuild/S011064" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect140", + "inheritedGroupPrefix": "CON", + "name": "S011062", + "originalName": "rect140" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.5748, + "y": 0.6606 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM04/Chute/PalletBuild/S011062" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect141", + "inheritedGroupPrefix": "CON", + "name": "S011051", + "originalName": "rect141" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": "270deg" + }, + "width": 0.0104, + "x": 0.5287, + "y": 0.6083 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM04/Chute/D2C/S011051" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect142", + "inheritedGroupPrefix": "CON", + "name": "S011059", + "originalName": "rect142" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": "270deg" + }, + "width": 0.0104, + "x": 0.5626, + "y": 0.6083 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM04/Chute/D2C/S011059" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect143", + "inheritedGroupPrefix": "CON", + "name": "S011053", + "originalName": "rect143" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": "270deg" + }, + "width": 0.0104, + "x": 0.5397, + "y": 0.6083 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM04/Chute/D2C/S011053" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect146", + "inheritedGroupPrefix": "CON", + "name": "S011063", + "originalName": "rect146" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": "270deg" + }, + "width": 0.0104, + "x": 0.5845, + "y": 0.6083 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM04/Chute/D2C/S011063" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect147", + "inheritedGroupPrefix": "CON", + "name": "S011061", + "originalName": "rect147" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": "270deg" + }, + "width": 0.0104, + "x": 0.574, + "y": 0.6083 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM04/Chute/D2C/S011061" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect148", + "inheritedGroupPrefix": "CON", + "name": "S011070", + "originalName": "rect148" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.6354, + "y": 0.6606 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM04/Chute/PalletBuild/S011070" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect149", + "inheritedGroupPrefix": "CON", + "name": "S011068", + "originalName": "rect149" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.6243, + "y": 0.6606 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM04/Chute/PalletBuild/S011068" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect150", + "inheritedGroupPrefix": "CON", + "name": "S011066", + "originalName": "rect150" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.6128, + "y": 0.6605 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM04/Chute/PalletBuild/S011066" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect151", + "inheritedGroupPrefix": "CON", + "name": "S011074", + "originalName": "rect151" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.6579, + "y": 0.6606 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM04/Chute/PalletBuild/S011074" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect152", + "inheritedGroupPrefix": "CON", + "name": "S011072", + "originalName": "rect152" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.6468, + "y": 0.6606 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM04/Chute/PalletBuild/S011072" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect153", + "inheritedGroupPrefix": "CON", + "name": "S011069", + "originalName": "rect153" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": "270deg" + }, + "width": 0.0104, + "x": 0.6357, + "y": 0.6076 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM04/Chute/D2C/S011069" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect154", + "inheritedGroupPrefix": "CON", + "name": "S011067", + "originalName": "rect154" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": "270deg" + }, + "width": 0.0104, + "x": 0.6247, + "y": 0.6076 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM04/Chute/D2C/S011067" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect155", + "inheritedGroupPrefix": "CON", + "name": "S011065", + "originalName": "rect155" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": "270deg" + }, + "width": 0.0104, + "x": 0.6131, + "y": 0.6075 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM04/Chute/D2C/S011065" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect156", + "inheritedGroupPrefix": "CON", + "name": "S011073", + "originalName": "rect156" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": "270deg" + }, + "width": 0.0104, + "x": 0.6582, + "y": 0.6076 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM04/Chute/D2C/S011073" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect157", + "inheritedGroupPrefix": "CON", + "name": "S011071", + "originalName": "rect157" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": "270deg" + }, + "width": 0.0104, + "x": 0.6472, + "y": 0.6076 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM04/Chute/D2C/S011071" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": null, + "id": "rect131", + "name": "S011002", + "originalName": "rect131" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.2234, + "y": 0.6605 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM04/Chute/PalletBuild/S011002" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect130", + "inheritedGroupPrefix": "CON", + "name": "S011004", + "originalName": "rect130" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.2344, + "y": 0.6605 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM04/Chute/PalletBuild/S011004" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect129", + "inheritedGroupPrefix": "CON", + "name": "S011006", + "originalName": "rect129" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.2455, + "y": 0.6604 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM04/Chute/PalletBuild/S011006" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect128", + "inheritedGroupPrefix": "CON", + "name": "S011008", + "originalName": "rect128" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.2565, + "y": 0.6604 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM04/Chute/PalletBuild/S011008" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect126", + "inheritedGroupPrefix": "CON", + "name": "S011010", + "originalName": "rect126" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.2676, + "y": 0.6605 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM04/Chute/PalletBuild/S011010" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect125", + "inheritedGroupPrefix": "CON", + "name": "S011012", + "originalName": "rect125" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.2786, + "y": 0.6605 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM04/Chute/PalletBuild/S011012" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect125", + "inheritedGroupPrefix": "CON", + "name": "S011009", + "originalName": "rect125" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": "270deg" + }, + "width": 0.0104, + "x": 0.2677, + "y": 0.6078 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM04/Chute/D2C/S011009" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect126", + "inheritedGroupPrefix": "CON", + "name": "S011007", + "originalName": "rect126" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": "270deg" + }, + "width": 0.0104, + "x": 0.2566, + "y": 0.6078 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM04/Chute/D2C/S011007" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect128", + "inheritedGroupPrefix": "CON", + "name": "S011005", + "originalName": "rect128" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": "270deg" + }, + "width": 0.0104, + "x": 0.2456, + "y": 0.6076 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM04/Chute/D2C/S011005" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect129", + "inheritedGroupPrefix": "CON", + "name": "S011003", + "originalName": "rect129" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": "270deg" + }, + "width": 0.0104, + "x": 0.2346, + "y": 0.6076 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM04/Chute/D2C/S011003" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect130", + "inheritedGroupPrefix": "CON", + "name": "S011001", + "originalName": "rect130" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": "270deg" + }, + "width": 0.0104, + "x": 0.2235, + "y": 0.6078 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM04/Chute/D2C/S011001" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect93", + "inheritedGroupPrefix": "CON", + "name": "S011041", + "originalName": "rect93" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": "270deg" + }, + "width": 0.0104, + "x": 0.4586, + "y": 0.6071 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM04/Chute/D2C/S011041" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect226", + "inheritedGroupPrefix": "CON", + "name": "BYAB_4CH", + "originalName": "rect226" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": "270deg" + }, + "width": 0.0104, + "x": 0.5068, + "y": 0.4125 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM04/Chute/Chute/BYAB_4CH" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect226", + "inheritedGroupPrefix": "CON", + "name": "BYCB_4CH", + "originalName": "rect226" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": "270deg" + }, + "width": 0.0104, + "x": 0.5517, + "y": 0.4125 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM04/Chute/Chute/BYCB_4CH" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "MCM01_Button" + }, + "position": { + "height": 0.0435, + "width": 0.1156, + "x": 0.0927, + "y": 0.7629 + }, + "props": { + "params": { + "pageid": "DetailedView/MCM01 Bulk Inbound", + "panel_id": "value", + "text": "MCM01 Bulk Inbound" + }, + "path": "Symbol-Views/Equipment-Views/Area_Nav_Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "VS01C_FIOM16" + }, + "position": { + "height": 0.0185, + "width": 0.0104, + "x": 0.0609, + "y": 0.4852 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/IO_BLOCK/FIO/VS01C_FIOM16", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/DeviceStatus" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "VS01C_FIOM17" + }, + "position": { + "height": 0.0185, + "width": 0.0104, + "x": 0.0823, + "y": 0.4852 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/IO_BLOCK/FIO/VS01C_FIOM17", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/DeviceStatus" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "VS01C_FIOM18" + }, + "position": { + "height": 0.0185, + "width": 0.0104, + "x": 0.0703, + "y": 0.5287 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/IO_BLOCK/FIO/VS01C_FIOM18", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/DeviceStatus" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "VS01C_FIOM19" + }, + "position": { + "height": 0.0185, + "width": 0.0104, + "x": 0.0836, + "y": 0.5491 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/IO_BLOCK/FIO/VS01C_FIOM19", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/DeviceStatus" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "VS01C_FIOM20" + }, + "position": { + "height": 0.0185, + "width": 0.0104, + "x": 0.0703, + "y": 0.5491 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/IO_BLOCK/FIO/VS01C_FIOM20", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/DeviceStatus" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S013079_JR1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.1203, + "y": 0.5074 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Station/Chute_JR/S013079_JR1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S013087_JR1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.1214, + "y": 0.5954 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Station/Chute_JR/S013087_JR1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S013080_EN1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.0464, + "y": 0.5009 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Chute/D2C/S013080_EN1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S013080_JR1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.0464, + "y": 0.5139 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Station/Chute_JR/S013080_JR1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S013082_EN1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.0464, + "y": 0.5306 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Chute/D2C/S013082_EN1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S013084_EN1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.0464, + "y": 0.5528 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Chute/D2C/S013084_EN1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S013086_EN1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.0464, + "y": 0.5741 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Chute/D2C/S013086_EN1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S013088_EN1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.0464, + "y": 0.588 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Chute/D2C/S013088_EN1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S013088_JR1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.0464, + "y": 0.6009 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Station/Chute_JR/S013088_JR1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011001_EN1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.2182, + "y": 0.587 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Chute/D2C/S011001_EN1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011001_JR1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.2266, + "y": 0.587 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Station/Chute_JR/S011001_JR1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011003_EN1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.2365, + "y": 0.587 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Chute/D2C/S011003_EN1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011005_EN1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.2458, + "y": 0.587 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Chute/D2C/S011005_EN1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011007_EN1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.2557, + "y": 0.587 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Chute/D2C/S011007_EN1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011009_JR1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.2646, + "y": 0.587 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Station/Chute_JR/S011009_JR1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011009_EN1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.2724, + "y": 0.587 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Chute/D2C/S011009_EN1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011011_EN1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.2818, + "y": 0.587 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Chute/D2C/S011011_EN1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011013_EN1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.2922, + "y": 0.587 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Chute/D2C/S011013_EN1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011015_EN1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.3031, + "y": 0.587 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Chute/D2C/S011015_EN1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011017_JR1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.313, + "y": 0.587 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Station/Chute_JR/S011017_JR1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011017_EN1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.3214, + "y": 0.587 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Chute/D2C/S011017_EN1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011019_EN1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.3307, + "y": 0.587 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Chute/D2C/S011019_EN1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011021_EN1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.3422, + "y": 0.588 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Chute/D2C/S011021_EN1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011023_EN1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.3521, + "y": 0.588 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Chute/D2C/S011023_EN1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011025_EN1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.3682, + "y": 0.588 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Chute/D2C/S011025_EN1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011025_JR1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.3599, + "y": 0.588 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Station/Chute_JR/S011025_JR1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011027_EN1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.3766, + "y": 0.588 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Chute/D2C/S011027_EN1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011029_EN1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.3875, + "y": 0.588 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Chute/D2C/S011029_EN1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011031_EN1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.3984, + "y": 0.588 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Chute/D2C/S011031_EN1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011033_EN1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.4183, + "y": 0.5882 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Chute/D2C/S011033_EN1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011033_JR1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.4099, + "y": 0.588 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Station/Chute_JR/S011033_JR1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011035_EN1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.4271, + "y": 0.5889 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Chute/D2C/S011035_EN1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011037_EN1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.4365, + "y": 0.5889 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Chute/D2C/S011037_EN1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011039_EN1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.4469, + "y": 0.5889 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Chute/D2C/S011039_EN1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011041_JR1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.4542, + "y": 0.5889 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Station/Chute_JR/S011041_JR1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011041_EN1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.4615, + "y": 0.5889 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Chute/D2C/S011041_EN1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011043_EN1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.4714, + "y": 0.5898 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Chute/D2C/S011043_EN1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011045_EN1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.4823, + "y": 0.5889 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Chute/D2C/S011045_EN1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011049_EN1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.5188, + "y": 0.588 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Chute/D2C/S011049_EN1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011049_JR1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.5266, + "y": 0.588 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Station/Chute_JR/S011049_JR1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011051_EN1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.5349, + "y": 0.588 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Chute/D2C/S011051_EN1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011053_EN1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.5432, + "y": 0.588 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Chute/D2C/S011053_EN1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011059_JR1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.563, + "y": 0.5889 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Station/Chute_JR/S011059_JR1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011059_EN1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.5708, + "y": 0.5889 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Chute/D2C/S011059_EN1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011061_EN1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.5792, + "y": 0.5889 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Chute/D2C/S011061_EN1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011063_EN1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.5875, + "y": 0.5889 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Chute/D2C/S011063_EN1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011067_EN1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.6312, + "y": 0.588 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Chute/D2C/S011067_EN1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011069_EN1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.6396, + "y": 0.588 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Chute/D2C/S011069_EN1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011065_EN1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.6229, + "y": 0.588 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Chute/D2C/S011065_EN1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011065_JR1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.6151, + "y": 0.588 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Station/Chute_JR/S011065_JR1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011071_EN1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.6495, + "y": 0.588 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Chute/D2C/S011071_EN1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011073_EN1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.6583, + "y": 0.588 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Chute/D2C/S011073_EN1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011002_EN1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.2188, + "y": 0.687 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Chute/D2C/S011002_EN1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011002_JR1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.2271, + "y": 0.687 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Station/Chute_JR/S011002_JR1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011004_EN1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.237, + "y": 0.687 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Chute/D2C/S011004_EN1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011006_EN1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.2464, + "y": 0.687 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Chute/D2C/S011006_EN1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011008_EN1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.2562, + "y": 0.687 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Chute/D2C/S011008_EN1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011010_EN1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.2651, + "y": 0.687 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Chute/D2C/S011010_EN1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011010_JR1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.2729, + "y": 0.687 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Station/Chute_JR/S011010_JR1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011012_EN1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.2823, + "y": 0.687 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Chute/D2C/S011012_EN1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011014_EN1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.2927, + "y": 0.687 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Chute/D2C/S011014_EN1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011016_EN1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.3036, + "y": 0.687 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Chute/D2C/S011016_EN1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "VS01A_FIOM01" + }, + "position": { + "height": 0.0185, + "width": 0.0104, + "x": 0.2307, + "y": 0.6343 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/IO_BLOCK/FIO/VS01A_FIOM01", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/DeviceStatus" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "VS01A_FIOM02" + }, + "position": { + "height": 0.0185, + "width": 0.0104, + "x": 0.2375, + "y": 0.6343 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/IO_BLOCK/FIO/VS01A_FIOM02", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/DeviceStatus" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "VS01A_FIOM03" + }, + "position": { + "height": 0.0185, + "width": 0.0104, + "x": 0.2854, + "y": 0.6343 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/IO_BLOCK/FIO/VS01A_FIOM03", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/DeviceStatus" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "VS01A_FIOM04" + }, + "position": { + "height": 0.0185, + "width": 0.0104, + "x": 0.2927, + "y": 0.6343 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/IO_BLOCK/FIO/VS01A_FIOM04", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/DeviceStatus" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "VS01A_FIOM05" + }, + "position": { + "height": 0.0185, + "width": 0.0104, + "x": 0.3, + "y": 0.6343 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/IO_BLOCK/FIO/VS01A_FIOM05", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/DeviceStatus" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "VS01A_FIOM06" + }, + "position": { + "height": 0.0185, + "width": 0.0104, + "x": 0.3182, + "y": 0.6343 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/IO_BLOCK/FIO/VS01A_FIOM06", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/DeviceStatus" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "VS01A_FIOM07" + }, + "position": { + "height": 0.0185, + "width": 0.0104, + "x": 0.3255, + "y": 0.6343 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/IO_BLOCK/FIO/VS01A_FIOM07", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/DeviceStatus" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "VS01A_FIOM08" + }, + "position": { + "height": 0.0185, + "width": 0.0104, + "x": 0.3865, + "y": 0.6333 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/IO_BLOCK/FIO/VS01A_FIOM08", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/DeviceStatus" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "VS01A_FIOM09" + }, + "position": { + "height": 0.0185, + "width": 0.0104, + "x": 0.3943, + "y": 0.6333 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/IO_BLOCK/FIO/VS01A_FIOM09", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/DeviceStatus" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "VS01A_FIOM10" + }, + "position": { + "height": 0.0185, + "width": 0.0104, + "x": 0.4146, + "y": 0.6333 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/IO_BLOCK/FIO/VS01A_FIOM10", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/DeviceStatus" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "VS01A_FIOM11" + }, + "position": { + "height": 0.0185, + "width": 0.0104, + "x": 0.4229, + "y": 0.6333 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/IO_BLOCK/FIO/VS01A_FIOM11", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/DeviceStatus" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "VS01A_FIOM12" + }, + "position": { + "height": 0.0185, + "width": 0.0104, + "x": 0.4625, + "y": 0.6333 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/IO_BLOCK/FIO/VS01A_FIOM12", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/DeviceStatus" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "VS01_FIOM13" + }, + "position": { + "height": 0.0185, + "width": 0.0104, + "x": 0.4703, + "y": 0.6333 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/IO_BLOCK/FIO/VS01_FIOM13", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/DeviceStatus" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "VS01_FIOM14" + }, + "position": { + "height": 0.0185, + "width": 0.0104, + "x": 0.4786, + "y": 0.6333 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/IO_BLOCK/FIO/VS01_FIOM14", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/DeviceStatus" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "VS01A_FIOM15" + }, + "position": { + "height": 0.0185, + "width": 0.0104, + "x": 0.5297, + "y": 0.6343 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/IO_BLOCK/FIO/VS01A_FIOM15", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/DeviceStatus" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "VS01A_FIOM16" + }, + "position": { + "height": 0.0185, + "width": 0.0104, + "x": 0.538, + "y": 0.6343 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/IO_BLOCK/FIO/VS01A_FIOM16", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/DeviceStatus" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "VS01A_FIOM17" + }, + "position": { + "height": 0.0185, + "width": 0.0104, + "x": 0.5708, + "y": 0.6343 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/IO_BLOCK/FIO/VS01A_FIOM17", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/DeviceStatus" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "VS01A_FIOM18" + }, + "position": { + "height": 0.0185, + "width": 0.0104, + "x": 0.5792, + "y": 0.6343 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/IO_BLOCK/FIO/VS01A_FIOM18", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/DeviceStatus" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "VS01A_FIOM19" + }, + "position": { + "height": 0.0185, + "width": 0.0104, + "x": 0.6161, + "y": 0.6352 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/IO_BLOCK/FIO/VS01A_FIOM19", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/DeviceStatus" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "VS01A_FIOM20" + }, + "position": { + "height": 0.0185, + "width": 0.0104, + "x": 0.6339, + "y": 0.6352 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/IO_BLOCK/FIO/VS01A_FIOM20", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/DeviceStatus" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "VS01A_FIOM21" + }, + "position": { + "height": 0.0185, + "width": 0.0104, + "x": 0.6469, + "y": 0.6343 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/IO_BLOCK/FIO/VS01A_FIOM21", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/DeviceStatus" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "VS01A_FIOM22" + }, + "position": { + "height": 0.0185, + "width": 0.0104, + "x": 0.6589, + "y": 0.6343 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/IO_BLOCK/FIO/VS01A_FIOM22", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/DeviceStatus" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "VS01A_FIOM23" + }, + "position": { + "height": 0.0185, + "width": 0.0104, + "x": 0.6703, + "y": 0.6574 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/IO_BLOCK/FIO/VS01A_FIOM23", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/DeviceStatus" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011074_JR1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.6625, + "y": 0.688 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Station/Chute_JR/S011074_JR1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011074_EN1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.6547, + "y": 0.688 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Chute/D2C/S011074_EN1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011072_EN1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.6464, + "y": 0.688 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Chute/D2C/S011072_EN1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011070_EN1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.637, + "y": 0.688 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Chute/D2C/S011070_EN1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011068_EN1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.6292, + "y": 0.688 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Chute/D2C/S011068_EN1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011066_EN1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.6135, + "y": 0.688 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Chute/D2C/S011066_EN1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011064_EN1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.5891, + "y": 0.688 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Chute/D2C/S011064_EN1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011062_EN1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.5786, + "y": 0.688 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Chute/D2C/S011062_EN1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011060_EN1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.5687, + "y": 0.688 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Chute/D2C/S011060_EN1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011058_JR1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.5609, + "y": 0.688 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Station/Chute_JR/S011058_JR1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011058_EN1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.5536, + "y": 0.688 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Chute/D2C/S011058_EN1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011056_EN1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.5448, + "y": 0.688 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Chute/D2C/S011056_EN1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011054_EN1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.5333, + "y": 0.688 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Chute/D2C/S011054_EN1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011052_EN1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.5224, + "y": 0.688 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Chute/D2C/S011052_EN1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011050_JR1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.5141, + "y": 0.688 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Station/Chute_JR/S011050_JR1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011050_EN1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.5057, + "y": 0.688 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Chute/D2C/S011050_EN1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "DPM01_VS01A" + }, + "position": { + "height": 0.0139, + "rotate": { + "angle": 0 + }, + "width": 0.0156, + "x": 0.2647, + "y": 0.5704 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM04/IO_BLOCK/DPM/DPM01_VS01A", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/ControlCabinet" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "DPM02_VS01A" + }, + "position": { + "height": 0.0139, + "rotate": { + "angle": 0 + }, + "width": 0.0156, + "x": 0.3568, + "y": 0.5713 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM04/IO_BLOCK/DPM/DPM02_VS01A", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/ControlCabinet" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "DPM03_VS01A" + }, + "position": { + "height": 0.0139, + "rotate": { + "angle": 0 + }, + "width": 0.0156, + "x": 0.4401, + "y": 0.5713 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM04/IO_BLOCK/DPM/DPM03_VS01A", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/ControlCabinet" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "DPM02_VS01C" + }, + "position": { + "height": 0.0139, + "rotate": { + "angle": 0 + }, + "width": 0.0156, + "x": 0.0859, + "y": 0.6102 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM04/IO_BLOCK/DPM/DPM02_VS01C", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/ControlCabinet" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "DPM04_VS01A" + }, + "position": { + "height": 0.0139, + "rotate": { + "angle": 0 + }, + "width": 0.0156, + "x": 0.5276, + "y": 0.5704 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM04/IO_BLOCK/DPM/DPM04_VS01A", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/ControlCabinet" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "DPM05_VS01A" + }, + "position": { + "height": 0.0139, + "rotate": { + "angle": 0 + }, + "width": 0.0156, + "x": 0.6344, + "y": 0.5713 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM04/IO_BLOCK/DPM/DPM05_VS01A", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/ControlCabinet" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "MCM04" + }, + "position": { + "height": 0.0139, + "rotate": { + "angle": 0 + }, + "width": 0.0156, + "x": 0.3714, + "y": 0.7028 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM04/MCM04", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/MCM" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011018_EN1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.3156, + "y": 0.688 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Chute/D2C/S011018_EN1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011018_JR1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.3234, + "y": 0.688 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Station/Chute_JR/S011018_JR1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011020_EN1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.3328, + "y": 0.688 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Chute/D2C/S011020_EN1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011022_EN1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.3427, + "y": 0.688 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Chute/D2C/S011022_EN1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011024_EN1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.3521, + "y": 0.688 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Chute/D2C/S011024_EN1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011026_EN1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.3599, + "y": 0.688 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Chute/D2C/S011026_EN1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011026_JR1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.3677, + "y": 0.688 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Station/Chute_JR/S011026_JR1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011028_EN1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.3766, + "y": 0.688 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Chute/D2C/S011028_EN1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011030_EN1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.387, + "y": 0.688 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Chute/D2C/S011030_EN1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011032_EN1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.3984, + "y": 0.688 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Chute/D2C/S011032_EN1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011034_EN1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.4089, + "y": 0.6889 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Chute/D2C/S011034_EN1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011034_JR1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.4161, + "y": 0.6889 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Station/Chute_JR/S011034_JR1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011036_EN1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.4245, + "y": 0.6889 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Chute/D2C/S011036_EN1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011038_EN1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.4354, + "y": 0.6889 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Chute/D2C/S011038_EN1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011040_EN1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.4453, + "y": 0.6889 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Chute/D2C/S011040_EN1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011042_EN1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.4536, + "y": 0.6889 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Chute/D2C/S011042_EN1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011042_JR1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.4615, + "y": 0.6889 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Station/Chute_JR/S011042_JR1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011044_EN1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.4714, + "y": 0.6889 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Chute/D2C/S011044_EN1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011046_EN1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.4813, + "y": 0.6889 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Chute/D2C/S011046_EN1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011048_EN1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.4917, + "y": 0.6889 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Chute/D2C/S011048_EN1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "BYAB_3_EPC1_Line" + }, + "position": { + "height": 0.0056, + "rotate": { + "angle": 90 + }, + "width": 0.0969, + "x": 0.4539, + "y": 0.5285 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM04/Station/EPC/BYAB_3_EPC1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_Line" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "BYAB_3_EPC1_END" + }, + "position": { + "height": 0.0278, + "rotate": { + "angle": 0 + }, + "width": 0.0073, + "x": 0.4984, + "y": 0.6022 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM04/Station/EPC/BYAB_3_EPC1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_End" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "BYAB_3_EPC1" + }, + "position": { + "height": 0.0296, + "rotate": { + "angle": 0 + }, + "width": 0.0083, + "x": 0.4979, + "y": 0.4189 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM04/Station/EPC/BYAB_3_EPC1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "BYAB_3_EPC2_Line" + }, + "position": { + "height": 0.0056, + "rotate": { + "angle": 90 + }, + "width": 0.0708, + "x": 0.4869, + "y": 0.5059 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM04/Station/EPC/BYAB_3_EPC2", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_Line" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "BYAB_3_EPC2" + }, + "position": { + "height": 0.0296, + "rotate": { + "angle": 0 + }, + "width": 0.0083, + "x": 0.5182, + "y": 0.4198 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM04/Station/EPC/BYAB_3_EPC2", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "BYAB_3_EPC2_END" + }, + "position": { + "height": 0.0278, + "rotate": { + "angle": 0 + }, + "width": 0.0073, + "x": 0.5188, + "y": 0.5568 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM04/Station/EPC/BYAB_3_EPC2", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_End" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "BYCB_3_EPC1" + }, + "position": { + "height": 0.0296, + "rotate": { + "angle": 0 + }, + "width": 0.0083, + "x": 0.5427, + "y": 0.4198 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM04/Station/EPC/BYCB_3_EPC1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "BYCB_3_EPC1_Line" + }, + "position": { + "height": 0.0056, + "rotate": { + "angle": 90 + }, + "width": 0.0396, + "x": 0.5275, + "y": 0.4783 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM04/Station/EPC/BYCB_3_EPC1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_Line" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "BYCB_3_EPC2" + }, + "position": { + "height": 0.0296, + "rotate": { + "angle": 0 + }, + "width": 0.0083, + "x": 0.563, + "y": 0.4207 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM04/Station/EPC/BYCB_3_EPC2", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "BYCB_3_EPC2_Line" + }, + "position": { + "height": 0.0056, + "rotate": { + "angle": 90 + }, + "width": 0.0375, + "x": 0.5484, + "y": 0.4761 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM04/Station/EPC/BYCB_3_EPC2", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_Line" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "BYCB_3_EPC2_END" + }, + "position": { + "height": 0.0278, + "rotate": { + "angle": 0 + }, + "width": 0.0073, + "x": 0.5641, + "y": 0.4953 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM04/Station/EPC/BYCB_3_EPC2", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_End" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "BYCB_3_EPC1_END" + }, + "position": { + "height": 0.0278, + "rotate": { + "angle": 0 + }, + "width": 0.0073, + "x": 0.5432, + "y": 0.4944 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM04/Station/EPC/BYCB_3_EPC1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_End" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "BYAB_3_SS1" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.4896, + "y": 0.4264 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Station/SS_PB/BYAB_3_SS1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/SS_Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "BYAB_3_SS2" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.5245, + "y": 0.4273 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Station/SS_PB/BYAB_3_SS2", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/SS_Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "BYCB_3_SS2" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.5698, + "y": 0.4274 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Station/SS_PB/BYCB_3_SS2", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/SS_Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "BYCB_3_SS1" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.5344, + "y": 0.4273 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Station/SS_PB/BYCB_3_SS1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/SS_Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "BYAB_3_FIO1" + }, + "position": { + "height": 0.0185, + "width": 0.0104, + "x": 0.5068, + "y": 0.4606 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/IO_BLOCK/FIO/BYAB_3_FIO1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/DeviceStatus" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": " BYCB_3_FIO1" + }, + "position": { + "height": 0.0185, + "width": 0.0104, + "x": 0.5516, + "y": 0.4606 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/IO_BLOCK/FIO/ BYCB_3_FIO1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/DeviceStatus" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "BYAB_2_JR1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.4917, + "y": 0.6134 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Station/JR/BYAB_2_JR1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "BYCB_2_JR1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.5635, + "y": 0.5708 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Station/JR/BYCB_2_JR1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011068_JR1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.6214, + "y": 0.688 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Station/Chute_JR/S011068_JR1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011073_JR1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.6656, + "y": 0.588 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Station/Chute_JR/S011073_JR1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "MCM02_Button" + }, + "position": { + "height": 0.0417, + "width": 0.1078, + "x": 0.6023, + "y": 0.7629 + }, + "props": { + "params": { + "pageid": "DetailedView/MCM02 Fluid Inbound", + "panel_id": "value", + "text": "MCM02 Fluid Inbound" + }, + "path": "Symbol-Views/Equipment-Views/Area_Nav_Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "MCM03_Button" + }, + "position": { + "height": 0.0417, + "width": 0.1078, + "x": 0.753, + "y": 0.7629 + }, + "props": { + "params": { + "pageid": "DetailedView/MCM03 Fluid Inbound", + "panel_id": "value", + "text": "MCM03 Fluid Inbound" + }, + "path": "Symbol-Views/Equipment-Views/Area_Nav_Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "MCM05_Button" + }, + "position": { + "height": 0.0426, + "width": 0.1521, + "x": 0.4487, + "y": 0.2932 + }, + "props": { + "params": { + "pageid": "DetailedView/MCM05 Sorter Destination and Chutes", + "panel_id": "value", + "text": "MCM05 Sorter Destination and Chutes" + }, + "path": "Symbol-Views/Equipment-Views/Area_Nav_Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011076_JR1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.6724, + "y": 0.7204 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM04/Station/Chute_JR/S011076_JR1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + } + ], + "meta": { + "name": "root" + }, + "props": { + "mode": "percent", + "style": { + "backgroundColor": "#FFFFFF" + } + }, + "type": "ia.container.coord" + } +} \ No newline at end of file diff --git a/.resources/3e561fde75b08307adb43cd9c553e6d9f66840e668b62b21481e09cdd27773b1 b/.resources/3e561fde75b08307adb43cd9c553e6d9f66840e668b62b21481e09cdd27773b1 new file mode 100644 index 00000000..44c5d7be Binary files /dev/null and b/.resources/3e561fde75b08307adb43cd9c553e6d9f66840e668b62b21481e09cdd27773b1 differ diff --git a/.resources/c0968cca489b2971732e5fd787715f51f821b04d1bb51bb3818b55fac20261a3 b/.resources/40f15f4738b284837c6bd629ae89aced916647a0714302a8e910a23bbfdacc1e similarity index 97% rename from .resources/c0968cca489b2971732e5fd787715f51f821b04d1bb51bb3818b55fac20261a3 rename to .resources/40f15f4738b284837c6bd629ae89aced916647a0714302a8e910a23bbfdacc1e index 02a591f7..a4fd78e5 100644 --- a/.resources/c0968cca489b2971732e5fd787715f51f821b04d1bb51bb3818b55fac20261a3 +++ b/.resources/40f15f4738b284837c6bd629ae89aced916647a0714302a8e910a23bbfdacc1e @@ -80,7 +80,7 @@ def reset_highlights(self): # 2. Close popup and docks system.perspective.closePopup(id="TagSearch") - for dock_id in ["Docked-East-VFD", "Docked-East-MCM", "Docked-East-SNP", "Docked-East-EPC", "Docked-East-DS", "Docked-East-Extendo", "Docked-East-BTN", "Docked-East-SS-BTN"]: + for dock_id in ["Docked-East-VFD", "Docked-East-MCM", "Docked-East-SNP"]: system.perspective.closeDock(dock_id) # 3. Trigger CLEAR state via navigate to same view @@ -149,4 +149,4 @@ def get_child_scada_projects(): """ pattern = '[A-Z]{3}[0-9]|K[A-Z]{3}_SCADA' all_projects = system.project.getProjectNames() - return sorted([x for x in all_projects if re.match(pattern, x)]) \ No newline at end of file + return sorted([x for x in all_projects if re.match(pattern, x)]) diff --git a/.resources/419e9d368ef71bfdf9818c5682b6a701e0f4a9775c42f8da2c0633be660a4b39 b/.resources/419e9d368ef71bfdf9818c5682b6a701e0f4a9775c42f8da2c0633be660a4b39 new file mode 100644 index 00000000..0ab43496 Binary files /dev/null and b/.resources/419e9d368ef71bfdf9818c5682b6a701e0f4a9775c42f8da2c0633be660a4b39 differ diff --git a/.resources/42fffacee8378d69c2d44c895172b47483f8d86126e3707f2433fcf0bc447852 b/.resources/42fffacee8378d69c2d44c895172b47483f8d86126e3707f2433fcf0bc447852 new file mode 100644 index 00000000..c41d3c6b Binary files /dev/null and b/.resources/42fffacee8378d69c2d44c895172b47483f8d86126e3707f2433fcf0bc447852 differ diff --git a/.resources/43108f1ea204c2b7c919499e5c890517f1d4ee748281b097eca0b8e7d54f5da4 b/.resources/43108f1ea204c2b7c919499e5c890517f1d4ee748281b097eca0b8e7d54f5da4 new file mode 100644 index 00000000..a68465b5 --- /dev/null +++ b/.resources/43108f1ea204c2b7c919499e5c890517f1d4ee748281b097eca0b8e7d54f5da4 @@ -0,0 +1,1316 @@ +{ + "custom": {}, + "params": { + "tagProps": [ + "TAG0", + "TAG1", + "TAG2", + "TAG3", + "TAG4", + "TAG5", + "TAG6", + "TAG7", + "TAG8", + "TAG9", + "TAG10", + "TAG11", + "TAG12", + "TAG13", + "TAG14", + "TAG15", + "TAG16", + "TAG17" + ] + }, + "props": { + "defaultSize": { + "height": 1080, + "width": 1920 + } + }, + "root": { + "children": [ + { + "meta": { + "name": "DPM" + }, + "position": { + "height": 1, + "width": 1 + }, + "propConfig": { + "props.params.con_lines[0]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[0]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[10]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[10]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[11]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[11]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[12]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[12]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[13]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[13]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[14]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[14]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[15]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[15]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[16]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[16]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[17]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[17]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[1]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[1]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[2]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[2]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[3]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[3]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[4]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[4]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[5]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[5]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[6]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[6]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[7]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[7]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[8]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[8]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[9]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[9]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + } + }, + "props": { + "params": { + "con_lines": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + false, + false, + false, + false, + false, + false + ], + "con_lines_visible": [ + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + false, + false, + false, + false, + false, + false + ], + "in": false, + "out": false + }, + "path": "Windows/Tabs/Enternet Windows/Components/DPM_TO_HUB" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL12_1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0232, + "y": 0.4991 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL12_1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.0094, + "y": 0.5394 + }, + "props": { + "text": "UL12_1_VFD1 11.200.1.90", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL12_2" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.023, + "y": 0.6677 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL12_2_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.0068, + "y": 0.7315 + }, + "props": { + "text": "UL12_2_VFD1 11.200.1.91", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL12_3" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0216, + "y": 0.8333 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL12_3_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.0068, + "y": 0.8981 + }, + "props": { + "text": "UL12_3_VFD1 11.200.1.92", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL12_4" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0229, + "y": 0.3333 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL12_4_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.0068, + "y": 0.3986 + }, + "props": { + "text": "UL12_4_VFD1 11.200.1.93", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL12_5" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0229, + "y": 0.1667 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL12_5_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.0068, + "y": 0.2324 + }, + "props": { + "text": "UL12_5_VFD1 11.200.1.94", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL12_6" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0244 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL12_6_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.0068, + "y": 0.0653 + }, + "props": { + "text": "UL12_6_VFD1 11.200.1.95", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL12_7" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.5 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL12_7_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.5117, + "y": 0.1662 + }, + "props": { + "text": "UL12_7_VFD1 11.200.1.96", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "PS4_1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.625 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS4_1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.6312, + "y": 0.1664 + }, + "props": { + "text": "PS4_1_VFD1 11.200.1.97", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "PS4_2" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.75 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS4_2_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.75, + "y": 0.1664 + }, + "props": { + "text": "PS4_2_VFD1 11.200.1.98", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "PS4_3" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.375 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS4_3_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.3864, + "y": 0.1664 + }, + "props": { + "text": "PS4_3_VFD1 11.200.1.99", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "PS4_4A" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.2516, + "y": 0.0019 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS4_4A_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.315, + "y": 0.1682 + }, + "props": { + "text": "PS4_4A_VFD1 11.200.1.100", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "PS4_4B" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.1245 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS4_4B_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.2072, + "y": 0.1646 + }, + "props": { + "text": "PS4_4B_VFD1 11.200.1.101", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "PS4_5" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.8509, + "y": 0.3332 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS4_5_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.947, + "y": 0.3943 + }, + "props": { + "text": "PS4_5_VFD1 11.200.1.102", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "PS4_6" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.8514, + "y": 0.1667 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS4_6_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.947, + "y": 0.2276 + }, + "props": { + "text": "PS4_6_VFD1 11.200.1.103", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "PS4_7" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.8528 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS4_7_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.947, + "y": 0.0619 + }, + "props": { + "text": "PS4_7_VFD1 11.200.1.104", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL12_2_FIO1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.8389, + "y": 0.4988 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/FIO_SIO" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL12_2_FIO1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.9349999999999999, + "y": 0.561 + }, + "props": { + "text": "UL12_2_FIO1 11.200.1.105", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "PDP03_FIO1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.8381, + "y": 0.6639 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/FIO_SIO" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PDP03_FIO1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.9349999999999999, + "y": 0.7257 + }, + "props": { + "text": "PDP03_FIO1 11.200.1.106", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "PDP03_PMM" + }, + "position": { + "height": 0.1016, + "width": 0.074, + "x": 0.8822, + "y": 0.8394 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/PMM" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PDP03_PMM_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.8912, + "y": 0.9457 + }, + "props": { + "text": "PDP03_PMM 11.200.1.107", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "DPM_label" + }, + "position": { + "height": 0.0694, + "width": 0.162, + "x": 0.5222, + "y": 0.6343 + }, + "props": { + "text": "DPM2_PS4-1 11.200.1.5", + "textStyle": { + "fontSize": "2vmin" + } + }, + "type": "ia.display.label" + } + ], + "meta": { + "name": "root" + }, + "position": { + "x": 0.6348, + "y": -0.1546 + }, + "props": { + "mode": "percent" + }, + "type": "ia.container.coord" + } +} \ No newline at end of file diff --git a/.resources/44b77dc098a9a75255c6f298586b709f97c99fd81ddeb3a8968cf290fab77b81 b/.resources/44b77dc098a9a75255c6f298586b709f97c99fd81ddeb3a8968cf290fab77b81 new file mode 100644 index 00000000..39488a9d --- /dev/null +++ b/.resources/44b77dc098a9a75255c6f298586b709f97c99fd81ddeb3a8968cf290fab77b81 @@ -0,0 +1,1115 @@ +{ + "custom": {}, + "params": { + "tagProps": [ + "TAG0", + "TAG1", + "TAG2", + "TAG3", + "TAG4", + "TAG5", + "TAG6", + "TAG7", + "TAG8", + "TAG9", + "TAG10", + "TAG11", + "TAG12", + "TAG13", + "TAG14" + ] + }, + "props": { + "defaultSize": { + "height": 1080, + "width": 1920 + } + }, + "root": { + "children": [ + { + "meta": { + "name": "DPM" + }, + "position": { + "height": 1, + "width": 1 + }, + "propConfig": { + "props.params.con_lines[0]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[0]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[10]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[10]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[11]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[11]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[12]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[12]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[13]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[13]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[14]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[14]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[1]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[1]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[2]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[2]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[3]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[3]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[4]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[4]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[5]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[5]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[6]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[6]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[7]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[7]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[8]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[8]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[9]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[9]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + } + }, + "props": { + "params": { + "con_lines": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "con_lines_visible": [ + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "in": false, + "out": false + }, + "path": "Windows/Tabs/Enternet Windows/Components/DPM_TO_HUB" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011065_ZMX1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0232, + "y": 0.4991 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/ZMX" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011065_ZMX1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.0094, + "y": 0.5394 + }, + "props": { + "text": "S011065_ZMX1 11.200.1.197", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "S011066_ZMX1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.023, + "y": 0.6677 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/ZMX" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011066_ZMX1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.0068, + "y": 0.7315 + }, + "props": { + "text": "S011066_ZMX1 11.200.1.198", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "S011067_ZMX1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0216, + "y": 0.8333 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/ZMX" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011067_ZMX1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.0068, + "y": 0.8981 + }, + "props": { + "text": "S011067_ZMX1 11.200.1.199", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "S011068_ZMX1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0229, + "y": 0.3333 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/ZMX" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011068_ZMX1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.0068, + "y": 0.3986 + }, + "props": { + "text": "S011068_ZMX1 11.200.1.200", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "S011069_ZMX1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0229, + "y": 0.1667 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/ZMX" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011069_ZMX1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.0068, + "y": 0.2324 + }, + "props": { + "text": "S011069_ZMX1 11.200.1.201", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "S011070_ZMX1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0244 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/ZMX" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011070_ZMX1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.0068, + "y": 0.0653 + }, + "props": { + "text": "S011070_ZMX1 11.200.1.202", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "S011071_ZMX1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.5 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/ZMX" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011071_ZMX1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.5117, + "y": 0.1662 + }, + "props": { + "text": "S011071_ZMX1 11.200.1.203", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "S011072_ZMX1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.625 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/ZMX" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011072_ZMX1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.6312, + "y": 0.1664 + }, + "props": { + "text": "S011072_ZMX1 11.200.1.204", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "S011073_ZMX1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.75 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/ZMX" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011073_ZMX1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.75, + "y": 0.1664 + }, + "props": { + "text": "S011073_ZMX1 11.200.1.205", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "S011074_ZMX1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.375 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/ZMX" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011074_ZMX1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.3864, + "y": 0.1664 + }, + "props": { + "text": "S011074_ZMX1 11.200.1.206", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "VS01A_FIOM19" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.2516, + "y": 0.0019 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/FIO_SIO" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "VS01A_FIOM19_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.315, + "y": 0.1682 + }, + "props": { + "text": "VS01A_FIOM19 11.200.1.207", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "VS01A_FIOM20" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.1245 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/FIO_SIO" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "VS01A_FIOM20_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.2072, + "y": 0.1646 + }, + "props": { + "text": "VS01A_FIOM20 11.200.1.208", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "VS01A_FIOM21" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.8389, + "y": 0.3332 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/FIO_SIO" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "VS01A_FIOM21_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.9349999999999999, + "y": 0.3943 + }, + "props": { + "text": "VS01A_FIOM21 11.200.1.209", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "VS01A_FIOM22" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.8394, + "y": 0.1667 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/FIO_SIO" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "VS01A_FIOM22_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.9349999999999999, + "y": 0.2276 + }, + "props": { + "text": "VS01A_FIOM22 11.200.1.210", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "VS01A_FIOM23" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.8408 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/FIO_SIO" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "VS01A_FIOM23_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.9349999999999999, + "y": 0.0619 + }, + "props": { + "text": "VS01A_FIOM23 11.200.1.211", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "DPM_label" + }, + "position": { + "height": 0.0694, + "width": 0.101, + "x": 0.5831, + "y": 0.6342 + }, + "props": { + "text": "DPM05_VS01A 11.200.1.6", + "textStyle": { + "fontSize": "2vmin" + } + }, + "type": "ia.display.label" + } + ], + "meta": { + "name": "root" + }, + "position": { + "x": 0.6348, + "y": -0.1546 + }, + "props": { + "mode": "percent" + }, + "type": "ia.container.coord" + } +} \ No newline at end of file diff --git a/.resources/49505662ccaaa240c24a887c94525a9141e7ebc4f3eb2567ad0091e9f9ed2b96 b/.resources/49505662ccaaa240c24a887c94525a9141e7ebc4f3eb2567ad0091e9f9ed2b96 deleted file mode 100644 index 4b9da024..00000000 Binary files a/.resources/49505662ccaaa240c24a887c94525a9141e7ebc4f3eb2567ad0091e9f9ed2b96 and /dev/null differ diff --git a/.resources/496ef912c73b0abad3e4b11e201d94fffc80535a48a1621b35235708e7801aa0 b/.resources/496ef912c73b0abad3e4b11e201d94fffc80535a48a1621b35235708e7801aa0 new file mode 100644 index 00000000..36d33ccf Binary files /dev/null and b/.resources/496ef912c73b0abad3e4b11e201d94fffc80535a48a1621b35235708e7801aa0 differ diff --git a/.resources/4a29f3458eef7f029d41ac61f14f2623da2b6091b1a57f216d46cdf61a1f3631 b/.resources/4a29f3458eef7f029d41ac61f14f2623da2b6091b1a57f216d46cdf61a1f3631 deleted file mode 100644 index cc584ec5..00000000 Binary files a/.resources/4a29f3458eef7f029d41ac61f14f2623da2b6091b1a57f216d46cdf61a1f3631 and /dev/null differ diff --git a/.resources/4cafc130395e3d98f8ce60bb77c841f27b57ef67076d448ae76e6c8e83c964c7 b/.resources/4cafc130395e3d98f8ce60bb77c841f27b57ef67076d448ae76e6c8e83c964c7 new file mode 100644 index 00000000..863e9bac Binary files /dev/null and b/.resources/4cafc130395e3d98f8ce60bb77c841f27b57ef67076d448ae76e6c8e83c964c7 differ diff --git a/.resources/4e6ed91501cc500d9675ec9e639844d1e75df7685fc6037d213a879f1f24a849 b/.resources/4e6ed91501cc500d9675ec9e639844d1e75df7685fc6037d213a879f1f24a849 new file mode 100644 index 00000000..aa4e9c6d --- /dev/null +++ b/.resources/4e6ed91501cc500d9675ec9e639844d1e75df7685fc6037d213a879f1f24a849 @@ -0,0 +1,280 @@ +{ + "custom": {}, + "params": { + "Dataset": [ + { + "path": "Symbol-Views/Device-Views/DeviceStatus" + }, + { + "path": "Symbol-Views/Device-Views/DeviceStatus_old" + }, + { + "path": "Symbol-Views/Device-Views/Estop" + }, + { + "path": "Symbol-Views/Equipment-Views/ARSAW" + }, + { + "path": "Symbol-Views/Equipment-Views/AUS" + }, + { + "path": "Symbol-Views/Equipment-Views/Camera" + }, + { + "path": "Symbol-Views/Equipment-Views/ControlCabinet" + }, + { + "path": "Symbol-Views/Equipment-Views/Estop" + }, + { + "path": "Symbol-Views/Equipment-Views/GoodsLift" + }, + { + "path": "Symbol-Views/Equipment-Views/JAM" + }, + { + "path": "Symbol-Views/Equipment-Views/Light_Curtain" + }, + { + "path": "Symbol-Views/Equipment-Views/Main_Panel" + }, + { + "path": "Symbol-Views/Equipment-Views/Network" + }, + { + "path": "Symbol-Views/Equipment-Views/Pointer" + }, + { + "path": "Symbol-Views/Equipment-Views/PressureSwitch" + }, + { + "path": "Symbol-Views/Equipment-Views/PullChord" + }, + { + "path": "Symbol-Views/Equipment-Views/PullChord_End" + }, + { + "path": "Symbol-Views/Equipment-Views/PullChord_Line" + }, + { + "path": "Symbol-Views/Equipment-Views/PullChord_Line_Vertical" + }, + { + "path": "Symbol-Views/Equipment-Views/RFID" + }, + { + "path": "Symbol-Views/Equipment-Views/Robot" + }, + { + "path": "Symbol-Views/Equipment-Views/SLAMs" + }, + { + "path": "Symbol-Views/Equipment-Views/SafetyGate" + }, + { + "path": "Symbol-Views/Equipment-Views/Stacker_Destacker" + }, + { + "path": "Symbol-Views/Equipment-Views/Status" + }, + { + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + { + "path": "Symbol-Views/Equipment-Views/StatusNonPowered_NS" + }, + { + "path": "Symbol-Views/Equipment-Views/Status_NS" + }, + { + "path": "Symbol-Views/Equipment-Views/THEA" + }, + { + "path": "Symbol-Views/Equipment-Views/Test" + } + ], + "FilteredViews": [ + { + "Name": "DeviceStatus", + "Path": "Symbol-Views/Equipment-Views/DeviceStatus", + "instancePosition": {}, + "instanceStyle": { + "classes": "" + } + }, + { + "Name": "Button", + "Path": "Symbol-Views/Equipment-Views/Button", + "instancePosition": {}, + "instanceStyle": { + "classes": "" + } + }, + { + "Name": "Camera", + "Path": "Symbol-Views/Equipment-Views/Camera", + "instancePosition": {}, + "instanceStyle": { + "classes": "" + } + }, + { + "Name": "ControlCabinet", + "Path": "Symbol-Views/Equipment-Views/ControlCabinet", + "instancePosition": {}, + "instanceStyle": { + "classes": "" + } + }, + { + "Name": "Extendo", + "Path": "Symbol-Views/Equipment-Views/Extendo", + "instancePosition": {}, + "instanceStyle": { + "classes": "" + } + }, + { + "Name": "MCM", + "Path": "Symbol-Views/Equipment-Views/MCM", + "instancePosition": {}, + "instanceStyle": { + "classes": "" + } + }, + { + "Name": "SS_Button", + "Path": "Symbol-Views/Equipment-Views/SS_Button", + "instancePosition": {}, + "instanceStyle": { + "classes": "" + } + }, + { + "Name": "PullChord", + "Path": "Symbol-Views/Equipment-Views/PullChord", + "instancePosition": {}, + "instanceStyle": { + "classes": "" + } + }, + { + "Name": "PullChord_End", + "Path": "Symbol-Views/Equipment-Views/PullChord_End", + "instancePosition": {}, + "instanceStyle": { + "classes": "" + } + }, + { + "Name": "PullChord_Line", + "Path": "Symbol-Views/Equipment-Views/PullChord_Line", + "instancePosition": {}, + "instanceStyle": { + "classes": "" + } + }, + { + "Name": "THEA", + "Path": "Symbol-Views/Equipment-Views/THEA", + "instancePosition": {}, + "instanceStyle": { + "classes": "" + } + }, + { + "Name": "Status", + "Path": "Symbol-Views/Equipment-Views/Status", + "instancePosition": {}, + "instanceStyle": { + "classes": "" + } + }, + { + "Name": "StatusNonPowered", + "Path": "Symbol-Views/Equipment-Views/StatusNonPowered", + "instancePosition": {}, + "instanceStyle": { + "classes": "" + } + } + ], + "SelectedValue": "", + "key": "" + }, + "propConfig": { + "params.Dataset": { + "paramDirection": "input", + "persistent": true + }, + "params.FilteredViews": { + "paramDirection": "input", + "persistent": true + }, + "params.SelectedValue": { + "paramDirection": "inout", + "persistent": true + }, + "params.key": { + "paramDirection": "input", + "persistent": true + } + }, + "props": { + "defaultSize": { + "height": 650, + "width": 1165 + } + }, + "root": { + "children": [ + { + "meta": { + "name": "ViewRepeater" + }, + "position": { + "basis": "1px", + "grow": 1 + }, + "propConfig": { + "props.instances": { + "binding": { + "config": { + "bidirectional": true, + "path": "view.params.FilteredViews" + }, + "type": "property" + } + } + }, + "props": { + "alignContent": "flex-start", + "alignItems": "flex-start", + "elementPosition": { + "basis": "auto" + }, + "elementStyle": { + "classes": "Framework/Cards/Title" + }, + "justify": "center", + "path": "Symbol-Views/Symbol-Library-Views/Symbol", + "style": { + "gap": "20px", + "overflow": "hidden" + }, + "wrap": "wrap" + }, + "type": "ia.display.flex-repeater" + } + ], + "meta": { + "name": "root" + }, + "props": { + "alignItems": "center", + "justify": "space-evenly", + "wrap": "wrap" + }, + "type": "ia.container.flex" + } +} \ No newline at end of file diff --git a/.resources/48c323cbca1b699185fb84a8757675b454cc84d6ac0f5af2cb2d518c35d2a78d b/.resources/4f07c25d39a55b6d33f207e034d086f6fbf9e34300b817c8daa2b2611ccd9c7d similarity index 99% rename from .resources/48c323cbca1b699185fb84a8757675b454cc84d6ac0f5af2cb2d518c35d2a78d rename to .resources/4f07c25d39a55b6d33f207e034d086f6fbf9e34300b817c8daa2b2611ccd9c7d index bb0867fd..de13fbd3 100644 --- a/.resources/48c323cbca1b699185fb84a8757675b454cc84d6ac0f5af2cb2d518c35d2a78d +++ b/.resources/4f07c25d39a55b6d33f207e034d086f6fbf9e34300b817c8daa2b2611ccd9c7d @@ -1,8 +1,8 @@ { "custom": { - "color": "#00FF00", + "color": "#C2C2C2", "priority": "No Active Alarms", - "state": "Normal" + "state": "Closed" }, "params": { "forceFaultStatus": null, diff --git a/.resources/5052d1850fc26f01d1a8a3fcf474a4f44cb30afb46800dfa29b1d4660656c3a2 b/.resources/5052d1850fc26f01d1a8a3fcf474a4f44cb30afb46800dfa29b1d4660656c3a2 deleted file mode 100644 index 8c751608..00000000 --- a/.resources/5052d1850fc26f01d1a8a3fcf474a4f44cb30afb46800dfa29b1d4660656c3a2 +++ /dev/null @@ -1,503 +0,0 @@ -{ - "custom": { - "disconnected": false, - "plc": "value", - "priority": 0, - "priority_string": "No active alarms", - "searchId": "PLC01", - "state": 0, - "state_string": "Normal" - }, - "params": { - "forceFaultStatus": null, - "forceRunningStatus": null, - "tagProps": [ - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value" - ] - }, - "propConfig": { - "custom.disconnected": { - "binding": { - "config": { - "fallbackDelay": 2.5, - "mode": "indirect", - "references": { - "fc": "{session.custom.fc}", - "plc": "{view.custom.plc}" - }, - "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{plc}/DCN" - }, - "transforms": [ - { - "expression": "if(isNull({value}), False, {value})", - "type": "expression" - } - ], - "type": "tag" - }, - "persistent": true - }, - "custom.plc": { - "binding": { - "config": { - "path": "view.params.tagProps[0]" - }, - "transforms": [ - { - "expression": "split({value}, \"/\")[0]", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.priority": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "fallback": 1, - "inputType": "scalar", - "mappings": [ - { - "input": 0, - "output": 0 - } - ], - "outputType": "scalar", - "type": "map" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.priority_string": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "fallback": "Unknown", - "inputType": "scalar", - "mappings": [ - { - "input": 1, - "output": "High" - }, - { - "input": 0, - "output": "No active alarms" - } - ], - "outputType": "scalar", - "type": "map" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.searchId": { - "binding": { - "config": { - "path": "session.custom.searchId" - }, - "type": "property" - }, - "persistent": true - }, - "custom.state": { - "binding": { - "config": { - "fallbackDelay": 2.5, - "mode": "indirect", - "references": { - "0": "{view.params.tagProps[0]}", - "fc": "{session.custom.fc}" - }, - "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/STATE" - }, - "transforms": [ - { - "expression": "coalesce({value},{view.params.forceFaultStatus},0)", - "type": "expression" - }, - { - "fallback": null, - "inputType": "scalar", - "mappings": [ - { - "input": 1, - "output": 1 - }, - { - "input": 0, - "output": 0 - } - ], - "outputType": "scalar", - "type": "map" - } - ], - "type": "tag" - }, - "persistent": true - }, - "custom.state_string": { - "binding": { - "config": { - "expression": "case({view.custom.state},\r\n1, \"Active\",\r\n0, \"Normal\",\r\n\"Unknown\")" - }, - "type": "expr" - }, - "persistent": true - }, - "params.forceFaultStatus": { - "paramDirection": "input", - "persistent": true - }, - "params.forceRunningStatus": { - "paramDirection": "input", - "persistent": true - }, - "params.tagProps": { - "paramDirection": "inout", - "persistent": true - } - }, - "props": { - "defaultSize": { - "height": 100, - "width": 10 - } - }, - "root": { - "children": [ - { - "meta": { - "name": "PullChord_Line" - }, - "position": { - "height": 1, - "width": 1 - }, - "propConfig": { - "props.elements[0].visibility": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "if(\r\n ({value} \u003d 0 || {value} \u003d 1 || !{parent.meta.visible}),\r\n \u0027hidden\u0027,\r\n \u0027visible\u0027\r\n)", - "type": "expression" - } - ], - "type": "property" - } - }, - "props.elements[1].visibility": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "if(\r\n ({value} \u003d 0 || {value} \u003d 1 || !{parent.meta.visible}),\r\n \u0027hidden\u0027,\r\n \u0027visible\u0027\r\n)", - "type": "expression" - } - ], - "type": "property" - } - }, - "props.elements[2].stroke.paint": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "fallback": "#800000", - "inputType": "scalar", - "mappings": [ - { - "input": 1, - "output": "#FF0000" - }, - { - "input": 0, - "output": "#000000" - } - ], - "outputType": "color", - "type": "map" - } - ], - "type": "property" - } - }, - "props.style.classes": { - "binding": { - "config": { - "expression": "if({session.custom.colours.colour_impaired} \u003d True,\r\n{view.custom.state} + 100,\r\n{view.custom.state})" - }, - "transforms": [ - { - "fallback": "", - "inputType": "scalar", - "mappings": [ - { - "input": 101, - "output": "State-Styles/State101" - }, - { - "input": 102, - "output": "State-Styles/State102" - }, - { - "input": 103, - "output": "State-Styles/State103" - }, - { - "input": 104, - "output": "State-Styles/State104" - }, - { - "input": 105, - "output": "State-Styles/State105" - }, - { - "input": 106, - "output": "State-Styles/State106" - }, - { - "input": 201, - "output": "State-Styles/State201" - }, - { - "input": 202, - "output": "State-Styles/State202" - }, - { - "input": 203, - "output": "State-Styles/State203" - }, - { - "input": 204, - "output": "State-Styles/State204" - }, - { - "input": 205, - "output": "State-Styles/State205" - } - ], - "outputType": "style-list", - "type": "map" - } - ], - "type": "expr" - } - } - }, - "props": { - "elements": [ - { - "d": "m 0.22819265,-0.5 c 0,33.992373 0,67.984747 0,101.97712", - "fill": { - "paint": "#FFFFFF" - }, - "name": "path", - "stroke": { - "paint": "#000000", - "width": 1 - }, - "type": "path" - }, - { - "d": "m 10.792046,-0.5 c 0,33.992373 0,67.984747 0,101.97712", - "fill": { - "paint": "#FFFFFF" - }, - "name": "path", - "stroke": { - "paint": "#000000", - "width": 1 - }, - "type": "path" - }, - { - "d": "m 5.5101192,-0.5 c 0,33.992373 0,67.984747 0,101.97712", - "fill": { - "paint": "#FFFFFF" - }, - "name": "path", - "opacity": 1, - "stroke": { - "dasharray": "8, 8, 8", - "dashoffset": "\"20\"", - "key": "\"2.15848\"", - "miterlimit": "\"10\"", - "width": 2 - }, - "type": "path" - } - ], - "preserveAspectRatio": "none", - "style": {}, - "viewBox": "-0.5 -0.5 12 102" - }, - "type": "ia.shapes.svg" - } - ], - "events": { - "dom": { - "onClick": { - "config": { - "script": "\tsystem.perspective.openDock(\u0027Docked-East\u0027,params\u003d{\u0027tagProps\u0027:self.view.params.tagProps})" - }, - "scope": "G", - "type": "script" - }, - "onDoubleClick": { - "config": { - "script": "\ttagProps \u003d self.view.params.tagProps\n\tsystem.perspective.openPopup(\"StatusPopUP\", \"PopUp-Views/Controller-Equipment/Information\", params \u003d{\"tagProps\":tagProps})\n\t" - }, - "enabled": false, - "scope": "G", - "type": "script" - }, - "onMouseEnter": { - "config": { - "script": "\tfrom time import sleep\n\t\n\talarm \u003d []\n\tmessage \u003d None\n\t\n\tsleep(0.5)\n\t\n\tif system.tag.exists(\"System/aws_data\"):\n\t\tif self.view.params.tagProps[0] !\u003d \"\":\n\t\t\ttags_to_read \u003d system.tag.readBlocking(\"System/aws_data\")\n\t\t\tdecode_alarm_data \u003d system.util.jsonDecode(tags_to_read[0].value)\n\t\t\talarm \u003d [decode_alarm_data[i] for i in decode_alarm_data\n\t\t\t\t\tif decode_alarm_data[i][\u0027sourceId\u0027].startswith(self.view.params.tagProps[0])]\n\t\tif alarm:\n\t\t\talarm \u003d sorted(alarm, key \u003d lambda t:t[\u0027timestamp\u0027], reverse\u003dTrue)\n\t\t\tmessage \u003d max(alarm, key \u003d lambda p:p[\u0027priority\u0027]).get(\u0027message\u0027)\n\t\t\tif len(alarm) \u003e 1:\n\t\t\t\tmessage +\u003d \" (+\" + str(len(alarm)-1) + \")\"\n\tself.view.custom.alarm_message \u003d message" - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "root", - "tooltip": { - "enabled": true, - "location": "top-left", - "style": {} - } - }, - "propConfig": { - "meta.tooltip.style.backgroundColor": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case({value},\r\n0,{session.custom.colours.state5},\r\n1,{session.custom.colours.state1},\r\n{session.custom.colours.fallback}\r\n)", - "type": "expression" - } - ], - "type": "property" - } - }, - "meta.tooltip.style.classes": { - "binding": { - "config": { - "expression": "{view.custom.priority}" - }, - "transforms": [ - { - "fallback": "Alarms-Styles/NoAlarm", - "inputType": "scalar", - "mappings": [ - { - "input": 1, - "output": "Alarms-Styles/High" - } - ], - "outputType": "style-list", - "type": "map" - } - ], - "type": "expr" - } - }, - "meta.tooltip.style.color": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "if({session.custom.colours.colour_impaired},\r\n\t\u0027#000000\u0027,\r\n\tcase(\t{value},\r\n\t\t\t1,\u0027#000000\u0027,\r\n\t\t\t\u0027#FFFFFF\u0027)\r\n\t)", - "type": "expression" - } - ], - "type": "property" - } - }, - "meta.tooltip.text": { - "binding": { - "config": { - "expression": "if({view.custom.disconnected} \u003d False,\n\tif(isNull({view.custom.alarm_message}),\n\t\"Source Id: \" + {view.params.tagProps[0]} +\n\t\", Priority: \" + {view.custom.priority_string} +\n\t\", State: \" + {view.custom.state},\n\t\"Source Id: \" + {view.params.tagProps[0]} +\n\t\", Alarm: \" + {view.custom.alarm_message} +\n\t\", Priority: \" + {view.custom.priority_string} +\n\t\", State: \" + {view.custom.state}),\n\"Source Id: \" +{view.params.tagProps[0]} + \", Priority: Unknown, State: Unknown\")" - }, - "type": "expr" - } - }, - "meta.visible": { - "binding": { - "config": { - "path": "session.custom.alarm_filter.show_safety" - }, - "type": "property" - } - }, - "props.style.classes": { - "binding": { - "config": { - "path": "view.custom.disconnected" - }, - "transforms": [ - { - "fallback": "Disconnects/Device-Connected", - "inputType": "scalar", - "mappings": [ - { - "input": true, - "output": "Disconnects/Device-Disconnected" - }, - { - "input": false, - "output": "Disconnects/Device-Connected" - } - ], - "outputType": "style-list", - "type": "map" - } - ], - "type": "property" - } - } - }, - "props": { - "mode": "percent", - "style": { - "cursor": "pointer", - "overflow": "visible" - } - }, - "type": "ia.container.coord" - } -} \ No newline at end of file diff --git a/.resources/50e64b654784903a875bd275bbe65601d6628101794e32b2e225e3c42eeb3684 b/.resources/50e64b654784903a875bd275bbe65601d6628101794e32b2e225e3c42eeb3684 new file mode 100644 index 00000000..3b24df3f --- /dev/null +++ b/.resources/50e64b654784903a875bd275bbe65601d6628101794e32b2e225e3c42eeb3684 @@ -0,0 +1,887 @@ +{ + "custom": { + "dpm1-dpm2": false, + "dpm2-dpm3": false, + "dpm3-dpm4": false, + "dpm4-dpm5": false, + "dpm5-dpm6": false, + "dpm6-mcm": false, + "mcm-dpm1": false + }, + "params": { + "tagProps": [ + "DPM0_TAG", + "DPM1_TAG", + "DPM2_TAG", + "DPM3_TAG", + "DPM4_TAG", + "DPM5_TAG", + "DPM6_TAG" + ] + }, + "propConfig": { + "custom.dpm1-dpm2": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "1": "{view.params.tagProps[1]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{1}/STATE" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},1)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": 0, + "output": true + }, + { + "input": 1, + "output": false + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + }, + "persistent": true + }, + "custom.dpm2-dpm3": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "2": "{view.params.tagProps[2]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{2}/STATE" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},1)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": 0, + "output": true + }, + { + "input": 1, + "output": false + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + }, + "persistent": true + }, + "custom.dpm3-dpm4": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "3": "{view.params.tagProps[3]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{3}/STATE" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},1)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": 0, + "output": true + }, + { + "input": 1, + "output": false + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + }, + "persistent": true + }, + "custom.dpm4-dpm5": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "4": "{view.params.tagProps[4]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{4}/STATE" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},1)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": 0, + "output": true + }, + { + "input": 1, + "output": false + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + }, + "persistent": true + }, + "custom.dpm5-dpm6": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "5": "{view.params.tagProps[5]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{5}/STATE" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},1)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": 0, + "output": true + }, + { + "input": 1, + "output": false + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + }, + "persistent": true + }, + "custom.dpm6-mcm": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "6": "{view.params.tagProps[6]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{6}/STATE" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},1)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": 0, + "output": true + }, + { + "input": 1, + "output": false + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + }, + "persistent": true + }, + "custom.mcm-dpm1": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[0]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/STATE" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},1)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": 0, + "output": true + }, + { + "input": 1, + "output": false + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + }, + "persistent": true + }, + "params.tagProps": { + "paramDirection": "input", + "persistent": true + } + }, + "props": { + "defaultSize": { + "height": 894, + "width": 1920 + } + }, + "root": { + "children": [ + { + "events": { + "dom": { + "onClick": { + "config": { + "script": "\tself.session.custom.dpm_view_path = self.props.params.view\n\tself.session.custom.show_dpm_device_view = True" + }, + "scope": "G", + "type": "script" + } + } + }, + "meta": { + "name": "MCM" + }, + "position": { + "height": 0.3333, + "width": 0.3333, + "x": 0.6666, + "y": 0.3333 + }, + "propConfig": { + "props.params.InOn": { + "binding": { + "config": { + "path": "view.custom.dpm6-mcm" + }, + "type": "property" + } + }, + "props.params.OutOn": { + "binding": { + "config": { + "path": "view.custom.mcm-dpm1" + }, + "type": "property" + } + } + }, + "props": { + "params": { + "InDown": false, + "InLeft": true, + "InUp": false, + "OutDown": false, + "OutRight": false, + "OutUp": true + }, + "path": "Windows/Tabs/Enternet Windows/Components/EN4TR" + }, + "type": "ia.display.view" + }, + { + "events": { + "dom": { + "onClick": { + "config": { + "script": "\tself.session.custom.dpm_view_path = self.props.params.view\n\tself.session.custom.show_dpm_device_view = True" + }, + "scope": "G", + "type": "script" + } + } + }, + "meta": { + "name": "DPM01_VS01A" + }, + "position": { + "height": 0.3333, + "width": 0.3333, + "x": 0.3333 + }, + "propConfig": { + "props.params.InOn": { + "binding": { + "config": { + "path": "view.custom.dpm1-dpm2" + }, + "type": "property" + } + }, + "props.params.OutOn": { + "binding": { + "config": { + "path": "view.custom.mcm-dpm1" + }, + "type": "property" + } + } + }, + "props": { + "params": { + "Down1": false, + "Down2": false, + "Down3": false, + "DownLeft": false, + "DownOn": false, + "DownRight": false, + "InDown": false, + "InLeft": true, + "InUp": false, + "OutDown": false, + "OutRight": true, + "OutUp": false, + "view": "Windows/Tabs/Enternet Windows/DPMs/DPM Devices/MCM04/DPM01_VS01A" + }, + "path": "Windows/Tabs/Enternet Windows/Components/DPM_BLOCK" + }, + "type": "ia.display.view" + }, + { + "events": { + "dom": { + "onClick": { + "config": { + "script": "\tself.session.custom.dpm_view_path = self.props.params.view\n\tself.session.custom.show_dpm_device_view = True" + }, + "scope": "G", + "type": "script" + } + } + }, + "meta": { + "name": "DPM02_VS01A" + }, + "position": { + "height": 0.3333, + "width": 0.3333 + }, + "propConfig": { + "props.params.DownOn": { + "binding": { + "config": { + "path": "view.custom.dpm2-dpm3" + }, + "type": "property" + } + }, + "props.params.InOn": { + "binding": { + "config": { + "path": "view.custom.dpm2-dpm3" + }, + "type": "property" + } + }, + "props.params.OutOn": { + "binding": { + "config": { + "path": "view.custom.dpm1-dpm2" + }, + "type": "property" + } + } + }, + "props": { + "params": { + "Down1": true, + "Down2": false, + "Down3": true, + "DownLeft": false, + "DownRight": false, + "InDown": true, + "InLeft": false, + "InUp": false, + "OutDown": false, + "OutRight": true, + "OutUp": false, + "view": "Windows/Tabs/Enternet Windows/DPMs/DPM Devices/MCM04/DPM02_VS01A" + }, + "path": "Windows/Tabs/Enternet Windows/Components/DPM_BLOCK" + }, + "type": "ia.display.view" + }, + { + "events": { + "dom": { + "onClick": { + "config": { + "script": "\tself.session.custom.dpm_view_path = self.props.params.view\n\tself.session.custom.show_dpm_device_view = True" + }, + "scope": "G", + "type": "script" + } + } + }, + "meta": { + "name": "DPM03_VS01A" + }, + "position": { + "height": 0.3333, + "width": 0.3333, + "y": 0.3333 + }, + "propConfig": { + "props.params.DownOn": { + "binding": { + "config": { + "path": "view.custom.dpm3-dpm4" + }, + "type": "property" + } + }, + "props.params.InOn": { + "binding": { + "config": { + "path": "view.custom.dpm3-dpm4" + }, + "type": "property" + } + }, + "props.params.OutOn": { + "binding": { + "config": { + "path": "view.custom.dpm2-dpm3" + }, + "type": "property" + } + } + }, + "props": { + "params": { + "Down1": false, + "Down2": true, + "Down3": false, + "DownLeft": false, + "DownRight": false, + "InDown": true, + "InLeft": false, + "InUp": false, + "OutDown": false, + "OutRight": false, + "OutUp": true, + "view": "Windows/Tabs/Enternet Windows/DPMs/DPM Devices/MCM04/DPM03_VS01A" + }, + "path": "Windows/Tabs/Enternet Windows/Components/DPM_BLOCK" + }, + "type": "ia.display.view" + }, + { + "events": { + "dom": { + "onClick": { + "config": { + "script": "\tself.session.custom.dpm_view_path = self.props.params.view\n\tself.session.custom.show_dpm_device_view = True" + }, + "scope": "G", + "type": "script" + } + } + }, + "meta": { + "name": "DPM04_VS01A" + }, + "position": { + "height": 0.3333, + "width": 0.3333, + "y": 0.6666 + }, + "propConfig": { + "props.params.InOn": { + "binding": { + "config": { + "path": "view.custom.dpm3-dpm4" + }, + "type": "property" + } + }, + "props.params.OutOn": { + "binding": { + "config": { + "path": "view.custom.dpm4-dpm5" + }, + "type": "property" + } + } + }, + "props": { + "params": { + "Down1": false, + "Down2": false, + "Down3": false, + "DownLeft": false, + "DownOn": false, + "DownRight": false, + "InDown": false, + "InLeft": false, + "InUp": true, + "OutDown": false, + "OutRight": true, + "OutUp": false, + "view": "Windows/Tabs/Enternet Windows/DPMs/DPM Devices/MCM04/DPM04_VS01A" + }, + "path": "Windows/Tabs/Enternet Windows/Components/DPM_BLOCK" + }, + "type": "ia.display.view" + }, + { + "events": { + "dom": { + "onClick": { + "config": { + "script": "\tself.session.custom.dpm_view_path = self.props.params.view\n\tself.session.custom.show_dpm_device_view = True" + }, + "scope": "G", + "type": "script" + } + } + }, + "meta": { + "name": "DPM05_VS01A" + }, + "position": { + "height": 0.3333, + "width": 0.3333, + "x": 0.3333, + "y": 0.6666 + }, + "propConfig": { + "props.params.InOn": { + "binding": { + "config": { + "path": "view.custom.dpm4-dpm5" + }, + "type": "property" + } + }, + "props.params.OutOn": { + "binding": { + "config": { + "path": "view.custom.dpm5-dpm6" + }, + "type": "property" + } + } + }, + "props": { + "params": { + "Down1": false, + "Down2": false, + "Down3": false, + "DownLeft": false, + "DownOn": false, + "DownRight": false, + "InDown": false, + "InLeft": true, + "InUp": false, + "OutDown": false, + "OutRight": false, + "OutUp": true, + "view": "Windows/Tabs/Enternet Windows/DPMs/DPM Devices/MCM04/DPM05_VS01A" + }, + "path": "Windows/Tabs/Enternet Windows/Components/DPM_BLOCK" + }, + "type": "ia.display.view" + }, + { + "events": { + "dom": { + "onClick": { + "config": { + "script": "\tself.session.custom.dpm_view_path = self.props.params.view\n\tself.session.custom.show_dpm_device_view = True" + }, + "scope": "G", + "type": "script" + } + } + }, + "meta": { + "name": "DPM02_VS01C" + }, + "position": { + "height": 0.3333, + "width": 0.3333, + "x": 0.3333, + "y": 0.3333 + }, + "propConfig": { + "props.params.DownOn": { + "binding": { + "config": { + "path": "view.custom.dpm5-dpm6" + }, + "type": "property" + } + }, + "props.params.InOn": { + "binding": { + "config": { + "path": "view.custom.dpm5-dpm6" + }, + "type": "property" + } + }, + "props.params.OutOn": { + "binding": { + "config": { + "path": "view.custom.dpm6-mcm" + }, + "type": "property" + } + } + }, + "props": { + "params": { + "Down1": true, + "Down2": false, + "Down3": true, + "DownLeft": false, + "DownRight": false, + "InDown": true, + "InLeft": false, + "InUp": false, + "OutDown": false, + "OutRight": true, + "OutUp": false, + "view": "Windows/Tabs/Enternet Windows/DPMs/DPM Devices/MCM04/DPM02_VS01C" + }, + "path": "Windows/Tabs/Enternet Windows/Components/DPM_BLOCK" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "DPM1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.32, + "y": 0.07 + }, + "props": { + "text": "DPM01_VS01A 11.200.1.2", + "textStyle": { + "fontSize": "1vmin" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "DPM2_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.065, + "y": 0.3121 + }, + "props": { + "text": "DPM02_VS01A 11.200.1.3", + "textStyle": { + "fontSize": "1vmin" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "DPM3_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.005, + "y": 0.4 + }, + "props": { + "text": "DPM03_VS01A 11.200.1.4", + "textStyle": { + "fontSize": "1vmin" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "DPM4_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.005, + "y": 0.75 + }, + "props": { + "text": "DPM04_VS01A 11.200.1.5", + "textStyle": { + "fontSize": "1vmin" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "DPM5_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.32, + "y": 0.75 + }, + "props": { + "text": "DPM05_VS01A 11.200.1.6", + "textStyle": { + "fontSize": "1vmin" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "DPM6_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.32, + "y": 0.4 + }, + "props": { + "text": "DPM02_VS01C 11.200.1.7", + "textStyle": { + "fontSize": "1vmin" + } + }, + "type": "ia.display.label" + }, + { + "events": { + "dom": { + "onClick": { + "config": { + "script": "\tself.session.custom.dpm_view_path = self.props.params.view\n\tself.session.custom.show_dpm_device_view = True" + }, + "scope": "G", + "type": "script" + } + } + }, + "meta": { + "name": "DEVICE" + }, + "position": { + "height": 0.3333, + "width": 0.3333, + "x": 0.6666 + }, + "propConfig": { + "props.params.On": { + "binding": { + "config": { + "path": "view.custom.mcm-dpm1" + }, + "type": "property" + } + } + }, + "props": { + "params": { + "LD": false, + "LR": false, + "LRD": true, + "LRU": false, + "LU": false, + "RD": false, + "RLD": false, + "RLU": false, + "RU": false + }, + "path": "Windows/Tabs/Enternet Windows/Components/CommLines" + }, + "type": "ia.display.view" + } + ], + "meta": { + "name": "root" + }, + "position": { + "x": 120, + "y": -723 + }, + "props": { + "mode": "percent", + "style": { + "backgroundColor": "#ffffff" + } + }, + "type": "ia.container.coord" + } +} \ No newline at end of file diff --git a/.resources/5162186e11d45aae74139083ecf93e840129171fa74efc5aea33a12d87c3fe62 b/.resources/5162186e11d45aae74139083ecf93e840129171fa74efc5aea33a12d87c3fe62 deleted file mode 100644 index 212abb57..00000000 Binary files a/.resources/5162186e11d45aae74139083ecf93e840129171fa74efc5aea33a12d87c3fe62 and /dev/null differ diff --git a/.resources/516b0625993a0b994ec11ce209c1aee306e4c17aa622d2d4d46399514da51512 b/.resources/516b0625993a0b994ec11ce209c1aee306e4c17aa622d2d4d46399514da51512 deleted file mode 100644 index 4192b886..00000000 --- a/.resources/516b0625993a0b994ec11ce209c1aee306e4c17aa622d2d4d46399514da51512 +++ /dev/null @@ -1,84 +0,0 @@ -{ - "custom": {}, - "params": { - "Hidden": true, - "Name": "Planned_Stop_Or_Not_Used" - }, - "propConfig": { - "params.Hidden": { - "paramDirection": "inout", - "persistent": true - }, - "params.Name": { - "paramDirection": "inout", - "persistent": true - } - }, - "props": { - "defaultSize": { - "height": 37, - "width": 200 - } - }, - "root": { - "children": [ - { - "meta": { - "name": "ColumnSelect" - }, - "position": { - "basis": "36px" - }, - "propConfig": { - "props.selected": { - "binding": { - "config": { - "bidirectional": true, - "path": "view.params.Hidden" - }, - "type": "property" - }, - "onChange": { - "enabled": null, - "script": "\t#Use previous value. If you\u0027re clicking -, you want to remove then toggle to +. Vice versa with clicking +.\n\tif getattr(previousValue, \u0027value\u0027, None) is not None:\n\t\tsystem.perspective.sendMessage(\u0027column-visibility\u0027, {str(self.view.params.Name): previousValue.value}, scope\u003d\u0027page\u0027)" - } - }, - "props.text": { - "binding": { - "config": { - "path": "view.params.Name" - }, - "type": "property" - } - } - }, - "props": { - "checkedIcon": { - "path": "material/add" - }, - "indeterminateIcon": { - "path": "material/add" - }, - "style": { - "fontSize": 12, - "overflow": "visible" - }, - "uncheckedIcon": { - "path": "material/remove" - } - }, - "type": "ia.input.checkbox" - } - ], - "meta": { - "name": "root" - }, - "props": { - "direction": "column", - "style": { - "overflow": "visible" - } - }, - "type": "ia.container.flex" - } -} \ No newline at end of file diff --git a/.resources/528692b263a2ec9227a864505244830a53b9b73f17f99ea1a08087cb49473be3 b/.resources/528692b263a2ec9227a864505244830a53b9b73f17f99ea1a08087cb49473be3 deleted file mode 100644 index 6ddabce6..00000000 Binary files a/.resources/528692b263a2ec9227a864505244830a53b9b73f17f99ea1a08087cb49473be3 and /dev/null differ diff --git a/.resources/52cdf5d7fcfb920923fe82aab77c0039c986b54b232a188bbde6f19091e1fd7a b/.resources/52cdf5d7fcfb920923fe82aab77c0039c986b54b232a188bbde6f19091e1fd7a deleted file mode 100644 index 60919910..00000000 --- a/.resources/52cdf5d7fcfb920923fe82aab77c0039c986b54b232a188bbde6f19091e1fd7a +++ /dev/null @@ -1,628 +0,0 @@ -{ - "custom": { - "FillColour": "value", - "alarm_message": null, - "covert_mode": true, - "disconnected": false, - "display_icon": true, - "error": false, - "isMatch": 0, - "plc": "value", - "priority": 0, - "priority_string": "No active alarms", - "running": false, - "running_status": 0, - "searchId": "value", - "show_error": false, - "show_running": true, - "state": 5, - "state_string": "Unknown" - }, - "params": { - "forceFaultStatus": null, - "forceRunningStatus": null, - "tagProps": [ - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value" - ] - }, - "propConfig": { - "custom.FillColour": { - "persistent": true - }, - "custom.alarm_message": { - "persistent": true - }, - "custom.covert_mode": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case(\t{value},\r\n\t\t0, {session.custom.alarm_filter.show_running},\r\n\t\t1, True,\r\n\t\t2, True,\r\n\t\t3, {session.custom.alarm_filter.show_low_alarm} || {session.custom.alarm_filter.show_running},\r\n\t\t4, {session.custom.alarm_filter.show_diagnostic} || {session.custom.alarm_filter.show_running},\r\n\t\t5, {session.custom.alarm_filter.show_running},\r\n\t\tFalse)", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.disconnected": { - "binding": { - "config": { - "fallbackDelay": 2.5, - "mode": "indirect", - "references": { - "fc": "{session.custom.fc}", - "plc": "{view.custom.plc}" - }, - "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{plc}/DCN" - }, - "transforms": [ - { - "expression": "if(isNull({value}), False, {value})", - "type": "expression" - } - ], - "type": "tag" - }, - "persistent": true - }, - "custom.display_icon": { - "binding": { - "config": { - "expression": "{this.custom.covert_mode}//||{this.custom.isMatch}\u003e0" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.error": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "0 \u003c {value} \u0026\u0026 {value} \u003c 5", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.isMatch": { - "binding": { - "config": { - "expression": "if({view.params.tagProps[0]}\u003d\"value\",0,\nif({this.custom.searchId}\u003d{view.params.tagProps[0]},100,0))" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.plc": { - "binding": { - "config": { - "path": "view.params.tagProps[0]" - }, - "transforms": [ - { - "expression": "split({value}, \"/\")[0]", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.priority": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "fallback": 0, - "inputType": "scalar", - "mappings": [ - { - "input": 1, - "output": 4 - }, - { - "input": 2, - "output": 3 - }, - { - "input": 3, - "output": 2 - }, - { - "input": 4, - "output": 1 - } - ], - "outputType": "scalar", - "type": "map" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.priority_string": { - "binding": { - "config": { - "expression": "case({view.custom.state},\r\n1, \"High\",\r\n2, \"Medium\",\r\n3, \"Low\",\r\n4, \"Diagnostic\",\r\n5, \"No active alarms\",\r\n\"Unknown\")" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.running": { - "binding": { - "config": { - "expression": "{view.custom.running_status} \u003d 3" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.running_status": { - "binding": { - "config": { - "fallbackDelay": 2.5, - "mode": "indirect", - "references": { - "0": "{view.params.tagProps[0]}", - "fc": "{session.custom.fc}" - }, - "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/STATE" - }, - "transforms": [ - { - "expression": "coalesce({value},{view.params.forceRunningStatus},0)", - "type": "expression" - } - ], - "type": "tag" - }, - "persistent": true - }, - "custom.searchId": { - "binding": { - "config": { - "path": "session.custom.searchId" - }, - "type": "property" - }, - "persistent": true - }, - "custom.show_error": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case(\t{value},\r\n\t\t1, True,\r\n\t\t2, True,\r\n\t\t3, {session.custom.alarm_filter.show_low_alarm},\r\n\t\t4, {session.custom.alarm_filter.show_diagnostic},\r\n\t\tFalse)", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.show_running": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case(\t{value},\r\n\t\t1, False,\r\n\t\t2, False,\r\n\t\t{session.custom.alarm_filter.show_running}\r\n\t\t)", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.state": { - "binding": { - "config": { - "fallbackDelay": 2.5, - "mode": "indirect", - "references": { - "0": "{view.params.tagProps[0]}", - "fc": "{session.custom.fc}" - }, - "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/ALARMST" - }, - "transforms": [ - { - "expression": "coalesce({value},{view.params.forceFaultStatus},0)", - "type": "expression" - }, - { - "fallback": null, - "inputType": "scalar", - "mappings": [ - { - "input": 4, - "output": 1 - }, - { - "input": 3, - "output": 2 - }, - { - "input": 2, - "output": 3 - }, - { - "input": 1, - "output": 4 - }, - { - "input": 0, - "output": 5 - } - ], - "outputType": "scalar", - "type": "map" - } - ], - "type": "tag" - }, - "persistent": true - }, - "custom.state_string": { - "binding": { - "config": { - "expression": "case({view.custom.running_status},\r\n1, \"Faulted\",\r\n2, \"Stopped\",\r\n3, \"Running\",\r\n\"Unknown\")" - }, - "type": "expr" - }, - "persistent": true - }, - "params.forceFaultStatus": { - "paramDirection": "input", - "persistent": true - }, - "params.forceRunningStatus": { - "paramDirection": "input", - "persistent": true - }, - "params.tagProps": { - "paramDirection": "inout", - "persistent": true - } - }, - "props": { - "defaultSize": { - "height": 100, - "width": 100 - } - }, - "root": { - "children": [ - { - "meta": { - "name": "SLAM" - }, - "position": { - "height": 1, - "width": 1 - }, - "propConfig": { - "position.rotate.angle": { - "binding": { - "config": { - "path": "view.params.directionLeft" - }, - "enabled": false, - "transforms": [ - { - "expression": "if({value}, \u0027180deg\u0027, \u00270deg\u0027)", - "type": "expression" - } - ], - "type": "property" - } - }, - "props.elements[0].fill.paint": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case({value},\r\n0,{session.custom.colours.state0},\r\n1,{session.custom.colours.state1},\r\n2,{session.custom.colours.state2},\r\n3,{session.custom.colours.state3},\r\n4,{session.custom.colours.state4},\r\n5,if({view.custom.running},{session.custom.colours.state5},{session.custom.colours.state0}),\r\n6,{session.custom.colours.state6},\r\n{session.custom.colours.fallback}\r\n)", - "type": "expression" - }, - { - "expression": "if({view.custom.display_icon}\u0026\u0026 {view.custom.isMatch}\u003d0,{value},{value}+\u002700\u0027)", - "type": "expression" - } - ], - "type": "property" - } - }, - "props.style.classes": { - "binding": { - "config": { - "expression": "if({session.custom.colours.colour_impaired} \u003d True \u0026\u0026 {view.custom.isMatch} \u003e 0,\r\n{view.custom.state} + 100 + {view.custom.isMatch},\r\n{view.custom.state} + {view.custom.isMatch})" - }, - "transforms": [ - { - "fallback": "", - "inputType": "scalar", - "mappings": [ - { - "input": 101, - "output": "State-Styles/State101" - }, - { - "input": 102, - "output": "State-Styles/State102" - }, - { - "input": 103, - "output": "State-Styles/State103" - }, - { - "input": 104, - "output": "State-Styles/State104" - }, - { - "input": 105, - "output": "State-Styles/State105" - }, - { - "input": 106, - "output": "State-Styles/State106" - }, - { - "input": 201, - "output": "State-Styles/State201" - }, - { - "input": 202, - "output": "State-Styles/State202" - }, - { - "input": 203, - "output": "State-Styles/State203" - }, - { - "input": 204, - "output": "State-Styles/State204" - }, - { - "input": 205, - "output": "State-Styles/State205" - } - ], - "outputType": "style-list", - "type": "map" - } - ], - "type": "expr" - } - } - }, - "props": { - "elements": [ - { - "d": "M 25.072251,49.491677 C 8.305025,50.18642 -4.5893078,30.832553 2.4672281,15.562464 8.2437711,-0.23935905 31.006999,-4.7804171 42.373386,7.6015452 54.088036,18.389216 50.750821,39.438697 36.798277,46.490083 33.221446,48.453809 29.149949,49.49602 25.072251,49.491677 Z", - "fill": {}, - "name": "path", - "stroke": { - "paint": "#000000", - "width": 1.5 - }, - "type": "path" - }, - { - "d": "m 25.27,19.376563 c -3.799453,0.197118 -4.03784,-6.218759 0,-6.053125 3.946982,-0.08033 3.946979,6.133451 0,6.053125 z m 7,0 c -3.799453,0.197118 -4.03784,-6.218759 0,-6.053125 3.946982,-0.08033 3.946979,6.133451 0,6.053125 z m -0.240001,-0.316562 c 0,2.383333 0,4.766667 0,7.15 -2.173333,0 -4.346667,0 -6.52,0 0,-2.383333 0,-4.766667 0,-7.15 2.173333,0 4.346667,0 6.52,0 z M 17.07,23.24 c 0,4.116667 0,8.233333 0,12.35 -0.666667,0 -1.333333,0 -2,0 0,-4.116667 0,-8.233333 0,-12.35 0.666667,0 1.333333,0 2,0 z m 25.119999,4.220001 c 0,1.3 0,2.6 0,3.9 -8.69,0 -17.38,0 -26.07,0 0,-1.3 0,-2.6 0,-3.9 8.69,0 17.38,0 26.07,0 z M 12.079999,8.75 c 0,10.833333 0,21.666667 0,32.5 -1.086667,0 -2.173333,0 -3.26,0 0,-10.833333 0,-21.666667 0,-32.5 1.086667,0 2.173333,0 3.26,0 z", - "fill": { - "paint": "#000000" - }, - "name": "path", - "stroke": { - "paint": "#000000", - "width": 0.5 - }, - "type": "path" - } - ], - "style": { - "overflow": "hidden" - }, - "viewBox": "-0.5 -0.5 51 51" - }, - "type": "ia.shapes.svg" - }, - { - "meta": { - "name": "SLAMs" - }, - "position": { - "height": 0.005, - "width": 0.005, - "x": 0.0225, - "y": 0.0277 - }, - "props": { - "params": { - "tagProps": [ - "", - "", - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value" - ] - }, - "path": "Symbol-Views/Equipment-Views/SLAMs" - }, - "type": "ia.display.view" - } - ], - "events": { - "dom": { - "onClick": { - "config": { - "script": "\tsystem.perspective.openDock(\u0027Docked-East\u0027,params\u003d{\u0027tagProps\u0027:self.view.params.tagProps})" - }, - "scope": "G", - "type": "script" - }, - "onDoubleClick": { - "config": { - "script": "\ttagProps \u003d self.view.params.tagProps\n\tsystem.perspective.openPopup(\"StatusPopUP\", \"PopUp-Views/Controller-Equipment/Information\", params \u003d{\"tagProps\":tagProps})\n\t" - }, - "enabled": false, - "scope": "G", - "type": "script" - }, - "onMouseEnter": { - "config": { - "script": "\tfrom time import sleep\n\t\n\talarm \u003d []\n\tmessage \u003d None\n\t\n\tsleep(0.5)\n\t\n\tif system.tag.exists(\"System/aws_data\"):\n\t\tif self.view.params.tagProps[0] !\u003d \"\":\n\t\t\ttags_to_read \u003d system.tag.readBlocking(\"System/aws_data\")\n\t\t\tdecode_alarm_data \u003d system.util.jsonDecode(tags_to_read[0].value)\n\t\t\talarm \u003d [decode_alarm_data[i] for i in decode_alarm_data\n\t\t\t\t\tif decode_alarm_data[i][\u0027sourceId\u0027].startswith(self.view.params.tagProps[0])]\n\t\tif alarm:\n\t\t\talarm \u003d sorted(alarm, key \u003d lambda t:t[\u0027timestamp\u0027], reverse\u003dTrue)\n\t\t\tmessage \u003d max(alarm, key \u003d lambda p:p[\u0027priority\u0027]).get(\u0027message\u0027)\n\t\t\tif len(alarm) \u003e 1:\n\t\t\t\tmessage +\u003d \" (+\" + str(len(alarm)-1) + \")\"\n\tself.view.custom.alarm_message \u003d message" - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "root", - "tooltip": { - "enabled": true, - "location": "top-left", - "style": {} - } - }, - "propConfig": { - "meta.tooltip.style.backgroundColor": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case({value},\r\n0,{session.custom.colours.state0},\r\n1,{session.custom.colours.state1},\r\n2,{session.custom.colours.state2},\r\n3,{session.custom.colours.state3},\r\n4,{session.custom.colours.state4},\r\n5,{session.custom.colours.state5},\r\n6,{session.custom.colours.state6},\r\n{session.custom.colours.fallback}\r\n)", - "type": "expression" - } - ], - "type": "property" - } - }, - "meta.tooltip.style.classes": { - "binding": { - "config": { - "expression": "{view.custom.priority}" - }, - "transforms": [ - { - "fallback": "Alarms-Styles/NoAlarm", - "inputType": "scalar", - "mappings": [ - { - "input": 1, - "output": "Alarms-Styles/Diagnostic" - }, - { - "input": 2, - "output": "Alarms-Styles/Low" - }, - { - "input": 3, - "output": "Alarms-Styles/Medium" - }, - { - "input": 4, - "output": "Alarms-Styles/High" - } - ], - "outputType": "style-list", - "type": "map" - } - ], - "type": "expr" - } - }, - "meta.tooltip.style.color": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "if({session.custom.colours.colour_impaired},\r\n\t\u0027#000000\u0027,\r\n\tcase(\t{value},\r\n\t\t\t1,\u0027#FFFFFF\u0027,\r\n\t\t\t2,\u0027#000000\u0027,\r\n\t\t\t3,\u0027#000000\u0027,\r\n\t\t\t4,\u0027#FFFFFF\u0027,\r\n\t\t\t5,\u0027#FFFFFF\u0027,\r\n\t\t\t\u0027#000000\u0027)\r\n\t)", - "type": "expression" - } - ], - "type": "property" - } - }, - "meta.tooltip.text": { - "binding": { - "config": { - "expression": "if({view.custom.disconnected} \u003d False,\n\tif(isNull({view.custom.alarm_message}),\n\t\"Source Id: \" + {view.params.tagProps[0]} +\n\t\", Priority: \" + {view.custom.priority_string} +\n\t\", State: \" + {view.custom.state_string},\n\t\"Source Id: \" + {view.params.tagProps[0]} +\n\t\", Alarm: \" + {view.custom.alarm_message} +\n\t\", Priority: \" + {view.custom.priority_string} +\n\t\", State: \" + {view.custom.state_string}),\n\"Source Id: \" +{view.params.tagProps[0]} + \", Priority: Unknown, State: Unknown\")" - }, - "type": "expr" - } - }, - "props.style.classes": { - "binding": { - "config": { - "path": "view.custom.disconnected" - }, - "transforms": [ - { - "fallback": "Disconnects/Device-Connected", - "inputType": "scalar", - "mappings": [ - { - "input": true, - "output": "Disconnects/Device-Disconnected" - }, - { - "input": false, - "output": "Disconnects/Device-Connected" - } - ], - "outputType": "style-list", - "type": "map" - } - ], - "type": "property" - } - } - }, - "props": { - "aspectRatio": "1:1", - "mode": "percent", - "style": { - "cursor": "pointer" - } - }, - "type": "ia.container.coord" - } -} \ No newline at end of file diff --git a/.resources/5348591334ebf729a511fb91297254cc3998c4041724ba6d46b592666b627bd4 b/.resources/5348591334ebf729a511fb91297254cc3998c4041724ba6d46b592666b627bd4 deleted file mode 100644 index 5752b0b2..00000000 Binary files a/.resources/5348591334ebf729a511fb91297254cc3998c4041724ba6d46b592666b627bd4 and /dev/null differ diff --git a/.resources/53ac1c3c0849f7161f19d3ffeb7f2782821faa543fc462847888be59efd5617f b/.resources/53ac1c3c0849f7161f19d3ffeb7f2782821faa543fc462847888be59efd5617f deleted file mode 100644 index 82ad1aa6..00000000 --- a/.resources/53ac1c3c0849f7161f19d3ffeb7f2782821faa543fc462847888be59efd5617f +++ /dev/null @@ -1,227 +0,0 @@ -{ - "custom": {}, - "params": { - "tagProps": [ - "", - "", - "", - "value", - "value", - "value", - "value", - "value", - "value", - "value" - ] - }, - "propConfig": { - "params.tagProps": { - "paramDirection": "inout", - "persistent": true - }, - "params.tagProps[0]": { - "paramDirection": "input", - "persistent": true - }, - "params.tagProps[1]": { - "paramDirection": "input", - "persistent": true - }, - "params.tagProps[2]": { - "paramDirection": "input", - "persistent": true - }, - "params.tagProps[3]": { - "paramDirection": "input", - "persistent": true - }, - "params.tagProps[4]": { - "paramDirection": "input", - "persistent": true - }, - "params.tagProps[5]": { - "paramDirection": "input", - "persistent": true - }, - "params.tagProps[6]": { - "paramDirection": "input", - "persistent": true - }, - "params.tagProps[7]": { - "paramDirection": "input", - "persistent": true - }, - "params.tagProps[8]": { - "paramDirection": "input", - "persistent": true - }, - "params.tagProps[9]": { - "paramDirection": "input", - "persistent": true - } - }, - "props": { - "defaultSize": { - "height": 40, - "width": 40 - }, - "styles": "value" - }, - "root": { - "children": [ - { - "meta": { - "name": "Icon" - }, - "position": { - "basis": "264px" - }, - "propConfig": { - "meta.visible": { - "binding": { - "config": { - "expression": "if({parent.custom.state}\u003d1||{parent.custom.covert_mode}||{parent.custom.isMatch}\u003e0,true,false)" - }, - "type": "expr" - } - }, - "props.style.classes": { - "binding": { - "config": { - "expression": "{parent.custom.ref_state}" - }, - "overlayOptOut": true, - "transforms": [ - { - "fallback": "EmergencyStop-Styles/EstopDeactivated", - "inputType": "scalar", - "mappings": [ - { - "input": 0, - "output": "EmergencyStop-Styles/EstopDeactivated" - }, - { - "input": 1, - "output": "EmergencyStop-Styles/EstopActivated" - }, - { - "input": 101, - "output": "EmergencyStop-Styles/EstopActivated101" - }, - { - "input": 100, - "output": "EmergencyStop-Styles/EstopDeactivated100" - } - ], - "outputType": "style-list", - "type": "map" - } - ], - "type": "expr" - } - } - }, - "props": { - "path": "material/lens" - }, - "type": "ia.display.icon" - } - ], - "custom": { - "status": "value" - }, - "events": { - "dom": { - "onDoubleClick": { - "config": { - "script": "\ttagProps \u003d self.view.params.tagProps\n\tsystem.perspective.openPopup(\"DevicePopUP\", \"PopUp-Views/Device/Information-Device\", params \u003d{\"tagProps\":tagProps},resizable \u003d 1)\n\t" - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "root" - }, - "propConfig": { - "custom.alarm_active": { - "binding": { - "config": { - "fallbackDelay": 2.5, - "mode": "indirect", - "references": { - "0": "{view.params.tagProps[0]}", - "1": "{view.params.tagProps[1]}" - }, - "tagPath": "{0}/Alarms/{1}.IsActive" - }, - "type": "tag" - } - }, - "custom.alarm_shelved": { - "binding": { - "config": { - "fallbackDelay": 2.5, - "mode": "indirect", - "references": { - "0": "{view.params.tagProps[0]}", - "1": "{view.params.tagProps[1]}" - }, - "tagPath": "{0}/Alarms/{1}.IsShelved" - }, - "type": "tag" - } - }, - "custom.covert_mode": { - "binding": { - "config": { - "path": "session.custom.covert" - }, - "type": "property" - } - }, - "custom.isMatch": { - "binding": { - "config": { - "expression": "if({session.custom.deviceSearchId} \u003d {this.custom.search_path},1,0)" - }, - "type": "expr" - }, - "onChange": { - "enabled": null, - "script": "\tif currentValue.value \u003d\u003d 1:\n\t\tself.print(self.custom.search_path)\n\t\tself.session.custom.searchId \u003d \"\"" - }, - "persistent": false - }, - "custom.ref_state": { - "binding": { - "config": { - "expression": "if({this.custom.state}\u003d1 \u0026\u0026 {this.custom.isMatch}\u003d1,101,\nif({this.custom.state}\u003d1 \u0026\u0026 {this.custom.isMatch}\u003d0,1,\nif({this.custom.state}\u003d0 \u0026\u0026 {this.custom.isMatch}\u003d1,100,0)))" - }, - "type": "expr" - } - }, - "custom.search_path": { - "binding": { - "config": { - "expression": "{view.params.tagProps[0]}+\"/\"+{view.params.tagProps[1]}" - }, - "type": "expr" - } - }, - "custom.state": { - "binding": { - "config": { - "expression": "if({this.custom.alarm_shelved}\u003dTrue,0,\nif({this.custom.alarm_active}\u003dTrue,1,0))" - }, - "type": "expr" - } - } - }, - "props": { - "direction": "column" - }, - "type": "ia.container.flex" - } -} \ No newline at end of file diff --git a/.resources/559bd86d64580045ff7f0aae93c6d1b5a118d3d453bd4219613baf6215d42bbc b/.resources/559bd86d64580045ff7f0aae93c6d1b5a118d3d453bd4219613baf6215d42bbc new file mode 100644 index 00000000..ad3f2821 --- /dev/null +++ b/.resources/559bd86d64580045ff7f0aae93c6d1b5a118d3d453bd4219613baf6215d42bbc @@ -0,0 +1,67 @@ +{ + "custom": {}, + "params": {}, + "props": { + "defaultSize": { + "height": 180, + "width": 240 + } + }, + "root": { + "children": [ + { + "meta": { + "name": "APF" + }, + "position": { + "basis": "300px", + "grow": 1 + }, + "props": { + "elements": [ + { + "id": "defs1", + "name": "defs1", + "type": "defs" + }, + { + "elements": [ + { + "d": "M 60.234529,3.0617884 V 171.28369 M 60.701449,3.0617884 V 171.28369 m 0,-167.7506919 V 170.81248 m 2.334587,2.82726 v 0.47121 m 0,-173.40521069 V 0.23452949 M 100.85637,94.005279 v -2.356047 m 1.40076,-2.356047 v 3.769674 m -2.80151,55.131551 v 0.94242 M 98.9887,170.81248 V 80.811412 m 0,90.472278 V 80.811412 m 0.46692,93.299538 v 3.29847 m 0,-29.21501 v -38.16799 m 0,-28.743808 v 27.801378 m 0,40.05284 v 28.27259 m 0,-9.89541 v 9.89541 m 0,-96.126808 v 9.4242 m 0,0.94242 V 167.0428 m 0.93383,-75.393568 V 167.0428 m 0,-85.760188 v 9.4242 m 0,76.807198 v 9.89541 m 0.46692,-85.760188 V 167.0428 m 0,-72.095095 v 68.325415 m 0.93384,-84.346554 v 0.94242 m 0,99.896484 v -0.94243 m 0.46692,-9.8954 v 0.94242 m 0,-80.576875 v -0.471213 m 0,6.125733 v 68.325415 m 0.46691,11.30904 v -0.94242 m 0,-89.058654 v -0.471214 m 0.93384,14.1363 v 61.728478 m 0.46691,-60.786065 v 60.786065 m 0,-61.257265 v 0.4712 m 0.46692,77.278415 v -1.88484 m 0,-1.41363 v -1.41363 m 0,-85.288975 v -1.413633 m 0,-1.41362 v -1.413633 m 0.93384,94.241961 v -1.88484 m 0,-1.41363 v -1.41363 m 0,-85.288975 v -1.413633 m 0,-1.41362 v -1.413633 m 1.40075,1.884833 v 0.471214 m 0,89.058654 v 0.94242 m -7.47068,-65.49817 v 0.94243 m 1.40075,54.18912 v 2.82726 m 1.40076,-1.88484 v 3.76968 m 35.48574,0 v -3.76968 m 1.40076,-0.94242 v 2.82726 m -6.06994,7.53936 v -0.94242 m 0,-89.058654 v -0.471214 m 1.86768,92.357128 v -1.88484 m 0,-1.41363 v -1.41363 m 0,-85.288975 v -1.413633 m 0,-1.41362 v -1.413633 m 0.4669,94.241961 v -1.88484 m 0,-1.41363 v -1.41363 m 0,-85.288975 v -1.413633 m 0,-1.41362 v -1.413633 m 0,77.749611 v -59.84364 m 0.46693,59.84364 V 99.188585 m 0.46693,60.786065 V 99.188585 m 0.93383,-15.078713 v 0.471214 m 0,89.058654 v 0.94242 m 0.46691,-11.30904 V 94.947705 m 0,73.979935 v 0.94242 m 0,-80.576875 v -0.471213 m 0.46692,-9.895406 v 0.94242 m 0,99.896484 v -0.94243 m -0.46692,-85.760181 v -3.769674 m 1.40076,4.712094 v -2.356047 m 1.40075,18.377188 v -0.94243 m -1.40075,54.18913 V 94.947705 m 0,72.095095 V 91.649232 m 0.46691,85.760188 v -9.89541 m 0,-76.807198 v -9.4242 m 0,85.760188 V 91.649232 m 0.93384,75.393568 V 91.649232 m 0,85.760188 v -9.89541 m 0,-76.807198 v -9.4242 m 0,96.126808 v -28.27259 m 0,-40.05284 V 81.282612 m 0,28.743808 v 38.16799 m 0.46692,29.21501 v -3.29847 m 0,-2.82726 V 80.811412 m 0,90.001068 V 80.811412 m -0.46692,68.325418 v -0.94242 m -2.33459,-69.267844 0.46692,-0.471207 m 1.86767,2.827253 0.46692,-0.4712 m -41.55568,0.4712 -0.46692,-0.4712 m 2.80151,-1.884846 v -0.471207 m 75.17375,95.184381 v 0.47121 m 0,-173.40521069 V 0.23452949 M 179.29856,170.81248 V 3.5329981 m 0,167.7506919 V 3.0617884 M 179.76547,171.28369 V 3.0617884 M 101.79021,179.76547 h 36.41958 m -36.41958,0 h 36.41958 m 0,0 h -36.41958 m 36.41958,-0.94243 h -36.41958 m 38.75417,-1.41362 h -0.93384 m -40.15492,0 h 0.93383 m 4.20226,-0.94242 h 0.93384 m 29.41582,0 h 0.4669 m 1.86769,-1.88484 h -1.40076 m -28.9489,0 h -1.40075 m -2.80151,0 h 1.40075 m 28.9489,0 h 1.40076 M 99.45562,174.11095 H 63.036036 m 113.927924,0 H 141.0113 M 63.036036,173.63974 H 96.65411 m 46.69177,0 h 33.61808 m -74.23992,0 h 1.40075 m 1.40076,0 h 1.40075 m 26.14739,0 h 1.40076 m 1.40075,0 h 1.40076 M 63.502956,173.16853 H 96.65411 m 46.69177,0 h 33.61808 m -41.55569,-1.41363 h -0.4669 m -29.41582,0 h -0.93384 m -43.890261,-0.47121 h -0.46692 m 119.064031,0 h 0.46691 m -77.50834,-1.41363 h 35.48574 m -2.3346,-69.73905 -2.80149,-2.827258 m 0.93383,-0.942427 2.80152,2.82726 M 96.65411,173.63974 h 0.46692 m 40.62184,-4.7121 h -35.48574 m -1.86768,-1.41363 h -0.93383 m 40.15492,0 h 0.93384 m -1.40075,-0.47121 h 0.46691 m -38.75417,0 h -0.46692 m 39.22109,0 h 0.93384 m -40.15493,0 h -0.93383 m 2.80151,-1.88484 h 35.48574 m -36.8865,-1.88484 h 38.28726 m -33.61808,-1.41362 h 28.9489 m -28.48198,0 h 27.54814 m 0,0 h 0.46692 m -1.40075,-64.555748 h -26.61431 m 27.54814,-0.471213 h -27.54814 m 27.54814,-0.471214 h -28.01506 m -4.66918,-1.41362 h 38.28726 m -1.40076,-1.884846 h -35.48574 m -1.40076,-1.413627 h -0.46692 m 38.75418,0 h 0.46691 m -39.22109,0 h -0.93383 m 40.15492,0 h 0.93384 m -0.93384,-0.94242 h 0.93384 m -40.15493,0 h -0.93383 m 2.80151,-1.413627 h 35.48574 m 0,-0.471213 h -35.48574 m 2.33458,-2.356047 h 0.93384 m 29.41582,0 h 0.4669 m 1.86769,-1.884839 h -1.40076 m -28.9489,0 h -1.40075 m -2.80151,0 h 1.40075 m 28.9489,0 h 1.40076 m -31.75041,-0.471214 h 1.40075 m 1.40076,0 h 1.40075 m 26.14739,0 h 1.40076 m 1.40075,0 h 1.40076 m -1.86769,-1.884833 h -0.4669 m -29.41582,0 h -0.93384 m 35.95267,-0.942427 h -0.93384 m -40.15492,0 h 0.93383 m 1.40076,-1.413626 h 36.41958 m -36.41958,-0.94242 h 36.41958 m 0,0 h -36.41958 m 36.8865,-0.471207 h -36.8865 m 36.8865,0 H 101.32329 M 60.701449,3.0617884 h -0.46692 m 119.064031,0 h 0.46691 M 176.96396,1.1769491 H 63.502956 M 176.96396,0.70573931 H 63.036036 M 176.96396,0.23452949 H 63.036036 M 60.701449,170.81248 c 0,0.47121 0,0.47121 0,0.47121 m 0.46692,-0.47121 c 0,1.41363 0.933834,2.35605 2.334587,2.35605 M 63.036036,0.70573931 c -0.466913,0 -0.466913,0 -0.466913,0 m 0.933833,0 c -1.400753,0 -2.334587,0.94241969 -2.334587,2.35604909 M 108.79397,173.63974 c 0,-1.88484 -1.86767,-3.76968 -3.73534,-3.76968 -2.33459,0 -3.73534,1.88484 -3.73534,3.76968 0,2.35605 1.40075,4.24089 3.73534,4.24089 1.86767,0 3.73534,-1.88484 3.73534,-4.24089 m -0.46692,0 c 0,-1.41363 -1.86766,-2.82726 -3.26842,-2.82726 -1.86767,0 -3.26842,1.41363 -3.26842,2.82726 0,1.88484 1.40075,3.29847 3.26842,3.29847 1.40076,0 3.26842,-1.41363 3.26842,-3.29847 M 98.9887,171.7549 c 0,0 0,0 0,-0.47121 m 2.33459,8.01057 c 0,0 0,0.47121 0.46692,0.47121 m -2.33459,-2.82726 c 0,0.47121 0,0.47121 0,0.47121 m -0.46692,-6.12573 c 0,0 0,0 0.46692,-0.47121 m 1.86767,8.48178 c 0,0 0,0 0.46692,0.47121 m -5.1361,-6.59694 c 1.40076,0 2.33459,-0.94242 2.33459,-2.35605 m 0.46692,6.12573 c 0,1.41363 0.93383,2.35605 2.33459,2.82726 m 0.93383,-5.65452 c 0,0.94241 0.93384,1.88484 1.86767,1.88484 m 2.33459,-2.82726 c 0,-0.94242 -0.46691,-1.41363 -1.40075,-1.41363 m 0,4.24089 c 0.93384,0 1.40075,-0.94243 1.40075,-1.88484 m -2.33459,-2.35605 c -0.93383,0 -1.86767,0.47121 -1.86767,1.41363 m -2.33459,3.76968 c -0.46692,0.47121 0,0.94242 0,1.41363 0.46692,0 0.93384,0.4712 1.40076,0.4712 m 3.73534,-4.71209 c 0,0 0,0 0,0.47121 m 0,-1.41363 c 0,0 0,0.47121 0,0.47121 m -1.40076,0 c 0.46692,0 0.46692,-0.47121 0.46692,-0.47121 m 0,1.41363 c 0,-0.47121 0,-0.47121 -0.46692,-0.47121 m 35.01884,-0.47121 c 0,-1.88484 -1.86767,-3.76968 -4.20226,-3.76968 -1.86768,0 -3.73534,1.88484 -3.73534,3.76968 0,2.35605 1.86766,4.24089 3.73534,4.24089 2.33459,0 4.20226,-1.88484 4.20226,-4.24089 m -0.93384,0 c 0,-1.41363 -1.40075,-2.82726 -3.26842,-2.82726 -1.40076,0 -2.80151,1.41363 -2.80151,2.82726 0,1.88484 1.40075,3.29847 2.80151,3.29847 1.86767,0 3.26842,-1.41363 3.26842,-3.29847 m -5.1361,0.47121 c 0,0.94241 0.46692,1.88484 1.40076,1.88484 m 2.80151,-2.82726 c 0,-0.94242 -0.93383,-1.41363 -1.86769,-1.41363 m 0,4.24089 c 0.93386,0 1.86769,-0.94243 1.86769,-1.88484 m -2.80151,-2.35605 c -0.93384,0 -1.40076,0.47121 -1.40076,1.41363 m 2.80151,0.94242 c -0.46693,0 -0.46693,0 -0.46693,0.47121 m 0,-1.41363 c 0,0 0,0.47121 0.46693,0.47121 m -1.40075,0 c 0,0 0.46692,-0.47121 0.46692,-0.47121 m 0,1.41363 c 0,-0.47121 -0.46692,-0.47121 -0.46692,-0.47121 M 82.64658,152.90651 c 0,-4.24089 -3.268424,-7.06815 -7.003764,-7.06815 -4.20226,0 -7.003767,2.82726 -7.003767,7.06815 0,3.76968 2.801507,7.06814 7.003767,7.06814 3.73534,0 7.003764,-3.29846 7.003764,-7.06814 m 0,-24.0317 c 0,-3.76968 -3.268424,-7.06815 -7.003764,-7.06815 -4.20226,0 -7.003767,3.29847 -7.003767,7.06815 0,4.24088 2.801507,7.53935 7.003767,7.53935 3.73534,0 7.003764,-3.29847 7.003764,-7.53935 m 22.41205,32.51347 c 0,0 0,0 0,0 m -0.93384,-1.41363 c 0,0 0,0 0,0.47121 m 0.93384,0.94242 c 0,0 0,0 0,0 m -0.93384,-1.41363 c 0,0 0,0 0,0 m 0.93384,1.41363 c 0,0 0,0 0,0 m -0.93384,-0.94242 c 0,0 0,0 0,0 m 0.93384,0.94242 c 0.46692,0 0.46692,0 0.46692,0 m -1.40076,-1.41363 c 0,0 0,0 0,0 m 0.93384,0.94243 c 0,0 0,0 0,0.4712 m -0.93384,-0.94242 c 0,0 0,0 0,0 m 0,-0.47121 c 0,0 0,0 0,0 m 1.40076,1.41363 c 0,0 0,0 0,0 m -0.93384,0 c 0,0 0,0 0.46692,0 m -0.93384,-0.94242 c 0,0.47122 0,0.47122 0,0.47122 m 0,-1.41363 c 0,1.41363 0.46692,2.35605 1.86768,2.35605 m -2.33459,-2.35605 c 0,1.41363 0.93383,2.35605 1.86767,2.35605 m -1.40076,-1.88485 c 0,0 0,0 0,0 m 1.40076,1.41363 c 0,0 0,0 0,0 m -0.93384,-0.4712 c 0,0 0,0 0.46692,0 m -0.46692,-0.47122 c 0,0.47122 0,0.47122 0,0.47122 m -0.46692,0 c 0,0 0,0 0.46692,0 m 0,0 c 0,0 0,0 0,0 m -0.46692,-1.41363 c 0,0 0,0.4712 0,0.4712 m 1.40076,1.41363 c 0,0 0.46692,0 0.46692,0 m 27.54814,0.47122 c 1.40076,0 2.33459,-0.94242 2.33459,-2.35605 m -1.40075,2.35605 c 0.93382,0 1.86768,-0.94242 1.86768,-2.35605 m 4.66917,11.78024 c 0,0.47121 0,0.47121 0,0.47121 m -2.80151,8.01057 c 0.46692,0 0.46692,-0.47121 0.46692,-0.47121 m 1.86767,-1.88484 c 0,0 0,0 0.46692,-0.47121 m 35.95266,-3.29847 c 0.46692,0 0.46692,-0.47121 0.46692,-0.47121 m -36.41958,-2.35605 c 0,0.47121 0,0.47121 0,0.47121 m -2.80151,8.48178 c 0.46692,-0.47121 0.46692,-0.47121 0.46692,-0.47121 m 38.28725,-6.12573 c 1.40075,0 2.3346,-0.94242 2.3346,-2.35605 m -38.28726,0 c 0,1.41363 0.93383,2.35605 2.33458,2.35605 m -5.13609,6.59694 c 1.40075,-0.47121 2.33459,-1.41363 2.80151,-2.82726 m -2.80151,1.88483 c 0.46692,0 0.93384,-0.4712 1.40075,-0.4712 0,-0.47121 0.46693,-0.94242 0.46693,-1.41363 m 31.75039,-24.0317 c 0,-4.24089 -3.26841,-7.06815 -7.47067,-7.06815 -3.73535,0 -7.00377,2.82726 -7.00377,7.06815 0,3.76968 3.26842,7.06814 7.00377,7.06814 4.20226,0 7.47067,-3.29846 7.47067,-7.06814 m -0.93383,-24.0317 c 0,-3.29847 -2.80151,-6.12573 -6.53684,-6.12573 -3.26843,0 -6.06994,2.82726 -6.06994,6.12573 0,3.76967 2.80151,6.59694 6.06994,6.59694 3.73533,0 6.53684,-2.82727 6.53684,-6.59694 m -88.24745,-23.5605 c 0,-4.24088 -3.268424,-7.068138 -7.003764,-7.068138 -4.20226,0 -7.003767,2.827258 -7.003767,7.068138 0,3.76968 2.801507,7.06816 7.003767,7.06816 3.73534,0 7.003764,-3.29848 7.003764,-7.06816 m 0,-24.031698 c 0,-4.24088 -3.268424,-7.06814 -7.003764,-7.06814 -4.20226,0 -7.003767,2.82726 -7.003767,7.06814 0,3.76968 2.801507,7.068153 7.003767,7.068153 3.73534,0 7.003764,-3.298473 7.003764,-7.068153 m 18.67671,-3.298466 c -1.40076,0 -2.33459,0.94242 -2.33459,2.356053 m 2.80151,-1.88484 c -1.40076,0 -2.33459,0.94242 -2.33459,2.356053 m 2.33459,-1.413633 c -0.46692,0 -0.93384,0 -1.40076,0.471207 0,0.471213 -0.46692,0.471213 0,0.942426 M 82.64658,57.250917 c 0,-3.769679 -3.268424,-7.068148 -7.003764,-7.068148 -4.20226,0 -7.003767,3.298469 -7.003767,7.068148 0,4.240888 2.801507,7.539357 7.003767,7.539357 3.73534,0 7.003764,-3.298469 7.003764,-7.539357 m 56.49705,26.858955 c 0,-1.884833 -1.86767,-3.769673 -4.20226,-3.769673 -1.86768,0 -3.73534,1.88484 -3.73534,3.769673 0,2.356053 1.86766,4.240893 3.73534,4.240893 2.33459,0 4.20226,-1.88484 4.20226,-4.240893 m -30.34966,0 c 0,-1.884833 -1.86767,-3.769673 -3.73534,-3.769673 -2.33459,0 -3.73534,1.88484 -3.73534,3.769673 0,2.356053 1.40075,4.240893 3.73534,4.240893 1.86767,0 3.73534,-1.88484 3.73534,-4.240893 m 29.41582,0 c 0,-1.413626 -1.40075,-2.82726 -3.26842,-2.82726 -1.40076,0 -2.80151,1.413634 -2.80151,2.82726 0,1.884847 1.40075,3.298473 2.80151,3.298473 1.86767,0 3.26842,-1.413626 3.26842,-3.298473 m -29.88274,0 c 0,-1.413626 -1.86766,-2.82726 -3.26842,-2.82726 -1.86767,0 -3.26842,1.413634 -3.26842,2.82726 0,1.884847 1.40075,3.298473 3.26842,3.298473 1.40076,0 3.26842,-1.413626 3.26842,-3.298473 m 24.74664,0.471214 c 0,0.942419 0.46692,1.884839 1.40076,1.884839 m 2.80151,-2.827253 c 0,-0.942426 -0.93383,-1.413633 -1.86769,-1.413633 m 0,4.240886 c 0.93386,0 1.86769,-0.94242 1.86769,-1.884839 m -2.80151,-2.356047 c -0.93384,0 -1.40076,0.471207 -1.40076,1.413633 m -30.34965,0.942414 c 0,0.942419 0.93384,1.884839 1.86767,1.884839 m 2.33459,-2.827253 c 0,-0.942426 -0.46691,-1.413633 -1.40075,-1.413633 m 0,4.240886 c 0.93384,0 1.40075,-0.94242 1.40075,-1.884839 m -2.33459,-2.356047 c -0.93383,0 -1.86767,0.471207 -1.86767,1.413633 m 3.26843,13.193867 c -1.40076,0 -1.86768,0.94242 -1.86768,1.884846 m 1.40076,-2.35606 c -0.93384,0 -1.86767,0.471214 -1.86767,1.884847 M 135.8752,84.581086 c -0.46693,0 -0.46693,0 -0.46693,0.471206 m 0,-1.884833 c 0,0.471213 0,0.471213 0.46693,0.471213 m -1.40075,0 c 0,0 0.46692,0 0.46692,-0.471213 m 0,1.884833 c 0,-0.471206 -0.46692,-0.471206 -0.46692,-0.471206 m -28.9489,0 c 0,0 0,0 0,0.471206 m 0,-1.884833 c 0,0.471213 0,0.471213 0,0.471213 m -1.40076,0 c 0.46692,0 0.46692,0 0.46692,-0.471213 m 0,1.884833 c 0,-0.471206 0,-0.471206 -0.46692,-0.471206 M 82.64658,33.690426 c 0,-4.240888 -3.268424,-7.068147 -7.003764,-7.068147 -4.20226,0 -7.003767,2.827259 -7.003767,7.068147 0,3.769678 2.801507,7.068147 7.003767,7.068147 3.73534,0 7.003764,-3.298469 7.003764,-7.068147 m -0.46692,0 c 0,-3.769678 -2.801504,-6.596938 -6.536844,-6.596938 -3.73534,0 -6.536847,2.82726 -6.536847,6.596938 0,3.769678 2.801507,6.596937 6.536847,6.596937 3.73534,0 6.536844,-2.827259 6.536844,-6.596937 m 59.29855,46.649773 c 0,-1.413633 -1.40074,-2.356053 -2.8015,-2.356053 m 2.33459,2.827266 c -0.46692,-1.413633 -1.40076,-2.356053 -2.80151,-2.356053 m 1.86768,2.356053 c 0,-0.471213 -0.46693,-0.471213 -0.46693,-0.942426 -0.46691,-0.471207 -0.93383,-0.471207 -1.40075,-0.471207 m 33.61807,25.916531 c 0,-4.24088 -3.26841,-7.068138 -7.47067,-7.068138 -3.73535,0 -7.00377,2.827258 -7.00377,7.068138 0,3.76968 3.26842,7.06816 7.00377,7.06816 4.20226,0 7.47067,-3.29848 7.47067,-7.06816 m 0,-24.031698 c 0,-4.24088 -3.26841,-7.06814 -7.47067,-7.06814 -3.73535,0 -7.00377,2.82726 -7.00377,7.06814 0,3.76968 3.26842,7.068153 7.00377,7.068153 4.20226,0 7.47067,-3.298473 7.47067,-7.068153 m 0,-24.031695 c 0,-3.769679 -3.26841,-7.068148 -7.47067,-7.068148 -3.73535,0 -7.00377,3.298469 -7.00377,7.068148 0,4.240888 3.26842,7.539357 7.00377,7.539357 4.20226,0 7.47067,-3.298469 7.47067,-7.539357 m 0,-23.560491 c 0,-4.240888 -3.26841,-7.068147 -7.47067,-7.068147 -3.73535,0 -7.00377,2.827259 -7.00377,7.068147 0,3.769678 3.26842,7.068147 7.00377,7.068147 4.20226,0 7.47067,-3.298469 7.47067,-7.068147 m 7.93761,-30.6286376 c 0,-0.4712099 -0.46691,-0.4712099 -0.46691,-0.4712099 m 0,0.4712099 c 0,-1.4136294 -0.93385,-2.35604909 -2.3346,-2.35604909 M 134.00753,161.8595 l 0.93384,-0.47122 0.4669,-0.4712 0.46693,-0.47122 v -0.47121 M 105.99247,96.832539 h -0.93384 l -0.46692,0.471213 -0.46692,0.471207 v 0.942426 m 35.01884,-4.712106 v 0.942426 m 0,68.325415 v 0.94242 m -38.28726,0 v -0.94242 m 0,-68.325415 v -0.942426 m 0,-2.356047 v -1.413633 l 0.46692,-0.4712 0.93384,-0.471214 m -1.86768,1.413627 0.46692,-1.413627 0.46692,-0.471213 h 0.93384 m -1.86768,1.88484 v 0.94242 m 1.86768,3.298473 v -1.884846 m 35.48574,-4.240887 h 0.93384 l 0.46692,0.471213 0.46691,1.413627 m -1.86767,-1.413627 0.93384,0.471214 0.46692,0.4712 v 1.413633 m 0.46691,0 v -0.94242 m -1.86767,2.356047 v 1.884846 m 1.40076,72.095095 v 1.41364 l -0.46692,0.4712 h -0.93384 m 1.86767,-1.41363 -0.46691,1.41363 -0.46692,0.47121 -0.93384,0.47121 m 1.86767,-2.35605 v -0.47121 m -1.86767,-3.76968 v 1.88484 m -35.48574,4.7121 -0.93384,-0.47121 -0.46692,-0.47121 -0.46692,-1.41363 m 1.86768,1.41363 h -0.93384 l -0.46692,-0.4712 v -1.41364 m -0.46692,0 v 0.47121 m 1.86768,-2.35605 v -1.88484 m -1.40076,0.94242 0.46692,0.47122 0.93384,0.4712 m 35.48574,0 0.93384,-0.4712 0.46692,-0.47122 m 0,-70.210261 -0.46692,-0.471207 -0.93384,-0.471213 m -35.48574,0 -0.93384,0.471213 -0.46692,0.471207 m -1.40075,-3.298467 v 0.94242 m 0,75.393568 v 0.47121 m 41.08876,0 v -0.47121 m 0,-75.393568 v -0.94242 M 99.45562,172.69732 v 1.41363 m -2.33459,-0.47121 1.40075,-0.47121 m 44.35719,0.47121 -0.93384,-0.47121 m -0.93383,0.94242 v -1.41363 m -42.0226,-1.41363 0.46692,1.41363 m 77.50834,1.41363 h 0.93383 l 0.93385,-0.94242 0.93383,-0.94242 v -0.94242 m 0,-168.2219016 V 2.1193688 l -0.93383,-0.9424197 -0.93385,-0.47120979 -0.93383,-0.47120982 m -113.927924,0 -0.933833,0.47120982 -0.933834,0.47120979 -0.93384,0.9424197 v 0.9424196 m 0,168.2219016 v 0.94242 l 0.93384,0.94242 0.933834,0.94242 h 0.933833 m 77.508344,3.76968 -0.46691,1.41363 -1.40076,0.47121 m 0,0 1.40076,-0.47121 0.46691,-0.94242 m -41.08876,-0.47121 0.46691,1.41363 1.40076,0.47121 m -1.86767,-1.41363 0.93383,0.94242 0.93384,0.47121 M 62.569123,0.70573931 61.635283,1.1769491 61.168369,1.648159 60.701449,2.1193688 V 3.0617884 M 179.29856,2.5905785 V 2.1193688 l -0.93385,-0.9424197 -0.46692,-0.47120979 h -0.93383 M 60.701449,171.7549 v 0.47121 l 0.933834,0.94242 0.46692,0.47121 h 0.933833 m 114.394844,0 0.93383,-0.47121 0.46693,-0.47121 0.46692,-0.47121 v -0.94242 m -80.77678,1.88484 0.46692,-0.94242 m 42.0226,0.47121 v -1.41363 m 0.93383,1.88484 -0.93383,-0.94242 m 0,-91.414698 c -0.46692,-1.413633 -1.40076,-2.356053 -2.80151,-2.356053 m -36.41958,0 c -1.40076,0 -2.33459,0.94242 -2.33459,2.356053 m 0,96.126798 c 0,1.41363 0.93383,2.35605 2.33459,2.35605 m 36.41958,0 c 1.40075,0 2.33459,-0.94242 2.80151,-2.35605 m -41.55568,-67.383 c 0,0 0,0.47121 0,0.47121 m 0,-0.94243 c 0,0 0,-0.4712 0,-0.4712 m 0,40.52404 c 0,0 0,-0.47121 0,-0.47121 m 0,-0.47121 c 0,0 0,0 0,0 m 41.08876,0 c 0,0 0.46692,0 0.46692,0 m 0,0.47121 c 0,0 0,0.47121 0,0.47121 m 0,-40.52404 c 0,0 0,0.4712 0,0.4712 m 0,0.94243 c 0,0 -0.46692,-0.47121 -0.46692,-0.47121 m 0.46692,-28.743798 c 0,-1.413633 -0.93383,-2.356053 -2.33459,-2.356053 m -39.22109,1.88484 c 0,0 0,0 0,0.471213 m 0,-0.942426 c 0,0 0,0 0,0.471213 m 1.40075,-1.88484 c -0.93384,0 -1.40075,0.471207 -1.40075,1.413627 m 1.86767,-1.413627 c -0.46692,0 -0.46692,0 -0.46692,0 m 0.93384,0 c -0.46692,0 -0.46692,0 -0.46692,0 M 60.701449,170.81248 c 0,1.41363 0.933834,2.35605 2.334587,2.35605 m 0,-172.46279069 c -1.400753,0 -2.334587,0.94241969 -2.334587,2.35604909 m 119.064021,0 C 179.29856,1.648159 178.36471,0.70573931 176.96396,0.70573931 m 0,172.46279069 c 1.40075,0 2.3346,-0.94242 2.80151,-2.35605 m -38.75417,0 c 0,1.41363 0.93383,2.35605 2.33458,2.35605 M 116.26466,104.3719 v 2.35605 m -8.40452,7.53935 v -1.88483 m 0.46691,0.4712 v 0.47122 m 0,0.47121 v 0.4712 m 1.40076,0 v -1.88483 m 0.46692,0.94242 v 0.94241 m 0.93383,0 v -0.94241 m 0.46692,-0.94242 v 1.88483 m 2.80151,0 v -1.88483 m 0.46692,0.4712 v 0.47122 m 0,0.47121 v 0.4712 m 0.93383,-1.41363 v -0.4712 m 0.46692,0 v 0.4712 m 0,0 v -0.4712 m 0,0 v 0.4712 m 0.93383,1.41363 v -1.88483 m 0.46692,0.4712 v 0.47122 m 0,0.47121 v 0.4712 m 0.46692,-8.48177 v -0.47122 m 1.40075,0 v -0.4712 m -13.07369,8.95299 v 0.4712 m -0.46692,0 0.46692,-1.88483 m 0.46691,0 0.93384,1.88483 m 8.40452,-1.88483 v 0.4712 m -6.06993,-0.4712 0.46692,1.41363 m 0,0.4712 -0.46692,-1.41363 m -2.80151,1.41363 -0.46692,-0.4712 M 120,104.84311 v 0.4712 m 0.46692,0.94243 v -2.35605 m 0.46691,0 v 2.35605 m 0.93384,-1.88484 v -0.47121 m 0,1.88484 v -0.47122 m 0.46692,-1.41362 v 0.47121 m 0.46692,0.94241 v 0.47122 m 0.46691,8.48177 v -1.88483 m 0.46692,-5.65452 v -2.35605 m 0,8.48177 v 0.47122 m 0,0.47121 v 0.4712 m 0.93383,-0.94241 v 0.47121 m 0,-1.41363 v 0.4712 m 0.46692,1.41363 v -1.88483 m 0.46692,0.4712 v 0.47122 m 0,0.47121 v 0.4712 m 0.93384,0 v -1.88483 m 0.46692,0.4712 v 0.47122 m 0,0.47121 v 0.4712 m 0.93383,-0.94241 v 0.47121 m 0,-1.41363 v 0.4712 m 0.46692,1.41363 v -1.88483 m 0,0 v 1.88483 m 1.40075,0 v -1.88483 m 0.46692,0.4712 v 0.47122 m 0,0.47121 v 0.4712 m 0.46692,-0.94241 v 0.47121 m 0,-1.41363 v 0.4712 m -7.9376,0.94243 v -1.41363 m 0.46691,0 -0.46691,1.88483 m -0.93384,-0.94241 -0.46692,0.94241 m 0,-0.4712 0.46692,-1.41363 m -11.20602,1.41363 0.46691,-1.41363 m 0.46692,0.4712 -0.93383,1.41363 m 5.60301,-1.41363 v -0.4712 m 1.86767,-8.48178 -0.93384,2.35605 m -8.40452,8.01056 -0.46692,-0.4712 m 7.00377,0.4712 -0.46691,-0.4712 m 11.20602,0.4712 -0.46692,-0.4712 m -7.00376,-10.36662 0.93383,2.82726 m -0.93383,-0.94243 -0.46692,-1.41362 m 4.20226,8.48178 v 1.41363 m 0,0.4712 -0.46692,-0.94241 m -0.93384,0.94241 -0.46691,-1.88483 m 0.46691,0 0.46692,1.41363 m -4.66918,-6.12573 1.40076,1.41362 m 14.00753,4.2409 0.46692,0.94241 m -0.93384,-0.94241 -0.46691,-0.94242 m 0.93383,1.88483 -0.46692,-0.4712 m 0,-1.41363 v 0.94242 m 0,0 0.46692,-0.94242 m -0.46692,1.41363 -0.46691,0.4712 m 1.40075,-1.88483 -0.46692,0.94242 m -1.40075,0.94241 0.93383,-0.94241 m -13.54061,-11.30904 -1.40076,1.41363 m 5.1361,5.65451 1.40075,-1.41362 m 0,-4.24089 -1.40075,-1.41363 m 10.73911,12.25145 h -0.46692 m -0.93383,0 h -0.46692 m 0,0 h -0.93384 m -0.46692,0 h -0.93383 m -1.40075,0 h -0.46692 m 0,0 h -0.46692 m -0.46692,0 h -0.46692 m -0.46692,0 h -1.40075 m -0.46691,0 h -0.46692 m -0.93384,0 h -0.46692 m -3.26842,0 h -0.46692 m -1.40075,0 h -0.46692 m -0.46691,0 h -0.46692 m -2.80151,0 h -0.46692 m -0.93383,0 h -0.46692 m -0.46692,0 h -0.46692 m -0.93383,0 h -0.46692 m 0.93383,0 h -0.46691 m -1.40075,0 h -0.46692 m 17.74287,0 h 0.93383 m 3.73535,0 h 0.93383 m 0.93384,0 h 0.46692 m -23.81281,-0.4712 h -0.46691 m 21.47821,0 h -0.93383 m -20.54438,0 h 0.46691 m 23.81281,0 h -0.46692 m -5.60302,0 h -0.93383 m 3.26843,-0.47121 h 0.93383 m -4.20226,0 h 0.93383 m 5.60302,0 h 0.46692 m 0,-0.47122 h -0.46692 m -2.33459,0 h -0.93383 m -2.3346,0 h -0.93383 m -7.47068,0 h -0.46692 m 0,-0.4712 h 0.46692 m -8.40452,0 h 0.46691 m 1.40076,0 h 0.46692 m 0.93383,0 h 0.46692 m 2.80151,0 h 0.46692 m 2.33458,0 h 0.46692 m 2.80151,0 h 0.46691 m 0.93384,0 h 0.46692 m 0.46692,0 h 0.46691 m 0,0 h 1.40075 m 0.46692,0 h 0.46692 m 0.93384,0 h 1.40075 m 1.86767,0 h 0.93384 m 0.46692,0 h 0.46691 m 0.46692,0 h 0.46692 m -26.14739,0 h 0.46691 m 12.13987,-3.29848 h 1.86766 m 2.33459,-1.88483 h -6.53685 m 0,0 h 6.53685 m -0.93383,-0.94242 h -0.93384 m 0,0 H 120 m 0,0 h -0.93383 m -1.86768,0 h -0.46692 m 4.20226,0 h 0.93384 m -3.26842,-0.47121 h -0.46692 m 0,-0.47122 h 0.46692 m 1.40075,0 h -0.46692 m 2.33459,-0.4712 h -0.46692 m -1.86767,0 H 120 m 1.40075,0 h 0.46692 m 0,-0.94242 h -0.93384 m -2.8015,-0.47121 h 0.46692 m 1.40075,0 h 1.86767 m -0.93384,-1.88484 h -1.86766 m 4.66917,2.82726 -0.46692,-0.94242 m 0,3.76968 h 0.46692 v -0.47121 m -7.47068,0 v 0.47121 h 0.46691 m 0,-3.76968 -0.46691,0.94242 m 2.80151,-2.82726 -0.93384,0.47121 m 3.73534,0 -0.93384,-0.47121 m -1.40075,4.7121 H 120 m -13.0737,7.53936 v -0.94243 m 0,0 -0.46691,0.94243 m 1.86766,-0.47121 h 0.46692 l -0.46692,-0.47122 m 0,-0.4712 0.46692,0.4712 0.46692,0.47122 m 0,0 -0.46692,0.47121 m 0,0 0.46692,0.4712 m 0.93384,-1.41363 v 0.47122 m 0.93383,0 0.46692,-0.47122 m 0.93383,0.47122 v 0.47121 l 0.46692,0.4712 0.46692,-0.4712 v -0.47121 m 0.46692,0 v 0.94241 h -0.93384 -0.46692 l -0.46691,-0.94241 m 2.80151,0 h 0.46691 l -0.46691,-0.47122 m 0,-0.4712 0.46691,0.4712 0.46692,0.47122 m 0,0 -0.46692,0.47121 m 0,0 0.46692,0.4712 m 1.86767,-0.94241 h 0.46692 m 0,0 -0.46692,-0.47122 m 0.93384,0.47122 -0.46692,0.47121 h -0.46692 m 0,-1.41363 0.46692,0.4712 0.46692,0.47122 m 0.46692,0 v 0.47121 l 0.46691,0.4712 L 120,113.7961 v -0.47121 m 0.46692,0 v 0.94241 h -0.93384 -0.46691 l -0.46692,-0.94241 m 3.26842,0 v -0.47122 m 0,0 v 0.47122 m -0.46692,0.47121 v 0.4712 m 0,0 v -0.4712 m 0.93384,0 v 0.4712 m 0,0 0.46692,-0.4712 m 2.8015,-0.47121 h 0.46692 l -0.46692,-0.47122 m 0,-0.4712 0.46692,0.4712 v 0.47122 m 0,0 v 0.47121 m 0,0 0.46692,0.4712 m 6.06993,-1.41363 h 0.46691 m -0.46691,0 0.46691,-0.4712 0.46692,0.4712 m -16.80904,-5.65451 v 0.47121 m 1.40076,1.41362 h 0.93384 m 1.86766,0 h 0.93384 m 1.40075,-1.41362 v -0.47121 m -1.40075,-2.35605 v -0.47121 m 0,1.88484 v -0.47121 m 0,-0.47122 v -0.4712 m 0.93384,0.94242 -0.46692,0.47121 m -2.33459,0 h 0.46692 m 0,-2.35605 L 120,103.42948 m 1.86767,0 h 0.46692 v 0.47121 m 0,0.47121 v 0.47121 m 0,0 0.46692,0.4712 m -3.73534,0.94243 -0.46692,-0.47121 m -1.86768,0.47121 h 0.46692 m 0,0 0.93384,-2.82726 m -4.66918,9.89541 v -0.47122 h -0.46692 -0.46692 v 0.47122 m -0.46691,0 0.46691,-0.47122 0.46692,-0.4712 0.93384,0.4712 v 0.47122 m 6.06993,0 v -0.47122 h -0.46692 -0.46691 v 0.47122 m -0.46692,0 0.46692,-0.47122 0.46691,-0.4712 0.93384,0.4712 v 0.47122 m 12.60677,-0.47122 v -0.4712 l -0.46691,0.4712 m 0.93383,0 -0.46692,0.47122 -0.46691,-0.47122 m -56.963964,47.59219 -1.400754,-0.47121 -1.400753,-0.4712 -1.400753,-0.47121 -0.933833,-0.94242 -0.933834,-0.94242 -0.46692,-1.41363 -0.46692,-0.94243 v -1.88483 -1.41363 l 0.46692,-0.94242 0.46692,-1.41363 0.933834,-0.94242 0.933833,-0.94242 1.400753,-0.94242 h 1.400753 l 1.400754,-0.47121 1.400753,0.47121 h 1.400753 l 0.933834,0.94242 1.40075,0.94242 0.46692,0.94242 0.933834,1.41363 0.46692,0.94242 v 1.41363 1.88483 l -0.46692,0.94243 -0.933834,1.41363 -0.46692,0.94242 -1.40075,0.94242 -0.933834,0.47121 -1.400753,0.4712 -1.400753,0.47121 m 0,-24.0317 h -1.400754 l -1.400753,-0.47121 -1.400753,-0.94241 -0.933833,-0.47122 -0.933834,-1.41363 -0.46692,-0.94241 -0.46692,-1.41364 v -1.41362 -1.41363 l 0.46692,-1.41363 0.46692,-1.41363 0.933834,-0.94242 0.933833,-0.94242 1.400753,-0.47121 1.400753,-0.47121 h 1.400754 1.400753 l 1.400753,0.47121 0.933834,0.47121 1.40075,0.94242 0.46692,0.94242 0.933834,1.41363 0.46692,1.41363 v 1.41363 1.41362 l -0.46692,1.41364 -0.933834,0.94241 -0.46692,1.41363 -1.40075,0.47122 -0.933834,0.94241 -1.400753,0.47121 h -1.400753 m 0,-24.03169 h -1.400754 l -1.400753,-0.47122 -1.400753,-0.4712 -0.933833,-0.94242 -0.933834,-0.94242 -0.46692,-1.41363 -0.46692,-1.41363 v -1.41364 -1.41362 l 0.46692,-1.41363 0.46692,-0.94242 0.933834,-1.41363 0.933833,-0.942425 1.400753,-0.4712 1.400753,-0.471213 h 1.400754 1.400753 l 1.400753,0.471213 0.933834,0.4712 1.40075,0.942425 0.46692,1.41363 0.933834,0.94242 0.46692,1.41363 v 1.41362 1.41364 l -0.46692,1.41363 -0.933834,1.41363 -0.46692,0.94242 -1.40075,0.94242 -0.933834,0.4712 -1.400753,0.47122 h -1.400753 m 0,-23.560498 -1.400754,-0.471207 -1.400753,-0.471213 -1.400753,-0.471207 -0.933833,-0.94242 -0.933834,-0.94242 -0.46692,-1.413633 -0.46692,-1.413626 v -1.413634 -1.413626 l 0.46692,-0.94242 0.46692,-1.413627 0.933834,-0.94242 0.933833,-0.94242 1.400753,-0.942413 h 1.400753 l 1.400754,-0.471214 1.400753,0.471214 h 1.400753 l 0.933834,0.942413 1.40075,0.94242 0.46692,0.94242 0.933834,1.413627 0.46692,0.94242 v 1.413626 1.413634 l -0.46692,1.413626 -0.933834,1.413633 -0.46692,0.94242 -1.40075,0.94242 -0.933834,0.471207 -1.400753,0.471213 -1.400753,0.471207 m 0,-24.031698 h -1.400754 l -1.400753,-0.47121 -1.400753,-0.94242 -0.933833,-0.47121 -0.933834,-1.413629 -0.46692,-0.94242 -0.46692,-1.413629 v -1.413629 -1.41363 l 0.46692,-1.413629 0.46692,-1.41363 0.933834,-0.942419 0.933833,-0.94242 1.400753,-0.47121 1.400753,-0.47121 h 1.400754 1.400753 l 1.400753,0.47121 0.933834,0.47121 1.40075,0.94242 0.46692,0.942419 0.933834,1.41363 0.46692,1.413629 v 1.41363 1.413629 l -0.46692,1.413629 -0.933834,0.94242 -0.46692,1.413629 -1.40075,0.47121 -0.933834,0.94242 -1.400753,0.47121 h -1.400753 m 0,-24.031701 h -1.400754 l -1.400753,-0.47121 -1.400753,-0.47121 -0.933833,-0.942419 -0.933834,-0.942419 -0.46692,-1.41363 -0.46692,-1.413629 v -1.41363 -1.41363 l 0.46692,-1.413628 0.46692,-0.94242 0.933834,-1.41363 0.933833,-0.942419 1.400753,-0.471211 1.400753,-0.471209 h 1.400754 1.400753 l 1.400753,0.471209 0.933834,0.471211 1.40075,0.942419 0.46692,1.41363 0.933834,0.94242 0.46692,1.413628 v 1.41363 1.41363 l -0.46692,1.413629 -0.933834,1.41363 -0.46692,0.942419 -1.40075,0.942419 -0.933834,0.47121 -1.400753,0.47121 h -1.400753 m 88.714374,119.687287 -1.40076,-0.47121 -1.40075,-0.4712 -0.93384,-0.47121 -0.93384,-0.94242 -0.93383,-0.94242 -0.93384,-1.41363 -0.46691,-0.94243 v -1.88483 -1.41363 l 0.46691,-0.94242 0.93384,-1.41363 0.93383,-0.94242 0.93384,-0.94242 0.93384,-0.94242 h 1.40075 l 1.40076,-0.47121 1.40074,0.47121 h 1.40076 l 1.40076,0.94242 0.93383,0.94242 0.93383,0.94242 0.46692,1.41363 0.46692,0.94242 0.46691,1.41363 -0.46691,1.88483 -0.46692,0.94243 -0.46692,1.41363 -0.93383,0.94242 -0.93383,0.94242 -1.40076,0.47121 -1.40076,0.4712 -1.40074,0.47121 m -6.06994,-31.09984 v -1.41363 l 0.46692,-0.94243 1.40075,-2.35604 1.86767,-0.94242 1.40076,-0.47121 h 0.93384 1.40074 l 0.93385,0.47121 2.33459,0.94242 0.93382,2.35604 0.46692,0.94243 v 1.41363 0.94242 l -0.46692,1.41363 -0.93382,1.88483 -2.33459,1.41364 -0.93385,0.47121 h -1.40074 -0.93384 l -1.40076,-0.47121 -1.86767,-1.41364 -1.40075,-1.88483 -0.46692,-1.41363 v -0.94242 m 6.06994,-16.96355 h -1.40076 l -1.40075,-0.47122 -0.93384,-0.4712 -0.93384,-0.94242 -0.93383,-0.94242 -0.93384,-1.41363 -0.46691,-1.41363 v -1.41364 -1.41362 l 0.46691,-1.41363 0.93384,-0.94242 0.93383,-1.41363 0.93384,-0.942425 0.93384,-0.4712 1.40075,-0.471213 h 1.40076 1.40074 l 1.40076,0.471213 1.40076,0.4712 0.93383,0.942425 0.93383,1.41363 0.46692,0.94242 0.46692,1.41363 0.46691,1.41362 -0.46691,1.41364 -0.46692,1.41363 -0.46692,1.41363 -0.93383,0.94242 -0.93383,0.94242 -1.40076,0.4712 -1.40076,0.47122 h -1.40074 m 0,-23.560498 -1.40076,-0.471207 -1.40075,-0.471213 -0.93384,-0.471207 -0.93384,-0.94242 -0.93383,-0.94242 -0.93384,-1.413633 -0.46691,-1.413626 v -1.413634 -1.413626 l 0.46691,-0.94242 0.93384,-1.413627 0.93383,-0.94242 0.93384,-0.94242 0.93384,-0.942413 h 1.40075 l 1.40076,-0.471214 1.40074,0.471214 h 1.40076 l 1.40076,0.942413 0.93383,0.94242 0.93383,0.94242 0.46692,1.413627 0.46692,0.94242 0.46691,1.413626 -0.46691,1.413634 -0.46692,1.413626 -0.46692,1.413633 -0.93383,0.94242 -0.93383,0.94242 -1.40076,0.471207 -1.40076,0.471213 -1.40074,0.471207 m 0,-24.031698 h -1.40076 l -1.40075,-0.47121 -0.93384,-0.94242 -0.93384,-0.47121 -0.93383,-1.413629 -0.93384,-0.94242 -0.46691,-1.413629 v -1.413629 -1.41363 l 0.46691,-1.413629 0.93384,-1.41363 0.93383,-0.942419 0.93384,-0.94242 0.93384,-0.47121 1.40075,-0.47121 h 1.40076 1.40074 l 1.40076,0.47121 1.40076,0.47121 0.93383,0.94242 0.93383,0.942419 0.46692,1.41363 0.46692,1.413629 0.46691,1.41363 -0.46691,1.413629 -0.46692,1.413629 -0.46692,0.94242 -0.93383,1.413629 -0.93383,0.47121 -1.40076,0.94242 -1.40076,0.47121 h -1.40074 m 0,-24.031701 h -1.40076 l -1.40075,-0.47121 -0.93384,-0.47121 -0.93384,-0.942419 -0.93383,-0.942419 -0.93384,-1.41363 -0.46691,-1.413629 v -1.41363 -1.41363 l 0.46691,-1.413628 0.93384,-0.94242 0.93383,-1.41363 0.93384,-0.942419 0.93384,-0.471211 1.40075,-0.471209 h 1.40076 1.40074 l 1.40076,0.471209 1.40076,0.471211 0.93383,0.942419 0.93383,1.41363 0.46692,0.94242 0.46692,1.413628 0.46691,1.41363 -0.46691,1.41363 -0.46692,1.413629 -0.46692,1.41363 -0.93383,0.942419 -0.93383,0.942419 -1.40076,0.47121 -1.40076,0.47121 h -1.40074 m -88.247454,98.954057 -0.46692,0.47121 h -0.466914 v -0.47121 -0.47121 h 0.466914 l 0.46692,0.47121 M 176.96396,1.1769491 h -0.46692 -0.93383 -1.40076 -2.33459 -2.33458 -3.26843 -3.26842 -3.73534 -4.20226 -4.66917 H 141.0113 130.73911 120 109.26089 98.9887 h -9.338354 -4.66918 -4.20226 -3.735337 -3.268427 -3.268419 -2.334587 -1.867673 -1.867674 -0.933833 m 12.60678,139.9493109 -0.46692,0.47121 h -0.466914 v -0.47121 l 0.466914,-0.4712 v 0.4712 h 0.46692 M 63.502956,1.1769491 h -0.933833 l -0.93384,0.4712099 -0.466914,0.9424195 -0.46692,0.9424196 m 15.408287,139.0068919 -0.46692,0.47121 h -0.466914 v -0.47121 l 0.466914,-0.47121 v 0.47121 h 0.46692 M 60.701449,3.5329981 v 0.4712099 1.4136294 2.3560492 2.8272584 3.769679 4.712098 4.712098 5.654518 6.125727 6.596938 7.068147 7.068147 15.078715 16.021133 15.549925 15.07871 7.06815 7.06815 6.59693 6.12573 5.65452 5.18331 4.24088 3.76968 3.29847 1.88484 1.41363 0.47121 M 93.38569,27.093488 l -0.46692,0.94242 h -0.46692 -0.46692 v -0.94242 -0.471209 l 0.46692,-0.471209 0.46692,0.471209 0.46692,0.471209 m -0.93384,0 v 0.471211 0.471209 l 0.46692,-0.471209 v -0.471211 -0.471209 h -0.46692 v 0.471209 m 0.93384,47.592198 -0.46692,0.942413 -0.46692,0.471207 -0.46692,-0.471207 v -0.942413 -0.471214 l 0.46692,-0.471213 0.46692,0.471213 0.46692,0.471214 m -0.93384,0 v 0.942413 h 0.46692 v -0.942413 -0.471214 h -0.46692 v 0.471214 m 54.62938,3.769673 v 0.471207 h 0.46691 l 0.46692,-0.471207 -0.46692,-0.94242 h -0.46691 v 0.94242 m -86.379781,92.357121 0.46692,0.94242 0.466914,0.94242 0.93384,0.47121 h 0.933833 m 0,0 h 1.400753 1.400754 2.334586 2.334594 2.801499 6.069934 6.06993 2.801507 2.801507 1.86767 1.86767 0.93383 0.46692 m 0,0 h 0.93384 l 0.46692,-0.47121 0.46691,-0.94242 0.46692,-0.94242 m 0,0 v -0.94242 -0.94242 -1.88484 -1.88484 -2.35605 -2.82726 -3.29846 -6.59694 -7.53936 -8.48177 -8.01057 -8.48178 -8.48178 -7.53935 -6.596935 -3.298473 -2.82726 -2.356047 -1.884839 -1.413627 -1.413633 -0.942414 m 0,0 v -0.942426 l 0.46692,-0.94242 0.93383,-0.471207 h 0.93384 m 0,0 h 0.46692 0.93383 1.86767 2.33459 3.26843 2.8015 7.00377 7.00377 3.26842 2.8015 2.33458 1.86769 0.93383 0.46692 m 0,0 1.40076,0.471207 0.93383,0.94242 v 0.471213 0.471213 0.4712 0.942427 0.94242 1.413627 3.298466 3.76968 4.712093 5.183315 5.65452 6.12573 12.72266 12.25145 6.12574 5.65451 5.18331 4.71209 3.76968 3.29847 1.41364 0.94241 0.94242 0.47121 0.47121 l 0.46691,0.47121 0.46692,1.41363 h 1.40075 m 0,0 h 0.46692 0.93384 1.86767 1.86767 2.80151 2.8015 6.06993 6.06993 2.80152 2.33458 2.33459 1.40075 1.40075 0.46692 m 0,0 h 0.93383 l 0.93385,-1.41363 0.46692,-0.47121 v -0.47121 -0.47121 -0.94242 -1.41363 -1.88484 -2.35605 -2.82725 -3.29848 -3.29846 -3.76968 -4.24089 -4.7121 -9.42419 V 121.80666 110.49763 87.408345 63.847854 53.010029 42.172203 32.748007 28.035908 23.79502 20.025342 16.726873 13.428405 10.601145 8.2450966 6.360257 4.9466276 4.004208 3.5329981 3.0617884 L 178.83164,2.5905785 177.89779,1.648159 176.96396,1.1769491 M 93.38569,153.37772 v 0.4712 m 0,0 v 0.47122 m 0,0 h -0.46692 m 0,0 h -0.93384 m 0,0 v -0.47122 m 0,0 v -0.4712 m 0,0 v -0.47121 m 0,0 v -0.47121 m 0,0 v -0.47121 m 0,0 h 0.93384 m 0,0 h 0.46692 m 0,0 v 0.47121 m 0,0 v 0.47121 m 0,0 v 0.47121 m 0,-24.0317 v 0.4712 m 0,0 v 0.47122 m 0,0 h -0.46692 m 0,0 h -0.93384 m 0,0 v -0.47122 m 0,0 v -0.4712 m 0,0 v -0.47121 m 0,0 v -0.47121 m 0,0 v -0.47121 m 0,0 h 0.93384 m 0,0 v 0.47121 m 0,0 h 0.46692 m 0,0 v 0.47121 m 0,0 v 0.47121 m 0,-24.03171 v 0.47122 m 0,0 v 0.47121 m 0,0 h -0.46692 m 0,0 v 0.47121 m 0,0 h -0.93384 m 0,0 v -0.47121 m 0,0 v -0.47121 m 0,0 v -0.47122 m 0,0 v -0.94241 m 0,0 h 0.93384 m 0,0 h 0.46692 m 0,0 v 0.94241 m 0,-20.262018 v 0.471213 m 0,0 v 0.471214 m 0,0 h -0.46692 m 0,0 h -0.93384 m 0,0 v -0.471214 m 0,0 v -0.471213 m 0,0 v -0.471206 m 0,0 v -0.471214 m 0,0 v -0.4712 m 0,0 h 0.93384 m 0,0 h 0.46692 m 0,0 v 0.4712 m 0,0 v 0.471214 m 0,0 v 0.471206 m 0,-6.596933 v 0.471207 m 0,0 -0.46692,0.471213 m 0,0 h -0.93384 m 0,0 v -0.471213 m 0,0 v -0.471207 m 0,0 v -0.471213 m 0,0 v -0.471207 m 0,0 v -0.471207 m 0,0 h 0.93384 m 0,0 h 0.46692 m 0,0 v 0.471207 m 0,0 v 0.471207 m 0,0 v 0.471213 m 0,-17.434763 v 0.942419 m 0,0 h -0.46692 m 0,0 h -0.93384 m 0,0 v -0.942419 m 0,0 v -0.471211 m 0,0 v -0.471209 m 0,0 v -0.47121 m 0,0 h 0.93384 m 0,0 v 0.47121 m 0,0 h 0.46692 m 0,0 v 0.471209 m 0,0 v 0.471211 m 0,-6.596938 v 0.47121 m 0,0 v 0.471209 m 0,0 h -0.46692 m 0,0 h -0.93384 m 0,0 v -0.471209 m 0,0 v -0.47121 m 0,0 v -0.47121 m 0,0 v -0.47121 m 0,0 v -0.471209 m 0,0 h 0.93384 m 0,0 0.46692,0.471209 m 0,0 v 0.47121 m 0,0 v 0.47121 m 0,-16.963554 v 0.471211 m 0,0 h -0.46692 m 0,0 v 0.471209 m 0,0 h -0.93384 m 0,0 v -0.471209 m 0,0 v -0.471211 m 0,0 v -0.471209 m 0,0 v -0.942419 m 0,0 h 0.93384 m 0,0 h 0.46692 m 0,0 v 0.942419 m 0,0 v 0.471209 m 0,-6.596936 v 0.471209 m 0,0 h -0.46692 m 0,0 h -0.93384 m 0,0 v -0.471209 m 0,0 v -0.94242 m 0,0 v -0.47121 m 0,0 h 0.93384 m 0,0 h 0.46692 m 0,0 v 0.47121 m 0,0 v 0.94242 m 0.46692,-9.424197 v 0.942419 m 0,0 h -0.46692 m 0,0 h -0.93384 m 0,0 v -0.942419 m 0,0 v -0.471209 m 0,0 v -0.471211 m 0,0 v -0.471209 m 0,0 h 0.93384 m 0,0 v 0.471209 m 0,0 h 0.46692 m 0,0 v 0.471211 m 0,0 v 0.471209 m 0,-9.424196 v 0.47121 m 0,0 v 0.47121 m 0,0 h -0.46692 m 0,0 h -0.93384 m 0,0 v -0.47121 m 0,0 v -0.47121 m 0,0 v -0.47121 m 0,0 v -0.47121 m 0,0 v -0.47121 m 0,0 h 0.93384 m 0,0 h 0.46692 m 0,0 v 0.47121 m 0,0 v 0.47121 m 0,0 v 0.47121 m 6.53684,9.424196 v 0.942419 m 0,0 H 98.9887 m 0,0 v -0.942419 m 0,0 v -0.471209 m 0,0 v -0.471211 m 0,0 v -0.471209 m 0,0 h 1.40075 m 0,0 v 0.471209 m 0,0 v 0.471211 m 0,0 v 0.471209 m 0,-9.424196 v 0.47121 m 0,0 v 0.47121 m 0,0 H 98.9887 m 0,0 v -0.47121 m 0,0 v -0.47121 m 0,0 v -0.47121 m 0,0 v -0.47121 m 0,0 v -0.47121 m 0,0 h 1.40075 m 0,0 v 0.47121 m 0,0 v 0.47121 m 0,0 v 0.47121 m 13.54062,-0.47121 0.46692,-0.47121 m 0,0 v -0.47121 m 0,0 h 0.93383 m 0,0 v 0.47121 m 0,0 v 0.47121 m 0,0 v 0.47121 m 0,0 v 0.47121 m 0,0 v 0.47121 m 0,0 h -0.93383 m 0,0 v -0.47121 m 0,0 -0.46692,-0.47121 m 0,0 v -0.47121 m 0,9.424197 0.46692,-0.471211 m 0,0 v -0.471209 m 0,0 h 0.93383 m 0,0 v 0.471209 m 0,0 v 0.471211 m 0,0 v 0.471209 m 0,0 v 0.942419 m 0,0 h -0.93383 m 0,0 -0.46692,-0.942419 m 0,0 v -0.471209 m -6.06993,36.283155 v -0.47121 m 0,0 0.46691,-0.47121 m 0,0 h 0.93384 m 0,0 v 0.47121 m 0,0 v 0.47121 m 0,0 v 0.47121 m 0,0 v 0.47121 m 0,0 v 0.471209 m 0,0 h -0.93384 m 0,0 h -0.46691 m 0,0 v -0.471209 m 0,0 v -0.47121 m 0,0 v -0.47121 m 1.40075,14.136295 v 0.471207 m 0,0 v 0.471207 m 0,0 h -0.93384 m 0,0 v -0.471207 m 0,0 h -0.46691 m 0,0 v -0.471207 m 0,0 v -0.471206 m 0,0 v -0.942427 m 0,0 h 0.46691 m 0,0 h 0.93384 m 0,0 v 0.942427 m 0,0 v 0.471206 m 0,-6.596938 v 0.47121 m 0,0 h -0.93384 m 0,0 h -0.46691 m 0,0 v -0.47121 m 0,0 v -0.94242 m 0,0 v -0.47121 m 0,0 h 0.46691 m 0,0 h 0.93384 m 0,0 v 0.47121 m 0,0 v 0.94242 m 17.27596,6.596938 v 0.471207 m 0,0 h -0.46692 m 0,0 v 0.471207 m 0,0 h -0.93384 m 0,0 v -0.471207 m 0,0 v -0.471207 m 0,0 v -0.471206 m 0,0 v -0.942427 m 0,0 h 0.93384 m 0,0 h 0.46692 m 0,0 v 0.942427 m 0,0 v 0.471206 m 0,-13.665085 v 0.47121 m 0,0 v 0.471209 m 0,0 h -0.46692 m 0,0 h -0.93384 m 0,0 v -0.471209 m 0,0 v -0.47121 m 0,0 v -0.47121 m 0,0 v -0.47121 m 0,0 v -0.47121 m 0,0 h 0.93384 m 0,0 v 0.47121 m 0,0 h 0.46692 m 0,0 v 0.47121 m 0,0 v 0.47121 m 4.20226,-36.283156 v 0.942419 m 0,0 h -0.46692 m 0,0 h -0.93384 m 0,0 v -0.942419 m 0,0 v -0.471209 m 0,0 v -0.471211 m 0,0 v -0.471209 m 0,0 h 0.93384 m 0,0 v 0.471209 m 0,0 h 0.46692 m 0,0 v 0.471211 m 0,0 v 0.471209 m 33.15115,-10.837826 v -0.47121 m 0,0 V 9.6587259 m 0,0 h 0.93385 m 0,0 h 0.46692 m 0,0 v 0.4712091 m 0,0 v 0.47121 m 0,0 v 0.47121 m 0,0 v 0.47121 m 0,0 v 0.47121 m 0,0 h -0.46692 m 0,0 h -0.93385 m 0,0 v -0.47121 m 0,0 v -0.47121 m 0,0 v -0.47121 m 0,6.596937 v -0.471209 m 0,0 v -0.47121 m 0,0 h 0.93385 m 0,0 h 0.46692 m 0,0 v 0.47121 m 0,0 v 0.471209 m 0,0 v 0.471211 m 0,0 v 0.471209 m 0,0 v 0.47121 m 0,0 h -0.46692 m 0,0 h -0.93385 m 0,0 v -0.47121 m 0,0 v -0.471209 m 0,0 v -0.471211 m -15.8752,64.555744 v 0.471213 m 0,0 v 0.471207 m 0,0 h -0.93383 m 0,0 v -0.471207 m 0,0 h -0.46692 m 0,0 v -0.471213 m 0,0 v -0.471214 m 0,0 v -0.4712 m 0,0 0.46692,-0.471213 m 0,0 h 0.93383 m 0,0 v 0.471213 m 0,0 v 0.4712 m 0,0 v 0.471214 m 0,-20.73323 v 0.942419 m 0,0 h -0.93383 m 0,0 h -0.46692 m 0,0 v -0.942419 m 0,0 v -0.471211 m 0,0 v -0.471209 m 0,0 h 0.46692 m 0,0 v -0.47121 m 0,0 h 0.93383 m 0,0 v 0.47121 m 0,0 v 0.471209 m 0,0 v 0.471211 m 0,-6.596938 v 0.47121 m 0,0 v 0.471209 m 0,0 h -0.93383 m 0,0 h -0.46692 m 0,0 v -0.471209 m 0,0 v -0.47121 m 0,0 v -0.47121 m 0,0 v -0.47121 m 0,0 h 0.46692 m 0,0 v -0.471209 m 0,0 h 0.93383 m 0,0 v 0.471209 m 0,0 v 0.47121 m 0,0 v 0.47121 m 0,-16.963554 v 0.471211 m 0,0 v 0.471209 m 0,0 h -0.93383 m 0,0 v -0.471209 m 0,0 h -0.46692 m 0,0 v -0.471211 m 0,0 v -0.471209 m 0,0 v -0.942419 m 0,0 h 0.46692 m 0,0 h 0.93383 m 0,0 v 0.942419 m 0,0 v 0.471209 m 0,-6.596936 v 0.471209 m 0,0 h -0.93383 m 0,0 h -0.46692 m 0,0 v -0.471209 m 0,0 v -0.94242 m 0,0 v -0.47121 m 0,0 h 0.46692 m 0,0 h 0.93383 m 0,0 v 0.47121 m 0,0 v 0.94242 M 96.18719,1.1769491 v 0.9424197 0.9424196 1.4136294 3.7696788 4.2408884 4.240888 3.298469 1.413629 1.413629 0.47121 0.47121 m 0,0 0.46692,2.35605 m 0,0 v 0.471209 l 0.46692,1.413629 0.93384,1.41363 0.46691,2.356049 0.93384,1.884839 0.46691,1.884839 0.46692,0.94242 v 0.47121 h 0.46692 m 0,0 0.46692,2.356049 v 2.827259 m 0,0 v 0.94242 1.413629 1.413629 4.240888 4.712099 4.712098 3.769678 1.88484 0.942419 0.942423 0.471206 m 0,0 v 1.88484 l -0.46692,1.88484 m 0,0 v 0.471207 0.471207 l -0.46692,2.35606 -0.46692,2.356046 -0.46691,0.942414 m 0,0 v 1.413633 m 0,0 0.93383,-0.94242 h 0.93384 m 0,0 h 0.46692 m 0,0 h 0.46692 0.93383 1.86767 2.33459 2.80151 3.26842 6.53685 6.53685 3.26842 2.80151 2.33459 1.86767 0.93383 0.46692 m 0,0 h 0.46692 m 0,0 h 0.93383 l 0.93384,0.94242 m 0,0 v -1.413633 m 0,0 -0.46691,-0.942414 -0.46693,-2.356046 -0.46691,-2.35606 v -0.471207 -0.471207 m 0,0 -0.46692,-1.88484 -0.46692,-1.88484 m 0,0 v -0.471206 -0.942423 -0.942419 -1.88484 -3.769678 -4.712098 -4.712099 -4.240888 -1.413629 -1.413629 -0.94242 m 0,0 0.46692,-2.827259 0.46692,-2.356049 m 0,0 0.46691,-0.47121 0.46693,-1.413629 0.46691,-1.41363 0.93383,-1.884839 0.46692,-2.356049 0.93384,-1.41363 0.46691,-1.413629 V 26.15107 m 0,0 0.46692,-2.35605 m 0,0 V 23.32381 22.8526 21.438971 20.025342 16.726873 12.485985 8.2450966 4.4754178 3.0617884 2.1193688 1.1769491 m 0,0 h -0.46692 -1.40075 -2.33459 -3.26841 -3.73535 -3.73534 H 120 h -8.87144 -3.73534 -3.73534 -3.26843 -2.33458 -1.40076 -0.46692 m 4.20226,20.2620219 v 0.942419 m 0,0 H 98.9887 m 0,0 v -0.942419 m 0,0 v -0.471209 m 0,0 v -0.471211 m 0,0 v -0.471209 m 0,0 h 1.40075 m 0,0 v 0.471209 m 0,0 v 0.471211 m 0,0 v 0.471209 m 0,-9.424196 v 0.47121 m 0,0 v 0.47121 m 0,0 H 98.9887 m 0,0 v -0.47121 m 0,0 v -0.47121 m 0,0 v -0.47121 m 0,0 v -0.47121 m 0,0 v -0.47121 m 0,0 h 1.40075 m 0,0 v 0.47121 m 0,0 v 0.47121 m 0,0 v 0.47121 m 13.54062,-0.47121 0.46692,-0.47121 m 0,0 v -0.47121 m 0,0 h 0.93383 m 0,0 v 0.47121 m 0,0 v 0.47121 m 0,0 v 0.47121 m 0,0 v 0.47121 m 0,0 v 0.47121 m 0,0 h -0.93383 m 0,0 v -0.47121 m 0,0 -0.46692,-0.47121 m 0,0 v -0.47121 m 0,9.424197 0.46692,-0.471211 m 0,0 v -0.471209 m 0,0 h 0.93383 m 0,0 v 0.471209 m 0,0 v 0.471211 m 0,0 v 0.471209 m 0,0 v 0.942419 m 0,0 h -0.93383 m 0,0 -0.46692,-0.942419 m 0,0 v -0.471209 m -6.06993,36.283155 v -0.47121 m 0,0 0.46691,-0.47121 m 0,0 h 0.93384 m 0,0 v 0.47121 m 0,0 v 0.47121 m 0,0 v 0.47121 m 0,0 v 0.47121 m 0,0 v 0.471209 m 0,0 h -0.93384 m 0,0 h -0.46691 m 0,0 v -0.471209 m 0,0 v -0.47121 m 0,0 v -0.47121 m 1.40075,14.136295 v 0.471207 m 0,0 v 0.471207 m 0,0 h -0.93384 m 0,0 v -0.471207 m 0,0 h -0.46691 m 0,0 v -0.471207 m 0,0 v -0.471206 m 0,0 v -0.942427 m 0,0 h 0.46691 m 0,0 h 0.93384 m 0,0 v 0.942427 m 0,0 v 0.471206 m 0,-6.596938 v 0.47121 m 0,0 h -0.93384 m 0,0 h -0.46691 m 0,0 v -0.47121 m 0,0 v -0.94242 m 0,0 v -0.47121 m 0,0 h 0.46691 m 0,0 h 0.93384 m 0,0 v 0.47121 m 0,0 v 0.94242 m 17.27596,6.596938 v 0.471207 m 0,0 h -0.46692 m 0,0 v 0.471207 m 0,0 h -0.93384 m 0,0 v -0.471207 m 0,0 v -0.471207 m 0,0 v -0.471206 m 0,0 v -0.942427 m 0,0 h 0.93384 m 0,0 h 0.46692 m 0,0 v 0.942427 m 0,0 v 0.471206 m 0,-13.665085 v 0.47121 m 0,0 v 0.471209 m 0,0 h -0.46692 m 0,0 h -0.93384 m 0,0 v -0.471209 m 0,0 v -0.47121 m 0,0 v -0.47121 m 0,0 v -0.47121 m 0,0 v -0.47121 m 0,0 h 0.93384 m 0,0 v 0.47121 m 0,0 h 0.46692 m 0,0 v 0.47121 m 0,0 v 0.47121 m 4.20226,-36.283156 v 0.942419 m 0,0 h -0.46692 m 0,0 h -0.93384 m 0,0 v -0.942419 m 0,0 v -0.471209 m 0,0 v -0.471211 m 0,0 v -0.471209 m 0,0 h 0.93384 m 0,0 v 0.471209 m 0,0 h 0.46692 m 0,0 v 0.471211 m 0,0 v 0.471209 m 42.0226,-3.298469 v -0.94242 -0.942419 -0.47121 m 0,0 0.46691,-0.47121 m 0,0 v -0.471209 -0.94242 -0.942419 -0.47121 m 0,0 h -0.46691 m 0,0 v -0.94242 m 0,0 v -0.94242 -0.9424191 h -0.46693 m 0,0 h -0.46692 l -0.46691,0.9424191 v 0.94242 m 0,0 h 0.46691 m 0,0 v 0.94242 m 0,0 h -0.93383 m 0,0 v 0.47121 0.942419 0.94242 0.471209 m 0,0 0.46692,0.47121 m 0,0 v 0.47121 0.942419 l 0.46691,0.94242 m 0,0 -0.46691,0.47121 h 0.46691 m 0,0 h 0.93385 m 0,0 v -0.47121 m -0.46693,-6.596937 h 0.46693 m 0,0 -0.46693,0.47121 h -0.46692 v -0.47121 m 0,0 h 0.46692 m 0,2.827259 v 0.942419 m 0,0 h -0.46692 m 0,0 v -0.942419 m 0,0 h -0.46691 m 0,0 v 0.942419 m 0,0 v -0.471209 m 0,0 v -0.94242 m 0,0 v -0.942419 m 0,0 v 0.942419 m 0,0 h 0.46691 m 0,0 v -0.942419 -0.47121 m 0,0 h 0.46692 m 0,0 v 0.47121 0.942419 m 0,0 h 0.46693 m 0,0 v -0.942419 m 0,0 h 0.46691 m 0,0 -0.46691,0.942419 m 0,0 0.46691,0.94242 m 0,0 -0.46691,0.471209 m 0,0 v -0.942419 m 0,0 h -0.46693 M 120,41.700993 v -0.47121 -1.41363 -0.942419 -0.47121 -0.471209 m 0,0 v 0.471209 0.47121 0.942419 1.41363 0.47121 m 3.73534,10.837826 H 123.26842 122.33459 120 h -2.33459 -0.93384 -0.46691 m 0,0 h -0.46692 l -0.93383,-0.47121 v -0.94242 l -0.46692,-0.47121 m 0,0 v -0.47121 -0.471209 -2.356049 -2.827259 -0.47121 -0.47121 m 0,0 0.46692,-0.471209 v -0.94242 h 0.93383 l 0.46692,-0.47121 m 0,0 h 0.46691 0.93384 2.33459 2.33459 0.93383 0.46692 m 0,0 0.46692,0.47121 h 0.93383 v 0.94242 l 0.46692,0.471209 m 0,0 v 0.47121 0.47121 2.827259 2.356049 0.471209 0.47121 m 0,0 -0.46692,0.47121 v 0.94242 l -0.93383,0.47121 h -0.46692 m 0,-10.366616 0.93383,0.47121 0.46692,0.942419 m 0,0 v 0.47121 0.47121 2.827259 2.356049 0.471209 0.47121 m 0,0 -0.46692,0.94242 -0.93383,0.47121 m 46.22485,-38.167995 h -0.46691 -0.46691 -1.86768 -1.86766 -0.46692 m 0,0 v -0.942419 m 0,0 -0.46692,-0.47121 v 0.47121 m 0,0 v 1.413629 0.942419 0.47121 m 0,0 h 0.46692 m 0,0 v -1.413629 m 0,0 h 0.46692 1.86766 1.86768 0.46691 0.46691 m 0,0 v -0.47121 M 123.73534,52.067609 H 123.26842 122.33459 120 h -2.33459 -0.93384 -0.46691 m 0,0 -0.93384,-0.47121 -0.46691,-0.94242 m 0,0 v -0.47121 -0.471209 -2.356049 -2.827259 -0.47121 -0.47121 m -5.1361,-26.38775 h -0.46692 -0.46692 -1.86767 -2.33459 -0.46692 -0.46691 m 0,0 v -0.471209 h -0.46692 m 0,0 0.46692,-0.47121 v -0.47121 m 0,0 h 0.46691 0.46692 2.33459 1.86767 0.46692 0.46692 m 0,0 0.46692,0.47121 v 0.47121 m 0,0 -0.46692,0.471209 m 15.40828,0 h -0.46692 -0.46691 -2.33459 H 120 h -0.46692 -0.46691 m 0,0 -0.46692,-0.471209 m 0,0 v -0.47121 l 0.46692,-0.47121 m 0,0 h 0.46691 0.46692 1.86767 2.33459 0.46691 0.46692 m 0,0 v 0.47121 l 0.46692,0.47121 m 0,0 h -0.46692 v 0.471209 m 14.94138,0 h -0.93384 -1.86767 -2.33459 -0.46692 -0.46692 m 0,0 v -0.471209 h -0.46692 m 0,0 0.46692,-0.47121 v -0.47121 m 0,0 h 0.46692 0.46692 2.33459 1.86767 0.93384 m 0,0 0.46691,0.47121 v 0.47121 m 0,0 -0.46691,0.471209 m -25.21356,26.38775 0.46691,-0.942419 0.93384,-0.47121 m 0,0 h 0.46691 0.93384 2.33459 2.33459 0.93383 0.46692 m 0,-0.47121 H 123.26842 122.33459 120 h -2.33459 -0.93384 -0.46691 m 56.96396,-8.010567 v -1.884839 l -0.46691,-1.413629 -0.93385,-1.88484 -0.93383,-0.942419 -1.40075,-1.413629 -1.40076,-0.471211 -1.86767,-0.942419 h -1.86766 -1.40076 l -1.86767,0.942419 -1.40076,0.471211 -1.40075,1.413629 -0.93383,0.942419 -0.93383,1.41363 -0.46693,1.884839 -0.46692,1.884839 m 0,0 h -0.93383 -2.80151 -2.8015 -0.93384 -0.46692 m 0,0 v -1.41363 m 0,0 v 0.471211 0.942419 0.94242 0.47121 m 0,0 v -1.41363 m 0,0 h 0.46692 0.93384 2.8015 2.80151 0.93383 m 0,0 v 0.47121 0.94242 0.94242 1.413628 3.769679 4.240888 4.712098 3.769679 1.413629 0.94242 0.94242 m 0,0 h -0.93383 -2.80151 -2.8015 -0.93384 -0.46692 m 0,0 v -0.94242 m 0,0 v -0.471209 0.471209 m 0,0 v 0.47121 0.94242 0.942419 0.47121 m 0,0 v -1.413629 m 0,0 h 0.46692 0.93384 2.8015 2.80151 0.93383 m 0,0 v 0.47121 0.471209 1.41363 1.413629 3.769679 4.240888 4.240887 3.76968 1.413627 1.413633 0.942413 m 0,0 h -0.93383 -1.86766 -2.33459 -0.93385 m 0,0 v 0.471214 m 0,0 h 0.46692 0.46693 2.33459 1.86766 0.93383 m 0,0 0.46692,1.884846 0.46693,1.41362 0.93383,1.413633 0.93383,1.413627 1.40075,0.94242 1.40076,0.942427 1.86767,0.4712 h 1.40076 1.86766 l 1.86767,-0.4712 1.40076,-0.942427 1.40075,-0.94242 0.93383,-1.413627 0.93385,-1.413633 0.46691,-1.884833 v -1.884847 m 0,0 v -0.4712 -1.413633 -2.356047 -2.82726 -3.76968 -4.240889 -8.481776 -8.952987 -4.240888 -3.298469 -3.298468 -2.35605 -1.413629 -0.47121 m -15.8752,47.120986 0.93383,-2.356053 1.40075,-1.88484 1.86768,-1.413633 2.33458,-0.942414 m 0,0 h 1.40077 l 1.86766,0.471214 1.40076,0.942413 0.93383,0.94242 0.93383,0.94242 0.93384,1.413627 v 1.413633 1.88484 m -14.00753,-25.445332 0.93383,-2.356049 1.40075,-1.884839 1.86768,-1.41363 2.33458,-0.47121 m 0,0 h 1.40077 1.86766 l 1.40076,0.94242 0.93383,0.94242 0.93383,1.413629 0.93384,1.413629 v 1.41363 1.41363 m -14.00753,-24.974121 0.93383,-2.356048 1.40075,-2.35605 1.86768,-1.41363 2.33458,-0.471209 m 0,0 h 1.40077 l 1.86766,0.471209 1.40076,0.471211 0.93383,0.942419 0.93383,1.41363 0.93384,1.413629 v 1.41363 1.884839 m -24.27972,-7.539358 v 0.471211 l 0.46691,0.471209 v -0.471209 l 0.46692,-0.471211 -0.46692,-0.471209 h -0.46691 v 0.471209 M 93.38569,52.067609 h -1.40076 m 0,0 v -0.47121 m 0,0 0.46692,-0.47121 m 0,0 h 0.46692 m 0,0 v -0.47121 m 0,0 v -0.47121 m 0,0 h -0.46692 m 0,0 -0.46692,0.47121 m 0,0 v -0.47121 m 0,0 h 0.46692 m 0,0 h 0.46692 v 0.94242 m 0,0 -0.46692,0.47121 m 0,0 h 0.93384 m 0,0 v 0.47121 m -3.26842,49.005821 h 0.46691 m 0,0 h 0.46692 v 0.47121 0.47121 m 0,0 v 0.94242 h -0.46692 m 0,0 h -0.46691 m 0,0 v -0.94242 -0.47121 -0.47121 m 0,0.94242 h 0.46691 m 0,0 h 0.46692 m 0,0 v -0.47121 h -0.46692 m 0,0 h -0.46691 m 0,0 v 0.47121 m 0,0 v 0.94242 m 0,0 h 0.46691 m 0,0 h 0.46692 v -0.47121 l -0.46692,-0.47121 m 0,0 h -0.46691 m 2.8015,0.94242 h -0.46692 m 0,0 v -0.94242 m 0,0 v -0.47121 m 0,0 -0.46692,0.47121 m 0,0 v -0.47121 m 0,0 0.46692,-0.47121 m 0,0 h 0.46692 m 0,0 v 0.47121 0.47121 0.94242 m 0,24.03169 h -0.46692 m 0,0 v -1.41362 m 0,0 h -0.46692 m 0,0 0.46692,-0.47121 m 0,0 h 0.46692 m 0,0 v 0.47121 0.47121 0.47121 0.4712 m 55.09629,-74.922351 h -1.40075 m 0,0 v -0.47121 m 0,0 0.46692,-0.47121 m 0,0 h 0.46691 m 0,0 v -0.47121 m 0,0 v -0.47121 m 0,0 -0.46691,0.47121 m 0,0 -0.46692,-0.47121 m 0,0 h 0.46692 0.93383 v 0.47121 0.47121 m 0,0 -0.46692,0.47121 m 0,0 h -0.46691 m 0,0 h 0.93383 m 0,0 v 0.47121 m 0,26.38775 v 0.471207 m 0,0 -0.46692,0.471213 -0.46691,-0.471213 m 0,0 -0.46692,-0.471207 0.46692,-0.94242 m 0,0 v -0.471207 l 0.46691,0.471207 h 0.46692 v 0.94242 m -31.7504,-36.754366 -0.46692,0.47121 h -0.93383 v 0.94242 l -0.46692,0.471209 m 0,0 v 0.47121 0.47121 2.827259 2.356049 0.471209 0.47121 m 0,0 0.46692,0.47121 v 0.94242 l 0.93383,0.47121 h 0.46692 m 0,0 h 0.46691 0.93384 2.33459 2.33459 0.93383 0.46692 m 0,0 h 0.46692 l 0.93383,-0.47121 v -0.94242 l 0.46692,-0.47121 m 0,0 v -0.47121 -0.471209 -2.356049 -2.827259 -0.47121 -0.47121 m 0,0 -0.46692,-0.471209 v -0.94242 h -0.93383 l -0.46692,-0.47121 m -49.960198,97.069217 1.867674,-1.41363 M 90.58418,126.04755 v -0.47121 m 0,0 v -0.47121 m 0,0 -0.46691,0.47121 m 0,0 v 0.47121 m 0,0 h 0.46691 m -14.941364,11.30903 1.400753,1.41363 m 0,0 -1.400753,-0.47121 m 0,0 -1.867674,0.47121 m 3.268427,4.7121 -1.400753,1.88484 m 0,0 -1.867674,-1.88484 m 16.809038,6.59694 -0.46691,-0.47121 m 0,0 v -0.47121 m 0,0 v 0.47121 m 0,0 v 0.47121 m 0,0 h 0.46691 m 2.80151,0.94241 h -1.40076 m 0,0 v -0.4712 m 0,0 0.46692,-0.47121 m 0,0 0.46692,-0.47121 m 0,0 v -0.47121 m 0,0 h -0.46692 m 0,0 h -0.46692 m 0,0 h 0.46692 m 0,0 h 0.46692 v 0.47121 m 0,0 v 0.47121 m 0,0 h -0.46692 m 0,0 v 0.47121 m 0,0 h 0.93384 m 0,0 v 0.4712 m -19.610548,-7.53935 1.867674,0.47121 m 0,0 1.400753,-0.47121 M 127.00377,19.554132 h -0.46692 -0.93384 -1.86767 -1.86767 H 120 h -1.40075 -1.40076 -0.46692 m 0,0 h -0.46691 v -0.47121 m 0,0 v -0.47121 -0.47121 -1.413629 -1.884839 -0.47121 -0.47121 m 0,0 0.46691,-0.471209 m 0,0 h 0.46692 1.40076 1.40075 1.86767 1.86767 1.86767 0.93384 0.46692 m 0,0 0.46692,0.471209 m 0,0 v 0.47121 0.47121 1.884839 1.413629 0.47121 0.47121 m 0,0 v 0.47121 h -0.46692 m 0,-5.654518 h 0.46692 m 0,0 v 0.47121 0.47121 1.884839 1.413629 0.47121 0.47121 m 0,0 h -0.46692 m 0,0 h -0.46692 -0.93384 -1.86767 -1.86767 H 120 h -1.40075 -1.40076 -0.46692 m 0,0 v -0.47121 -0.47121 -1.413629 -1.884839 -0.47121 -0.47121 m 0,0 h 0.46692 1.40076 1.40075 1.86767 1.86767 1.86767 0.93384 0.46692 m 0,-0.471209 h -0.46692 -0.93384 -1.86767 -1.86767 H 120 h -1.40075 -1.40076 -0.46692 m 0,0 -0.46691,0.471209 m 0,0 v 0.47121 0.47121 1.884839 1.413629 0.47121 0.47121 m 0,0 v 0.47121 h 0.46691 m 0,0 h 0.46692 1.40076 1.40075 1.86767 1.86767 1.86767 0.93384 0.46692 m 0,0 h 0.46692 v -0.47121 m 0,0 v -0.47121 -0.47121 -1.413629 -1.884839 -0.47121 -0.47121 m 0,0 -0.46692,-0.471209 m -14.94137,6.125727 h -0.46692 -1.40075 -1.40076 -1.86767 -1.86767 -1.86767 -0.93383 -0.46692 m 0,0 h -0.46692 v -0.47121 m 0,0 v -0.47121 -0.47121 -1.413629 -1.884839 -0.47121 -0.47121 m 0,0 0.46692,-0.471209 m 0,0 h 0.46692 0.93383 1.86767 1.86767 1.86767 1.40076 1.40075 0.46692 m 0,0 0.46691,0.471209 m 0,0 v 0.47121 0.47121 1.884839 1.413629 0.47121 0.47121 m 0,0 v 0.47121 h -0.46691 m 0,-5.654518 v 0.47121 0.47121 1.884839 1.413629 0.47121 0.47121 m 0,0 h -0.46692 -1.40075 -1.40076 -1.86767 -1.86767 -1.86767 -0.93383 -0.46692 m 0,0 h -0.46692 m 0,0 v -0.47121 -0.47121 -1.413629 -1.884839 -0.47121 -0.47121 m 0,0 h 0.46692 m 0,0 h 0.46692 0.93383 1.86767 1.86767 1.86767 1.40076 1.40075 0.46692 m 0,-0.471209 h -0.46692 -1.40075 -1.40076 -1.86767 -1.86767 -1.86767 -0.93383 -0.46692 m 0,0 -0.46692,0.471209 m 0,0 v 0.47121 0.47121 1.884839 1.413629 0.47121 0.47121 m 0,0 v 0.47121 h 0.46692 m 0,0 h 0.46692 0.93383 1.86767 1.86767 1.86767 1.40076 1.40075 0.46692 m 0,0 h 0.46691 v -0.47121 m 0,0 v -0.47121 -0.47121 -1.413629 -1.884839 -0.47121 -0.47121 m 0,0 -0.46691,-0.471209 m 30.34965,6.125727 h -0.46692 -1.40075 -1.40075 -1.86767 -1.86769 -1.86766 -0.93383 -0.46692 m 0,0 h -0.46692 v -0.47121 m 0,0 v -0.47121 -0.47121 -1.413629 -1.884839 -0.47121 -0.47121 m 0,0 0.46692,-0.471209 m 0,0 h 0.46692 0.93383 1.86766 1.86769 1.86767 1.40075 1.40075 0.46692 m 0,0 0.46692,0.471209 m 0,0 v 0.47121 0.47121 1.884839 1.413629 0.47121 0.47121 m 0,0 v 0.47121 h -0.46692 m 0,-5.654518 v 0.47121 0.47121 1.884839 1.413629 0.47121 0.47121 m 0,0 h -0.46692 -1.40075 -1.40075 -1.86767 -1.86769 -1.86766 -0.93383 -0.46692 m 0,0 h -0.46692 m 0,0 v -0.47121 -0.47121 -1.413629 -1.884839 -0.47121 -0.47121 m 0,0 h 0.46692 m 0,0 h 0.46692 0.93383 1.86766 1.86769 1.86767 1.40075 1.40075 0.46692 m 0,-0.471209 h -0.46692 -1.40075 -1.40075 -1.86767 -1.86769 -1.86766 -0.93383 -0.46692 m 0,0 -0.46692,0.471209 m 0,0 v 0.47121 0.47121 1.884839 1.413629 0.47121 0.47121 m 0,0 v 0.47121 h 0.46692 m 0,0 h 0.46692 0.93383 1.86766 1.86769 1.86767 1.40075 1.40075 0.46692 m 0,0 h 0.46692 v -0.47121 m 0,0 v -0.47121 -0.47121 -1.413629 -1.884839 -0.47121 -0.47121 m 0,0 -0.46692,-0.471209 m -26.14739,32.984686 v -1.884839 m 0,0 h 0.93383 m 0,0 v 0.471209 m 0,0 h -0.93383 m 0,0 v 0.47121 m 0,0 h 0.93383 m 0,0 v 0.47121 m 0,0 h -0.93383 m 0,0 v 0.47121 m 2.33459,0 v -0.47121 m 0,0 h -0.93384 m 0,0 v 0.47121 m 0,0 h -0.46692 m 0,0 0.93384,-1.884839 m 0,0 0.93384,1.884839 m 0,0 h -0.46692 m 0,-0.47121 -0.46692,-0.47121 m 0,0 v -0.47121 m 0,0 v 0.47121 m 0,0 v 0.47121 m 0,0 h 0.46692 m 2.33458,-1.413629 v 1.413629 m 0,0 -0.46691,0.47121 h -0.93384 v -0.47121 m 0,0 v -1.413629 m 0,0 v 1.413629 m 0,0 0.46692,0.47121 h 0.46692 v -0.47121 m 0,0 v -1.413629 m 0,0 h 0.46691 m 0.46692,1.884839 v -1.884839 m 0,0 v 1.884839 m 0,0 h 0.93384 m 0,0 h -0.93384 m 1.86767,0 v -1.41363 m 0,0 h -0.93383 m 0,0 v -0.471209 m 0,0 h 1.86767 m 0,0 v 0.471209 m 0,0 h -0.93384 m 0,0 v 1.41363 m -6.53685,1.88484 -0.46691,0.471209 0.46691,0.47121 0.46692,0.47121 h 0.46692 m 0,0 h -0.46692 -0.93383 v -0.47121 -0.47121 l 0.46691,-0.942419 h 0.93384 m 0,0 -0.46692,0.47121 m 0,0 h -0.46692 m 0.93384,1.413629 v -1.884839 m 0,0 h 0.46692 m 0,0 v 1.884839 m 0,0 h 0.93384 m 0,0 h -1.40076 m 2.80151,0 h -1.40075 m 0,0 v -1.884839 m 0,0 h 1.40075 m 0,0 v 0.47121 m 0,0 h -0.93384 m 0,0 v 0.471209 m 0,0 h 0.93384 m 0,0 h -0.93384 m 0,0 v 0.94242 m 0,0 h 0.93384 m 1.40075,0 v -0.47121 m 0,0 h -0.93384 m 0,0 v 0.47121 m 0,0 h -0.46691 m 0,0 0.93383,-1.884839 m 0,0 0.93384,1.884839 m 0,0 h -0.46692 m 0,-0.47121 -0.46692,-0.47121 m 0,0 v -0.471209 m 0,0 v 0.471209 m 0,0 -0.46692,0.47121 m 0,0 h 0.93384 m 0.93384,0 v 0.47121 m 0,0 h -0.46692 m 0,0 v -0.94242 -0.471209 -0.47121 m 0,0 h 0.93383 m 0,0 h 0.46692 v 0.47121 0.471209 l -0.46692,0.47121 m 0,0 0.93384,0.47121 m 0,0 h -0.46692 m 0,0 -0.46692,-0.47121 m 0,0 h -0.46691 m 0,-0.47121 h 0.46691 m 0,0 v -0.471209 m 0,0 h -0.46691 m 0,0 V 48.76914 M 93.38569,63.847854 h -0.46692 m 0,0 v 0.47121 m 0,0 0.46692,0.47121 -0.46692,0.47121 m 0,0 h -0.46692 -0.46692 m 0,0 v -0.47121 m 0,0 h 0.93384 m 0,0 v -0.47121 h -0.46692 m 0,0 h -0.46692 m 0,0 v -0.47121 m 0,0 h 0.46692 m 0,0 h 0.46692 v -0.47121 m 0,0 h -0.46692 m 0,0 -0.46692,0.47121 m 0,0 v -0.47121 m 0,0 h 0.46692 0.46692 m 0,0 0.46692,0.47121 m -0.46692,24.974118 h -0.46692 m 0,0 v -0.94242 m 0,0 v -0.471207 m 0,0 v 0.471207 m 0,0 -0.46692,-0.471207 m 0,0 0.46692,-0.471206 m 0,0 h 0.46692 m 0,0 v 0.471206 0.471207 0.94242 m 0,-47.592189 h -0.46692 m 0,0 v -1.41363 m 0,0 h -0.46692 m 0,0 0.46692,-0.471209 m 0,0 h 0.46692 m 0,0 v 0.471209 0.47121 0.47121 0.47121 m 55.09629,-14.136295 v 0.94242 m 0,0 h -0.46692 -0.46691 m 0,0 -0.46692,-0.94242 0.46692,-0.471209 m 0,0 V 26.15107 h 0.46691 l 0.46692,0.471209 v 0.471209 m 0,36.754366 -0.46692,0.47121 m 0,0 h 0.46692 m 0,0 v 0.47121 0.47121 h -0.46692 -0.93383 m 0,0 v -0.47121 m 0,0 h 0.93383 m 0,0 v -0.47121 m 0,0 h -0.46691 m 0,0 v -0.47121 m 0,0 h 0.46691 v -0.47121 m 0,0 h -0.46691 m 0,0 v 0.47121 m 0,0 -0.46692,-0.47121 m 0,0 h 0.93383 0.46692 m 0,0 v 0.47121 m -0.46692,-22.618071 v -1.41363 m 0,0 h -0.46691 m 0,0 0.46691,-0.471209 m 0,0 v 0.471209 0.47121 0.47121 0.47121 M 105.52555,22.38139 h -0.46692 m 0,0 v -1.884839 m 0,0 h 1.40076 m 0,0 h -0.93384 m 0,0 v 0.94242 m 0,0 h 0.46692 m 0,0 h -0.46692 m 0,0 v 0.942419 m 2.8015,-0.942419 v 0.47121 0.471209 h -0.93383 l -0.46692,-0.942419 0.46692,-0.94242 m 0,0 h 0.46692 l 0.46691,0.471211 v 0.471209 m -0.93383,0 v 0.47121 m 0,0 h 0.46692 m 0,0 v -0.942419 m 0,0 v -0.471211 l -0.46692,0.471211 m 0,0 v 0.471209 m 13.54061,0.942419 h -0.46691 m 0,0 v -1.884839 m 0,0 h 1.40075 m 0,0 h -0.93384 m 0,0 v 0.94242 m 0,0 h 0.46692 m 0,0 h -0.46692 m 0,0 v 0.942419 m 2.33459,0 v -1.413628 m 0,0 v -0.471211 m 0,0 v 0.471211 m 0,0 h -0.46691 m 0,0 0.46691,-0.471211 m 0,0 v 0.94242 0.47121 0.471209 m 12.60678,0 h -0.46693 m 0,0 v -1.884839 m 0,0 h 1.40077 m 0,0 h -0.93384 m 0,0 v 0.94242 m 0,0 h 0.46693 m 0,0 h -0.46693 m 0,0 v 0.942419 m 2.80151,0 h -0.93384 m 0,0 v -0.471209 m 0,0 0.46692,-0.47121 m 0,0 v -0.471209 m 0,0 v -0.471211 m 0,0 -0.46692,0.471211 m 0,0 v -0.471211 m 0,0 h 0.93384 v 0.471211 m 0,0 -0.46692,0.942419 m 0,0 h -0.46692 m 0,0 h 0.93384 m 0,0 v 0.471209 m -47.62561,104.60857 -0.46692,-0.4712 m 0,0 h -0.46691 m 0,0 -0.466924,0.4712 m 0,0 0.466924,-1.88483 m 0,0 h 0.46691 m 0,0 0.93384,1.88483 m 0,0 H 91.0511 m -0.46692,24.0317 v -0.94241 m 0,0 h -0.933834 m 0,0 v 0.94241 m 0,0 h -0.46692 m 0,0 0.933844,-1.88483 m 0,0 h 0.46691 m 0,0 0.46692,1.88483 m 0,0 H 90.58418 M 116.26466,16.726873 h -3.73535 m 0,0 v -0.47121 m 0,0 h 3.73535 m 0,0 v 0.47121 m 15.40828,0 h -4.20225 m 0,0 v -0.47121 m 0,0 h 4.20225 m 0,0 v 0.47121 m -16.80903,19.790812 h 10.27218 m -10.27218,-1.884839 h 10.27218 m -10.27218,0 c -0.46692,0 -0.93384,0.47121 -0.93384,0.942419 0,0.471211 0.46692,0.94242 0.93384,0.94242 m 10.27218,0 c 0.46692,0 1.40076,-0.471209 1.40076,-0.94242 0,-0.471209 -0.93384,-0.942419 -1.40076,-0.942419 m 46.69177,-0.94242 c 0,-4.240888 -3.26841,-7.068147 -7.47067,-7.068147 -3.73535,0 -7.00377,2.827259 -7.00377,7.068147 0,3.769678 3.26842,7.068147 7.00377,7.068147 4.20226,0 7.47067,-3.298469 7.47067,-7.068147", + "fill": { + "paint": "transparent" + }, + "id": "path710", + "name": "path710", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.469059" + }, + "type": "path" + } + ], + "id": "layer1", + "name": "layer1", + "type": "group" + } + ], + "preserveAspectRatio": "none", + "viewBox": "0 0 240 180" + }, + "type": "ia.shapes.svg" + } + ], + "meta": { + "name": "root" + }, + "props": { + "direction": "column" + }, + "type": "ia.container.flex" + } +} \ No newline at end of file diff --git a/.resources/5673ab7b1b208867263287e584caf95c2e3d3a7ace0421b8f7f7d1791af7da8e b/.resources/5673ab7b1b208867263287e584caf95c2e3d3a7ace0421b8f7f7d1791af7da8e deleted file mode 100644 index 218c7758..00000000 Binary files a/.resources/5673ab7b1b208867263287e584caf95c2e3d3a7ace0421b8f7f7d1791af7da8e and /dev/null differ diff --git a/.resources/567fa9b6cd8f9e2fb5d652580f3105521e7d31756b56b1f0a14c47d1b2b626e2 b/.resources/567fa9b6cd8f9e2fb5d652580f3105521e7d31756b56b1f0a14c47d1b2b626e2 deleted file mode 100644 index 303adf5a..00000000 Binary files a/.resources/567fa9b6cd8f9e2fb5d652580f3105521e7d31756b56b1f0a14c47d1b2b626e2 and /dev/null differ diff --git a/.resources/5753827d660cca78b89fded0f476cdfa3286dd1752c8881fcbb22e34afbe5996 b/.resources/5753827d660cca78b89fded0f476cdfa3286dd1752c8881fcbb22e34afbe5996 deleted file mode 100644 index 4fbefa79..00000000 Binary files a/.resources/5753827d660cca78b89fded0f476cdfa3286dd1752c8881fcbb22e34afbe5996 and /dev/null differ diff --git a/.resources/57b7634d1cbd522cfde3fe9c375eb1fe183b5112949b60107e9a011d0ad449e9 b/.resources/57b7634d1cbd522cfde3fe9c375eb1fe183b5112949b60107e9a011d0ad449e9 new file mode 100644 index 00000000..190ee81c Binary files /dev/null and b/.resources/57b7634d1cbd522cfde3fe9c375eb1fe183b5112949b60107e9a011d0ad449e9 differ diff --git a/.resources/5a7075fdf894761d85786783a761f5d0eb361be592229b14fa5b2a7a4f90d1f4 b/.resources/5a7075fdf894761d85786783a761f5d0eb361be592229b14fa5b2a7a4f90d1f4 deleted file mode 100644 index f8424aef..00000000 --- a/.resources/5a7075fdf894761d85786783a761f5d0eb361be592229b14fa5b2a7a4f90d1f4 +++ /dev/null @@ -1,147 +0,0 @@ -{ - "custom": { - "SelectAll": null - }, - "params": { - "Columns": { - "ETag": false, - "Filename": true, - "Key": false, - "Last Updated": true, - "Size (bytes)": true, - "Storage Class": false - } - }, - "propConfig": { - "custom.SelectAll": { - "binding": { - "config": { - "path": "view.params.Columns" - }, - "enabled": false, - "transforms": [ - { - "code": "\tshow_all \u003d True\n\tif len(value) \u003e 0:\n\t\thidden_count \u003d 0\t\t\n\t\tfor column in value:\n\t\t\tif not column[\u0027Hidden\u0027]:\n\t\t\t\tshow_all \u003d False\n\t\t\t\thidden_count +\u003d 1\n\t\tif show_all and hidden_count !\u003d len(value):\n\t\t\tshow_all \u003d None\n\treturn show_all", - "type": "script" - } - ], - "type": "property" - }, - "persistent": true - }, - "params.Columns": { - "paramDirection": "inout", - "persistent": true - } - }, - "props": { - "defaultSize": { - "height": 224, - "width": 450 - } - }, - "root": { - "children": [ - { - "meta": { - "name": "Title" - }, - "position": { - "basis": "32px" - }, - "props": { - "style": { - "marginTop": 5, - "textAlign": "center", - "textDecoration": "underline" - }, - "text": "Hide/Unhide Columns" - }, - "type": "ia.display.label" - }, - { - "meta": { - "name": "SelectAllCheck" - }, - "position": { - "basis": "36px", - "display": false - }, - "propConfig": { - "props.selected": { - "binding": { - "config": { - "path": "view.custom.SelectAll" - }, - "type": "property" - } - }, - "props.text": { - "binding": { - "config": { - "expression": "IF(!isNull({view.custom.SelectAll}), IF({view.custom.SelectAll}, \u0027Hide All\u0027, \u0027Show All\u0027), \u0027Hide/Show All\u0027)" - }, - "type": "expr" - } - } - }, - "props": { - "style": { - "fontSize": 12 - } - }, - "type": "ia.input.checkbox" - }, - { - "meta": { - "name": "ColumnTiles" - }, - "position": { - "basis": "320px" - }, - "propConfig": { - "props.instances": { - "binding": { - "config": { - "path": "view.params.Columns" - }, - "transforms": [ - { - "code": "\tcolumns \u003d []\n\tif len(value.keys()) \u003e 0:\n\t\tfor column in value:\n\t\t\tnew_instance \u003d {\n\t\t\t\t\u0027Name\u0027: column,\n\t\t\t\t#If not hidden, show Add (+) sign\n\t\t\t\t\u0027Hidden\u0027: not value[column]\n\t\t\t}\n\t\t\tcolumns.append(new_instance)\n\treturn columns", - "type": "script" - } - ], - "type": "property" - } - } - }, - "props": { - "alignContent": "flex-start", - "alignItems": "flex-start", - "justify": "center", - "path": "Objects/PowerTable/ColumnSelectionTile", - "style": { - "marginBottom": 5, - "marginLeft": 5, - "marginRight": 5, - "marginTop": 5 - }, - "wrap": "wrap" - }, - "type": "ia.display.flex-repeater" - } - ], - "meta": { - "name": "root" - }, - "props": { - "direction": "column", - "style": { - "borderBottomLeftRadius": 20, - "borderBottomRightRadius": 20, - "borderTopRightRadius": 20 - } - }, - "type": "ia.container.flex" - } -} \ No newline at end of file diff --git a/.resources/5a87df52e990273c79693fc32711f483415e7f35a56bce0430f0661b460d0f1f b/.resources/5a87df52e990273c79693fc32711f483415e7f35a56bce0430f0661b460d0f1f deleted file mode 100644 index b35c4049..00000000 --- a/.resources/5a87df52e990273c79693fc32711f483415e7f35a56bce0430f0661b460d0f1f +++ /dev/null @@ -1,571 +0,0 @@ -{ - "custom": { - "alarm_message": null, - "covert_mode": true, - "display_icon": true, - "error": false, - "isMatch": 0, - "priority": 0, - "priority_string": "No active alarms", - "running": false, - "searchId": "value", - "show_error": false, - "show_running": true, - "state": 5, - "state_string": "Unknown", - "visible_status": false - }, - "params": { - "forceFaultStatus": null, - "forceRunningStatus": null, - "tagProps": [ - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value" - ] - }, - "propConfig": { - "custom.alarm_message": { - "persistent": true - }, - "custom.covert_mode": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case(\t{value},\r\n\t\t0, {session.custom.alarm_filter.show_running},\r\n\t\t1, True,\r\n\t\t2, True,\r\n\t\t3, {session.custom.alarm_filter.show_low_alarm} || {session.custom.alarm_filter.show_running},\r\n\t\t4, {session.custom.alarm_filter.show_diagnostic} || {session.custom.alarm_filter.show_running},\r\n\t\t5, {session.custom.alarm_filter.show_running},\r\n\t\tFalse)", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.display_icon": { - "binding": { - "config": { - "expression": "{this.custom.covert_mode}||{this.custom.isMatch}\u003e0" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.error": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "0 \u003c {value} \u0026\u0026 {value} \u003c 5", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.isMatch": { - "binding": { - "config": { - "expression": "if({view.params.tagProps[0]}\u003d\"value\",0,\nif({this.custom.searchId}\u003d{view.params.tagProps[0]},100,0))" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.priority": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "fallback": 0, - "inputType": "scalar", - "mappings": [ - { - "input": 1, - "output": 4 - }, - { - "input": 2, - "output": 3 - }, - { - "input": 3, - "output": 2 - }, - { - "input": 4, - "output": 1 - } - ], - "outputType": "scalar", - "type": "map" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.priority_string": { - "binding": { - "config": { - "expression": "case({view.custom.state},\r\n1, \"High\",\r\n2, \"Medium\",\r\n3, \"Low\",\r\n4, \"Diagnostic\",\r\n5, \"No active alarms\",\r\n\"Unknown\")" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.running": { - "binding": { - "config": { - "expression": "{view.custom.running_status} \u003d 3" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.running_status": { - "binding": { - "config": { - "fallbackDelay": 2.5, - "mode": "indirect", - "references": { - "0": "{view.params.tagProps[0]}", - "fc": "{session.custom.fc}" - }, - "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/STATE" - }, - "transforms": [ - { - "expression": "coalesce({value},{view.params.forceRunningStatus},0)", - "type": "expression" - } - ], - "type": "tag" - } - }, - "custom.searchId": { - "binding": { - "config": { - "path": "session.custom.searchId" - }, - "type": "property" - }, - "persistent": true - }, - "custom.show_error": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case(\t{value},\r\n\t\t1, True,\r\n\t\t2, True,\r\n\t\t3, {session.custom.alarm_filter.show_low_alarm} || {view.custom.isMatch}\u003e0,\r\n\t\t4, {session.custom.alarm_filter.show_diagnostic} || {view.custom.isMatch}\u003e0,\r\n\t\tFalse)", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.show_running": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case(\t{value},\r\n\t\t1, False,\r\n\t\t2, False,\r\n\t\t{session.custom.alarm_filter.show_running}\r\n\t\t)", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.state": { - "binding": { - "config": { - "fallbackDelay": 2.5, - "mode": "indirect", - "references": { - "0": "{view.params.tagProps[0]}", - "fc": "{session.custom.fc}" - }, - "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/ALARMST" - }, - "transforms": [ - { - "expression": "coalesce({value},{view.params.forceFaultStatus},0)", - "type": "expression" - }, - { - "fallback": null, - "inputType": "scalar", - "mappings": [ - { - "input": 4, - "output": 1 - }, - { - "input": 3, - "output": 2 - }, - { - "input": 2, - "output": 3 - }, - { - "input": 1, - "output": 4 - }, - { - "input": 0, - "output": 5 - } - ], - "outputType": "scalar", - "type": "map" - } - ], - "type": "tag" - }, - "persistent": true - }, - "custom.state_string": { - "binding": { - "config": { - "expression": "case({view.custom.running_status},\r\n1, \"Faulted\",\r\n2, \"Stopped\",\r\n3, \"Running\",\r\n\"Unknown\")" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.visible_status": { - "binding": { - "config": { - "expression": "{view.custom.state} !\u003d 5" - }, - "type": "expr" - }, - "persistent": true - }, - "params.forceFaultStatus": { - "paramDirection": "input", - "persistent": true - }, - "params.forceRunningStatus": { - "paramDirection": "input", - "persistent": true - }, - "params.tagProps": { - "paramDirection": "inout", - "persistent": true - } - }, - "props": { - "defaultSize": { - "height": 79, - "width": 49 - } - }, - "root": { - "children": [ - { - "meta": { - "name": "pointer_symbol_3" - }, - "propConfig": { - "props.elements[1].elements[0].elements[0].elements[1].fill.paint": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "if({session.custom.colours}[\"state\"+{value}] \u003d null, \n{session.custom.colours}[\"Fallback\"],\n{session.custom.colours}[\"state\"+{value}])", - "type": "expression" - } - ], - "type": "property" - } - } - }, - "props": { - "elements": [ - { - "id": "defs2", - "name": "defs2", - "type": "defs" - }, - { - "elements": [ - { - "elements": [ - { - "elements": [ - { - "d": "m 10.648338,6.5392075 c 0,2.2076808 -1.7019291,4.4141715 -3.90961,4.4141715 -2.2076807,0 -4.0851094,-2.2064908 -4.0851094,-4.4141715 -1e-7,-2.2076807 1.7896788,-3.9973596 3.9973595,-3.9973596 2.2076809,-2e-7 3.9973599,1.7896787 3.9973599,3.9973596 z", - "fill": { - "opacity": "1", - "paint": "transparent" - }, - "id": "path7858", - "name": "path7858", - "stroke": { - "dasharray": "none", - "opacity": "1", - "paint": "#000000", - "width": "0.523875" - }, - "style": { - "color": "#000000" - }, - "type": "path" - }, - { - "d": "m 6.6503906,0.5703125 c -3.2732983,0 -5.96874998,2.6954516 -5.96874998,5.96875 0,3.2732984 6.23199968,11.0143705 6.23199968,11.0143705 0,0 5.7055007,-7.7410721 5.7055007,-11.0143705 0,-3.2732984 -2.695452,-5.96875 -5.9687504,-5.96875 z m 0,3.9433594 c 1.1420587,0 2.0253907,0.883332 2.0253907,2.0253906 0,1.1420586 -0.883332,2.0253906 -2.0253907,2.0253906 C 5.508332,8.5644531 4.625,7.6811211 4.625,6.5390625 4.625,5.3970039 5.508332,4.5136719 6.6503906,4.5136719 Z", - "fill": { - "opacity": "1" - }, - "id": "path7860", - "name": "path7860", - "stroke": { - "dasharray": "none", - "opacity": "1", - "paint": "#000000", - "width": "0.523875" - }, - "style": { - "color": "#000000" - }, - "type": "path" - } - ], - "fill": { - "opacity": "1", - "paint": "transparent" - }, - "id": "path7854", - "name": "path7854", - "stroke": { - "dasharray": "none", - "opacity": "1", - "paint": "#000000", - "width": "0.523875" - }, - "type": "group" - } - ], - "id": "path4106", - "name": "path4106", - "type": "group" - } - ], - "id": "layer1", - "name": "layer1", - "type": "group" - } - ], - "viewBox": "0 0 13.229166 18.520834" - }, - "type": "ia.shapes.svg" - } - ], - "events": { - "dom": { - "onClick": { - "config": { - "script": "\tsystem.perspective.openDock(\u0027Docked-East\u0027,params\u003d{\u0027tagProps\u0027:self.view.params.tagProps})" - }, - "scope": "G", - "type": "script" - }, - "onDoubleClick": { - "config": { - "script": "\ttagProps \u003d self.view.params.tagProps\n\tsystem.perspective.openPopup(\"StatusPopUP\", \"PopUp-Views/Controller-Equipment/Information\", params \u003d{\"tagProps\":tagProps})\n\t" - }, - "enabled": false, - "scope": "G", - "type": "script" - }, - "onMouseEnter": { - "config": { - "script": "\tfrom time import sleep\n\t\n\talarm \u003d []\n\tmessage \u003d None\n\t\n\tsleep(0.5)\n\t\n\tif system.tag.exists(\"System/aws_data\"):\n\t\tif self.view.params.tagProps[0] !\u003d \"\":\n\t\t\ttags_to_read \u003d system.tag.readBlocking(\"System/aws_data\")\n\t\t\tdecode_alarm_data \u003d system.util.jsonDecode(tags_to_read[0].value)\n\t\t\talarm \u003d [decode_alarm_data[i] for i in decode_alarm_data\n\t\t\t\t\tif decode_alarm_data[i][\u0027sourceId\u0027].startswith(self.view.params.tagProps[0])]\n\t\tif alarm:\n\t\t\talarm \u003d sorted(alarm, key \u003d lambda t:t[\u0027timestamp\u0027], reverse\u003dTrue)\n\t\t\tmessage \u003d max(alarm, key \u003d lambda p:p[\u0027priority\u0027]).get(\u0027message\u0027)\n\t\t\tif len(alarm) \u003e 1:\n\t\t\t\tmessage +\u003d \" (+\" + str(len(alarm)-1) + \")\"\n\tself.view.custom.alarm_message \u003d message" - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "root", - "tooltip": { - "enabled": true, - "location": "top-left", - "style": {} - } - }, - "propConfig": { - "meta.tooltip.style.backgroundColor": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case({value},\r\n0,{session.custom.colours.state0},\r\n1,{session.custom.colours.state1},\r\n2,{session.custom.colours.state2},\r\n3,{session.custom.colours.state3},\r\n4,{session.custom.colours.state4},\r\n5,{session.custom.colours.state5},\r\n6,{session.custom.colours.state6},\r\n{session.custom.colours.Fallback}\r\n)", - "type": "expression" - } - ], - "type": "property" - } - }, - "meta.tooltip.style.classes": { - "binding": { - "config": { - "expression": "{view.custom.priority}" - }, - "transforms": [ - { - "fallback": "Alarms-Styles/NoAlarm", - "inputType": "scalar", - "mappings": [ - { - "input": 1, - "output": "Alarms-Styles/Diagnostic" - }, - { - "input": 2, - "output": "Alarms-Styles/Low" - }, - { - "input": 3, - "output": "Alarms-Styles/Medium" - }, - { - "input": 4, - "output": "Alarms-Styles/High" - } - ], - "outputType": "style-list", - "type": "map" - } - ], - "type": "expr" - } - }, - "meta.tooltip.style.color": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "if({session.custom.colours.colour_impaired},\r\n\t\u0027#000000\u0027,\r\n\tcase(\t{value},\r\n\t\t\t1,\u0027#FFFFFF\u0027,\r\n\t\t\t2,\u0027#000000\u0027,\r\n\t\t\t3,\u0027#000000\u0027,\r\n\t\t\t4,\u0027#FFFFFF\u0027,\r\n\t\t\t5,\u0027#FFFFFF\u0027,\r\n\t\t\t\u0027#000000\u0027)\r\n\t)", - "type": "expression" - } - ], - "type": "property" - } - }, - "meta.tooltip.text": { - "binding": { - "config": { - "expression": "if(isNull({view.custom.alarm_message}),\n\"Source Id: \" + {view.params.tagProps[0]} + \n\", Priority: \" + {view.custom.priority_string} + \n\", State: \" + {view.custom.state_string},\n\"Source Id: \" + {view.params.tagProps[0]} + \n\", Alarm: \" + {view.custom.alarm_message} +\n\", Priority: \" + {view.custom.priority_string} + \n\", State: \" + {view.custom.state_string})" - }, - "type": "expr" - } - }, - "meta.visible": { - "binding": { - "config": { - "path": "view.custom.display_icon" - }, - "type": "property" - } - }, - "props.style.classes": { - "binding": { - "config": { - "expression": "if({session.custom.colours.colour_impaired} \u003d True \u0026\u0026 {view.custom.isMatch} \u003e 0,\r\n{view.custom.state} + 100 + {view.custom.isMatch},\r\n{view.custom.state} + {view.custom.isMatch})" - }, - "transforms": [ - { - "fallback": "", - "inputType": "scalar", - "mappings": [ - { - "input": 101, - "output": "State-Styles/State101" - }, - { - "input": 102, - "output": "State-Styles/State102" - }, - { - "input": 103, - "output": "State-Styles/State103" - }, - { - "input": 104, - "output": "State-Styles/State104" - }, - { - "input": 105, - "output": "State-Styles/State105" - }, - { - "input": 106, - "output": "State-Styles/State106" - }, - { - "input": 201, - "output": "State-Styles/State201" - }, - { - "input": 202, - "output": "State-Styles/State202" - }, - { - "input": 203, - "output": "State-Styles/State203" - }, - { - "input": 204, - "output": "State-Styles/State204" - }, - { - "input": 205, - "output": "State-Styles/State205" - } - ], - "outputType": "style-list", - "type": "map" - } - ], - "type": "expr" - } - } - }, - "props": { - "justify": "center", - "style": { - "cursor": "pointer" - } - }, - "type": "ia.container.flex" - } -} \ No newline at end of file diff --git a/.resources/c0fe3e821321ab9f656fddb46f7fdd416081d7e609122666598006fe532d2987 b/.resources/5bc5628c242813df4f9b90c3b336aa050c3452dcdfd47139b9ad9ccafdb88f9d similarity index 99% rename from .resources/c0fe3e821321ab9f656fddb46f7fdd416081d7e609122666598006fe532d2987 rename to .resources/5bc5628c242813df4f9b90c3b336aa050c3452dcdfd47139b9ad9ccafdb88f9d index 55823c89..3baef39f 100644 --- a/.resources/c0fe3e821321ab9f656fddb46f7fdd416081d7e609122666598006fe532d2987 +++ b/.resources/5bc5628c242813df4f9b90c3b336aa050c3452dcdfd47139b9ad9ccafdb88f9d @@ -1,9 +1,9 @@ { "custom": { "alarm_message": null, - "color": "#90EE90", + "color": "#C2C2C2", "priority": "No Active Alarms", - "state": "Enabled Not Running" + "state": "Closed" }, "params": { "angle": 0, diff --git a/.resources/5e67c6a99079b9bfc153b8edbd1fd5e8303ff09590dd15d997be0ea83bdb71ec b/.resources/5e67c6a99079b9bfc153b8edbd1fd5e8303ff09590dd15d997be0ea83bdb71ec new file mode 100644 index 00000000..c5a11803 --- /dev/null +++ b/.resources/5e67c6a99079b9bfc153b8edbd1fd5e8303ff09590dd15d997be0ea83bdb71ec @@ -0,0 +1,1182 @@ +{ + "custom": {}, + "params": { + "tagProps": [ + "TAG0", + "TAG1", + "TAG2", + "TAG3", + "TAG4", + "TAG5", + "TAG6", + "TAG7", + "TAG8", + "TAG9", + "TAG10", + "TAG11", + "TAG12", + "TAG13", + "TAG14", + "TAG15" + ] + }, + "props": { + "defaultSize": { + "height": 1080, + "width": 1920 + } + }, + "root": { + "children": [ + { + "meta": { + "name": "DPM" + }, + "position": { + "height": 1, + "width": 1 + }, + "propConfig": { + "props.params.con_lines[0]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[0]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[10]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[10]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[11]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[11]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[12]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[12]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[13]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[13]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[14]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[14]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[15]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[15]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[1]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[1]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[2]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[2]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[3]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[3]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[4]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[4]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[5]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[5]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[6]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[6]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[7]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[7]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[8]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[8]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[9]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[9]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + } + }, + "props": { + "params": { + "con_lines": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + false, + false, + false, + false, + false, + false, + false, + false + ], + "con_lines_visible": [ + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "in": false, + "out": false + }, + "path": "Windows/Tabs/Enternet Windows/Components/DPM_TO_HUB" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL10_1_EXTENDO" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0232, + "y": 0.4991 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL10_1_EXTENDO_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.0094, + "y": 0.5394 + }, + "props": { + "text": "UL10_1_EXTENDO 11.200.1.70", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL10_3" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.023, + "y": 0.6677 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL10_3_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.0068, + "y": 0.7315 + }, + "props": { + "text": "UL10_3_VFD1 11.200.1.71", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL10_4" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0216, + "y": 0.8333 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL10_4_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.0068, + "y": 0.8981 + }, + "props": { + "text": "UL10_4_VFD1 11.200.1.72", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL10_5" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0229, + "y": 0.3333 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL10_5_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.0068, + "y": 0.3986 + }, + "props": { + "text": "UL10_5_VFD1 11.200.1.73", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL10_6" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0229, + "y": 0.1667 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL10_6_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.0068, + "y": 0.2324 + }, + "props": { + "text": "UL10_6_VFD1 11.200.1.74", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL10_7" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0244 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL10_7_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.0068, + "y": 0.0653 + }, + "props": { + "text": "UL10_7_VFD1 11.200.1.75", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL10_8" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.5 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL10_8_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.5117, + "y": 0.1662 + }, + "props": { + "text": "UL10_8_VFD1 11.200.1.76", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL11_1_EXTENDO" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.625 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL11_1_EXTENDO_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.6312, + "y": 0.1664 + }, + "props": { + "text": "UL11_1_EXTENDO 11.200.1.77", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL11_3" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.75 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL11_3_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.75, + "y": 0.1664 + }, + "props": { + "text": "UL11_3_VFD1 11.200.1.78", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL11_4" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.375 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL11_4_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.3864, + "y": 0.1664 + }, + "props": { + "text": "UL11_4_VFD1 11.200.1.79", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL11_5" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.2516, + "y": 0.0019 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL11_5_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.315, + "y": 0.1682 + }, + "props": { + "text": "UL11_5_VFD1 11.200.1.80", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL11_6" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.1245 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL11_6_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.2072, + "y": 0.1646 + }, + "props": { + "text": "UL11_6_VFD1 11.200.1.81", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL11_7" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.8509, + "y": 0.3332 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL11_7_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.947, + "y": 0.3943 + }, + "props": { + "text": "UL11_7_VFD1 11.200.1.82", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL11_8" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.8514, + "y": 0.1667 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL11_8_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.947, + "y": 0.2276 + }, + "props": { + "text": "UL11_8_VFD1 11.200.1.83", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL10_3_FIO1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.8408 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/FIO_SIO" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL10_3_FIO1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.9349999999999999, + "y": 0.0619 + }, + "props": { + "text": "UL10_3_FIO1 11.200.1.84", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL11_3_FIO1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.8389, + "y": 0.4988 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/FIO_SIO" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL11_3_FIO1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.9349999999999999, + "y": 0.561 + }, + "props": { + "text": "UL11_3_FIO1 11.200.1.85", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "DPM_label" + }, + "position": { + "height": 0.0694, + "width": 0.101, + "x": 0.5831, + "y": 0.6342 + }, + "props": { + "text": "DPM1_PS4-1 11.200.1.4", + "textStyle": { + "fontSize": "2vmin" + } + }, + "type": "ia.display.label" + } + ], + "meta": { + "name": "root" + }, + "position": { + "x": 0.6348, + "y": -0.1546 + }, + "props": { + "mode": "percent" + }, + "type": "ia.container.coord" + } +} \ No newline at end of file diff --git a/.resources/5e95f3c99f8093e5cd6942452c5d5360dce2803b75c4ceb223aa256804873a4f b/.resources/5e95f3c99f8093e5cd6942452c5d5360dce2803b75c4ceb223aa256804873a4f deleted file mode 100644 index d9e000b2..00000000 Binary files a/.resources/5e95f3c99f8093e5cd6942452c5d5360dce2803b75c4ceb223aa256804873a4f and /dev/null differ diff --git a/.resources/5edfdb1cff0ae15e42dec262a3d50c37ccb4cce7ddffbbc909c68d545f9bf80a b/.resources/5edfdb1cff0ae15e42dec262a3d50c37ccb4cce7ddffbbc909c68d545f9bf80a new file mode 100644 index 00000000..a931b07c Binary files /dev/null and b/.resources/5edfdb1cff0ae15e42dec262a3d50c37ccb4cce7ddffbbc909c68d545f9bf80a differ diff --git a/.resources/5ef436a46c5c3a65adb27ba1355138394aa44c7eeaea972f44afa36c76f5143d b/.resources/5ef436a46c5c3a65adb27ba1355138394aa44c7eeaea972f44afa36c76f5143d deleted file mode 100644 index 220ba6c0..00000000 --- a/.resources/5ef436a46c5c3a65adb27ba1355138394aa44c7eeaea972f44afa36c76f5143d +++ /dev/null @@ -1,888 +0,0 @@ -{ - "custom": { - "alarm_message": null, - "covert_mode": true, - "disconnected": false, - "display_icon": true, - "error": false, - "isMatch": 0, - "plc": "value", - "priority": 0, - "priority_string": "No active alarms", - "running": false, - "searchId": "value", - "show_error": false, - "show_running": true, - "state": 5, - "state_string": "Unknown", - "visible_status": false - }, - "params": { - "directionDown": false, - "forceFaultStatus": null, - "forceRunningStatus": null, - "tagProps": [ - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value" - ] - }, - "propConfig": { - "custom.alarm_message": { - "persistent": true - }, - "custom.covert_mode": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case(\t{value},\r\n\t\t0, {session.custom.alarm_filter.show_running},\r\n\t\t1, True,\r\n\t\t2, True,\r\n\t\t3, {session.custom.alarm_filter.show_low_alarm} || {session.custom.alarm_filter.show_running},\r\n\t\t4, {session.custom.alarm_filter.show_diagnostic} || {session.custom.alarm_filter.show_running},\r\n\t\t5, {session.custom.alarm_filter.show_running},\r\n\t\tFalse)", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.disconnected": { - "binding": { - "config": { - "fallbackDelay": 2.5, - "mode": "indirect", - "references": { - "fc": "{session.custom.fc}", - "plc": "{view.custom.plc}" - }, - "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{plc}/DCN" - }, - "transforms": [ - { - "expression": "if(isNull({value}), False, {value})", - "type": "expression" - } - ], - "type": "tag" - }, - "persistent": true - }, - "custom.display_icon": { - "binding": { - "config": { - "expression": "{this.custom.covert_mode}||{this.custom.isMatch}\u003e0" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.error": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "0 \u003c {value} \u0026\u0026 {value} \u003c 5", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.isMatch": { - "binding": { - "config": { - "expression": "if({view.params.tagProps[0]}\u003d\"value\",0,\nif({this.custom.searchId}\u003d{view.params.tagProps[0]},100,0))" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.plc": { - "binding": { - "config": { - "path": "view.params.tagProps[0]" - }, - "transforms": [ - { - "expression": "split({value}, \"/\")[0]", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.priority": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "fallback": 0, - "inputType": "scalar", - "mappings": [ - { - "input": 1, - "output": 4 - }, - { - "input": 2, - "output": 3 - }, - { - "input": 3, - "output": 2 - }, - { - "input": 4, - "output": 1 - } - ], - "outputType": "scalar", - "type": "map" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.priority_string": { - "binding": { - "config": { - "expression": "case({view.custom.state},\r\n1, \"High\",\r\n2, \"Medium\",\r\n3, \"Low\",\r\n4, \"Diagnostic\",\r\n5, \"No active alarms\",\r\n\"Unknown\")" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.running": { - "binding": { - "config": { - "expression": "{view.custom.running_status} \u003d 3" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.running_status": { - "binding": { - "config": { - "fallbackDelay": 2.5, - "mode": "indirect", - "references": { - "0": "{view.params.tagProps[0]}", - "fc": "{session.custom.fc}" - }, - "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/STATE" - }, - "transforms": [ - { - "expression": "coalesce({value},{view.params.forceRunningStatus},0)", - "type": "expression" - } - ], - "type": "tag" - } - }, - "custom.searchId": { - "binding": { - "config": { - "path": "session.custom.searchId" - }, - "type": "property" - }, - "persistent": true - }, - "custom.show_error": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case(\t{value},\r\n\t\t1, True,\r\n\t\t2, True,\r\n\t\t3, {session.custom.alarm_filter.show_low_alarm} || {view.custom.isMatch}\u003e0,\r\n\t\t4, {session.custom.alarm_filter.show_diagnostic} || {view.custom.isMatch}\u003e0,\r\n\t\tFalse)", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.show_running": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case(\t{value},\r\n\t\t1, False,\r\n\t\t2, False,\r\n\t\t{session.custom.alarm_filter.show_running}\r\n\t\t)", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.state": { - "binding": { - "config": { - "fallbackDelay": 2.5, - "mode": "indirect", - "references": { - "0": "{view.params.tagProps[0]}", - "fc": "{session.custom.fc}" - }, - "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/ALARMST" - }, - "transforms": [ - { - "expression": "coalesce({value},{view.params.forceFaultStatus},0)", - "type": "expression" - }, - { - "fallback": null, - "inputType": "scalar", - "mappings": [ - { - "input": 4, - "output": 1 - }, - { - "input": 3, - "output": 2 - }, - { - "input": 2, - "output": 3 - }, - { - "input": 1, - "output": 4 - }, - { - "input": 0, - "output": 5 - } - ], - "outputType": "scalar", - "type": "map" - } - ], - "type": "tag" - }, - "persistent": true - }, - "custom.state_string": { - "binding": { - "config": { - "expression": "case({view.custom.running_status},\r\n1, \"Faulted\",\r\n2, \"Stopped\",\r\n3, \"Running\",\r\n\"Unknown\")" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.visible_status": { - "binding": { - "config": { - "expression": "{view.custom.state} !\u003d 5" - }, - "type": "expr" - }, - "persistent": true - }, - "params.directionDown": { - "paramDirection": "input", - "persistent": true - }, - "params.forceFaultStatus": { - "paramDirection": "input", - "persistent": true - }, - "params.forceRunningStatus": { - "paramDirection": "input", - "persistent": true - }, - "params.tagProps": { - "paramDirection": "inout", - "persistent": true - } - }, - "props": { - "defaultSize": { - "height": 29, - "width": 20 - } - }, - "root": { - "children": [ - { - "meta": { - "name": "ErrorStatus", - "tooltip": { - "style": { - "fontSize": 16 - } - } - }, - "position": { - "grow": 1 - }, - "propConfig": { - "meta.visible": { - "binding": { - "config": { - "expression": "{view.custom.display_icon} \u0026\u0026 {view.custom.error} \u0026! {view.params.directionDown}" - }, - "type": "expr" - } - }, - "position.display": { - "binding": { - "config": { - "expression": "{view.custom.display_icon} \u0026\u0026 {view.custom.error} \u0026! {view.params.directionDown} \u0026\u0026 {view.custom.show_error}" - }, - "type": "expr" - } - }, - "props.elements[0].fill.paint": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "if({session.custom.colours}[\"state\"+{value}] \u003d null, \r\n{session.custom.colours}[\"Fallback\"],\r\n{session.custom.colours}[\"state\"+{value}])", - "type": "expression" - } - ], - "type": "property" - } - }, - "props.elements[1].fill.paint": { - "binding": { - "config": { - "expression": "if({view.custom.show_running}, \"#FFFFFF\", \"#00000000\")" - }, - "type": "expr" - } - }, - "props.elements[1].stroke.width": { - "binding": { - "config": { - "expression": "if({session.custom.alarm_filter.show_running},2,0)" - }, - "type": "expr" - } - }, - "props.elements[2].fill": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "if({session.custom.colours.colour_impaired}, \r\n\tcase(\t{value},\r\n\t\t\t1,\u0027#FFFFFF\u0027,\r\n\t\t\t2,\u0027#FFFFFF\u0027,\r\n\t\t\t3,\u0027#000000\u0027,\r\n\t\t\t4,\u0027#000000\u0027,\r\n\t\t\t\u0027#000000\u0027),\r\n\tcase(\t{value},\r\n\t\t\t1,\u0027#FFFFFF\u0027,\r\n\t\t\t2,\u0027#000000\u0027,\r\n\t\t\t3,\u0027#000000\u0027,\r\n\t\t\t4,\u0027#FFFFFF\u0027,\r\n\t\t\t\u0027#000000\u0027)\r\n\t)", - "type": "expression" - } - ], - "type": "property" - } - }, - "props.elements[2].text": { - "binding": { - "config": { - "path": "view.custom.priority" - }, - "type": "property" - } - } - }, - "props": { - "elements": [ - { - "d": "M 31,26 C 41,36 51,46 61,56 51,66 41,76 31,86 21,76 11,66 1,56 11,46 21,36 31,26 Z", - "fill": {}, - "name": "path", - "stroke": { - "paint": "#000000", - "width": 2 - }, - "type": "path" - }, - { - "d": "M 61,50 C 61,43.346667 61,36.693333 61,30.04 51,20.026667 41,10.013333 31,0 21,10.013333 11,20.026667 1,30.04 1,36.693333 1,43.346667 1,50 11,40.013333 21,30.026667 31,20.04 41,30.026667 51,40.013333 61,50 Z", - "fill": {}, - "name": "path", - "stroke": { - "paint": "#000000" - }, - "type": "path" - }, - { - "style": { - "classes": "", - "fontSize": 42, - "fontWeight": "bolder" - }, - "type": "text", - "x": 20, - "y": 70 - } - ], - "style": { - "overflow": "hidden" - }, - "viewBox": "-0.5 -0.5 64 89" - }, - "type": "ia.shapes.svg" - }, - { - "meta": { - "name": "ErrorStatus_Down" - }, - "position": { - "grow": 1 - }, - "propConfig": { - "meta.visible": { - "binding": { - "config": { - "expression": "{view.custom.display_icon} \u0026\u0026 {view.custom.error} \u0026\u0026 {view.params.directionDown}" - }, - "type": "expr" - } - }, - "position.display": { - "binding": { - "config": { - "expression": "{view.custom.display_icon} \u0026\u0026 {view.custom.error} \u0026\u0026 {view.params.directionDown} \u0026\u0026 {view.custom.show_error}" - }, - "type": "expr" - } - }, - "props.elements[0].fill.paint": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "if({session.custom.colours}[\"state\"+{value}] \u003d null, \r\n{session.custom.colours}[\"Fallback\"],\r\n{session.custom.colours}[\"state\"+{value}])", - "type": "expression" - } - ], - "type": "property" - } - }, - "props.elements[1].fill.paint": { - "binding": { - "config": { - "expression": "if({view.custom.show_running}, \"#FFFFFF\", \"#00000000\")" - }, - "type": "expr" - } - }, - "props.elements[1].stroke.width": { - "binding": { - "config": { - "expression": "if({session.custom.alarm_filter.show_running},2,0)" - }, - "type": "expr" - } - }, - "props.elements[2].fill": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "if({session.custom.colours.colour_impaired}, \r\n\tcase(\t{value},\r\n\t\t\t1,\u0027#FFFFFF\u0027,\r\n\t\t\t2,\u0027#FFFFFF\u0027,\r\n\t\t\t3,\u0027#000000\u0027,\r\n\t\t\t4,\u0027#000000\u0027,\r\n\t\t\t\u0027#000000\u0027),\r\n\tcase(\t{value},\r\n\t\t\t1,\u0027#FFFFFF\u0027,\r\n\t\t\t2,\u0027#000000\u0027,\r\n\t\t\t3,\u0027#000000\u0027,\r\n\t\t\t4,\u0027#FFFFFF\u0027,\r\n\t\t\t\u0027#000000\u0027)\r\n\t)", - "type": "expression" - } - ], - "type": "property" - } - }, - "props.elements[2].text": { - "binding": { - "config": { - "path": "view.custom.priority" - }, - "type": "property" - } - } - }, - "props": { - "elements": [ - { - "d": "M 32,2 C 42,12 52,22 62,32 52,42 42,52 32,62 22,52 12,42 2,32 12,22 22,12 32,2 Z", - "fill": {}, - "name": "path", - "stroke": { - "paint": "#000000", - "width": 2 - }, - "type": "path" - }, - { - "d": "M 2,38 C 2,44.653333 2,51.306667 2,57.96 12,67.973333 22,77.986667 32,88 42,77.986667 52,67.973333 62,57.96 62,51.306667 62,44.653333 62,38 52,47.986667 42,57.973333 32,67.96 22,57.973333 12,47.986667 2,38 Z", - "fill": {}, - "name": "path", - "stroke": { - "paint": "#000000" - }, - "type": "path" - }, - { - "style": { - "classes": "", - "fontSize": 42, - "fontWeight": "bolder", - "textOrientation": "upright", - "writingMode": "horizontal-tb" - }, - "type": "text", - "x": 20, - "y": 44.5 - } - ], - "style": { - "overflow": "hidden" - }, - "viewBox": "-0.5 -0.5 65 89" - }, - "type": "ia.shapes.svg" - }, - { - "meta": { - "name": "RunningStatus" - }, - "position": { - "grow": 1 - }, - "propConfig": { - "position.display": { - "binding": { - "config": { - "expression": "if((({view.custom.display_icon} \u0026\u0026 !{view.custom.error}) || ({view.custom.show_running} \u0026! {view.custom.show_error})) \u0026! {view.params.directionDown},True,False)" - }, - "type": "expr" - } - }, - "position.rotate.angle": { - "binding": { - "config": { - "path": "view.params.directionLeft" - }, - "transforms": [ - { - "expression": "if({value}, \u0027180deg\u0027, \u00270deg\u0027)", - "type": "expression" - } - ], - "type": "property" - } - } - }, - "props": { - "elements": [ - { - "d": "M 0,70 C 0,56.666667 0,43.333333 0,30 10,20 20,10 30,0 40,10 50,20 60,30 60,43.333333 60,56.666667 60,70 50,60 40,50 30,40 20,50 10,60 0,70 Z", - "fill": { - "paint": "#FFFFFF" - }, - "name": "path", - "stroke": { - "paint": "#4c4c4c", - "width": 3 - }, - "type": "path" - } - ], - "style": { - "overflow": "hidden" - }, - "viewBox": "-0.5 -0.5 61 71" - }, - "type": "ia.shapes.svg" - }, - { - "meta": { - "name": "RunningStatus_Down" - }, - "position": { - "grow": 1 - }, - "propConfig": { - "position.display": { - "binding": { - "config": { - "expression": "if((({view.custom.display_icon} \u0026\u0026 !{view.custom.error}) || ({view.custom.show_running} \u0026! {view.custom.show_error})) \u0026\u0026 {view.params.directionDown},True,False)" - }, - "type": "expr" - } - }, - "position.rotate.angle": { - "binding": { - "config": { - "path": "view.params.directionLeft" - }, - "transforms": [ - { - "expression": "if({value}, \u0027180deg\u0027, \u00270deg\u0027)", - "type": "expression" - } - ], - "type": "property" - } - } - }, - "props": { - "elements": [ - { - "d": "m 60,0 c 0,13.333333 0,26.666667 0,40 C 50,50 40,60 30,70 20,60 10,50 0,40 0,26.666667 0,13.333333 0,0 10,10 20,20 30,30 40,20 50,10 60,0 Z", - "fill": { - "paint": "#FFFFFF" - }, - "name": "path", - "stroke": { - "paint": "#4c4c4c", - "width": 3 - }, - "type": "path" - } - ], - "style": { - "overflow": "hidden" - }, - "viewBox": "-0.5 -0.5 61 71" - }, - "type": "ia.shapes.svg" - } - ], - "events": { - "dom": { - "onClick": { - "config": { - "script": "\tsystem.perspective.openDock(\u0027Docked-East\u0027,params\u003d{\u0027tagProps\u0027:self.view.params.tagProps})" - }, - "scope": "G", - "type": "script" - }, - "onDoubleClick": { - "config": { - "script": "\ttagProps \u003d self.view.params.tagProps\n\tsystem.perspective.openPopup(\"StatusPopUP\", \"PopUp-Views/Controller-Equipment/Information\", params \u003d{\"tagProps\":tagProps})\n\t" - }, - "enabled": false, - "scope": "G", - "type": "script" - }, - "onMouseEnter": { - "config": { - "script": "\tfrom time import sleep\n\t\n\talarm \u003d []\n\tmessage \u003d None\n\t\n\tsleep(0.5)\n\t\n\tif system.tag.exists(\"System/aws_data\"):\n\t\tif self.view.params.tagProps[0] !\u003d \"\":\n\t\t\ttags_to_read \u003d system.tag.readBlocking(\"System/aws_data\")\n\t\t\tdecode_alarm_data \u003d system.util.jsonDecode(tags_to_read[0].value)\n\t\t\talarm \u003d [decode_alarm_data[i] for i in decode_alarm_data\n\t\t\t\t\tif decode_alarm_data[i][\u0027sourceId\u0027].startswith(self.view.params.tagProps[0])]\n\t\tif alarm:\n\t\t\talarm \u003d sorted(alarm, key \u003d lambda t:t[\u0027timestamp\u0027], reverse\u003dTrue)\n\t\t\tmessage \u003d max(alarm, key \u003d lambda p:p[\u0027priority\u0027]).get(\u0027message\u0027)\n\t\t\tif len(alarm) \u003e 1:\n\t\t\t\tmessage +\u003d \" (+\" + str(len(alarm)-1) + \")\"\n\tself.view.custom.alarm_message \u003d message" - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "root", - "tooltip": { - "enabled": true, - "location": "top-left", - "style": {} - } - }, - "propConfig": { - "meta.tooltip.style.backgroundColor": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case({value},\r\n0,{session.custom.colours.state0},\r\n1,{session.custom.colours.state1},\r\n2,{session.custom.colours.state2},\r\n3,{session.custom.colours.state3},\r\n4,{session.custom.colours.state4},\r\n5,{session.custom.colours.state5},\r\n6,{session.custom.colours.state6},\r\n{session.custom.colours.fallback}\r\n)", - "type": "expression" - } - ], - "type": "property" - } - }, - "meta.tooltip.style.classes": { - "binding": { - "config": { - "expression": "{view.custom.priority}" - }, - "transforms": [ - { - "fallback": "Alarms-Styles/NoAlarm", - "inputType": "scalar", - "mappings": [ - { - "input": 1, - "output": "Alarms-Styles/Diagnostic" - }, - { - "input": 2, - "output": "Alarms-Styles/Low" - }, - { - "input": 3, - "output": "Alarms-Styles/Medium" - }, - { - "input": 4, - "output": "Alarms-Styles/High" - } - ], - "outputType": "style-list", - "type": "map" - } - ], - "type": "expr" - } - }, - "meta.tooltip.style.color": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "if({session.custom.colours.colour_impaired},\r\n\t\u0027#000000\u0027,\r\n\tcase(\t{value},\r\n\t\t\t1,\u0027#FFFFFF\u0027,\r\n\t\t\t2,\u0027#000000\u0027,\r\n\t\t\t3,\u0027#000000\u0027,\r\n\t\t\t4,\u0027#FFFFFF\u0027,\r\n\t\t\t5,\u0027#FFFFFF\u0027,\r\n\t\t\t\u0027#000000\u0027)\r\n\t)", - "type": "expression" - } - ], - "type": "property" - } - }, - "meta.tooltip.text": { - "binding": { - "config": { - "expression": "if({view.custom.disconnected} \u003d False,\n\tif(isNull({view.custom.alarm_message}),\n\t\"Source Id: \" + {view.params.tagProps[0]} +\n\t\", Priority: \" + {view.custom.priority_string} +\n\t\", State: \" + {view.custom.state_string},\n\t\"Source Id: \" + {view.params.tagProps[0]} +\n\t\", Alarm: \" + {view.custom.alarm_message} +\n\t\", Priority: \" + {view.custom.priority_string} +\n\t\", State: \" + {view.custom.state_string}),\n\"Source Id: \" +{view.params.tagProps[0]} + \", Priority: Unknown, State: Unknown\")" - }, - "type": "expr" - } - }, - "meta.visible": { - "binding": { - "config": { - "path": "view.custom.display_icon" - }, - "type": "property" - } - }, - "props.style.borderStyle": { - "binding": { - "config": { - "path": "view.custom.disconnected" - }, - "transforms": [ - { - "fallback": "", - "inputType": "scalar", - "mappings": [ - { - "input": true, - "output": "solid" - }, - { - "input": false, - "output": "none" - } - ], - "outputType": "scalar", - "type": "map" - } - ], - "type": "property" - } - }, - "props.style.classes": { - "binding": { - "config": { - "expression": "if({session.custom.colours.colour_impaired} \u003d True \u0026\u0026 {view.custom.isMatch} \u003e 0,\r\n{view.custom.state} + 100 + {view.custom.isMatch},\r\n{view.custom.state} + {view.custom.isMatch})" - }, - "transforms": [ - { - "fallback": "", - "inputType": "scalar", - "mappings": [ - { - "input": 101, - "output": "State-Styles/State101" - }, - { - "input": 102, - "output": "State-Styles/State102" - }, - { - "input": 103, - "output": "State-Styles/State103" - }, - { - "input": 104, - "output": "State-Styles/State104" - }, - { - "input": 105, - "output": "State-Styles/State105" - }, - { - "input": 106, - "output": "State-Styles/State106" - }, - { - "input": 201, - "output": "State-Styles/State201" - }, - { - "input": 202, - "output": "State-Styles/State202" - }, - { - "input": 203, - "output": "State-Styles/State203" - }, - { - "input": 204, - "output": "State-Styles/State204" - }, - { - "input": 205, - "output": "State-Styles/State205" - } - ], - "outputType": "style-list", - "type": "map" - } - ], - "type": "expr" - } - } - }, - "props": { - "direction": "column", - "justify": "center", - "style": { - "borderColor": "#FF0000", - "borderWidth": "2px", - "cursor": "pointer" - } - }, - "type": "ia.container.flex" - } -} \ No newline at end of file diff --git a/.resources/412ceafada051bdc2cd86393249747209c8eb2c9e923b62b2a13520e7a344e9f b/.resources/5fd501d9fa243423d2c622c475f7d6c3f6eb13e0d0067c3ae178a8ceb335430c similarity index 99% rename from .resources/412ceafada051bdc2cd86393249747209c8eb2c9e923b62b2a13520e7a344e9f rename to .resources/5fd501d9fa243423d2c622c475f7d6c3f6eb13e0d0067c3ae178a8ceb335430c index 98a85e40..3a50ecef 100644 --- a/.resources/412ceafada051bdc2cd86393249747209c8eb2c9e923b62b2a13520e7a344e9f +++ b/.resources/5fd501d9fa243423d2c622c475f7d6c3f6eb13e0d0067c3ae178a8ceb335430c @@ -7,9 +7,9 @@ "$": [ "ts", 192, - 1754654771271 + 1754393666432 ], - "$ts": 1754654771271 + "$ts": 1754393666432 } } }, @@ -289,7 +289,7 @@ "$": [ "ds", 192, - 1754654771334 + 1754393747032 ], "$columns": [ { diff --git a/.resources/60e6a356f3acf36a0666b0e13ae82c00f6d23efa826ee0de6da6f4ed7ce2e14c b/.resources/60e6a356f3acf36a0666b0e13ae82c00f6d23efa826ee0de6da6f4ed7ce2e14c deleted file mode 100644 index 25052818..00000000 Binary files a/.resources/60e6a356f3acf36a0666b0e13ae82c00f6d23efa826ee0de6da6f4ed7ce2e14c and /dev/null differ diff --git a/.resources/6137443bae000a402c659c20536bf604a5a8140eced41f60227f9b9284c1f248 b/.resources/6137443bae000a402c659c20536bf604a5a8140eced41f60227f9b9284c1f248 new file mode 100644 index 00000000..c6c0f1f6 --- /dev/null +++ b/.resources/6137443bae000a402c659c20536bf604a5a8140eced41f60227f9b9284c1f248 @@ -0,0 +1,1182 @@ +{ + "custom": {}, + "params": { + "tagProps": [ + "TAG0", + "TAG1", + "TAG2", + "TAG3", + "TAG4", + "TAG5", + "TAG6", + "TAG7", + "TAG8", + "TAG9", + "TAG10", + "TAG11", + "TAG12", + "TAG13", + "TAG14", + "TAG15" + ] + }, + "props": { + "defaultSize": { + "height": 1080, + "width": 1920 + } + }, + "root": { + "children": [ + { + "meta": { + "name": "DPM" + }, + "position": { + "height": 1, + "width": 1 + }, + "propConfig": { + "props.params.con_lines[0]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[0]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[10]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[10]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[11]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[11]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[12]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[12]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[13]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[13]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[14]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[14]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[15]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[15]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[1]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[1]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[2]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[2]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[3]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[3]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[4]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[4]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[5]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[5]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[6]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[6]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[7]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[7]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[8]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[8]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[9]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[9]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + } + }, + "props": { + "params": { + "con_lines": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + false, + false, + false, + false, + false, + false, + false, + false + ], + "con_lines_visible": [ + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "in": false, + "out": false + }, + "path": "Windows/Tabs/Enternet Windows/Components/DPM_TO_HUB" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "DPM01_VS01B_FIO1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0367, + "y": 0.4991 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/FIO_SIO" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "DPM01_VS01B_FIO1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.0094, + "y": 0.5394 + }, + "props": { + "text": "DPM01_VS01B_FIO1 11.200.1.121", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "DPM01_VS01B_FIO2" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0365, + "y": 0.6677 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/FIO_SIO" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "DPM01_VS01B_FIO2_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.0068, + "y": 0.7315 + }, + "props": { + "text": "DPM01_VS01B_FIO2 11.200.1.122", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "DPM01_VS01B_FIO3" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0351, + "y": 0.8333 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/FIO_SIO" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "DPM01_VS01B_FIO3_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.0068, + "y": 0.8981 + }, + "props": { + "text": "DPM01_VS01B_FIO3 11.200.1.123", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "DPM01_VS01B_FIO4" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0364, + "y": 0.3333 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/FIO_SIO" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "DPM01_VS01B_FIO4_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.0068, + "y": 0.3986 + }, + "props": { + "text": "DPM01_VS01B_FIO4 11.200.1.124", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "DPM01_VS01B_FIO5" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0364, + "y": 0.1667 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/FIO_SIO" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "DPM01_VS01B_FIO5_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.0068, + "y": 0.2324 + }, + "props": { + "text": "DPM01_VS01B_FIO5 11.200.1.125", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "DPM01_VS01B_FIO6" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0379 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/FIO_SIO" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "DPM01_VS01B_FIO6_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.0068, + "y": 0.0653 + }, + "props": { + "text": "DPM01_VS01B_FIO6 11.200.1.126", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "DPM01_VS01B_FIO7" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.5 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/FIO_SIO" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "DPM01_VS01B_FIO7_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.5117, + "y": 0.1662 + }, + "props": { + "text": "DPM01_VS01B_FIO7 11.200.1.127", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "DPM01_VS01B_FIO8" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.625 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/FIO_SIO" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "DPM01_VS01B_FIO8_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.6312, + "y": 0.1664 + }, + "props": { + "text": "DPM01_VS01B_FIO8 11.200.1.128", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "DPM01_VS01B_FIO9" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.75 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/FIO_SIO" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "DPM01_VS01B_FIO9_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.75, + "y": 0.1664 + }, + "props": { + "text": "DPM01_VS01B_FIO9 11.200.1.129", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "DPM01_VS01B_FIO10" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.375 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/FIO_SIO" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "DPM01_VS01B_FIO10_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.3864, + "y": 0.1664 + }, + "props": { + "text": "DPM01_VS01B_FIO10 11.200.1.130", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "DPM01_VS01B_FIO11" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.2516, + "y": 0.0019 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/FIO_SIO" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "DPM01_VS01B_FIO11_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.315, + "y": 0.1682 + }, + "props": { + "text": "DPM01_VS01B_FIO11 11.200.1.131", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "DPM01_VS01B_FIO12" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.1245 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/FIO_SIO" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "DPM01_VS01B_FIO12_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.2072, + "y": 0.1646 + }, + "props": { + "text": "DPM01_VS01B_FIO12 11.200.1.132", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "DPM01_VS01B_FIO13" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.8389, + "y": 0.3332 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/FIO_SIO" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "DPM01_VS01B_FIO13_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.9349999999999999, + "y": 0.3943 + }, + "props": { + "text": "DPM01_VS01B_FIO13 11.200.1.133", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "DPM01_VS01B_FIO14" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.8394, + "y": 0.1667 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/FIO_SIO" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "DPM01_VS01B_FIO14_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.9349999999999999, + "y": 0.2276 + }, + "props": { + "text": "DPM01_VS01B_FIO14 11.200.1.134", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "DPM01_VS01B_FIO15" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.8408 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/FIO_SIO" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "DPM01_VS01B_FIO15_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.9349999999999999, + "y": 0.0619 + }, + "props": { + "text": "DPM01_VS01B_FIO15 11.200.1.135", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "DPM01_VS01B_FIO16" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.8389, + "y": 0.4988 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/FIO_SIO" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "DPM01_VS01B_FIO16_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.9349999999999999, + "y": 0.561 + }, + "props": { + "text": "DPM01_VS01B_FIO16 11.200.1.136", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "DPM_label" + }, + "position": { + "height": 0.0694, + "width": 0.101, + "x": 0.5831, + "y": 0.6342 + }, + "props": { + "text": "DPM01_VS01B 11.200.1.3", + "textStyle": { + "fontSize": "2vmin" + } + }, + "type": "ia.display.label" + } + ], + "meta": { + "name": "root" + }, + "position": { + "x": 0.6348, + "y": -0.1546 + }, + "props": { + "mode": "percent" + }, + "type": "ia.container.coord" + } +} \ No newline at end of file diff --git a/.resources/6157681d400022dce581cae1bf04f03ee4d74ad988d01de57716049d726e4489 b/.resources/6157681d400022dce581cae1bf04f03ee4d74ad988d01de57716049d726e4489 deleted file mode 100644 index 7a223120..00000000 Binary files a/.resources/6157681d400022dce581cae1bf04f03ee4d74ad988d01de57716049d726e4489 and /dev/null differ diff --git a/.resources/40e3c87fb41b09466fb4f8957cb375fbceb49311ef47e1bda4a45a99a9a261ae b/.resources/61b6d6b467738066024defb4705c84c139e33bdd8fe83845787a484f883c7b58 similarity index 99% rename from .resources/40e3c87fb41b09466fb4f8957cb375fbceb49311ef47e1bda4a45a99a9a261ae rename to .resources/61b6d6b467738066024defb4705c84c139e33bdd8fe83845787a484f883c7b58 index 42ecc669..c5277c4f 100644 --- a/.resources/40e3c87fb41b09466fb4f8957cb375fbceb49311ef47e1bda4a45a99a9a261ae +++ b/.resources/61b6d6b467738066024defb4705c84c139e33bdd8fe83845787a484f883c7b58 @@ -9,8 +9,8 @@ "MCM06", "MCM07" ], - "color": "#00FF00", - "state": "Running" + "color": "#C2C2C2", + "state": "Closed" }, "params": { "tagProps": [ @@ -2602,7 +2602,6 @@ "grow": 1 }, "props": { - "currentTabIndex": 2, "menuType": "modern", "tabSize": { "width": 1000 diff --git a/.resources/664fd080a5366c6676dfa51c9e6cd6b85aa93208ef18cbd0416680df1d765cb5 b/.resources/664fd080a5366c6676dfa51c9e6cd6b85aa93208ef18cbd0416680df1d765cb5 new file mode 100644 index 00000000..b245a5c0 --- /dev/null +++ b/.resources/664fd080a5366c6676dfa51c9e6cd6b85aa93208ef18cbd0416680df1d765cb5 @@ -0,0 +1,644 @@ +{ + "custom": { + "alarm_message": null, + "color": "#C2C2C2", + "priority": "No Active Alarms", + "state": "Closed" + }, + "params": { + "angle": 0, + "directionLeft": false, + "tagProps": [ + "System/MCM01/Conveyor/VFD/UL1_3_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "propConfig": { + "custom.color": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[0]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Color" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},0)", + "type": "expression" + }, + { + "fallback": "#000000", + "inputType": "scalar", + "mappings": [ + { + "input": 0, + "output": "#C2C2C2" + }, + { + "input": 1, + "output": "#FF0000" + }, + { + "input": 2, + "output": "#FFA500" + }, + { + "input": 3, + "output": "#0008FF" + }, + { + "input": 4, + "output": "#00FF00" + }, + { + "input": 5, + "output": "#FFF700" + }, + { + "input": 6, + "output": "#87CEEB" + }, + { + "input": 7, + "output": "#90EE90" + }, + { + "input": 8, + "output": "#964B00" + }, + { + "input": 9, + "output": "#FFFFFF" + }, + { + "input": 10, + "output": "#000000" + }, + { + "input": 11, + "output": "#8B0000" + }, + { + "input": 12, + "output": "#808080" + }, + { + "input": 13, + "output": "#8B8000" + }, + { + "input": 14, + "output": "#006400" + }, + { + "input": 15, + "output": "#FFFFC5" + }, + { + "input": 16, + "output": "#00008B" + }, + { + "input": 17, + "output": "#FF7276" + }, + { + "input": 18, + "output": "#556B2F" + }, + { + "input": 19, + "output": "#B43434" + }, + { + "input": 20, + "output": "#4682B4" + }, + { + "input": 21, + "output": "#FFD700" + } + ], + "outputType": "color", + "type": "map" + } + ], + "type": "tag" + }, + "persistent": true + }, + "custom.priority": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[0]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Priority" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},0)", + "type": "expression" + }, + { + "fallback": null, + "inputType": "scalar", + "mappings": [ + { + "input": 0, + "output": "No Active Alarms" + }, + { + "input": 1, + "output": "High" + }, + { + "input": 2, + "output": "Medium" + }, + { + "input": 3, + "output": "Low" + }, + { + "input": 4, + "output": "Diagnostic" + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + }, + "persistent": true + }, + "custom.state": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[0]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/State" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},0)", + "type": "expression" + }, + { + "fallback": "Unknown", + "inputType": "scalar", + "mappings": [ + { + "input": 0, + "output": "Closed" + }, + { + "input": 1, + "output": "Actuated" + }, + { + "input": 2, + "output": "Communication Faulted" + }, + { + "input": 3, + "output": "Conveyor Running In Maintenance Mode" + }, + { + "input": 4, + "output": "Disabled" + }, + { + "input": 5, + "output": "Disconnected" + }, + { + "input": 6, + "output": "Stopped" + }, + { + "input": 7, + "output": "Enabled Not Running" + }, + { + "input": 8, + "output": "Encoder Fault" + }, + { + "input": 9, + "output": "Energy Management" + }, + { + "input": 10, + "output": "ESTOP Was Actuated" + }, + { + "input": 11, + "output": "EStopped" + }, + { + "input": 12, + "output": "EStopped Locally" + }, + { + "input": 13, + "output": "Extended Faulted" + }, + { + "input": 14, + "output": "Full" + }, + { + "input": 15, + "output": "Gaylord Start Pressed" + }, + { + "input": 16, + "output": "Jam Fault" + }, + { + "input": 17, + "output": "Jammed" + }, + { + "input": 18, + "output": "Loading Allowed" + }, + { + "input": 19, + "output": "Loading Not Allowed" + }, + { + "input": 20, + "output": "Low Air Pressure Fault Was Present" + }, + { + "input": 21, + "output": "Maintenance Mode" + }, + { + "input": 22, + "output": "Conveyor Stopped In Maintenance Mode" + }, + { + "input": 23, + "output": "Motor Faulted" + }, + { + "input": 24, + "output": "Motor Was Faulted" + }, + { + "input": 25, + "output": "Normal" + }, + { + "input": 26, + "output": "Off Inactive" + }, + { + "input": 27, + "output": "Open" + }, + { + "input": 28, + "output": "PLC Ready To Run" + }, + { + "input": 29, + "output": "Package Release Pressed" + }, + { + "input": 30, + "output": "Power Branch Was Faulted" + }, + { + "input": 31, + "output": "Pressed" + }, + { + "input": 32, + "output": "Ready To Receive" + }, + { + "input": 33, + "output": "Running" + }, + { + "input": 34, + "output": "Started" + }, + { + "input": 35, + "output": "Stopped" + }, + { + "input": 36, + "output": "System Started" + }, + { + "input": 37, + "output": "Unknown" + }, + { + "input": 38, + "output": "VFD Fault" + }, + { + "input": 39, + "output": "Conveyor Running In Power Saving Mode" + }, + { + "input": 40, + "output": "Conveyor Jogging In Maintenance Mode" + }, + { + "input": 41, + "output": "VFD Reset Required" + }, + { + "input": 42, + "output": "Jam Reset Push Button Pressed" + }, + { + "input": 43, + "output": "Start Push Button Pressed" + }, + { + "input": 44, + "output": "Stop Push Button Pressed" + }, + { + "input": 45, + "output": "No Container" + }, + { + "input": 46, + "output": "Ready To Be Enabled" + }, + { + "input": 47, + "output": "Half Full" + }, + { + "input": 48, + "output": "Enabled" + }, + { + "input": 49, + "output": "Tipper Faulted" + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + }, + "persistent": true + }, + "params.angle": { + "paramDirection": "input", + "persistent": true + }, + "params.directionLeft": { + "paramDirection": "input", + "persistent": true + }, + "params.tagProps": { + "paramDirection": "inout", + "persistent": true + } + }, + "props": { + "defaultSize": { + "height": 20, + "width": 29 + } + }, + "root": { + "children": [ + { + "meta": { + "name": "RunningStatus" + }, + "position": { + "grow": 1 + }, + "propConfig": { + "position.display": { + "binding": { + "config": { + "expression": "if(({view.custom.display_icon} || ({view.custom.show_running} \u0026\u0026 !{view.custom.show_error})) \u0026\u0026 !{view.params.directionLeft}, True, False)" + }, + "enabled": false, + "type": "expr" + } + }, + "props.elements[0].fill.paint": { + "binding": { + "config": { + "expression": "if(\r\n {view.custom.state} \u003d \"Closed\",\r\n \"#000000\",\r\n {view.custom.color}\r\n)\r\n" + }, + "type": "expr" + } + }, + "props.style.transform": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[0]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Maintenance/Direction" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},\"\")", + "type": "expression" + }, + { + "fallback": "", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "scaleX(-1)" + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + } + }, + "props": { + "elements": [ + { + "d": "M 5 15 L 45 15 L 60 25 L 60 55 L 20 55 L 5 45 Z M 5 15 L 15 5 L 55 5 L 60 25 M 45 15 L 55 5", + "fill": {}, + "name": "path", + "stroke": { + "paint": "#4c4c4c", + "width": "2" + }, + "type": "path" + } + ], + "style": { + "overflow": "hidden" + }, + "viewBox": "-1.5 -1.5 73 63" + }, + "type": "ia.shapes.svg" + } + ], + "events": { + "dom": { + "onClick": { + "config": { + "script": "\tsystem.perspective.openDock(\u0027Docked-Eas-TPR\u0027,params\u003d{\u0027tagProps\u0027:self.view.params.tagProps})" + }, + "scope": "G", + "type": "script" + }, + "onDoubleClick": { + "config": { + "script": "\ttagProps \u003d self.view.params.tagProps\n\tsystem.perspective.openPopup(\"StatusPopUP\", \"PopUp-Views/Controller-Equipment/Information\", params \u003d{\"tagProps\":tagProps})\n\t" + }, + "enabled": false, + "scope": "G", + "type": "script" + }, + "onMouseEnter": { + "config": { + "script": "\tfrom time import sleep\n\t\n\talarm \u003d []\n\tmessage \u003d None\n\t\n\tsleep(0.5)\n\t\n\tif system.tag.exists(\"System/aws_data\"):\n\t\tif self.view.params.tagProps[0] !\u003d \"\":\n\t\t\ttags_to_read \u003d system.tag.readBlocking(\"System/aws_data\")\n\t\t\tdecode_alarm_data \u003d system.util.jsonDecode(tags_to_read[0].value)\n\t\t\talarm \u003d [decode_alarm_data[i] for i in decode_alarm_data\n\t\t\t\t\tif decode_alarm_data[i][\u0027sourceId\u0027].startswith(self.view.params.tagProps[0])]\n\t\tif alarm:\n\t\t\talarm \u003d sorted(alarm, key \u003d lambda t:t[\u0027timestamp\u0027], reverse\u003dTrue)\n\t\t\tmessage \u003d max(alarm, key \u003d lambda p:p[\u0027priority\u0027]).get(\u0027message\u0027)\n\t\t\tif len(alarm) \u003e 1:\n\t\t\t\tmessage +\u003d \" (+\" + str(len(alarm)-1) + \")\"\n\tself.view.custom.alarm_message \u003d message" + }, + "scope": "G", + "type": "script" + } + } + }, + "meta": { + "name": "root", + "tooltip": { + "enabled": true, + "location": "top-left", + "style": {} + } + }, + "propConfig": { + "meta.tooltip.style.classes": { + "binding": { + "config": { + "expression": "{view.custom.priority}" + }, + "transforms": [ + { + "fallback": "Alarms-Styles/NoAlarm", + "inputType": "scalar", + "mappings": [ + { + "input": "High", + "output": "Alarms-Styles/High" + }, + { + "input": "Medium", + "output": "Alarms-Styles/Medium" + }, + { + "input": "Low", + "output": "Alarms-Styles/Low" + }, + { + "input": "Diagnostic", + "output": "Alarms-Styles/Diagnostic" + } + ], + "outputType": "style-list", + "type": "map" + } + ], + "type": "expr" + } + }, + "meta.tooltip.text": { + "binding": { + "config": { + "expression": "if(\n {view.custom.state} !\u003d \"Closed\",\n \"Source Id: \" + {view.params.tagProps[0]} + \", Priority: \" + {view.custom.priority} + \", State: \" + {view.custom.state},\n \"Device Disconnected\"\n)\n" + }, + "type": "expr" + } + }, + "meta.visible": { + "binding": { + "config": { + "path": "session.custom.alarm_filter.show_running" + }, + "type": "property" + } + }, + "props.style.borderStyle": { + "binding": { + "config": { + "path": "view.custom.disconnected" + }, + "enabled": false, + "transforms": [ + { + "fallback": "", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "solid" + }, + { + "input": false, + "output": "none" + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "property" + } + } + }, + "props": { + "justify": "center", + "style": { + "borderColor": "#FF0000", + "borderStyle": "none", + "borderWidth": "2px", + "cursor": "pointer" + } + }, + "type": "ia.container.flex" + } +} \ No newline at end of file diff --git a/.resources/6679c190779588f2a19507e4d8ad4411018af7b3ed7f90b9186afe6b859ec4d6 b/.resources/6679c190779588f2a19507e4d8ad4411018af7b3ed7f90b9186afe6b859ec4d6 deleted file mode 100644 index c8b12b73..00000000 Binary files a/.resources/6679c190779588f2a19507e4d8ad4411018af7b3ed7f90b9186afe6b859ec4d6 and /dev/null differ diff --git a/.resources/67b5c7a37c72c40962673c23d1754677bec248bb56677a72b928d4e37548d3c0 b/.resources/67b5c7a37c72c40962673c23d1754677bec248bb56677a72b928d4e37548d3c0 deleted file mode 100644 index f425560d..00000000 Binary files a/.resources/67b5c7a37c72c40962673c23d1754677bec248bb56677a72b928d4e37548d3c0 and /dev/null differ diff --git a/.resources/6921d042301c62671f4a67dc11b676d8529e1977d41a696da9b0118bfac319c2 b/.resources/6921d042301c62671f4a67dc11b676d8529e1977d41a696da9b0118bfac319c2 deleted file mode 100644 index 7fd2bd21..00000000 --- a/.resources/6921d042301c62671f4a67dc11b676d8529e1977d41a696da9b0118bfac319c2 +++ /dev/null @@ -1,228 +0,0 @@ -{ - "custom": {}, - "params": {}, - "props": { - "defaultSize": { - "height": 1080, - "width": 1920 - } - }, - "root": { - "children": [ - { - "custom": { - "Devices": [ - "PLC01", - "PLC02", - "PLC03", - "PLC06", - "PLC07", - "PLC08", - "PLC09", - "PLC13", - "PLC14", - "PLC15", - "PLC16", - "PLC20", - "PLC21", - "PLC22", - "PLC23", - "PLC25", - "PLC26", - "PLC27", - "PLC28", - "PLC29", - "PLC30", - "PLC31", - "PLC32", - "PLC40", - "PLC41", - "PLC42", - "PLC43", - "PLC47", - "PLC48", - "PLC49", - "PLC51", - "PLC52", - "PLC60", - "PLC64", - "PLC65", - "PLC66", - "PLC69", - "PLC70", - "PLC71", - "PLC80", - "PLC96", - "PLC97", - "PLC99", - "ARSAW1301", - "ARSAW1302", - "ARSAW1303", - "ARSAW1304", - "ARSAW1305", - "ARSAW1306", - "ARSAW1307", - "ARSAW1401", - "ARSAW1402", - "ARSAW1403", - "ARSAW1404", - "ARSAW1405", - "ARSAW1406", - "ARSAW1407", - "ARSAW1501", - "ARSAW1502", - "ARSAW1503", - "ARSAW1504", - "ARSAW1505", - "ARSAW1506", - "ARSAW1507", - "ARSAW1601", - "ARSAW1602", - "ARSAW1603", - "ARSAW1604", - "ARSAW1605", - "ARSAW1606", - "ARSAW1607", - "FSC10", - "SLAM301", - "SLAM302", - "SLAM303", - "SLAM304", - "SLAM305", - "SLAM306", - "SLAM307", - "SLAM402", - "SLAM401", - "RWC4" - ] - }, - "meta": { - "name": "FlexRepeater" - }, - "position": { - "basis": "1080px" - }, - "props": { - "alignContent": "flex-start", - "alignItems": "flex-start", - "elementPosition": { - "grow": 0, - "shrink": 0 - }, - "instances": [ - { - "instancePosition": {}, - "instanceStyle": { - "classes": "", - "margin": "5px" - }, - "tagProps": [ - "PLC01", - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value" - ] - }, - { - "instancePosition": {}, - "instanceStyle": { - "classes": "", - "margin": "5px" - }, - "tagProps": [ - "PLC02", - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value" - ] - }, - { - "instancePosition": {}, - "instanceStyle": { - "classes": "", - "margin": "5px" - }, - "tagProps": [ - "PLC03", - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value" - ] - }, - { - "instancePosition": {}, - "instanceStyle": { - "classes": "", - "margin": "5px" - }, - "tagProps": [ - "PLC09", - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value" - ] - } - ], - "path": "Symbol-Views/Controller-Views/CommandControl", - "style": { - "overflow": "visible" - }, - "wrap": "wrap" - }, - "type": "ia.display.flex-repeater" - } - ], - "custom": { - "Devices": [ - "PLC01", - "PLC02", - "PLC03", - "PLC09" - ], - "count": "value", - "delay": 4000 - }, - "events": { - "system": { - "onStartup": { - "config": { - "script": "\tfc \u003d system.tag.readBlocking([\"Configuration/FC\"])\n\ttag_provider \u003d \"[%s_SCADA_TAG_PROVIDER]\" % (fc[0].value)\n\ttags_to_read \u003d system.tag.readBlocking([tag_provider+\"Configuration/DetailedViews\"])\n\tdevices \u003d system.util.jsonDecode(tags_to_read[0].value)\n\tif devices:\n\t\tinstances \u003d []\n\t\tdashboard_devices \u003d []\n\t\tfor k,v in devices.items():\n\t\t\tdevice_list \u003d v\n\t\t\tfor i in device_list:\n\t\t\t\tdashboard_devices.append(i)\n\t\t\t\tinstances.append({\n\t\t\t\t \"instanceStyle\": {\n\t\t\t\t \"classes\": \"\",\n\t\t\t\t \"margin\": \"5px\"\n\t\t\t\t },\n\t\t\t\t \"instancePosition\": {},\n\t\t\t\t \"tagProps\": [\n\t\t\t\t i,\n\t\t\t\t \"value\",\n\t\t\t\t \"value\",\n\t\t\t\t \"value\",\n\t\t\t\t \"value\",\n\t\t\t\t \"value\",\n\t\t\t\t \"value\",\n\t\t\t\t \"value\",\n\t\t\t\t \"value\",\n\t\t\t\t \"value\"\n\t\t\t\t ]\n\t\t\t\t })\n\t\tsystem.perspective.print(instances)\n\t\tself.custom.Devices \u003d dashboard_devices\n\t\tself.getChild(\"FlexRepeater\").props.instances \u003d instances" - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "root" - }, - "props": { - "direction": "column" - }, - "type": "ia.container.flex" - } -} \ No newline at end of file diff --git a/.resources/6a30b2dbd42b1efa6231432c3f2e4531ac7fbf6a52068c64a5e5f844c1a4ebbd b/.resources/6a30b2dbd42b1efa6231432c3f2e4531ac7fbf6a52068c64a5e5f844c1a4ebbd new file mode 100644 index 00000000..2b782e57 Binary files /dev/null and b/.resources/6a30b2dbd42b1efa6231432c3f2e4531ac7fbf6a52068c64a5e5f844c1a4ebbd differ diff --git a/.resources/6cdf40f85fe278a7e14f4543439c9617330ca1dd74eae95e405894c0c474a824 b/.resources/6cdf40f85fe278a7e14f4543439c9617330ca1dd74eae95e405894c0c474a824 new file mode 100644 index 00000000..4a97e9a5 --- /dev/null +++ b/.resources/6cdf40f85fe278a7e14f4543439c9617330ca1dd74eae95e405894c0c474a824 @@ -0,0 +1,2897 @@ +{ + "custom": {}, + "params": {}, + "props": { + "defaultSize": { + "height": 1080, + "width": 1920 + } + }, + "root": { + "children": [ + { + "meta": { + "name": "Label" + }, + "position": { + "basis": "15.8px" + }, + "type": "ia.display.label" + }, + { + "children": [ + { + "meta": { + "name": "Label" + }, + "position": { + "basis": "32px" + }, + "type": "ia.display.label" + }, + { + "children": [ + { + "meta": { + "name": "Label_3" + }, + "position": { + "basis": "32px" + }, + "props": { + "style": { + "classes": "Text-Styles/Ariel-Bold-White-12pt", + "fontWeight": "bold", + "text": "value", + "textAlign": "left", + "textIndent": "10px" + }, + "text": "Filter by Date/Time" + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "Label_1" + }, + "position": { + "basis": "32px", + "shrink": 0 + }, + "props": { + "style": { + "classes": "Text-Styles/Ariel-Bold-White-12pt", + "textAlign": "left", + "textIndent": "10px" + }, + "text": "Start" + }, + "type": "ia.display.label" + }, + { + "events": { + "system": { + "onStartup": { + "config": { + "script": "\timport datetime\n\t\t\n\ttime_now \u003d datetime.datetime.now()\n\tself.props.value \u003d time_now - datetime.timedelta(hours \u003d 1)\n\t" + }, + "scope": "G", + "type": "script" + } + } + }, + "meta": { + "name": "StartTime" + }, + "position": { + "basis": "32px", + "shrink": 0 + }, + "propConfig": { + "props.maxDate": { + "binding": { + "config": { + "path": "../EndTime.props.value" + }, + "type": "property" + } + }, + "props.minDate": { + "binding": { + "config": { + "expression": "addWeeks({../EndTime.props.value},-2)" + }, + "type": "expr" + } + } + }, + "props": { + "formattedValue": "Apr 19, 2022 10:28 AM", + "value": { + "$": [ + "ts", + 192, + 1650367709276 + ], + "$ts": 1650364109276 + } + }, + "type": "ia.input.date-time-input" + }, + { + "meta": { + "name": "Label_2" + }, + "position": { + "basis": "32px", + "shrink": 0 + }, + "props": { + "style": { + "classes": "Text-Styles/Ariel-Bold-White-12pt", + "textAlign": "left", + "textIndent": "10px" + }, + "text": "End" + }, + "type": "ia.display.label" + }, + { + "events": { + "system": { + "onStartup": { + "config": { + "script": "\timport datetime\n\t\n\ttime_now \u003d datetime.datetime.now()\n\tself.props.value \u003d time_now" + }, + "scope": "G", + "type": "script" + } + } + }, + "meta": { + "name": "EndTime" + }, + "position": { + "basis": "32px", + "shrink": 0 + }, + "props": { + "formattedValue": "Apr 19, 2022 11:28 AM", + "value": { + "$": [ + "ts", + 192, + 1650367709276 + ], + "$ts": 1650367709276 + } + }, + "type": "ia.input.date-time-input" + } + ], + "meta": { + "name": "FlexContainer" + }, + "position": { + "basis": "200px" + }, + "props": { + "direction": "column", + "style": { + "borderStyle": "solid", + "borderWidth": "0.5px" + } + }, + "type": "ia.container.flex" + }, + { + "meta": { + "name": "Label_2" + }, + "position": { + "basis": "32px" + }, + "props": { + "style": { + "textAlign": "left", + "textIndent": "10px" + } + }, + "type": "ia.display.label" + }, + { + "children": [ + { + "meta": { + "name": "Label_3" + }, + "position": { + "basis": "32px", + "shrink": 0 + }, + "props": { + "style": { + "classes": "Text-Styles/Ariel-Bold-White-12pt", + "fontWeight": "bold", + "text": "value", + "textAlign": "left", + "textIndent": "10px" + }, + "text": "Filter by Device" + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "Label" + }, + "position": { + "basis": "32px" + }, + "type": "ia.display.label" + }, + { + "events": { + "component": { + "onActionPerformed": { + "config": { + "script": "\tpayload \u003d {}\n\tdevice \u003d self.props.value\n\tpayload[\"device\"] \u003d device\n\tsystem.perspective.sendMessage(\"device-filter\", payload \u003d payload, scope \u003d \"page\")" + }, + "scope": "G", + "type": "script" + } + }, + "system": { + "onStartup": { + "config": { + "script": "\tdevices \u003d system.tag.readBlocking([\"Configuration/DetailedViews\"])\n\tdevices \u003d devices[0].value\n\tdevices_decoded \u003d system.util.jsonDecode(devices)\n\tdevice_list \u003d []\n\tno_device \u003d {}\n\tno_device[\"value\"]\u003d\"\"\n\tno_device[\"label\"]\u003d\"None\"\n\tdevice_list.append(no_device)\n\tfor i in devices_decoded:\n\t\tdevice_dict \u003d{}\n\t\tif len(devices_decoded[i]) \u003d\u003d 1:\n\t\t\tdevice_dict[\"value\"] \u003d i\n\t\t\tdevice_dict[\"label\"]\u003d i\n\t\t\tdevice_list.append(device_dict)\n\t\telse:\n\t\t\titems \u003d devices_decoded[i]\n\t\t\tfor item in items:\n\t\t\t\tdevice_dict \u003d{}\n\t\t\t\tdevice_dict[\"value\"] \u003d item\n\t\t\t\tdevice_dict[\"label\"]\u003d item\n\t\t\t\tdevice_list.append(device_dict)\n\t\t\t\t\n\tself.props.options \u003d device_list\t" + }, + "scope": "G", + "type": "script" + } + } + }, + "meta": { + "name": "Dropdown" + }, + "position": { + "basis": "32px", + "shrink": 0 + }, + "props": { + "options": [ + { + "label": "None", + "value": "" + }, + { + "label": "PLC03", + "value": "PLC03" + }, + { + "label": "PLC25", + "value": "PLC25" + }, + { + "label": "PLC47", + "value": "PLC47" + }, + { + "label": "PLC97", + "value": "PLC97" + }, + { + "label": "PLC69", + "value": "PLC69" + }, + { + "label": "PLC26", + "value": "PLC26" + }, + { + "label": "PLC48", + "value": "PLC48" + }, + { + "label": "PLC01", + "value": "PLC01" + }, + { + "label": "PLC23", + "value": "PLC23" + }, + { + "label": "PLC02", + "value": "PLC02" + }, + { + "label": "PLC07", + "value": "PLC07" + }, + { + "label": "PLC29", + "value": "PLC29" + }, + { + "label": "PLC08", + "value": "PLC08" + }, + { + "label": "PLC27", + "value": "PLC27" + }, + { + "label": "PLC49", + "value": "PLC49" + }, + { + "label": "PLC06", + "value": "PLC06" + }, + { + "label": "PLC28", + "value": "PLC28" + }, + { + "label": "PLC96", + "value": "PLC96" + }, + { + "label": "PLC40", + "value": "PLC40" + }, + { + "label": "PLC60", + "value": "PLC60" + }, + { + "label": "SLAM302", + "value": "SLAM302" + }, + { + "label": "PLC21", + "value": "PLC21" + }, + { + "label": "PLC43", + "value": "PLC43" + }, + { + "label": "PLC65", + "value": "PLC65" + }, + { + "label": "SLAM306", + "value": "SLAM306" + }, + { + "label": "PLC22", + "value": "PLC22" + }, + { + "label": "PLC66", + "value": "PLC66" + }, + { + "label": "SLAM307", + "value": "SLAM307" + }, + { + "label": "PLC41", + "value": "PLC41" + }, + { + "label": "PLC1000", + "value": "PLC1000" + }, + { + "label": "PLC20", + "value": "PLC20" + }, + { + "label": "PLC42", + "value": "PLC42" + }, + { + "label": "PLC64", + "value": "PLC64" + }, + { + "label": "SLAM304", + "value": "SLAM304" + }, + { + "label": "MAN2_PLC99", + "value": "MAN2_PLC99" + }, + { + "label": "PLC23-1", + "value": "PLC23-1" + }, + { + "label": "PLC09-2", + "value": "PLC09-2" + }, + { + "label": "PLC1000-1", + "value": "PLC1000-1" + }, + { + "label": "PLC09", + "value": "PLC09" + }, + { + "label": "PLC99", + "value": "PLC99" + }, + { + "label": "PLC14", + "value": "PLC14" + }, + { + "label": "ARSAW1401", + "value": "ARSAW1401" + }, + { + "label": "ARSAW1402", + "value": "ARSAW1402" + }, + { + "label": "ARSAW1403", + "value": "ARSAW1403" + }, + { + "label": "ARSAW1404", + "value": "ARSAW1404" + }, + { + "label": "ARSAW1405", + "value": "ARSAW1405" + }, + { + "label": "ARSAW1406", + "value": "ARSAW1406" + }, + { + "label": "ARSAW1407", + "value": "ARSAW1407" + }, + { + "label": "ARSAW1408", + "value": "ARSAW1408" + }, + { + "label": "PLC15", + "value": "PLC15" + }, + { + "label": "ARSAW1501", + "value": "ARSAW1501" + }, + { + "label": "ARSAW1502", + "value": "ARSAW1502" + }, + { + "label": "ARSAW1503", + "value": "ARSAW1503" + }, + { + "label": "ARSAW1504", + "value": "ARSAW1504" + }, + { + "label": "ARSAW1505", + "value": "ARSAW1505" + }, + { + "label": "ARSAW1506", + "value": "ARSAW1506" + }, + { + "label": "ARSAW1507", + "value": "ARSAW1507" + }, + { + "label": "ARSAW1508", + "value": "ARSAW1508" + }, + { + "label": "PLC13", + "value": "PLC13" + }, + { + "label": "ARSAW1301", + "value": "ARSAW1301" + }, + { + "label": "ARSAW1302", + "value": "ARSAW1302" + }, + { + "label": "ARSAW1303", + "value": "ARSAW1303" + }, + { + "label": "ARSAW1304", + "value": "ARSAW1304" + }, + { + "label": "ARSAW1305", + "value": "ARSAW1305" + }, + { + "label": "ARSAW1306", + "value": "ARSAW1306" + }, + { + "label": "ARSAW1307", + "value": "ARSAW1307" + }, + { + "label": "ARSAW1308", + "value": "ARSAW1308" + }, + { + "label": "PLC16", + "value": "PLC16" + }, + { + "label": "ARSAW1601", + "value": "ARSAW1601" + }, + { + "label": "ARSAW1602", + "value": "ARSAW1602" + }, + { + "label": "ARSAW1603", + "value": "ARSAW1603" + }, + { + "label": "ARSAW1604", + "value": "ARSAW1604" + }, + { + "label": "ARSAW1605", + "value": "ARSAW1605" + }, + { + "label": "ARSAW1606", + "value": "ARSAW1606" + }, + { + "label": "ARSAW1607", + "value": "ARSAW1607" + }, + { + "label": "ARSAW1608", + "value": "ARSAW1608" + }, + { + "label": "PLC51", + "value": "PLC51" + }, + { + "label": "SLAM305", + "value": "SLAM305" + }, + { + "label": "PLC70", + "value": "PLC70" + }, + { + "label": "PLC71", + "value": "PLC71" + }, + { + "label": "RWC4", + "value": "RWC4" + }, + { + "label": "PLC71", + "value": "PLC71" + }, + { + "label": "PLC70", + "value": "PLC70" + }, + { + "label": "RWC4", + "value": "RWC4" + }, + { + "label": "MAN2_PLC96", + "value": "MAN2_PLC96" + }, + { + "label": "PLC32", + "value": "PLC32" + }, + { + "label": "PLC30", + "value": "PLC30" + }, + { + "label": "SLAM301", + "value": "SLAM301" + }, + { + "label": "PLC52", + "value": "PLC52" + }, + { + "label": "MAN2_PLC97", + "value": "MAN2_PLC97" + }, + { + "label": "PLC31", + "value": "PLC31" + }, + { + "label": "SLAM303", + "value": "SLAM303" + }, + { + "label": "PLC80", + "value": "PLC80" + }, + { + "label": "SLAM401", + "value": "SLAM401" + }, + { + "label": "SLAM402", + "value": "SLAM402" + } + ], + "value": "None" + }, + "scripts": { + "customMethods": [], + "extensionFunctions": null, + "messageHandlers": [ + { + "messageType": "device-filter-reset", + "pageScope": true, + "script": "\t# implement your handler here\n\tdevice_selection \u003d payload[\"device\"]\n\tself.props.value \u003d device_selection", + "sessionScope": false, + "viewScope": false + } + ] + }, + "type": "ia.input.dropdown" + } + ], + "meta": { + "name": "FlexContainer_0" + }, + "position": { + "basis": "200px" + }, + "props": { + "direction": "column", + "style": { + "borderStyle": "solid", + "borderWidth": "0.5px" + } + }, + "type": "ia.container.flex" + }, + { + "meta": { + "name": "Label_1" + }, + "position": { + "basis": "32px", + "grow": 1 + }, + "props": { + "style": { + "textAlign": "left", + "textIndent": "10px" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "Label_0" + }, + "position": { + "basis": "32px", + "grow": 1 + }, + "type": "ia.display.label" + }, + { + "children": [ + { + "meta": { + "name": "Label_3" + }, + "position": { + "basis": "32px", + "shrink": 0 + }, + "props": { + "style": { + "classes": "Text-Styles/Ariel-Bold-White-12pt", + "fontWeight": "bold", + "text": "value", + "textAlign": "left", + "textIndent": "10px" + }, + "text": "Filter by Severity" + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "Label" + }, + "position": { + "basis": "32px" + }, + "type": "ia.display.label" + }, + { + "children": [ + { + "meta": { + "name": "Label" + }, + "position": { + "basis": "10px" + }, + "type": "ia.display.label" + }, + { + "custom": { + "Severity": "Critical", + "background_on": "false" + }, + "events": { + "component": { + "onActionPerformed": { + "config": { + "script": "\tpayload \u003d {}\n\tseverity \u003d self.custom.Severity\n\tpayload[\"severity\"] \u003d severity\n\tsystem.perspective.sendMessage(\"severity-filter\", payload \u003d payload , scope \u003d \"page\")" + }, + "scope": "G", + "type": "script" + } + } + }, + "meta": { + "name": "Button" + }, + "position": { + "basis": "80px" + }, + "propConfig": { + "props.style.classes": { + "binding": { + "config": { + "expression": "if({this.custom.background_on}\u003d\"true\",1,0)" + }, + "transforms": [ + { + "fallback": "", + "inputType": "scalar", + "mappings": [ + { + "input": 1, + "output": "Alarms-Styles/Critical" + }, + { + "input": 0, + "output": "Alarms-Styles/NoAlarm-Black" + } + ], + "outputType": "style-list", + "type": "map" + } + ], + "type": "expr" + } + } + }, + "props": { + "image": { + "icon": { + "color": "#FFFFFF", + "path": "material/error" + }, + "position": "top" + }, + "style": {}, + "text": "Critical" + }, + "scripts": { + "customMethods": [], + "extensionFunctions": null, + "messageHandlers": [ + { + "messageType": "button-severity-indicator", + "pageScope": true, + "script": "\tbackground \u003d \"false\"\n\tseverity \u003d payload[\"severity\"]\n\tbutton_severity \u003d self.custom.Severity\n\tif severity \u003d\u003d button_severity:\n\t\tbackground \u003d \"true\"\n\telse:\n\t\tbackground \u003d \"false\"\n\t\n\tself.custom.background_on \u003d background\n\t", + "sessionScope": false, + "viewScope": false + } + ] + }, + "type": "ia.input.button" + }, + { + "meta": { + "name": "Label_0" + }, + "position": { + "basis": "10px" + }, + "type": "ia.display.label" + }, + { + "custom": { + "Severity": "High", + "background_on": "false" + }, + "events": { + "component": { + "onActionPerformed": { + "config": { + "script": "\tpayload \u003d {}\n\tseverity \u003d self.custom.Severity\n\tpayload[\"severity\"] \u003d severity\n\tsystem.perspective.sendMessage(\"severity-filter\", payload \u003d payload , scope \u003d \"page\")" + }, + "scope": "G", + "type": "script" + } + } + }, + "meta": { + "name": "Button_0" + }, + "position": { + "basis": "80px" + }, + "propConfig": { + "props.style.classes": { + "binding": { + "config": { + "expression": "if({this.custom.background_on}\u003d\"true\",1,0)" + }, + "transforms": [ + { + "fallback": "", + "inputType": "scalar", + "mappings": [ + { + "input": 1, + "output": "Alarms-Styles/High" + }, + { + "input": 0, + "output": "Alarms-Styles/NoAlarm-Black" + } + ], + "outputType": "style-list", + "type": "map" + } + ], + "type": "expr" + } + } + }, + "props": { + "image": { + "icon": { + "path": "material/priority_high" + }, + "position": "top" + }, + "style": {}, + "text": "High" + }, + "scripts": { + "customMethods": [], + "extensionFunctions": null, + "messageHandlers": [ + { + "messageType": "button-severity-indicator", + "pageScope": true, + "script": "\tbackground \u003d \"false\"\n\tseverity \u003d payload[\"severity\"]\n\tbutton_severity \u003d self.custom.Severity\n\tif severity \u003d\u003d button_severity:\n\t\tbackground \u003d \"true\"\n\telse:\n\t\tbackground \u003d \"false\"\n\t\n\tself.custom.background_on \u003d background", + "sessionScope": false, + "viewScope": false + } + ] + }, + "type": "ia.input.button" + }, + { + "meta": { + "name": "Label_1" + }, + "position": { + "basis": "10px" + }, + "type": "ia.display.label" + }, + { + "custom": { + "Severity": "Medium", + "background_on": "false" + }, + "events": { + "component": { + "onActionPerformed": { + "config": { + "script": "\tpayload \u003d {}\n\tseverity \u003d self.custom.Severity\n\tpayload[\"severity\"] \u003d severity\n\tsystem.perspective.sendMessage(\"severity-filter\", payload \u003d payload , scope \u003d \"page\")" + }, + "scope": "G", + "type": "script" + } + } + }, + "meta": { + "name": "Button_1" + }, + "position": { + "basis": "80px" + }, + "propConfig": { + "props.style.classes": { + "binding": { + "config": { + "expression": "if({this.custom.background_on}\u003d\"true\",1,0)" + }, + "transforms": [ + { + "fallback": "", + "inputType": "scalar", + "mappings": [ + { + "input": 1, + "output": "Alarms-Styles/Medium" + }, + { + "input": 0, + "output": "Alarms-Styles/NoAlarm-Black" + } + ], + "outputType": "style-list", + "type": "map" + } + ], + "type": "expr" + } + } + }, + "props": { + "image": { + "icon": { + "path": "material/priority_high" + }, + "position": "top" + }, + "style": {}, + "text": "Medium" + }, + "scripts": { + "customMethods": [], + "extensionFunctions": null, + "messageHandlers": [ + { + "messageType": "button-severity-indicator", + "pageScope": true, + "script": "\tbackground \u003d \"false\"\n\tseverity \u003d payload[\"severity\"]\n\tbutton_severity \u003d self.custom.Severity\n\tif severity \u003d\u003d button_severity:\n\t\tbackground \u003d \"true\"\n\telse:\n\t\tbackground \u003d \"false\"\n\t\n\tself.custom.background_on \u003d background", + "sessionScope": false, + "viewScope": false + } + ] + }, + "type": "ia.input.button" + }, + { + "meta": { + "name": "Label_2" + }, + "position": { + "basis": "10px" + }, + "type": "ia.display.label" + } + ], + "meta": { + "name": "FlexContainer" + }, + "position": { + "basis": "50px", + "shrink": 0 + }, + "type": "ia.container.flex" + }, + { + "meta": { + "name": "Label_0" + }, + "position": { + "basis": "7px" + }, + "type": "ia.display.label" + }, + { + "children": [ + { + "meta": { + "name": "Label" + }, + "position": { + "basis": "10px" + }, + "type": "ia.display.label" + }, + { + "custom": { + "Severity": "Low", + "background_on": "false" + }, + "events": { + "component": { + "onActionPerformed": { + "config": { + "script": "\tpayload \u003d {}\n\tseverity \u003d self.custom.Severity\n\tpayload[\"severity\"] \u003d severity\n\tsystem.perspective.sendMessage(\"severity-filter\", payload \u003d payload , scope \u003d \"page\")" + }, + "scope": "G", + "type": "script" + } + } + }, + "meta": { + "name": "Button" + }, + "position": { + "basis": "80px" + }, + "propConfig": { + "props.style.classes": { + "binding": { + "config": { + "expression": "if({this.custom.background_on}\u003d\"true\",1,0)" + }, + "transforms": [ + { + "fallback": "", + "inputType": "scalar", + "mappings": [ + { + "input": 1, + "output": "Alarms-Styles/Low" + }, + { + "input": 0, + "output": "Alarms-Styles/NoAlarm-Black" + } + ], + "outputType": "style-list", + "type": "map" + } + ], + "type": "expr" + } + } + }, + "props": { + "image": { + "icon": { + "path": "material/low_priority" + }, + "position": "top" + }, + "style": {}, + "text": "Low" + }, + "scripts": { + "customMethods": [], + "extensionFunctions": null, + "messageHandlers": [ + { + "messageType": "button-severity-indicator", + "pageScope": true, + "script": "\tbackground \u003d \"false\"\n\tseverity \u003d payload[\"severity\"]\n\tbutton_severity \u003d self.custom.Severity\n\tif severity \u003d\u003d button_severity:\n\t\tbackground \u003d \"true\"\n\telse:\n\t\tbackground \u003d \"false\"\n\t\n\tself.custom.background_on \u003d background", + "sessionScope": false, + "viewScope": false + } + ] + }, + "type": "ia.input.button" + }, + { + "meta": { + "name": "Label_0" + }, + "position": { + "basis": "10px" + }, + "type": "ia.display.label" + }, + { + "custom": { + "Severity": "Diagnostic", + "background_on": "false" + }, + "events": { + "component": { + "onActionPerformed": { + "config": { + "script": "\tpayload \u003d {}\n\tseverity \u003d self.custom.Severity\n\tpayload[\"severity\"] \u003d severity\n\tsystem.perspective.sendMessage(\"severity-filter\", payload \u003d payload , scope \u003d \"page\")" + }, + "scope": "G", + "type": "script" + } + } + }, + "meta": { + "name": "Button_0" + }, + "position": { + "basis": "80px" + }, + "propConfig": { + "props.style.classes": { + "binding": { + "config": { + "expression": "if({this.custom.background_on}\u003d\"true\",1,0)" + }, + "transforms": [ + { + "fallback": "", + "inputType": "scalar", + "mappings": [ + { + "input": 1, + "output": "Alarms-Styles/Diagnostic" + }, + { + "input": 0, + "output": "Alarms-Styles/NoAlarm-Black" + } + ], + "outputType": "style-list", + "type": "map" + } + ], + "type": "expr" + } + } + }, + "props": { + "image": { + "icon": { + "path": "material/warning" + }, + "position": "top" + }, + "style": {}, + "text": "Diagnostic" + }, + "scripts": { + "customMethods": [], + "extensionFunctions": null, + "messageHandlers": [ + { + "messageType": "button-severity-indicator", + "pageScope": true, + "script": "\t# implement your handler here\n\tbackground \u003d \"false\"\n\tseverity \u003d payload[\"severity\"]\n\tbutton_severity \u003d self.custom.Severity\n\tif severity \u003d\u003d button_severity:\n\t\tbackground \u003d \"true\"\n\telse:\n\t\tbackground \u003d \"false\"\n\t\n\tself.custom.background_on \u003d background", + "sessionScope": false, + "viewScope": false + } + ] + }, + "type": "ia.input.button" + }, + { + "meta": { + "name": "Label_2" + }, + "position": { + "basis": "100px" + }, + "type": "ia.display.label" + } + ], + "meta": { + "name": "FlexContainer_0" + }, + "position": { + "basis": "50px", + "shrink": 0 + }, + "type": "ia.container.flex" + } + ], + "custom": { + "SeverityFilter": "value" + }, + "meta": { + "name": "FlexContainer_1" + }, + "position": { + "basis": "200px" + }, + "props": { + "direction": "column", + "style": { + "borderStyle": "solid", + "borderWidth": "0.5px" + } + }, + "type": "ia.container.flex" + }, + { + "meta": { + "name": "Label_3" + }, + "position": { + "basis": "200px", + "grow": 1, + "shrink": 10 + }, + "type": "ia.display.label" + }, + { + "children": [ + { + "meta": { + "name": "Label_3" + }, + "position": { + "basis": "32px" + }, + "props": { + "style": { + "classes": "Text-Styles/Ariel-Bold-White-12pt", + "fontWeight": "bold", + "text": "value", + "textAlign": "left", + "textIndent": "10px" + }, + "text": "Reset Filters" + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "Label" + }, + "position": { + "basis": "32px" + }, + "type": "ia.display.label" + }, + { + "children": [ + { + "meta": { + "name": "Label" + }, + "position": { + "basis": "5px", + "grow": 1 + }, + "type": "ia.display.label" + }, + { + "custom": { + "Severity": "Critical", + "background_on": "false" + }, + "events": { + "component": { + "onActionPerformed": { + "config": { + "script": "\tpayload1 \u003d {}\n\tpayload2 \u003d{}\n\tpayload3 \u003d{}\n\tpayload1[\"severity\"] \u003d \"\"\n\tpayload2[\"device\"] \u003d \"None\"\n\tpayload3[\"device\"] \u003d \"\"\n\tsystem.perspective.sendMessage(\"severity-filter\", payload \u003d payload1 , scope \u003d \"page\")\n\tsystem.perspective.sendMessage(\"button-severity-indicator\", payload \u003d payload1 , scope \u003d \"page\")\n\tsystem.perspective.sendMessage(\"device-filter-reset\", payload \u003d payload2 , scope \u003d \"page\")\n\tsystem.perspective.sendMessage(\"device-filter\", payload \u003d payload3 , scope \u003d \"page\")" + }, + "scope": "G", + "type": "script" + } + } + }, + "meta": { + "name": "Button" + }, + "position": { + "basis": "80px" + }, + "props": { + "image": { + "icon": { + "color": "#FFFFFF", + "path": "material/clear" + }, + "position": "top" + }, + "style": { + "classes": "Alarms-Styles/NoAlarm-Black" + }, + "text": "Reset Filters" + }, + "scripts": { + "customMethods": [], + "extensionFunctions": null, + "messageHandlers": [ + { + "messageType": "button-severity-indicator", + "pageScope": true, + "script": "\tbackground \u003d \"false\"\n\tseverity \u003d payload[\"severity\"]\n\tbutton_severity \u003d self.custom.Severity\n\tif severity \u003d\u003d button_severity:\n\t\tbackground \u003d \"true\"\n\telse:\n\t\tbackground \u003d \"false\"\n\t\n\tself.custom.background_on \u003d background\n\t", + "sessionScope": false, + "viewScope": false + } + ] + }, + "type": "ia.input.button" + }, + { + "meta": { + "name": "Label_0" + }, + "position": { + "basis": "10px" + }, + "type": "ia.display.label" + }, + { + "custom": { + "Severity": "High", + "background_on": "false" + }, + "events": { + "component": { + "onActionPerformed": { + "config": { + "script": "\tsystem.perspective.toggleDock(\"Docked-West\")" + }, + "scope": "G", + "type": "script" + } + } + }, + "meta": { + "name": "Button_0" + }, + "position": { + "basis": "80px" + }, + "props": { + "image": { + "icon": { + "path": "material/toggle_on" + }, + "position": "top" + }, + "style": { + "classes": "Alarms-Styles/NoAlarm-Black" + }, + "text": "Toggle Dock" + }, + "scripts": { + "customMethods": [], + "extensionFunctions": null, + "messageHandlers": [ + { + "messageType": "button-severity-indicator", + "pageScope": true, + "script": "\tbackground \u003d \"false\"\n\tseverity \u003d payload[\"severity\"]\n\tbutton_severity \u003d self.custom.Severity\n\tif severity \u003d\u003d button_severity:\n\t\tbackground \u003d \"true\"\n\telse:\n\t\tbackground \u003d \"false\"\n\t\n\tself.custom.background_on \u003d background", + "sessionScope": false, + "viewScope": false + } + ] + }, + "type": "ia.input.button" + }, + { + "meta": { + "name": "Label_2" + }, + "position": { + "basis": "10px" + }, + "type": "ia.display.label" + }, + { + "custom": { + "Severity": "High", + "background_on": "false" + }, + "events": { + "component": { + "onActionPerformed": { + "config": { + "script": "\tdata \u003d self.parent.parent.parent.parent.getChild(\"Table\").props.data\n\tdataset \u003d system.dataset.dataSetToHTML(1,data,\"Test\")\n\tsystem.perspective.print(type(dataset))\n\tsystem.perspective.download(\"myExport.html\",dataset)" + }, + "scope": "G", + "type": "script" + } + } + }, + "meta": { + "name": "Button_1" + }, + "position": { + "basis": "80px" + }, + "props": { + "image": { + "icon": { + "path": "material/import_export" + }, + "position": "top" + }, + "style": { + "classes": "Alarms-Styles/NoAlarm-Black" + }, + "text": "Export" + }, + "scripts": { + "customMethods": [], + "extensionFunctions": null, + "messageHandlers": [ + { + "messageType": "button-severity-indicator", + "pageScope": true, + "script": "\tbackground \u003d \"false\"\n\tseverity \u003d payload[\"severity\"]\n\tbutton_severity \u003d self.custom.Severity\n\tif severity \u003d\u003d button_severity:\n\t\tbackground \u003d \"true\"\n\telse:\n\t\tbackground \u003d \"false\"\n\t\n\tself.custom.background_on \u003d background", + "sessionScope": false, + "viewScope": false + } + ] + }, + "type": "ia.input.button" + }, + { + "meta": { + "name": "Label_1" + }, + "position": { + "basis": "5px", + "grow": 1 + }, + "type": "ia.display.label" + } + ], + "meta": { + "name": "FlexContainer" + }, + "position": { + "basis": "50px", + "shrink": 0 + }, + "type": "ia.container.flex" + }, + { + "meta": { + "name": "Label_0" + }, + "position": { + "basis": "36px" + }, + "type": "ia.display.label" + } + ], + "custom": { + "SeverityFilter": "value" + }, + "meta": { + "name": "FlexContainer_2" + }, + "position": { + "basis": "200px" + }, + "props": { + "direction": "column", + "style": { + "borderStyle": "solid", + "borderWidth": "0.5px" + } + }, + "type": "ia.container.flex" + } + ], + "meta": { + "name": "FlexContainer" + }, + "position": { + "basis": "300px", + "shrink": 0 + }, + "props": { + "direction": "column" + }, + "type": "ia.container.flex" + }, + { + "meta": { + "name": "Label_0" + }, + "position": { + "basis": "15.8px" + }, + "type": "ia.display.label" + }, + { + "custom": { + "Historyfilters": { + "Acked": 2, + "AckedBy": "", + "Area": "", + "DeviceDescription": "", + "DeviceType": "", + "DisplayPath": "", + "Empty": 0, + "Interval": 0, + "LinkToOEEMP": "", + "LinkToPage": "", + "Name": "", + "PLC": "", + "Priority": 0, + "SubArea": "", + "TZ": "Europe/London", + "UDT": "" + }, + "export": "value", + "severityFilter": "" + }, + "meta": { + "name": "Table" + }, + "position": { + "basis": "1639px", + "grow": 1 + }, + "propConfig": { + "custom.Historyfilters.FC": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "direct", + "tagPath": "Configuration/FC" + }, + "type": "tag" + } + }, + "custom.Historyfilters.StartDT": { + "binding": { + "config": { + "path": "../FlexContainer/FlexContainer/StartTime.props.value" + }, + "type": "property" + } + }, + "custom.Historyfilters.StopDT": { + "binding": { + "config": { + "path": "../FlexContainer/FlexContainer/EndTime.props.value" + }, + "type": "property" + } + }, + "custom.alarmHistory": { + "binding": { + "config": { + "parameters": { + "Ackd": "{this.custom.Historyfilters.Acked}", + "AckdBy": "{this.custom.Historyfilters.AckedBy}", + "Area": "{this.custom.Historyfilters.Area}", + "DeviceDescription": "{this.custom.Historyfilters.DeviceDescription}", + "DeviceType": "{this.custom.Historyfilters.DeviceType}", + "DisplayPath": "{this.custom.Historyfilters.DisplayPath}", + "Empty": "{this.custom.Historyfilters.Empty}", + "Finish": "{this.custom.Historyfilters.StopDT}", + "Interval": "{this.custom.Historyfilters.Interval}", + "LinkToOEEMP": "{this.custom.Historyfilters.LinkToOEEMP}", + "LinkToPage": "{this.custom.Historyfilters.LinkToPage}", + "Name": "{this.custom.Historyfilters.Name}", + "PLC": "{this.custom.Historyfilters.PLC}", + "Priority": "{this.custom.Historyfilters.Priority}", + "Start": "{this.custom.Historyfilters.StartDT}", + "SubArea": "{this.custom.Historyfilters.SubArea}", + "TZ": "{this.custom.Historyfilters.TZ}", + "UDT": "{this.custom.Historyfilters.UDT}", + "WHID": "{Configuration/FC}" + }, + "polling": { + "enabled": true, + "rate": "2" + }, + "queryPath": "StoredProcedures/GetHistoricalAlarms", + "returnFormat": "dataset" + }, + "type": "query" + } + }, + "custom.export": { + "onChange": { + "enabled": null, + "script": "\tdata \u003d self.props.data\n\tsystem.perspective.download(\"AlarmExport\", data)" + } + }, + "custom.severityFilter": { + "onChange": { + "enabled": null, + "script": "\tpayload \u003d {}\n\tseverity \u003d self.custom.severityFilter\n\tpayload[\"severity\"] \u003d severity\n\tsystem.perspective.sendMessage(\"button-severity-indicator\", payload\u003d payload, scope \u003d \"page\")" + } + }, + "props.data": { + "binding": { + "config": { + "path": "this.custom.alarmHistory" + }, + "type": "property" + } + } + }, + "props": { + "columns": [ + { + "align": "center", + "boolean": "checkbox", + "dateFormat": "MM/DD/YYYY HH:mm:ss", + "editable": false, + "field": "TimeStamp", + "footer": { + "align": "center", + "justify": "left", + "style": { + "classes": "" + }, + "title": "" + }, + "header": { + "align": "center", + "justify": "left", + "style": { + "classes": "" + }, + "title": "" + }, + "justify": "auto", + "number": "value", + "numberFormat": "0,0.##", + "progressBar": { + "bar": { + "color": "", + "style": { + "classes": "" + } + }, + "max": 100, + "min": 0, + "track": { + "color": "", + "style": { + "classes": "" + } + }, + "value": { + "enabled": true, + "format": "0,0.##", + "justify": "center", + "style": { + "classes": "" + } + } + }, + "render": "auto", + "resizable": true, + "sort": "none", + "sortable": true, + "strictWidth": false, + "style": { + "classes": "" + }, + "toggleSwitch": { + "color": { + "selected": "", + "unselected": "" + } + }, + "viewParams": {}, + "viewPath": "", + "visible": true, + "width": "" + }, + { + "align": "center", + "boolean": "checkbox", + "dateFormat": "MM/DD/YYYY", + "editable": false, + "field": "Duration", + "footer": { + "align": "center", + "justify": "left", + "style": { + "classes": "" + }, + "title": "" + }, + "header": { + "align": "center", + "justify": "left", + "style": { + "classes": "" + }, + "title": "" + }, + "justify": "auto", + "number": "value", + "numberFormat": "0,0.##", + "progressBar": { + "bar": { + "color": "", + "style": { + "classes": "" + } + }, + "max": 100, + "min": 0, + "track": { + "color": "", + "style": { + "classes": "" + } + }, + "value": { + "enabled": true, + "format": "0,0.##", + "justify": "center", + "style": { + "classes": "" + } + } + }, + "render": "auto", + "resizable": true, + "sort": "none", + "sortable": true, + "strictWidth": false, + "style": { + "classes": "" + }, + "toggleSwitch": { + "color": { + "selected": "", + "unselected": "" + } + }, + "viewParams": {}, + "viewPath": "", + "visible": true, + "width": "" + }, + { + "align": "center", + "boolean": "checkbox", + "dateFormat": "MM/DD/YYYY", + "editable": false, + "field": "Name", + "footer": { + "align": "center", + "justify": "left", + "style": { + "classes": "" + }, + "title": "" + }, + "header": { + "align": "center", + "justify": "left", + "style": { + "classes": "" + }, + "title": "" + }, + "justify": "auto", + "number": "value", + "numberFormat": "0,0.##", + "progressBar": { + "bar": { + "color": "", + "style": { + "classes": "" + } + }, + "max": 100, + "min": 0, + "track": { + "color": "", + "style": { + "classes": "" + } + }, + "value": { + "enabled": true, + "format": "0,0.##", + "justify": "center", + "style": { + "classes": "" + } + } + }, + "render": "auto", + "resizable": true, + "sort": "none", + "sortable": true, + "strictWidth": false, + "style": { + "classes": "" + }, + "toggleSwitch": { + "color": { + "selected": "", + "unselected": "" + } + }, + "viewParams": {}, + "viewPath": "", + "visible": true, + "width": "" + }, + { + "align": "center", + "boolean": "checkbox", + "dateFormat": "MM/DD/YYYY", + "editable": false, + "field": "Priority", + "footer": { + "align": "center", + "justify": "left", + "style": { + "classes": "" + }, + "title": "" + }, + "header": { + "align": "center", + "justify": "left", + "style": { + "classes": "" + }, + "title": "" + }, + "justify": "auto", + "number": "value", + "numberFormat": "0,0.##", + "progressBar": { + "bar": { + "color": "", + "style": { + "classes": "" + } + }, + "max": 100, + "min": 0, + "track": { + "color": "", + "style": { + "classes": "" + } + }, + "value": { + "enabled": true, + "format": "0,0.##", + "justify": "center", + "style": { + "classes": "" + } + } + }, + "render": "auto", + "resizable": true, + "sort": "none", + "sortable": true, + "strictWidth": false, + "style": { + "classes": "" + }, + "toggleSwitch": { + "color": { + "selected": "", + "unselected": "" + } + }, + "viewParams": {}, + "viewPath": "", + "visible": true, + "width": "" + }, + { + "align": "center", + "boolean": "checkbox", + "dateFormat": "MM/DD/YYYY", + "editable": false, + "field": "Acked", + "footer": { + "align": "center", + "justify": "left", + "style": { + "classes": "" + }, + "title": "" + }, + "header": { + "align": "center", + "justify": "left", + "style": { + "classes": "" + }, + "title": "" + }, + "justify": "auto", + "number": "value", + "numberFormat": "0,0.##", + "progressBar": { + "bar": { + "color": "", + "style": { + "classes": "" + } + }, + "max": 100, + "min": 0, + "track": { + "color": "", + "style": { + "classes": "" + } + }, + "value": { + "enabled": true, + "format": "0,0.##", + "justify": "center", + "style": { + "classes": "" + } + } + }, + "render": "auto", + "resizable": true, + "sort": "none", + "sortable": true, + "strictWidth": false, + "style": { + "classes": "" + }, + "toggleSwitch": { + "color": { + "selected": "", + "unselected": "" + } + }, + "viewParams": {}, + "viewPath": "", + "visible": false, + "width": "" + }, + { + "align": "center", + "boolean": "checkbox", + "dateFormat": "MM/DD/YYYY", + "editable": false, + "field": "UDT", + "footer": { + "align": "center", + "justify": "left", + "style": { + "classes": "" + }, + "title": "" + }, + "header": { + "align": "center", + "justify": "left", + "style": { + "classes": "" + }, + "title": "" + }, + "justify": "auto", + "number": "value", + "numberFormat": "0,0.##", + "progressBar": { + "bar": { + "color": "", + "style": { + "classes": "" + } + }, + "max": 100, + "min": 0, + "track": { + "color": "", + "style": { + "classes": "" + } + }, + "value": { + "enabled": true, + "format": "0,0.##", + "justify": "center", + "style": { + "classes": "" + } + } + }, + "render": "auto", + "resizable": true, + "sort": "none", + "sortable": true, + "strictWidth": false, + "style": { + "classes": "" + }, + "toggleSwitch": { + "color": { + "selected": "", + "unselected": "" + } + }, + "viewParams": {}, + "viewPath": "", + "visible": true, + "width": "" + }, + { + "align": "center", + "boolean": "checkbox", + "dateFormat": "MM/DD/YYYY", + "editable": false, + "field": "UID", + "footer": { + "align": "center", + "justify": "left", + "style": { + "classes": "" + }, + "title": "" + }, + "header": { + "align": "center", + "justify": "left", + "style": { + "classes": "" + }, + "title": "" + }, + "justify": "auto", + "number": "value", + "numberFormat": "0,0.##", + "progressBar": { + "bar": { + "color": "", + "style": { + "classes": "" + } + }, + "max": 100, + "min": 0, + "track": { + "color": "", + "style": { + "classes": "" + } + }, + "value": { + "enabled": true, + "format": "0,0.##", + "justify": "center", + "style": { + "classes": "" + } + } + }, + "render": "auto", + "resizable": true, + "sort": "none", + "sortable": true, + "strictWidth": false, + "style": { + "classes": "" + }, + "toggleSwitch": { + "color": { + "selected": "", + "unselected": "" + } + }, + "viewParams": {}, + "viewPath": "", + "visible": true, + "width": "" + }, + { + "align": "center", + "boolean": "checkbox", + "dateFormat": "MM/DD/YYYY", + "editable": false, + "field": "DeviceDescription", + "footer": { + "align": "center", + "justify": "left", + "style": { + "classes": "" + }, + "title": "" + }, + "header": { + "align": "center", + "justify": "left", + "style": { + "classes": "" + }, + "title": "" + }, + "justify": "auto", + "number": "value", + "numberFormat": "0,0.##", + "progressBar": { + "bar": { + "color": "", + "style": { + "classes": "" + } + }, + "max": 100, + "min": 0, + "track": { + "color": "", + "style": { + "classes": "" + } + }, + "value": { + "enabled": true, + "format": "0,0.##", + "justify": "center", + "style": { + "classes": "" + } + } + }, + "render": "auto", + "resizable": true, + "sort": "none", + "sortable": true, + "strictWidth": false, + "style": { + "classes": "" + }, + "toggleSwitch": { + "color": { + "selected": "", + "unselected": "" + } + }, + "viewParams": {}, + "viewPath": "", + "visible": false, + "width": "" + }, + { + "align": "center", + "boolean": "checkbox", + "dateFormat": "MM/DD/YYYY", + "editable": false, + "field": "DeviceType", + "footer": { + "align": "center", + "justify": "left", + "style": { + "classes": "" + }, + "title": "" + }, + "header": { + "align": "center", + "justify": "left", + "style": { + "classes": "" + }, + "title": "" + }, + "justify": "auto", + "number": "value", + "numberFormat": "0,0.##", + "progressBar": { + "bar": { + "color": "", + "style": { + "classes": "" + } + }, + "max": 100, + "min": 0, + "track": { + "color": "", + "style": { + "classes": "" + } + }, + "value": { + "enabled": true, + "format": "0,0.##", + "justify": "center", + "style": { + "classes": "" + } + } + }, + "render": "auto", + "resizable": true, + "sort": "none", + "sortable": true, + "strictWidth": false, + "style": { + "classes": "" + }, + "toggleSwitch": { + "color": { + "selected": "", + "unselected": "" + } + }, + "viewParams": {}, + "viewPath": "", + "visible": false, + "width": "" + }, + { + "align": "center", + "boolean": "checkbox", + "dateFormat": "MM/DD/YYYY", + "editable": false, + "field": "DisplayPath", + "footer": { + "align": "center", + "justify": "left", + "style": { + "classes": "" + }, + "title": "" + }, + "header": { + "align": "center", + "justify": "left", + "style": { + "classes": "" + }, + "title": "" + }, + "justify": "auto", + "number": "value", + "numberFormat": "0,0.##", + "progressBar": { + "bar": { + "color": "", + "style": { + "classes": "" + } + }, + "max": 100, + "min": 0, + "track": { + "color": "", + "style": { + "classes": "" + } + }, + "value": { + "enabled": true, + "format": "0,0.##", + "justify": "center", + "style": { + "classes": "" + } + } + }, + "render": "auto", + "resizable": true, + "sort": "none", + "sortable": true, + "strictWidth": false, + "style": { + "classes": "" + }, + "toggleSwitch": { + "color": { + "selected": "", + "unselected": "" + } + }, + "viewParams": {}, + "viewPath": "", + "visible": true, + "width": "" + }, + { + "align": "center", + "boolean": "checkbox", + "dateFormat": "MM/DD/YYYY", + "editable": false, + "field": "Area", + "footer": { + "align": "center", + "justify": "left", + "style": { + "classes": "" + }, + "title": "" + }, + "header": { + "align": "center", + "justify": "left", + "style": { + "classes": "" + }, + "title": "" + }, + "justify": "auto", + "number": "value", + "numberFormat": "0,0.##", + "progressBar": { + "bar": { + "color": "", + "style": { + "classes": "" + } + }, + "max": 100, + "min": 0, + "track": { + "color": "", + "style": { + "classes": "" + } + }, + "value": { + "enabled": true, + "format": "0,0.##", + "justify": "center", + "style": { + "classes": "" + } + } + }, + "render": "auto", + "resizable": true, + "sort": "none", + "sortable": true, + "strictWidth": false, + "style": { + "classes": "" + }, + "toggleSwitch": { + "color": { + "selected": "", + "unselected": "" + } + }, + "viewParams": {}, + "viewPath": "", + "visible": true, + "width": "" + }, + { + "align": "center", + "boolean": "checkbox", + "dateFormat": "MM/DD/YYYY", + "editable": false, + "field": "SubArea", + "footer": { + "align": "center", + "justify": "left", + "style": { + "classes": "" + }, + "title": "" + }, + "header": { + "align": "center", + "justify": "left", + "style": { + "classes": "" + }, + "title": "" + }, + "justify": "auto", + "number": "value", + "numberFormat": "0,0.##", + "progressBar": { + "bar": { + "color": "", + "style": { + "classes": "" + } + }, + "max": 100, + "min": 0, + "track": { + "color": "", + "style": { + "classes": "" + } + }, + "value": { + "enabled": true, + "format": "0,0.##", + "justify": "center", + "style": { + "classes": "" + } + } + }, + "render": "auto", + "resizable": true, + "sort": "none", + "sortable": true, + "strictWidth": false, + "style": { + "classes": "" + }, + "toggleSwitch": { + "color": { + "selected": "", + "unselected": "" + } + }, + "viewParams": {}, + "viewPath": "", + "visible": true, + "width": "" + }, + { + "align": "center", + "boolean": "checkbox", + "dateFormat": "MM/DD/YYYY", + "editable": false, + "field": "PLC", + "footer": { + "align": "center", + "justify": "left", + "style": { + "classes": "" + }, + "title": "" + }, + "header": { + "align": "center", + "justify": "left", + "style": { + "classes": "" + }, + "title": "" + }, + "justify": "auto", + "number": "value", + "numberFormat": "0,0.##", + "progressBar": { + "bar": { + "color": "", + "style": { + "classes": "" + } + }, + "max": 100, + "min": 0, + "track": { + "color": "", + "style": { + "classes": "" + } + }, + "value": { + "enabled": true, + "format": "0,0.##", + "justify": "center", + "style": { + "classes": "" + } + } + }, + "render": "auto", + "resizable": true, + "sort": "none", + "sortable": true, + "strictWidth": false, + "style": { + "classes": "" + }, + "toggleSwitch": { + "color": { + "selected": "", + "unselected": "" + } + }, + "viewParams": {}, + "viewPath": "", + "visible": true, + "width": "" + }, + { + "align": "center", + "boolean": "checkbox", + "dateFormat": "MM/DD/YYYY", + "editable": false, + "field": "MaintenanceTemplate", + "footer": { + "align": "center", + "justify": "left", + "style": { + "classes": "" + }, + "title": "" + }, + "header": { + "align": "center", + "justify": "left", + "style": { + "classes": "" + }, + "title": "" + }, + "justify": "auto", + "number": "value", + "numberFormat": "0,0.##", + "progressBar": { + "bar": { + "color": "", + "style": { + "classes": "" + } + }, + "max": 100, + "min": 0, + "track": { + "color": "", + "style": { + "classes": "" + } + }, + "value": { + "enabled": true, + "format": "0,0.##", + "justify": "center", + "style": { + "classes": "" + } + } + }, + "render": "auto", + "resizable": true, + "sort": "none", + "sortable": true, + "strictWidth": false, + "style": { + "classes": "" + }, + "toggleSwitch": { + "color": { + "selected": "", + "unselected": "" + } + }, + "viewParams": {}, + "viewPath": "", + "visible": false, + "width": "" + }, + { + "align": "center", + "boolean": "checkbox", + "dateFormat": "MM/DD/YYYY", + "editable": false, + "field": "LinkToPage", + "footer": { + "align": "center", + "justify": "left", + "style": { + "classes": "" + }, + "title": "" + }, + "header": { + "align": "center", + "justify": "left", + "style": { + "classes": "" + }, + "title": "" + }, + "justify": "auto", + "number": "value", + "numberFormat": "0,0.##", + "progressBar": { + "bar": { + "color": "", + "style": { + "classes": "" + } + }, + "max": 100, + "min": 0, + "track": { + "color": "", + "style": { + "classes": "" + } + }, + "value": { + "enabled": true, + "format": "0,0.##", + "justify": "center", + "style": { + "classes": "" + } + } + }, + "render": "auto", + "resizable": true, + "sort": "none", + "sortable": true, + "strictWidth": false, + "style": { + "classes": "" + }, + "toggleSwitch": { + "color": { + "selected": "", + "unselected": "" + } + }, + "viewParams": {}, + "viewPath": "", + "visible": false, + "width": "" + }, + { + "align": "center", + "boolean": "checkbox", + "dateFormat": "MM/DD/YYYY", + "editable": false, + "field": "LinkToBOM", + "footer": { + "align": "center", + "justify": "left", + "style": { + "classes": "" + }, + "title": "" + }, + "header": { + "align": "center", + "justify": "left", + "style": { + "classes": "" + }, + "title": "" + }, + "justify": "auto", + "number": "value", + "numberFormat": "0,0.##", + "progressBar": { + "bar": { + "color": "", + "style": { + "classes": "" + } + }, + "max": 100, + "min": 0, + "track": { + "color": "", + "style": { + "classes": "" + } + }, + "value": { + "enabled": true, + "format": "0,0.##", + "justify": "center", + "style": { + "classes": "" + } + } + }, + "render": "auto", + "resizable": true, + "sort": "none", + "sortable": true, + "strictWidth": false, + "style": { + "classes": "" + }, + "toggleSwitch": { + "color": { + "selected": "", + "unselected": "" + } + }, + "viewParams": {}, + "viewPath": "", + "visible": false, + "width": "" + }, + { + "align": "center", + "boolean": "checkbox", + "dateFormat": "MM/DD/YYYY", + "editable": false, + "field": "LinkToHelp", + "footer": { + "align": "center", + "justify": "left", + "style": { + "classes": "" + }, + "title": "" + }, + "header": { + "align": "center", + "justify": "left", + "style": { + "classes": "" + }, + "title": "" + }, + "justify": "auto", + "number": "value", + "numberFormat": "0,0.##", + "progressBar": { + "bar": { + "color": "", + "style": { + "classes": "" + } + }, + "max": 100, + "min": 0, + "track": { + "color": "", + "style": { + "classes": "" + } + }, + "value": { + "enabled": true, + "format": "0,0.##", + "justify": "center", + "style": { + "classes": "" + } + } + }, + "render": "auto", + "resizable": true, + "sort": "none", + "sortable": true, + "strictWidth": false, + "style": { + "classes": "" + }, + "toggleSwitch": { + "color": { + "selected": "", + "unselected": "" + } + }, + "viewParams": {}, + "viewPath": "", + "visible": false, + "width": "" + }, + { + "align": "center", + "boolean": "checkbox", + "dateFormat": "MM/DD/YYYY", + "editable": false, + "field": "LinkToOEEMP", + "footer": { + "align": "center", + "justify": "left", + "style": { + "classes": "" + }, + "title": "" + }, + "header": { + "align": "center", + "justify": "left", + "style": { + "classes": "" + }, + "title": "" + }, + "justify": "auto", + "number": "value", + "numberFormat": "0,0.##", + "progressBar": { + "bar": { + "color": "", + "style": { + "classes": "" + } + }, + "max": 100, + "min": 0, + "track": { + "color": "", + "style": { + "classes": "" + } + }, + "value": { + "enabled": true, + "format": "0,0.##", + "justify": "center", + "style": { + "classes": "" + } + } + }, + "render": "auto", + "resizable": true, + "sort": "none", + "sortable": true, + "strictWidth": false, + "style": { + "classes": "" + }, + "toggleSwitch": { + "color": { + "selected": "", + "unselected": "" + } + }, + "viewParams": {}, + "viewPath": "", + "visible": false, + "width": "" + } + ], + "filter": { + "enabled": true + }, + "headerGroups": [ + [] + ] + }, + "scripts": { + "customMethods": [], + "extensionFunctions": null, + "messageHandlers": [ + { + "messageType": "severity-filter", + "pageScope": true, + "script": "\tfilter \u003d payload[\"severity\"]\n\tself.custom.severityFilter \u003d filter\n\tself.props.filter.text \u003d filter\n\t", + "sessionScope": false, + "viewScope": false + }, + { + "messageType": "device-filter", + "pageScope": true, + "script": "\t# implement your handler here\n\tdevice\u003d payload[\"device\"]\n\tself.custom.Historyfilters.PLC \u003d device", + "sessionScope": false, + "viewScope": false + } + ] + }, + "type": "ia.display.table" + } + ], + "meta": { + "name": "root" + }, + "props": { + "style": { + "classes": "Background-Styles/Main-Background" + } + }, + "type": "ia.container.flex" + } +} \ No newline at end of file diff --git a/.resources/6d79da934dbc612fb713a1151878347a8639a70211a794a899c0d478a06e13e8 b/.resources/6d79da934dbc612fb713a1151878347a8639a70211a794a899c0d478a06e13e8 new file mode 100644 index 00000000..6a5e867d Binary files /dev/null and b/.resources/6d79da934dbc612fb713a1151878347a8639a70211a794a899c0d478a06e13e8 differ diff --git a/.resources/6e386eab0737a042e54e3350fc495b9ab2d0b40eac399e5d97f1a612f850cb8f b/.resources/6e386eab0737a042e54e3350fc495b9ab2d0b40eac399e5d97f1a612f850cb8f new file mode 100644 index 00000000..75cc0dca --- /dev/null +++ b/.resources/6e386eab0737a042e54e3350fc495b9ab2d0b40eac399e5d97f1a612f850cb8f @@ -0,0 +1,253 @@ +{ + "pages": { + "/": { + "title": "", + "viewPath": "Main-Views/Home" + }, + "/Command": { + "title": "", + "viewPath": "Main-Views/CommandControl" + }, + "/DetailedView/:detailedView/:plcTagPath": { + "title": "DetailedView", + "viewPath": "Detailed-Views/Detail" + }, + "/DetailedView/MCM01 Bulk Inbound": { + "title": "", + "viewPath": "Detailed-Views/MCM01 Bulk Inbound" + }, + "/DetailedView/MCM02 Fluid Inbound": { + "title": "", + "viewPath": "Detailed-Views/MCM02 Fluid Inbound" + }, + "/DetailedView/MCM03 Fluid Inbound": { + "title": "", + "viewPath": "Detailed-Views/MCM03 Fluid Inbound" + }, + "/DetailedView/MCM04 Sorter Destination, Chutes and Bypass": { + "title": "", + "viewPath": "Detailed-Views/MCM04 Sorter Destination, Chutes and Bypass" + }, + "/DetailedView/MCM05 Sorter Destination and Chutes": { + "title": "", + "viewPath": "Detailed-Views/MCM05 Sorter Destination and Chutes" + }, + "/Device-manager": { + "viewPath": "Main-Views/Device-Manager/DeviceManager" + }, + "/Help": { + "title": "Help", + "viewPath": "Main-Views/Help" + }, + "/MAP-Home": { + "title": "", + "viewPath": "Additional-Home-View/SAT9" + }, + "/Monitron": { + "title": "", + "viewPath": "Main-Views/Monitron" + }, + "/Oil": { + "viewPath": "Main-Views/OilMonitoring" + }, + "/Real-Time": { + "title": "", + "viewPath": "Alarm-Views/RealTime" + }, + "/Temperature": { + "title": "", + "viewPath": "Main-Views/TempMonitoring" + }, + "/Tools": { + "title": "Tools", + "viewPath": "Main-Views/ToolBox" + }, + "/Windows/Statistics": { + "title": "", + "viewPath": "Windows/Statistics" + }, + "/Windows/Status": { + "title": "", + "viewPath": "Windows/Status" + } + }, + "sharedDocks": { + "bottom": [ + { + "anchor": "fixed", + "autoBreakpoint": 480, + "content": "cover", + "handle": "show", + "iconUrl": "material/notifications_active", + "id": "Docked-South", + "modal": false, + "resizable": false, + "show": "onDemand", + "size": 165, + "viewParams": {}, + "viewPath": "Navigation-Views/Docked-South" + } + ], + "cornerPriority": "top-bottom", + "left": [ + { + "anchor": "fixed", + "autoBreakpoint": 805, + "content": "auto", + "handle": "autoHide", + "iconUrl": "", + "id": "Docked-West", + "modal": false, + "resizable": false, + "show": "auto", + "size": 70, + "viewParams": {}, + "viewPath": "Navigation-Views/Docked-West" + } + ], + "right": [ + { + "anchor": "fixed", + "autoBreakpoint": 480, + "content": "cover", + "handle": "hide", + "iconUrl": "", + "id": "Docked-East-TPR", + "modal": false, + "resizable": false, + "show": "onDemand", + "size": 400, + "viewParams": {}, + "viewPath": "PopUp-Views/Controller-Equipment/Information-Docked-East-Tipper" + }, + { + "anchor": "fixed", + "autoBreakpoint": 480, + "content": "cover", + "handle": "hide", + "iconUrl": "", + "id": "Docked-East-EPC", + "modal": false, + "resizable": false, + "show": "onDemand", + "size": 400, + "viewParams": {}, + "viewPath": "PopUp-Views/Controller-Equipment/Information-Docked-East-EPC" + }, + { + "anchor": "fixed", + "autoBreakpoint": 480, + "content": "cover", + "handle": "hide", + "iconUrl": "", + "id": "Docked-East-VFD", + "modal": false, + "resizable": false, + "show": "onDemand", + "size": 400, + "viewParams": {}, + "viewPath": "PopUp-Views/Controller-Equipment/Information-Docked-East-VFD" + }, + { + "anchor": "fixed", + "autoBreakpoint": 480, + "content": "cover", + "handle": "hide", + "iconUrl": "", + "id": "Docked-East-SNP", + "modal": false, + "resizable": false, + "show": "onDemand", + "size": 400, + "viewParams": {}, + "viewPath": "PopUp-Views/Controller-Equipment/Information-Docked-East-StatusNonPowered" + }, + { + "anchor": "fixed", + "autoBreakpoint": 480, + "content": "cover", + "handle": "hide", + "iconUrl": "", + "id": "Docked-East-DS", + "modal": false, + "resizable": false, + "show": "onDemand", + "size": 400, + "viewParams": {}, + "viewPath": "PopUp-Views/Controller-Equipment/Information-Docked-East-Device-Status" + }, + { + "anchor": "fixed", + "autoBreakpoint": 480, + "content": "cover", + "handle": "hide", + "iconUrl": "", + "id": "Docked-East-MCM", + "modal": false, + "resizable": false, + "show": "onDemand", + "size": 400, + "viewParams": {}, + "viewPath": "PopUp-Views/Controller-Equipment/Information-Docked-East-MCM" + }, + { + "anchor": "fixed", + "autoBreakpoint": 480, + "content": "cover", + "handle": "hide", + "iconUrl": "", + "id": "Docked-East-Extendo", + "modal": false, + "resizable": false, + "show": "onDemand", + "size": 400, + "viewParams": {}, + "viewPath": "PopUp-Views/Controller-Equipment/Information-Docked-East-Extendo" + }, + { + "anchor": "fixed", + "autoBreakpoint": 480, + "content": "cover", + "handle": "hide", + "iconUrl": "", + "id": "Docked-East-BTN", + "modal": false, + "resizable": false, + "show": "onDemand", + "size": 400, + "viewParams": {}, + "viewPath": "PopUp-Views/Controller-Equipment/Information-Docked-East-Button" + }, + { + "anchor": "fixed", + "autoBreakpoint": 480, + "content": "cover", + "handle": "hide", + "iconUrl": "", + "id": "Docked-East-SS-BTN", + "modal": false, + "resizable": false, + "show": "onDemand", + "size": 400, + "viewParams": {}, + "viewPath": "PopUp-Views/Controller-Equipment/Information-Docked-East-SS-Button" + } + ], + "top": [ + { + "anchor": "fixed", + "autoBreakpoint": 480, + "content": "auto", + "handle": "hide", + "iconUrl": "", + "id": "", + "modal": false, + "resizable": false, + "show": "visible", + "size": 50, + "viewParams": {}, + "viewPath": "Framework/Breakpoint" + } + ] + } +} \ No newline at end of file diff --git a/.resources/6f5c9abe8e1d6af755ac04342e5a412dcde7dbd410d2ef485f7113c560ace9b1 b/.resources/6f5c9abe8e1d6af755ac04342e5a412dcde7dbd410d2ef485f7113c560ace9b1 new file mode 100644 index 00000000..1c72cce7 --- /dev/null +++ b/.resources/6f5c9abe8e1d6af755ac04342e5a412dcde7dbd410d2ef485f7113c560ace9b1 @@ -0,0 +1,1182 @@ +{ + "custom": {}, + "params": { + "tagProps": [ + "TAG0", + "TAG1", + "TAG2", + "TAG3", + "TAG4", + "TAG5", + "TAG6", + "TAG7", + "TAG8", + "TAG9", + "TAG10", + "TAG11", + "TAG12", + "TAG13", + "TAG14", + "TAG15" + ] + }, + "props": { + "defaultSize": { + "height": 1080, + "width": 1920 + } + }, + "root": { + "children": [ + { + "meta": { + "name": "DPM" + }, + "position": { + "height": 1, + "width": 1 + }, + "propConfig": { + "props.params.con_lines[0]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[0]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[10]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[10]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[11]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[11]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[12]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[12]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[13]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[13]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[14]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[14]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[15]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[15]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[1]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[1]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[2]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[2]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[3]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[3]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[4]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[4]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[5]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[5]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[6]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[6]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[7]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[7]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[8]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[8]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[9]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[9]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + } + }, + "props": { + "params": { + "con_lines": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + false, + false, + false, + false, + false, + false, + false, + false + ], + "con_lines_visible": [ + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "in": false, + "out": false + }, + "path": "Windows/Tabs/Enternet Windows/Components/DPM_TO_HUB" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL9_1_EXTENDO" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0232, + "y": 0.4991 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL9_1_EXTENDO_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.0094, + "y": 0.5394 + }, + "props": { + "text": "UL9_1_EXTENDO 11.200.1.50", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL9_3" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.023, + "y": 0.6677 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL9_3_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.0068, + "y": 0.7315 + }, + "props": { + "text": "UL9_3_VFD1 11.200.1.51", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL9_4" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0216, + "y": 0.8333 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL9_4_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.0068, + "y": 0.8981 + }, + "props": { + "text": "UL9_4_VFD1 11.200.1.52", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL9_5" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0229, + "y": 0.3333 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL9_5_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.0068, + "y": 0.3986 + }, + "props": { + "text": "UL9_5_VFD1 11.200.1.53", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL9_6" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0229, + "y": 0.1667 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL9_6_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.0068, + "y": 0.2324 + }, + "props": { + "text": "UL9_6_VFD1 11.200.1.54", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL9_7" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0244 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL9_7_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.0068, + "y": 0.0653 + }, + "props": { + "text": "UL9_7_VFD1 11.200.1.55", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL9_8" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.5 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL9_8_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.5117, + "y": 0.1662 + }, + "props": { + "text": "UL9_8_VFD1 11.200.1.56", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "PS3_1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.625 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS3_1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.6312, + "y": 0.1664 + }, + "props": { + "text": "PS3_1_VFD1 11.200.1.57", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "PS3_2" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.75 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS3_2_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.75, + "y": 0.1664 + }, + "props": { + "text": "PS3_2_VFD1 11.200.1.58", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "PS3_3" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.375 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS3_3_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.3864, + "y": 0.1664 + }, + "props": { + "text": "PS3_3_VFD1 11.200.1.59", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "PS3_5A" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.2516, + "y": 0.0019 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS3_5A_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.315, + "y": 0.1682 + }, + "props": { + "text": "PS3_5A_VFD1 11.200.1.60", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "PS3_5B" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.1245 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS3_5B_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.2072, + "y": 0.1646 + }, + "props": { + "text": "PS3_5B_VFD1 11.200.1.61", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "PS3_6" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.8509, + "y": 0.3332 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS3_6_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.947, + "y": 0.3943 + }, + "props": { + "text": "PS3_6_VFD1 11.200.1.62", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "PS3_7" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.8514, + "y": 0.1667 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS3_7_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.947, + "y": 0.2276 + }, + "props": { + "text": "PS3_7_VFD1 11.200.1.63", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "PS3_8" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.8528 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS3_8_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.947, + "y": 0.0619 + }, + "props": { + "text": "PS3_8_VFD1 11.200.1.64", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL9_3_FIO1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.8389, + "y": 0.4988 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/FIO_SIO" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL9_3_FIO1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.9349999999999999, + "y": 0.561 + }, + "props": { + "text": "UL9_3_FIO1 11.200.1.65", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "DPM_label" + }, + "position": { + "height": 0.0694, + "width": 0.101, + "x": 0.5831, + "y": 0.6342 + }, + "props": { + "text": "DPM2_PS3-1 11.200.1.3", + "textStyle": { + "fontSize": "2vmin" + } + }, + "type": "ia.display.label" + } + ], + "meta": { + "name": "root" + }, + "position": { + "x": 0.6348, + "y": -0.1546 + }, + "props": { + "mode": "percent" + }, + "type": "ia.container.coord" + } +} \ No newline at end of file diff --git a/.resources/7001d11f5ae1ed228b6cb1f597b5e4664e3b06d7e52655dfe516c0bcaef44cc4 b/.resources/7001d11f5ae1ed228b6cb1f597b5e4664e3b06d7e52655dfe516c0bcaef44cc4 deleted file mode 100644 index 0a39122a..00000000 Binary files a/.resources/7001d11f5ae1ed228b6cb1f597b5e4664e3b06d7e52655dfe516c0bcaef44cc4 and /dev/null differ diff --git a/.resources/7213c9e34f63496ca14e7a0b29064ec4363c823e75c74f945ac2380048015ec7 b/.resources/7213c9e34f63496ca14e7a0b29064ec4363c823e75c74f945ac2380048015ec7 new file mode 100644 index 00000000..dba9e778 --- /dev/null +++ b/.resources/7213c9e34f63496ca14e7a0b29064ec4363c823e75c74f945ac2380048015ec7 @@ -0,0 +1,1182 @@ +{ + "custom": {}, + "params": { + "tagProps": [ + "TAG0", + "TAG1", + "TAG2", + "TAG3", + "TAG4", + "TAG5", + "TAG6", + "TAG7", + "TAG8", + "TAG9", + "TAG10", + "TAG11", + "TAG12", + "TAG13", + "TAG14", + "TAG15" + ] + }, + "props": { + "defaultSize": { + "height": 1080, + "width": 1920 + } + }, + "root": { + "children": [ + { + "meta": { + "name": "DPM" + }, + "position": { + "height": 1, + "width": 1 + }, + "propConfig": { + "props.params.con_lines[0]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[0]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[10]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[10]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[11]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[11]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[12]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[12]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[13]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[13]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[14]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[14]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[15]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[15]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[1]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[1]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[2]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[2]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[3]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[3]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[4]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[4]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[5]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[5]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[6]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[6]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[7]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[7]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[8]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[8]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[9]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[9]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + } + }, + "props": { + "params": { + "con_lines": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + false, + false, + false, + false, + false, + false, + false, + false + ], + "con_lines_visible": [ + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + false, + false, + false, + false, + false, + false, + false, + false + ], + "in": false, + "out": false + }, + "path": "Windows/Tabs/Enternet Windows/Components/DPM_TO_HUB" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL7_1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0232, + "y": 0.4991 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL7_1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.0094, + "y": 0.5394 + }, + "props": { + "text": "UL7_1_VFD1 11.200.1.30", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL7_2" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.023, + "y": 0.6677 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL7_2_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.0068, + "y": 0.7315 + }, + "props": { + "text": "UL7_2_VFD1 11.200.1.31", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL7_3" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0216, + "y": 0.8333 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL7_3_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.0068, + "y": 0.8981 + }, + "props": { + "text": "UL7_3_VFD1 11.200.1.32", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL7_4" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0229, + "y": 0.3333 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL7_4_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.0068, + "y": 0.3986 + }, + "props": { + "text": "UL7_4_VFD1 11.200.1.33", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL7_5" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0229, + "y": 0.1667 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL7_5_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.0068, + "y": 0.2324 + }, + "props": { + "text": "UL7_5_VFD1 11.200.1.34", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL7_6" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0244 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL7_6_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.0068, + "y": 0.0653 + }, + "props": { + "text": "UL7_6_VFD1 11.200.1.35", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL7_7" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.5 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL7_7_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.5117, + "y": 0.1662 + }, + "props": { + "text": "UL7_7_VFD1 11.200.1.36", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL8_1_EXTENDO" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.625 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL8_1_EXTENDO_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.6312, + "y": 0.1664 + }, + "props": { + "text": "UL8_1_EXTENDO 11.200.1.37", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL8_3" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.75 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL8_3_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.75, + "y": 0.1664 + }, + "props": { + "text": "UL8_3_VFD1 11.200.1.38", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL8_4" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.375 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL8_4_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.3864, + "y": 0.1664 + }, + "props": { + "text": "UL8_4_VFD1 11.200.1.39", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL8_5" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.2516, + "y": 0.0019 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL8_5_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.315, + "y": 0.1682 + }, + "props": { + "text": "UL8_5_VFD1 11.200.1.40", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL8_6" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.1245 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL8_6_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.2072, + "y": 0.1646 + }, + "props": { + "text": "UL8_6_VFD1 11.200.1.41", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL8_7" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.8509, + "y": 0.3332 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL8_7_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.947, + "y": 0.3943 + }, + "props": { + "text": "UL8_7_VFD1 11.200.1.42", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL8_8" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.8514, + "y": 0.1667 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL8_8_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.947, + "y": 0.2276 + }, + "props": { + "text": "UL8_8_VFD1 11.200.1.43", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL7_2_FIO1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.8408 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/FIO_SIO" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL7_2_FIO1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.9349999999999999, + "y": 0.0619 + }, + "props": { + "text": "UL7_2_FIO1 11.200.1.44", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL8_3_FIO1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.8389, + "y": 0.4988 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/FIO_SIO" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL8_3_FIO1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.9349999999999999, + "y": 0.561 + }, + "props": { + "text": "UL8_3_FIO1 11.200.1.45", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "DPM_label" + }, + "position": { + "height": 0.0694, + "width": 0.101, + "x": 0.5831, + "y": 0.6342 + }, + "props": { + "text": "DPM1_PS3-1 11.200.1.2", + "textStyle": { + "fontSize": "2vmin" + } + }, + "type": "ia.display.label" + } + ], + "meta": { + "name": "root" + }, + "position": { + "x": 0.6348, + "y": -0.1546 + }, + "props": { + "mode": "percent" + }, + "type": "ia.container.coord" + } +} \ No newline at end of file diff --git a/.resources/73d5f32edf08dfe10c69d0c938ca382a438af5d489551e793995221cdc94b6a4 b/.resources/73d5f32edf08dfe10c69d0c938ca382a438af5d489551e793995221cdc94b6a4 new file mode 100644 index 00000000..d55cd8e3 --- /dev/null +++ b/.resources/73d5f32edf08dfe10c69d0c938ca382a438af5d489551e793995221cdc94b6a4 @@ -0,0 +1,1049 @@ +{ + "custom": {}, + "params": { + "tagProps": [ + "TAG0", + "TAG1", + "TAG2", + "TAG3", + "TAG4", + "TAG5", + "TAG6", + "TAG7", + "TAG8", + "TAG9", + "TAG10", + "TAG11", + "TAG12", + "TAG13" + ] + }, + "props": { + "defaultSize": { + "height": 1080, + "width": 1920 + } + }, + "root": { + "children": [ + { + "meta": { + "name": "DPM" + }, + "position": { + "height": 1, + "width": 1 + }, + "propConfig": { + "props.params.con_lines[0]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[0]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[10]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[10]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[11]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[11]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[12]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[12]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[13]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[13]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[1]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[1]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[2]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[2]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[3]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[3]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[4]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[4]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[5]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[5]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[6]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[6]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[7]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[7]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[8]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[8]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[9]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[9]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + } + }, + "props": { + "params": { + "con_lines": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "con_lines_visible": [ + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "in": false, + "out": false + }, + "path": "Windows/Tabs/Enternet Windows/Components/DPM_TO_HUB" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC3_1_TIPPER" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0232, + "y": 0.4991 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC3_1_TIPPER_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.0094, + "y": 0.5394 + }, + "props": { + "text": "ULC3_1_TIPPER 11.200.1.70", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "ULC3_3" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.023, + "y": 0.6677 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC3_3_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.0068, + "y": 0.7315 + }, + "props": { + "text": "ULC3_3_VFD1 11.200.1.71", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "ULC3_4" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0216, + "y": 0.8333 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC3_4_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.0068, + "y": 0.8981 + }, + "props": { + "text": "ULC3_4_VFD1 11.200.1.72", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "ULC3_6" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0229, + "y": 0.3333 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC3_6_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.0068, + "y": 0.3986 + }, + "props": { + "text": "ULC3_6_VFD1 11.200.1.73", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "ULC4_1_TIPPER" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0229, + "y": 0.1667 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC4_1_TIPPER_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.0068, + "y": 0.2324 + }, + "props": { + "text": "ULC4_1_TIPPER 11.200.1.74", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "ULC4_3" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0244 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC4_3_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.0068, + "y": 0.0653 + }, + "props": { + "text": "ULC4_3_VFD1 11.200.1.75", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "ULC4_4" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.5 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC4_4_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.5117, + "y": 0.1662 + }, + "props": { + "text": "ULC4_4_VFD1 11.200.1.76", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "ULC4_6" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.625 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC4_6_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.6312, + "y": 0.1664 + }, + "props": { + "text": "ULC4_6_VFD1 11.200.1.77", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "ULC3_04_FIO1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.75 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/FIO_SIO" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC3_04_FIO1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.75, + "y": 0.1664 + }, + "props": { + "text": "ULC3_04_FIO1 11.200.1.78", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "ULC3_06_FIO1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.375 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/FIO_SIO" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC3_06_FIO1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.3864, + "y": 0.1664 + }, + "props": { + "text": "ULC3_06_FIO1 11.200.1.79", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "ULC4_04_FIO1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.2516, + "y": 0.0019 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/FIO_SIO" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC4_04_FIO1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.315, + "y": 0.1682 + }, + "props": { + "text": "ULC4_04_FIO1 11.200.1.80", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "ULC4_06_FIO1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.1245 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/FIO_SIO" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC4_06_FIO1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.2072, + "y": 0.1646 + }, + "props": { + "text": "ULC4_06_FIO1 11.200.1.81", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "PDP01_FIO1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.8389, + "y": 0.3332 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/FIO_SIO" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PDP01_FIO1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.9349999999999999, + "y": 0.3943 + }, + "props": { + "text": "PDP01_FIO1 11.200.1.82", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "PDP01_PMM1" + }, + "position": { + "height": 0.0991, + "width": 0.0682, + "x": 0.8826, + "y": 0.1694 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/PMM" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PDP01_PMM1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.8954, + "y": 0.2701 + }, + "props": { + "text": "PDP01_PMM1 11.200.1.83", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "DPM_label" + }, + "position": { + "height": 0.0694, + "width": 0.101, + "x": 0.5831, + "y": 0.6342 + }, + "props": { + "text": "DPM1_ULC3-6 11.200.1.3", + "textStyle": { + "fontSize": "2vmin" + } + }, + "type": "ia.display.label" + } + ], + "meta": { + "name": "root" + }, + "position": { + "x": 0.6348, + "y": -0.1546 + }, + "props": { + "mode": "percent" + }, + "type": "ia.container.coord" + } +} \ No newline at end of file diff --git a/.resources/75f32797456b4b8860414e049d23621dbc783ae71bbdf311c7ddb5b0e92d0770 b/.resources/75f32797456b4b8860414e049d23621dbc783ae71bbdf311c7ddb5b0e92d0770 new file mode 100644 index 00000000..39ac6b13 --- /dev/null +++ b/.resources/75f32797456b4b8860414e049d23621dbc783ae71bbdf311c7ddb5b0e92d0770 @@ -0,0 +1,149 @@ +{ + "custom": {}, + "params": {}, + "props": { + "defaultSize": { + "height": 1080, + "width": 1920 + } + }, + "root": { + "children": [ + { + "meta": { + "name": "Image" + }, + "position": { + "height": 1, + "width": 1 + }, + "propConfig": { + "props.source": { + "binding": { + "config": { + "expression": "\"http://127.0.0.1:5500/SAT9%20Overview.svg?var\" + toMillis(now(100))" + }, + "type": "expr" + } + } + }, + "props": { + "fit": { + "mode": "fill" + } + }, + "type": "ia.display.image" + }, + { + "meta": { + "name": "MCM01_Button" + }, + "position": { + "height": 0.038, + "width": 0.1078, + "x": 0.1661, + "y": 0.7657 + }, + "props": { + "params": { + "pageid": "DetailedView/MCM01 Bulk Inbound", + "panel_id": "value", + "text": "MCM01 Bulk Inbound" + }, + "path": "Symbol-Views/Equipment-Views/Area_Nav_Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "MCM03_Button" + }, + "position": { + "height": 0.0417, + "width": 0.1078, + "x": 0.7551, + "y": 0.7879 + }, + "props": { + "params": { + "pageid": "DetailedView/MCM03 Fluid Inbound", + "panel_id": "value", + "text": "MCM03 Fluid Inbound" + }, + "path": "Symbol-Views/Equipment-Views/Area_Nav_Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "MCM05_Button" + }, + "position": { + "height": 0.0426, + "width": 0.1521, + "x": 0.4483, + "y": 0.1462 + }, + "props": { + "params": { + "pageid": "DetailedView/MCM05 Sorter Destination and Chutes", + "panel_id": "value", + "text": "MCM05 Sorter Destination and Chutes" + }, + "path": "Symbol-Views/Equipment-Views/Area_Nav_Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "MCM02_Button" + }, + "position": { + "height": 0.0417, + "width": 0.1078, + "x": 0.365, + "y": 0.8175 + }, + "props": { + "params": { + "pageid": "DetailedView/MCM02 Fluid Inbound", + "panel_id": "value", + "text": "MCM02 Fluid Inbound" + }, + "path": "Symbol-Views/Equipment-Views/Area_Nav_Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "MCM04_Button" + }, + "position": { + "height": 0.0426, + "rotate": { + "anchor": "50% 11%" + }, + "width": 0.1521, + "x": 0.6676, + "y": 0.4231 + }, + "props": { + "params": { + "pageid": "DetailedView/MCM04 Sorter Destination, Chutes and Bypass", + "panel_id": "value", + "text": "MCM04 Sorter Destination, Chutes and Bypass" + }, + "path": "Symbol-Views/Equipment-Views/Area_Nav_Button" + }, + "type": "ia.display.view" + } + ], + "meta": { + "name": "root" + }, + "props": { + "mode": "percent" + }, + "type": "ia.container.coord" + } +} \ No newline at end of file diff --git a/.resources/7746df87bc2c49a2a908937678761d5fccc3f8e2e63a0857e477dc03a60e219a b/.resources/7746df87bc2c49a2a908937678761d5fccc3f8e2e63a0857e477dc03a60e219a new file mode 100644 index 00000000..a2043147 Binary files /dev/null and b/.resources/7746df87bc2c49a2a908937678761d5fccc3f8e2e63a0857e477dc03a60e219a differ diff --git a/.resources/7761aabeaa611bb72725475b74702a7768834e6bdb5555f4c946601d22286adf b/.resources/7761aabeaa611bb72725475b74702a7768834e6bdb5555f4c946601d22286adf new file mode 100644 index 00000000..be92b91d --- /dev/null +++ b/.resources/7761aabeaa611bb72725475b74702a7768834e6bdb5555f4c946601d22286adf @@ -0,0 +1,1348 @@ +{ + "custom": {}, + "params": { + "InDown": false, + "InLeft": true, + "InOn": false, + "InUp": false, + "OutDown": false, + "OutOn": false, + "OutRight": false, + "OutUp": true + }, + "propConfig": { + "params.InDown": { + "paramDirection": "input", + "persistent": true + }, + "params.InLeft": { + "paramDirection": "input", + "persistent": true + }, + "params.InOn": { + "paramDirection": "input", + "persistent": true + }, + "params.InUp": { + "paramDirection": "input", + "persistent": true + }, + "params.OutDown": { + "paramDirection": "input", + "persistent": true + }, + "params.OutOn": { + "paramDirection": "input", + "persistent": true + }, + "params.OutRight": { + "paramDirection": "input", + "persistent": true + }, + "params.OutUp": { + "paramDirection": "input", + "persistent": true + } + }, + "props": { + "defaultSize": { + "height": 270, + "width": 480 + } + }, + "root": { + "children": [ + { + "meta": { + "name": "EN4TR" + }, + "position": { + "basis": "300px", + "grow": 1 + }, + "propConfig": { + "props.elements[0].stroke.paint": { + "binding": { + "config": { + "path": "view.params.InOn" + }, + "transforms": [ + { + "fallback": "#FF0000", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "#00FF00" + }, + { + "input": false, + "output": "#FF0000" + } + ], + "outputType": "color", + "type": "map" + } + ], + "type": "property" + } + }, + "props.elements[1].stroke.paint": { + "binding": { + "config": { + "path": "view.params.InOn" + }, + "transforms": [ + { + "fallback": "#FF0000", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "#00FF00" + }, + { + "input": false, + "output": "#FF0000" + } + ], + "outputType": "color", + "type": "map" + } + ], + "type": "property" + } + }, + "props.elements[1].visibility": { + "binding": { + "config": { + "path": "view.params.InUp" + }, + "transforms": [ + { + "fallback": "hidden", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "visible" + }, + { + "input": false, + "output": "hidden" + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "property" + } + }, + "props.elements[2].stroke.paint": { + "binding": { + "config": { + "path": "view.params.InOn" + }, + "transforms": [ + { + "fallback": "#FF0000", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "#00FF00" + }, + { + "input": false, + "output": "#FF0000" + } + ], + "outputType": "color", + "type": "map" + } + ], + "type": "property" + } + }, + "props.elements[2].visibility": { + "binding": { + "config": { + "path": "view.params.InLeft" + }, + "transforms": [ + { + "fallback": "hidden", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "visible" + }, + { + "input": false, + "output": "hidden" + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "property" + } + }, + "props.elements[3].stroke.paint": { + "binding": { + "config": { + "path": "view.params.InOn" + }, + "transforms": [ + { + "fallback": "#FF0000", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "#00FF00" + }, + { + "input": false, + "output": "#FF0000" + } + ], + "outputType": "color", + "type": "map" + } + ], + "type": "property" + } + }, + "props.elements[3].visibility": { + "binding": { + "config": { + "path": "view.params.InDown" + }, + "transforms": [ + { + "fallback": "hidden", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "visible" + }, + { + "input": false, + "output": "hidden" + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "property" + } + }, + "props.elements[4].stroke.paint": { + "binding": { + "config": { + "path": "view.params.OutOn" + }, + "transforms": [ + { + "fallback": "#FF0000", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "#00FF00" + }, + { + "input": false, + "output": "#FF0000" + } + ], + "outputType": "color", + "type": "map" + } + ], + "type": "property" + } + }, + "props.elements[4].visibility": { + "binding": { + "config": { + "path": "view.params.OutUp" + }, + "transforms": [ + { + "fallback": "hidden", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "visible" + }, + { + "input": false, + "output": "hidden" + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "property" + } + }, + "props.elements[5].stroke.paint": { + "binding": { + "config": { + "path": "view.params.OutOn" + }, + "transforms": [ + { + "fallback": "#FF0000", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "#00FF00" + }, + { + "input": false, + "output": "#FF0000" + } + ], + "outputType": "color", + "type": "map" + } + ], + "type": "property" + } + }, + "props.elements[5].visibility": { + "binding": { + "config": { + "path": "view.params.OutRight" + }, + "transforms": [ + { + "fallback": "hidden", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "visible" + }, + { + "input": false, + "output": "hidden" + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "property" + } + }, + "props.elements[6].stroke.paint": { + "binding": { + "config": { + "path": "view.params.InOn" + }, + "transforms": [ + { + "fallback": "#FF0000", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "#00FF00" + }, + { + "input": false, + "output": "#FF0000" + } + ], + "outputType": "color", + "type": "map" + } + ], + "type": "property" + } + }, + "props.elements[6].visibility": { + "binding": { + "config": { + "path": "view.params.OutDown" + }, + "transforms": [ + { + "fallback": "hidden", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "visible" + }, + { + "input": false, + "output": "hidden" + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "property" + } + }, + "props.elements[7].stroke.paint": { + "binding": { + "config": { + "path": "view.params.OutOn" + }, + "transforms": [ + { + "fallback": "#FF0000", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "#00FF00" + }, + { + "input": false, + "output": "#FF0000" + } + ], + "outputType": "color", + "type": "map" + } + ], + "type": "property" + } + } + }, + "props": { + "elements": [ + { + "d": "m 914.31016,988.77594 96.19714,-3.11563 m 12.8523,-0.38918 4.2841,-0.38917 m 11.2945,24.53494 H 908.46823 m 5.84193,-11.68328 h 118.78604 m -118.78604,-0.77919 h 118.78604 m -28.4308,0 h 1.558 m 26.8728,-0.77923 h -5.4525 m -4.2841,-10.51497 h -92.69199 m 92.69199,-1.55773 h 1.1684 m -1.1684,-0.38918 h -90.74467 m 0,-0.38917 h 85.68167 m 6.2314,-0.77919 h -1.1684 m -35.05158,-4.67332 h -11.29439 m 50.63007,-3.11559 h -0.7792 m 0.7792,-1.94724 h -1.5578 m -26.87289,-0.77922 h -10.90499 m -11.29439,0 h -21.42046 m 72.05053,-1.55782 h -1.9473 m -26.48339,-0.38917 h -10.90499 m -11.29439,0 h -21.42046 m 67.76643,-6.2311 h -5.063 m -19.08359,-1.16828 h -43.61984 m 49.46173,-2.72618 h -5.84189 m -43.61984,-2.33668 h -12.07333 m 61.53506,-0.38918 h -5.84189 m -43.61984,-1.55774 h -12.07333 m 61.53506,-1.55781 h -5.84189 m 5.84189,-2.72609 h -5.84189 m -55.69317,-1.16837 h -6.23136 m 88.40792,-1.16828 h 1.9473 m -22.5888,-0.38917 h -5.84189 m -55.69317,-0.38917 h -6.23136 m 88.40792,-1.16841 h 1.9473 m -22.5888,-1.55773 h -5.84189 m 26.48339,-0.7792 h 1.9473 m -35.05157,0 h -12.07332 m 45.17759,-0.77914 h 1.9473 m -22.5888,-1.16836 h -5.84189 m 26.48339,-0.38917 h 1.9473 m -33.10424,-0.38918 h -14.02065 m 45.17759,-1.94723 h 1.9473 m -22.5888,-0.38917 h -5.84189 m -6.62088,-0.77919 h -12.07332 m 45.17759,-1.55773 h -2.3368 m -18.3047,-0.38918 h -5.84189 m -4.67355,-0.77919 h -14.02065 m 44.00919,-0.38917 h -1.1684 m -18.3047,-1.55781 h -5.84189 m -6.62088,-1.16837 h -12.07332 m 24.53609,-1.9471 h -5.84189 m -4.67355,-0.7792 h -14.02065 m 24.53609,-1.94726 h -5.84189 m -6.62088,-0.77919 h -12.07332 m -43.23033,-1.16832 h 6.23136 m 61.53506,-1.16832 h -5.84189 m -4.67355,-0.7792 h -14.02065 m 24.53609,-1.9473 h -5.84189 m -6.62088,-0.77918 h -12.07332 m 24.53609,-2.33661 h -5.84189 m 24.14659,0 h 4.2841 m -84.12386,0 h 12.07333 m 38.94629,-0.77919 h -14.02065 m 42.84079,-1.94723 h 4.2841 m -22.5888,0 h -5.84189 m -6.62088,-0.77918 h -12.07332 m 42.84079,-1.16837 h 4.2841 m -4.2841,-0.77914 h 4.2841 m -113.33354,20.64049 13.24171,0.38917 m 98.14453,3.505 h 1.9473 m -4.2841,-25.31381 h -5.063 m -23.75714,0 h -14.02065 m 42.84079,-1.16833 h 4.2841 m -4.2841,-0.77918 h -5.063 m 1.1684,-0.77919 h -1.1684 m -25.70447,-0.38917 h -12.07332 m 37.77779,-2.33668 h 9.3471 m -33.10424,-0.38918 h -14.02065 m 37.77779,-2.33664 h 0.7793 m 2.7262,0 h 5.8419 m -72.05055,-0.38917 h 21.42046 m 11.29435,0 h 10.90503 m -10.90503,-0.38919 h -7.78917 m 37.77781,-1.16831 h 0.7792 m 3.8946,0 h 4.6736 m -9.3471,-0.77923 h 0.7792 m 3.8946,0 h 4.6735 M 908.46907,901.92894 H 1038.939 m -17.9153,4.67336 -1.9473,-0.38917 m 5.063,15.96721 1.5578,1.16832 m -35.05159,18.6933 8.56824,12.85166 m -7.39986,-12.85166 7.39986,10.51497 m -8.56824,-16.35666 8.56824,12.85166 m -7.39986,-12.85166 7.39986,10.51502 m -8.56824,-16.35667 8.56824,12.85166 m -7.39986,-12.85166 7.39986,10.90439 m -8.56824,-16.74604 8.56824,12.85163 m -7.39986,-12.85163 7.39986,10.90443 m -8.56824,-16.74603 8.56824,12.85158 m -7.39986,-12.85158 7.39986,10.90435 m -8.56824,-16.35658 8.56824,12.85161 m -7.39986,-12.85161 7.39986,10.51493 m -8.56824,-16.35662 8.56824,12.85162 m -7.39986,-12.85162 7.39986,10.51501 m -6.62092,-13.24102 6.62092,9.73602 m -5.06311,-9.73602 5.06311,7.39933 m 0,-5.06274 -1.16842,-2.33659 m 40.89357,104.76026 -5.8419,-11.68328 m -7.7893,-15.5778 -6.2314,-13.24102 m 8.5681,12.4622 -6.6208,-13.24116 m 6.6208,7.39951 -5.8419,-11.68333 m 3.5052,-28.42882 -1.9473,-3.50496 m 4.284,3.11555 -4.284,-8.17833 m 4.284,2.33668 -4.284,-8.17833 m -114.89227,88.40299 v -31.54488 m 0,0 v -44.00717 m 0,0 v -31.93377 m 5.84193,95.80312 v -95.80312 m 13.24171,81.39361 v -81.39361 m 2.33675,0 v 79.83587 m 2.72631,1.94723 v -0.38917 m 4.67355,-33.1027 v -23.75604 m 6.23136,31.15547 v -9.34665 m 0,-21.80882 v -7.00993 m 12.07333,52.57487 v -16.35667 m 0,-36.2182 v -14.79888 m 21.42074,73.2154 v -7.78888 m 0,-65.42652 v -2.72606 m 3.50518,42.83867 v -2.72609 m 0,-3.11555 v -2.72606 m 0,-3.11559 v -2.7261 m 0,-2.72605 v -3.1156 m 0,-2.72608 v -3.11552 m 0,-2.7261 v -2.72617 m 0,-3.11548 v -2.72617 m 0,-3.11548 v -2.33663 m 7.78893,0 v 2.72606 m 0,73.2154 v -7.78888 m 10.90499,-65.42652 v 67.37375 m 5.45239,24.92436 v -11.29392 m 0.3892,-25.70327 v -2.72606 m 0,-3.11559 v -2.72609 m 0,-2.72606 v -3.11555 m 0,-2.7261 v -3.11559 m 0,-2.72606 v -2.72617 m 0,-3.11547 v -2.72618 m 0,-3.11551 v -2.72618 m 0,-3.11543 v -2.72614 m 1.1684,80.22537 v -11.29392 m 12.0736,-83.73025 v 11.29376 m 0,70.09985 v -19.47213 m 0.7792,5.06274 v -5.06274 m 0,-57.63765 v -4.28383 m 0.3892,9.34661 v -2.72614 m 1.5575,55.30101 v 4.28382 m 2.3368,17.52495 v -3.11547 m 0,-18.6933 v -52.57487 m 1.1684,71.26817 v -1.94723 m 0,-44.78599 v -1.94727 m 0.3892,48.68049 v -1.55785 m 0,-45.17537 v -1.55785 m 0.7792,36.21828 V 937.3694 m 0,-12.07275 v -1.94723 m 1.9474,5.84156 v 5.84165 m 0,40.50216 v 5.84165 m 0,15.57775 v -95.02421 m 5.4525,0 v 95.80312 m 5.8419,-95.80312 v 31.93433 m 0,0 v 44.00717 m 0,0 v 31.54492 m -124.62798,-11.6833 -5.84193,11.6833 m 112.55461,-107.48642 -1.9473,4.28383 m 4.2841,-4.28383 -2.3368,4.67332 m -1.5578,1.94719 1.1684,-0.77922 m 4.2841,28.03991 0.3892,-0.38918 m 1.1684,1.55782 0.3892,-0.38917 m -1.9473,45.95443 0.3892,-0.38918 m 1.1684,1.55786 0.3892,-0.38917 m -5.842,-15.18831 -1.9472,0.7792 m -12.8517,28.03775 0.3892,-0.38917 m -2.3368,0.38917 0.3892,-0.38917 m 22.9783,-20.25112 v -0.77919 m 0,-45.95443 v -0.38918 m -100.09189,54.13269 0.38919,0.77919 0.77922,0.77914 0.77927,0.38917 1.16838,0.38918 m 70.49263,-68.93149 0.7793,0.77919 0.7792,0.77922 2.3368,0.7792 m -3.8947,3.50492 0.7792,0.77919 0.7792,0.77922 2.3368,0.7792 m -3.8947,3.50496 0.7793,0.77922 0.7792,0.77919 2.3368,0.77919 m -3.8947,3.50501 0.7792,0.77914 0.7792,0.77923 2.3368,0.77919 m -3.8947,3.11559 0.7793,1.16832 0.7792,0.38917 2.3368,1.16829 m -3.8947,3.11559 0.7792,1.16832 0.7793,0.38917 2.3367,1.16837 m -3.8947,3.11555 0.7793,0.77922 0.7792,0.77919 2.3368,0.77914 m -3.8947,3.50505 0.7792,0.77919 0.7792,0.77922 2.3368,0.77915 m 21.8099,-22.97721 0.3891,-0.38918 0.3892,-0.77915 m -1.9473,1.9472 0.7792,-0.38918 m 0.3892,46.34377 0.3892,-0.77923 0.3892,-0.38918 m -3.1157,1.94728 h 1.1684 l 0.7792,-0.38918 m -1.9473,-47.90158 h 0.3892 m -0.3892,46.73326 h 0.3892 m 2.7268,-0.38918 v -0.77918 m 0,-45.9544 v -0.38917 m -97.75506,46.73322 0.38919,0.77923 0.3892,0.77919 1.16837,0.38917 h 0.77923 m -2.72631,-2.33664 0.38919,0.77918 0.3892,0.77919 1.16841,0.38918 h 0.77923 m 71.66105,-66.59485 0.7792,0.38918 m -0.7792,5.45207 0.7792,0.38917 m -0.7792,5.45216 h 0.7792 m -0.7792,5.84165 h 0.7792 m -0.7792,5.45227 0.7792,0.38917 m -0.7792,5.45228 0.7792,0.38917 m -0.7792,5.45228 0.7792,0.38917 m -0.7792,5.45227 0.7792,0.38918", + "fill": { + "paint": "transparent" + }, + "id": "in", + "name": "in", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "width": "0.389456" + }, + "type": "path" + }, + { + "d": "M 972.72444,948.26063 290.33534,101.42457 290.02614,0.09413772", + "fill": { + "paint": "transparent" + }, + "id": "InUp", + "name": "InUp", + "stroke": { + "width": "3.99982" + }, + "type": "path" + }, + { + "d": "M 972.72444,948.26063 290.33534,101.42457 4.7533863e-4,101.49358", + "fill": { + "paint": "transparent" + }, + "id": "InLeft", + "name": "InLeft", + "stroke": { + "width": "3.99982" + }, + "type": "path" + }, + { + "d": "M 972.72444,948.26063 290.33534,101.42457 290.01406,1079.9557", + "fill": { + "paint": "transparent" + }, + "id": "InDown", + "name": "InDown", + "stroke": { + "width": "3.99982" + }, + "type": "path" + }, + { + "d": "M 970.60608,804.30214 1609.1562,101.76496 1609.1562,0.02831814", + "fill": { + "paint": "transparent" + }, + "id": "InUp-3", + "name": "InUp-3", + "stroke": { + "width": "3.99982" + }, + "type": "path" + }, + { + "d": "m 970.60976,804.27966 637.94584,-702.7803 311.444,-0.0558", + "fill": { + "paint": "transparent" + }, + "id": "InLeft-1", + "name": "InLeft-1", + "stroke": { + "width": "3.99982" + }, + "type": "path" + }, + { + "d": "m 970.60976,804.32385 637.75834,-703.01198 0.3212,978.68743", + "fill": { + "paint": "transparent" + }, + "id": "InDown-2", + "name": "InDown-2", + "stroke": { + "width": "3.99982" + }, + "type": "path" + }, + { + "d": "m 914.56968,853.12042 96.19722,-3.50494 m 12.8522,-0.38917 h 4.2842 m 11.2944,24.14559 H 908.72775 m 5.84193,-11.68338 h 118.78602 m -118.78602,-0.38918 h 118.78602 m -28.4308,0 h 1.5579 m 26.8729,-1.16832 h -5.4524 m -4.2842,-10.51498 h -92.69198 m 92.69198,-1.16831 h 1.1684 m -1.1684,-0.38918 h -90.74466 m 0,-0.38917 h 85.68176 m 6.2313,-1.16833 h -1.1684 m -35.05161,-4.2839 h -11.29434 m 50.63015,-3.50501 h -0.7793 m 0.7793,-1.55778 h -1.5579 m -26.87288,-0.77914 h -10.90503 m -11.29434,0 h -21.42047 m 72.05062,-1.55778 h -1.9474 m -26.48338,-0.38917 h -10.90503 m -11.29434,0 h -21.42047 m 67.76642,-6.62048 h -5.0629 m -19.08368,-1.16835 h -43.61984 m 49.46172,-2.33665 h -5.84188 m -43.61984,-2.72618 h -12.07333 m 61.53505,0 h -5.84188 m -43.61984,-1.94715 h -12.07333 m 61.53505,-1.16836 h -5.84188 m 5.84188,-2.72617 h -5.84188 m -55.69317,-1.16833 h -6.23136 m 88.40791,-1.55773 h 1.9474 m -22.5889,-0.38917 h -5.84188 m -55.69317,0 h -6.23136 m 88.40791,-1.16833 h 1.9474 m -22.5889,-1.55785 h -5.84188 m 26.48338,-0.77916 h 1.9474 m -35.05169,0 h -12.07329 m 45.17758,-0.77922 h 1.9474 m -22.5889,-1.16836 h -5.84188 m 26.48338,-0.38917 h 1.9474 m -33.10433,-0.77924 h -14.02065 m 45.17758,-1.55773 h 1.9474 m -22.5889,-0.38917 h -5.84188 m -6.62091,-0.77919 h -12.07329 m 45.17758,-1.55785 h -2.3368 m -18.3047,-0.38918 h -5.84188 m -4.67355,-0.77922 h -14.02065 m 44.00918,-0.38918 h -1.1684 m -18.3047,-1.94723 h -5.84188 m -6.62091,-0.77919 h -12.07329 m 24.53608,-1.94726 h -5.84188 m -4.67355,-0.77923 h -14.02065 m 24.53608,-2.3366 h -5.84188 m -6.62091,-0.77924 h -12.07329 m -43.23033,-0.77918 h 6.23136 m 61.53505,-1.16832 h -5.84188 m -4.67355,-0.77919 h -14.02065 m 24.53608,-1.94719 h -5.84188 m -6.62091,-1.16829 h -12.07329 m 24.53608,-1.9473 h -5.84188 m 24.14658,0 h 4.2842 m -84.12395,-0.38917 h 12.07333 m 38.94629,-0.38917 h -14.02065 m 42.84078,-1.94716 h 4.2842 m -22.5889,0 h -5.84188 m -6.62091,-0.77918 h -12.07329 m 42.84078,-1.55774 h 4.2842 m -4.2842,-0.38917 h 4.2842 m -113.33362,20.25116 13.2417,0.77914 m 98.14452,3.11559 1.9474,0.38917 m -4.2842,-25.70326 h -5.0629 m -23.75723,0 h -14.02065 m 42.84078,-1.16837 h 4.2842 m -4.2842,-0.77914 h -5.0629 m 1.1683,-0.38918 h -1.1683 m -25.70459,-0.38917 h -12.07329 m 37.77788,-2.33664 h 9.3471 m -33.10433,-0.77923 h -14.02065 m 37.77788,-1.94715 h 0.7792 m 2.7262,0 h 5.8419 m -72.05058,-0.38917 h 21.42051 m 11.29434,0 h 10.90503 m -10.90503,-0.38918 h -7.78917 m 37.7778,-1.16832 h 0.7793 m 3.8946,0 h 4.6735 m -9.3471,-0.77919 h 0.7792 m 3.8946,0 h 4.6736 m -119.17551,-0.38917 h 130.46991 m -17.9153,4.67332 -1.9473,-0.38917 m 5.063,15.96717 1.5578,1.16832 m -35.05157,18.30392 8.56823,12.85163 m -7.39986,-12.85163 7.39986,10.90435 m -8.56823,-16.35665 8.56823,12.85165 m -7.39986,-12.85165 7.39986,10.51501 m -8.56823,-16.35662 8.56823,12.85165 m -7.39986,-12.85165 7.39986,10.51497 m -8.56823,-16.35666 8.56823,12.85162 m -7.39986,-12.85162 7.39986,10.51501 m -8.56823,-16.35665 8.56823,12.85165 m -7.39986,-12.85165 7.39986,10.9045 m -8.56823,-16.74615 8.56823,12.85165 m 1.94724,2.33665 v 0.38917 m -9.3471,-15.57779 7.39986,10.90446 m -8.56823,-16.74615 8.56823,12.85165 m -7.39986,-12.85165 7.39986,10.9045 m -6.62091,-13.24114 6.62091,9.73614 m -5.0631,-9.73614 5.0631,7.39949 m 0,-5.45227 -1.16842,-1.94722 m 40.89356,104.37099 -5.8419,-11.68334 m -7.7893,-15.5778 -6.2314,-13.24102 m 8.5682,12.85161 -6.6209,-13.24107 m 6.6209,7.39942 -5.842,-12.07275 m 3.5052,-28.03996 -1.9474,-3.89449 m 4.2842,3.11559 -4.2842,-7.78888 m 4.2842,2.33668 -4.2842,-8.17833 m -114.89131,88.01502 v -31.54497 m 0,0 V 798.2099 m 0,0 v -31.93437 m 5.84193,95.41375 v -95.41375 m 13.24166,81.39381 v -81.39381 m 2.3368,0 v 79.83595 m 2.7263,1.94727 v -0.38917 m 4.67355,-33.10278 v -23.75604 m 6.23136,30.76605 v -8.95715 m 0,-21.8089 v -7.39938 m 12.07329,52.96432 v -16.74604 m 0,-36.21828 v -14.40947 m 21.42051,73.21544 v -7.78888 m 0,-65.42656 v -2.72606 m 3.50517,42.83879 v -3.11559 m 0,-2.72601 v -2.72617 m 0,-3.11552 v -2.72617 m 0,-3.11548 v -2.72617 m 0,-3.11552 v -2.72616 m 0,-2.72606 v -3.11555 m 0,-2.72606 v -3.11559 m 0,-2.7261 v -2.33664 m 7.78917,0 v 2.72606 m 0,73.21544 v -7.78888 m 10.90503,-65.42656 v 67.37379 m 1.94724,-43.61767 v -0.38917 m 3.5051,68.93152 v -11.29379 m 0.3892,-25.70328 v -2.72618 m 0,-3.11551 v -2.72613 m 0,-3.11551 v -2.72614 m 0,-2.7261 v -3.11559 m 0,-2.72606 v -3.11559 m 0,-2.72605 v -3.11559 m 0,-2.7261 v -2.72606 m 0,-3.11559 v -2.7261 m 1.1684,80.22537 v -11.29379 m 12.0733,-83.73042 v 10.90439 m 0,70.48934 v -19.86163 m 0.7792,5.06279 v -5.06279 m 0,-57.24819 v -4.28391 m 0.3892,8.9572 v -2.33665 m 1.5579,54.91155 v 4.67337 m 2.3367,17.1354 v -3.11547 m 0,-18.6933 v -52.5749 m 1.1684,71.2682 v -1.55781 m 0,-44.78599 v -1.94727 m 0.3892,48.29107 v -1.55781 m 0,-44.78599 V 798.6 m 0.7793,36.21828 v -33.10277 m 0,-12.07275 v -1.94723 m 1.9473,5.84164 v 5.45224 m 0,40.89157 v 5.84173 m 0,15.57767 v -95.02421 m 5.4525,0 v 95.41375 m 5.8419,-95.41375 v 31.93433 m 0,-0.38917 v 44.00716 m 0,0 v 31.54497 m -124.62796,-11.6833 -5.84197,11.6833 m 112.55463,-107.09709 -1.9473,4.28391 m 4.2841,-4.28391 -2.3368,4.67336 m -1.5578,1.94723 1.1684,-0.77918 m 4.2841,28.03995 0.3892,-0.38918 m 1.1684,1.55774 0.3891,-0.38917 m -1.9472,45.56493 0.3892,-0.38917 m 1.1684,1.55782 0.3892,-0.38917 m -5.842,-14.79885 -1.9472,0.38918 m -12.8523,28.42932 0.3892,-0.38917 m -2.3367,0.38917 0.3892,-0.38917 m 22.9783,-20.25108 v -0.77919 m 0,-45.95431 v -0.38918 m -100.0919,54.13269 0.38919,0.77923 0.77923,0.77918 0.77922,0.38917 h 1.16838 m 70.49268,-68.54207 0.7792,0.77919 0.7793,0.77922 2.3367,0.7792 m -3.8946,3.505 0.7792,0.77919 0.7792,0.77918 2.3368,0.7792 m -3.8947,3.505 0.7792,0.77918 0.7793,0.77923 2.3367,0.77915 m -3.8947,3.11551 0.7793,1.16832 0.7792,0.38917 2.3368,1.16829 m -3.8947,3.11547 0.7792,0.77923 0.7793,0.77918 2.3367,0.77924 m -3.8946,3.50496 0.7792,0.77918 0.7792,0.77923 2.3368,0.77915 m -3.8947,3.50505 0.7792,0.77918 0.7793,0.77915 2.3368,0.77923 m -3.8947,3.50496 0.7792,0.77923 0.7792,0.77918 2.3368,0.7792 m 21.8098,-22.97714 0.3892,-0.38917 0.3892,-0.77924 m -1.9473,1.94716 0.7792,-0.38918 m 0.3892,45.95432 0.3892,-0.38918 0.3892,-0.77915 m -3.1157,2.33665 1.1684,-0.38918 0.7792,-0.38917 m -1.9473,-47.51221 h 0.3891 m -0.3891,46.34388 h 0.3891 m 2.7262,-0.38917 v -0.38917 m 0,-45.95436 v -0.77918 m -97.75504,47.12263 0.38919,0.77923 0.38919,0.77919 1.16838,0.38917 h 0.77926 m -2.7263,-2.3366 0.38919,0.77914 0.38919,0.7792 h 1.16838 l 0.77922,0.38917 m 71.66104,-66.59489 0.7792,0.38918 m -0.7792,5.45227 h 0.7792 m -0.7792,5.45216 0.7792,0.38917 m -0.7792,5.45215 0.7792,0.38918 m -0.7792,5.45215 0.7792,0.38917 m -0.7792,5.45216 0.7792,0.38917 m -0.7792,5.45216 0.7792,0.38917 m -0.7792,5.45219 h 0.7792", + "fill": { + "paint": "transparent" + }, + "id": "out", + "name": "out", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "width": "0.389456" + }, + "type": "path" + }, + { + "elements": [ + { + "elements": [ + { + "elements": [ + { + "d": "m 99.924144,401.12291 v 15.16506 m 0,-416.21289547 V 6.8317778 m 0,-6.75670327 V 416.28797 m -99.84906947,0 V 0.07507453 H 99.924144 m 0,416.21289547 H 0.07507453 m 0,-6.75672 v 6.75672 M 99.924144,409.53125 H 0.07507453 m 99.84906947,6.75672 v -6.75672 M 0.07507453,416.28797 H 99.924144 m 0,-317.414885 H 0.07507453 M 99.924144,104.7289 H 0.07507453 M 99.924144,151.57536 H 0.07507453 M 99.924144,174.99861 H 0.07507453 M 99.924144,198.42184 H 0.07507453 M 52.627222,221.69493 H 0.07507453 M 89.864176,402.92469 h 10.059968 m -10.059968,0 v 6.60656 M 99.924144,311.78431 H 89.864176 m -50.299913,0 H 0.07507453 M 99.924144,317.64012 H 89.864176 m -50.299913,0 H 0.07507453 M 99.924144,245.11817 H 0.07507453 M 99.924144,268.5414 H 0.07507453 M 99.924144,291.96465 H 0.07507453 M 99.924144,337.3096 H 0.07507453 M 39.388479,360.73283 H 0.07507453 M 99.924144,384.15606 H 0.07507453 M 99.924144,128.15213 H 0.07507453 m 0,-128.07705547 V 6.8317778 M 99.924144,0.07507453 H 0.07507453 M 99.924144,6.8317778 V 0.07507453 M 0.07507453,6.8317778 H 99.924144 M 0.07507453,26.951739 H 99.924144 M 76.500908,80.705063 H 65.540045 m 10.960863,-5.85581 v 5.85581 m -10.960863,-5.85581 h 10.960863 m -10.960863,5.85581 v -5.85581 m -7.207151,5.85581 H 47.371997 m 10.960897,-5.85581 v 5.85581 m -10.960897,-5.85581 h 10.960897 m -10.960897,5.85581 v -5.85581 m -25.5253,5.85581 H 11.035972 m 10.810725,-5.85581 v 5.85581 m -10.810725,-5.85581 h 10.810725 m -10.810725,5.85581 v -5.85581", + "fill": { + "paint": "transparent" + }, + "id": "path291", + "name": "path291", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.15015" + }, + "type": "path" + }, + { + "d": "m 67.585783,86.138554 c 0,-0.600593 0.158897,-1.06981 0.47797,-1.417655 0.329146,-0.337835 0.741996,-0.506752 1.258769,-0.506752 0.337657,0 0.638109,0.07633 0.909619,0.235224 0.26282,0.160176 0.469244,0.384133 0.60938,0.675672 0.141519,0.281511 0.216357,0.610607 0.216357,0.975969 0,0.365362 -0.07519,0.694437 -0.225224,0.984727 -0.150031,0.291548 -0.356597,0.508003 -0.629385,0.658152 -0.271687,0.150136 -0.571819,0.223982 -0.880854,0.223982 -0.347944,0 -0.648147,-0.08385 -0.920933,-0.242745 -0.271332,-0.168935 -0.467968,-0.395392 -0.609344,-0.67567 -0.141519,-0.29155 -0.206426,-0.591838 -0.206426,-0.910904 z m 0.487973,0.0088 c 0,0.43168 0.122724,0.779525 0.356598,1.032276 0.235153,0.253987 0.534294,0.376622 0.892168,0.376622 0.356598,0 0.656872,-0.122611 0.890857,-0.376622 0.23409,-0.252748 0.347943,-0.618113 0.347943,-1.088582 0,-0.290272 -0.04752,-0.553046 -0.15145,-0.77827 -0.102503,-0.215221 -0.244021,-0.384131 -0.440445,-0.506752 -0.187626,-0.122611 -0.40416,-0.187698 -0.646869,-0.187698 -0.339078,0 -0.629385,0.122611 -0.873372,0.356604 -0.244021,0.233985 -0.375395,0.619365 -0.375395,1.172412 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path292", + "name": "path292", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "m 71.658603,87.912245 v -3.641111 h 0.47797 v 1.801787 l 1.801788,-1.801787 h 0.658149 l -1.530278,1.47396 1.595362,2.167151 h -0.638145 l -1.285015,-1.848085 -0.601861,0.580577 v 1.267508 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path293", + "name": "path293", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "m 9.7502833,87.912245 v -3.641111 h 0.4779707 v 3.209433 h 1.793026 v 0.431678 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path294", + "name": "path294", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "m 12.67755,84.271141 h 0.479247 v 3.641111 H 12.67755 Z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path295", + "name": "path295", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "m 14.001367,87.912245 v -3.641111 h 0.487973 l 1.914399,2.852828 v -2.852828 h 0.459207 v 3.641111 h -0.496733 l -1.904398,-2.86159 v 2.86159 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path296", + "name": "path296", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "m 17.651867,87.912245 v -3.641111 h 0.477969 v 1.801787 l 1.801789,-1.801787 h 0.658149 l -1.530279,1.47396 1.595363,2.167151 h -0.638145 l -1.295054,-1.848085 -0.591823,0.580577 v 1.267508 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path297", + "name": "path297", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "m 22.550494,87.912245 h -0.440445 v -2.85283 c -0.112436,0.103845 -0.253952,0.206462 -0.422923,0.309071 -0.177697,0.103845 -0.327727,0.178937 -0.46921,0.235225 v -0.431677 c 0.244021,-0.121369 0.46921,-0.262748 0.656908,-0.431681 0.177695,-0.158897 0.319214,-0.327832 0.394159,-0.479226 h 0.281618 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path298", + "name": "path298", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "m 48.132118,87.912245 v -3.641111 h 0.487972 l 1.914399,2.852828 v -2.852828 h 0.459207 v 3.641111 h -0.496733 l -1.904396,-2.86159 v 2.86159 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path299", + "name": "path299", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "m 51.81078,87.912245 v -3.641111 h 2.627594 v 0.431677 h -2.149625 v 1.116108 h 2.008248 v 0.42292 h -2.008248 v 1.238728 h 2.234713 v 0.431678 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path300", + "name": "path300", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "m 56.108751,87.912245 v -3.209434 h -1.191166 v -0.431677 h 2.87034 v 0.431677 h -1.201204 v 3.209434 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path301", + "name": "path301", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "M 14.395525,20.495352 V 13.22314 h 5.386601 v 1.228716 H 15.86948 v 1.614104 h 3.641136 v 1.229968 H 15.86948 v 1.969454 h 4.054022 v 1.22997 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path302", + "name": "path302", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "M 22.803843,20.495352 V 14.451856 H 20.645458 V 13.22314 h 5.780724 v 1.228716 h -2.158386 v 6.043496 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path303", + "name": "path303", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "M 27.374036,20.495352 V 13.22314 h 1.473953 v 2.861587 h 2.871617 V 13.22314 h 1.462675 v 7.272212 h -1.462675 v -3.181906 h -2.871617 v 3.181906 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path304", + "name": "path304", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "M 34.70316,20.495352 V 13.22314 h 5.386601 v 1.228716 h -3.922648 v 1.614104 h 3.651139 v 1.229968 h -3.651139 v 1.969454 h 4.064025 v 1.22997 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path305", + "name": "path305", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "M 41.478663,20.495352 V 13.22314 h 3.086802 c 0.779522,0 1.342581,0.06505 1.690453,0.196459 0.355321,0.131374 0.636867,0.356601 0.853331,0.694436 0.206425,0.337835 0.308928,0.713211 0.308928,1.144888 0,0.544289 -0.158898,0.994735 -0.478006,1.35134 -0.319214,0.356605 -0.798283,0.581828 -1.436394,0.67567 0.320279,0.178937 0.581823,0.385384 0.789525,0.609356 0.205361,0.216462 0.47797,0.610603 0.834567,1.173662 l 0.882132,1.426416 H 46.255776 L 45.194849,18.90002 c -0.37536,-0.563059 -0.629384,-0.910904 -0.769519,-1.059799 -0.140106,-0.151414 -0.291548,-0.245228 -0.440445,-0.30031 -0.160316,-0.05757 -0.404126,-0.08509 -0.74196,-0.08509 h -0.300416 v 3.040516 z m 1.463952,-4.19416 h 1.088591 c 0.703195,0 1.14488,-0.02873 1.323817,-0.09508 0.16883,-0.05633 0.30893,-0.158897 0.402885,-0.30907 0.103916,-0.140134 0.150031,-0.329075 0.150031,-0.544293 0,-0.243985 -0.06633,-0.441685 -0.197559,-0.590585 -0.13123,-0.150138 -0.308928,-0.245228 -0.553021,-0.291549 -0.112792,-0.01 -0.469245,-0.01879 -1.069829,-0.01879 h -1.144915 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path306", + "name": "path306", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "M 48.817187,20.495352 V 13.22314 h 1.426427 l 2.974191,4.859818 V 13.22314 h 1.361342 v 7.272212 h -1.463952 l -2.937907,-4.777236 v 4.777236 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path307", + "name": "path307", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "M 56.136949,20.495352 V 13.22314 h 5.386599 v 1.228716 h -3.922647 v 1.614104 h 3.651139 v 1.229968 h -3.651139 v 1.969454 h 4.064023 v 1.22997 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path308", + "name": "path308", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "M 64.535903,20.495352 V 14.451856 H 62.38752 V 13.22314 h 5.77072 v 1.228716 h -2.148382 v 6.043496 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path309", + "name": "path309", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "m 71.179995,20.607923 1.793026,-7.50745 h 1.051032 l -1.821792,7.50745 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path310", + "name": "path310", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "m 77.53314,13.223158 h 1.463952 v 7.272213 H 77.53314 Z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path311", + "name": "path311", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "M 80.395357,20.495352 V 13.22314 h 2.356085 c 0.890892,0 1.472714,0.03752 1.744224,0.112612 0.414162,0.102609 0.769519,0.337835 1.042305,0.703197 0.281617,0.366614 0.422924,0.844587 0.422924,1.416404 0,0.450447 -0.07626,0.825822 -0.244022,1.126117 -0.160317,0.310312 -0.3666,0.544289 -0.610586,0.723219 -0.253953,0.1689 -0.50677,0.281512 -0.759518,0.337835 -0.357838,0.07509 -0.864609,0.103845 -1.530277,0.103845 H 81.85931 v 2.748978 z m 1.463953,-6.043496 v 2.07456 h 0.807044 c 0.581821,0 0.96722,-0.04756 1.163642,-0.12261 0.187628,-0.07509 0.347944,-0.197701 0.459208,-0.356606 0.103917,-0.158897 0.160317,-0.346596 0.160317,-0.563058 0,-0.271511 -0.07519,-0.487983 -0.23409,-0.656901 -0.15145,-0.178937 -0.347944,-0.281512 -0.581821,-0.329075 -0.17876,-0.02767 -0.535536,-0.04628 -1.061069,-0.04628 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path312", + "name": "path312", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "m 38.513552,242.56555 h 4.504468 m -4.504468,0 h 4.504468 m -6.756703,-1.65161 h 1.351342 m -1.351342,0 h 1.351342 m 50.450049,-0.15003 H 52.627542 m 34.3841,-1.05104 H 53.678573 m -16.065914,-0.90088 h -1.351342 m 1.351342,-0.15004 h -1.351342 m 32.582313,-0.45046 h 2.102096 m 13.813681,0 h -0.900894 m -27.627395,0 h 26.576364 m 1.051031,-0.60059 H 82.807482 M 43.01802,237.16044 h -4.504468 m 4.504468,0 h -4.504468 m 16.666535,0 H 81.606278 M 19.44461,234.30762 h 6.156119 m 6.156118,0 h 13.963855 m -17.567429,1.05103 3.753712,3.75374 m -3.753712,-3.75374 3.753712,3.75374 m 1.501477,-1.50149 -2.102061,-2.10209 m 2.102061,2.10209 -2.102061,-2.10209 m -0.450767,-32.73265 v -0.15014 m 5.405364,36.03576 v 0.15002 m 1.351341,-0.15002 v 0.15002 m 0.450447,-1.20117 v 0.75073 m 0,3.00299 v 0.75072 m 0,-4.50444 v 0.75073 m 0,3.00299 v 0.75072 m -6.45643,-27.32709 1.051066,-4.80476 m -1.051066,4.80476 1.051066,-4.80476 m -2.552544,-8.2582 -9.159074,16.36624 m 9.159074,-16.36624 -9.159074,16.36624 m 1.201168,0.15014 8.708662,-15.61549 m -8.708662,15.61549 8.708662,-15.46534 m 24.324133,21.32114 -1.501514,0.45045 m 1.501514,-1.20119 -1.501514,0.45045 M 19.44429,234.30733 h 6.156119 m 6.15612,0 h 13.963853 m 34.3841,-0.90089 h -6.156119 m 11.561482,-0.30031 h -0.750757 m -5.105053,-0.15014 h -5.705672 m -8.858766,0 h 1.651615 m -2.402371,-0.30031 h -2.102097 m 1.501513,-0.45044 H 61.93647 M 45.720382,232.0551 H 27.101888 m -6.156084,0 h -1.651651 m 26.426229,0 H 27.101888 m -6.156084,0 h -1.651651 m 66.215692,-1.80178 h -0.750757 m -11.861756,-2.40239 h -5.255225 m -36.185889,-0.30031 h 2.852819 m -2.852819,0 h 2.852819 m 31.681455,-0.75075 h 5.705636 m -7.957871,-0.75074 h 2.252235 m 0.75072,0 h 4.354332 m 0.600584,0 h 2.252235 M 63.738257,225.899 h 2.252235 m 5.705636,0 h 2.252235 m 10.810725,0 h 0.750757 m -51.200808,-0.45046 h -2.852819 m 2.852819,0 h -2.852819 m 32.282039,-1.50148 h 2.252235 m 5.705636,0 h 2.252235 m 10.810725,0 h 0.750757 m 0,-0.30031 H 84.759088 M 73.948363,223.1963 h -2.252235 m -5.705636,0 h -2.252235 m 21.020831,15.01489 0.750757,0.15014 m 0,-0.15014 -0.750757,-0.15014 m -21.020831,-5.8558 1.35134,0.75075 m -13.813715,0 -4.204158,-3.30328 m 4.204158,3.30328 -4.204158,-3.30328 m -16.21609,-26.87666 8.708629,15.46534 m -8.708629,-15.61549 8.708629,15.61549 m 1.201203,-0.15014 -9.15911,-16.36624 m 9.15911,16.36624 -9.15911,-16.36624 m -2.552509,8.2582 1.051031,4.80476 m -1.051031,-4.80476 1.051031,4.80476 m 13.36327,27.32709 v -4.50444 m 0,4.50444 v -4.50444 m 2.702681,-7.50745 v 1.50148 m 0,3.15313 v 1.50149 m 0,-6.1561 v 1.50148 m 0,3.15313 v 1.50149 m 6.456393,4.50459 v -19.66949 m 0,0 v -19.21907 m 2.552545,3.75373 v 31.53127 m 1.051031,-32.73246 v 33.78351 m -28.828601,-11.11102 -3.903885,3.90387 m 3.903885,-3.90387 -3.903885,3.90387 m 3.153128,-0.15014 2.252235,-2.25223 m -2.252235,2.25223 2.252235,-2.25223 m 55.855413,-23.87369 0.750757,-0.15014 m 0,-0.3003 -0.750757,0.15014 M 63.738257,219.5929 h 2.252235 m 5.705636,0 h 2.252235 M 21.696524,219.29258 H 40.01471 m -18.318186,0 H 40.01471 m 45.495135,-0.30031 h -0.750757 m -21.020831,-0.3003 h 2.252235 m 5.705636,0 h 2.252235 m 10.810725,0 h 0.750757 M 39.564263,218.24151 H 22.146972 m 17.417291,0 H 22.146972 m 41.591285,-1.35134 h 2.252235 m 5.705636,0 h 2.252235 m 10.810725,0 h 0.750757 m -11.561482,-0.30031 h -2.252235 m -0.600584,0 h -4.354332 m -0.75072,0 h -2.252235 m 7.957871,-0.75074 h -5.705636 m 1.651615,-0.90089 h 5.255225 m -42.792454,-0.15014 h 1.501478 m -1.501478,0 h 1.501478 m 53.903489,-2.25224 H 84.759088 M 61.93647,210.43377 h 1.801787 m -1.501513,-0.30032 h 2.102097 m 2.402371,-0.45044 h -1.651615 m 8.858766,0 h 5.705672 m 5.85581,-0.15014 h -0.750757 m -10.810725,-0.15014 h 6.156119 m -8.408354,17.41728 -0.600584,-0.75075 m 8.558491,6.90686 0.450447,0.45045 m 6.90684,6.30627 1.051067,1.05103 m -25.825645,-8.10804 -3.753712,-4.65463 m 0,0 v -13.36326 m 0.300416,13.8137 V 214.1875 m 4.954916,2.40239 v 3.00298 m 0,3.60357 v 2.85282 m 0.750721,0 v -0.15013 m 0,-1.95193 v -0.75075 m 0,-3.60357 v -0.9009 m 0,-1.80178 v -0.30031 m 1.501514,-0.75075 v 10.96087 m 0.75072,-17.11699 v 1.65165 m 0,5.25522 v 9.45937 m 0,5.40537 v 1.50149 m 2.702682,-29.72949 v 1.20119 m 0.750756,-1.35134 v 1.35134 m -11.711725,10.21012 3.753712,-4.50446 m 2.852853,-0.45046 -1.35134,0.75075 M 81.60596,205.62901 H 55.179767 m 28.678428,-0.6006 h -1.051031 m 1.951924,-0.60059 h -0.900893 m -1.051031,0 H 56.230798 m 12.612512,0 h 2.102098 m -17.267155,-1.35134 h 33.333069 m -34.3841,-1.20119 h 35.435167 m -22.071897,13.96385 0.75072,0.75075 m -13.062959,-13.51341 -1.051031,-1.20119 m 14.11399,9.45938 0.900895,3.60357 m 6.306256,16.51639 -1.051031,-3.60357 m -1.801788,-1.8018 v -9.45937 m 0.600584,10.21012 v -10.96087 m 1.501514,0.75075 v 0.30031 m 0,1.80178 v 0.9009 m 0,3.60357 v 0.75075 m 0,1.95193 v 0.15013 m 0.750721,7.35731 v -1.95194 m 0,-5.40537 v -2.85282 m 0,-3.60357 v -3.00298 m 0,-5.25522 v -1.95194 m 2.702681,-6.30625 v 1.35134 m 0,34.53426 v 0.75076 m 0.600479,-36.63636 v 1.35134 m 0,33.78352 v 1.5015 m 2.402371,-30.02982 v 23.2731 m 0.450447,-23.57339 v 24.02384 m 1.501477,3.75371 v -31.53127 m 1.20131,32.58233 v -33.78352 m 1.050924,33.18292 v 0.6006 m 0,-33.18293 v -0.60059 m 0.900894,0 v 33.78352 m -17.116981,-10.36028 -0.900894,3.60357 m 6.156119,-16.51639 1.051031,-3.60357 m -2.252234,4.50447 -0.600584,0.75075 m 8.558491,-6.90687 0.450447,-0.3003 m 6.90684,-6.30626 1.051066,-1.20119 M 65.990351,226.8 l 0.75072,-0.75075 m -13.062959,13.66355 -1.051031,1.05104 m -5.5555,-4.05401 4.20416,-3.30327 m -4.20416,3.30327 4.20416,-3.30327 m 34.233961,6.30624 v -36.63634 m 1.351342,0 v 36.63634 m 1.201203,-37.83754 v 19.21907 m 0,0 v 19.66951 M 31.456218,225.2985 c -1.501476,0 -3.00299,0.6006 -4.054021,1.65163 m 4.054021,-1.65163 c -1.501476,0 -3.00299,0.6006 -4.054021,1.65163 m -8.708627,4.65463 c -0.750758,-1.5015 -2.402407,-2.25223 -4.054022,-1.95194 -1.651651,0.30031 -2.702682,1.80179 -2.702682,3.45342 0,1.65165 1.051031,3.15313 2.702682,3.45343 1.651615,0.45045 3.303264,-0.45044 4.054022,-1.95193 m 9.459383,0.60059 c -0.750756,-0.60059 -1.651649,-1.05104 -2.552544,-1.05104 m 5.855809,-6.60656 c -0.900893,0 -1.801787,0.30032 -2.552543,0.9009 m -7.957871,3.60357 c 0.900893,0 1.801787,-0.45044 2.552508,-1.05104 m -4.804742,0.6006 c -0.750758,-1.5015 -2.402407,-2.25223 -4.054022,-1.95194 -1.651651,0.30031 -2.702682,1.80179 -2.702682,3.45342 0,1.65165 1.051031,3.15313 2.702682,3.45343 1.651615,0.45045 3.303264,-0.45044 4.054022,-1.95193 m 2.252234,-2.55254 c 0.900893,0 1.801787,-0.45044 2.552508,-1.05104 m 7.957906,-3.45343 c -0.900893,0 -1.801787,0.30032 -2.552543,0.9009 m -0.750722,6.7567 c -0.750756,-0.60059 -1.651649,-1.05104 -2.552544,-1.05104 m 7.057013,-24.32413 c 0.150031,-0.75075 -0.15003,-1.50149 -0.750757,-1.80178 -0.750756,-0.45046 -1.501478,-0.45046 -2.102097,0 -0.600584,0.3003 -0.900893,1.05103 -0.750721,1.80178 m 3.453402,0 c 0.150031,-0.60059 -0.150031,-1.35134 -0.75072,-1.80178 -0.60062,-0.45046 -1.351342,-0.45046 -1.951961,0 -0.600584,0.45044 -0.900893,1.20119 -0.750721,1.80178 m -8.108043,8.10805 c -0.150031,0.3003 -0.150031,0.60059 0,0.90088 0.15003,0.30032 0.450446,0.45046 0.75072,0.45046 m -0.75072,-1.35134 c -0.150031,0.3003 -0.150031,0.60059 0,0.90088 0.15003,0.30032 0.450446,0.45046 0.75072,0.45046 m -2.252234,14.86474 c -0.300416,0 -0.600584,0.15014 -0.75072,0.45045 m 0.75072,-0.45045 c -0.300416,0 -0.600584,0.15014 -0.75072,0.45045 m 12.912786,-18.16803 c 0,-0.45044 -0.450447,-0.75075 -0.750722,-0.75075 -0.450447,0 -0.750756,0.30032 -0.750756,0.75075 0,0.30031 0.300416,0.75075 0.750756,0.75075 0.300416,0 0.750722,-0.45044 0.750722,-0.75075 m 0.15003,17.71758 c -0.300416,0 -0.450446,0.15014 -0.600619,0.45045 -0.15003,0.3003 0,0.60059 0.150031,0.75074 m -4.654642,-4.65462 c -0.150031,0.30032 -0.300416,0.60059 -0.150031,0.9009 0.150031,0.15014 0.300416,0.45044 0.600584,0.45044 m -8.408318,-0.45044 c 0.150031,0.15014 0.300416,0.45044 0.600585,0.45044 m 12.312202,-15.61549 c 0,-0.45044 -0.450446,-0.75075 -0.750721,-0.75075 -0.450447,0 -0.750756,0.30032 -0.750756,0.75075 0,0.30031 0.300416,0.75075 0.750756,0.75075 0.300417,0 0.750721,-0.45044 0.750721,-0.75075 m -12.912787,15.16505 c 0.150031,0.15014 0.300416,0.45044 0.600585,0.45044 m 7.357287,-1.35134 c -0.150031,0.30032 -0.300416,0.60059 -0.150031,0.9009 0.150031,0.15014 0.300416,0.45044 0.600584,0.45044 m 4.654641,2.10209 c -0.300416,0 -0.450447,0.15014 -0.600619,0.45045 -0.150031,0.3003 0,0.60059 0.150031,0.75074 m 0.600584,3.75374 c 1.201203,1.05104 2.702681,1.80179 4.354332,1.80179 m -4.354332,-1.95196 c 1.201203,1.20121 2.702681,1.80179 4.354332,1.80179 m -2.852854,-3.30327 c 0.750756,0.75074 1.801787,1.20121 2.852854,1.20121 m -2.852854,-1.20121 c 0.750756,0.75074 1.801787,1.20121 2.852854,1.20121 m -1.351342,-10.81075 c 0.600586,0.9009 1.801789,1.35135 3.002957,1.05104 1.201203,-0.3003 1.951961,-1.35134 1.951961,-2.55253 0,-1.20119 -0.750758,-2.25223 -1.951961,-2.55252 -1.201168,-0.30032 -2.402371,0.15012 -3.002957,1.20118 m 0,2.85283 c 0.600586,0.9009 1.801789,1.35135 3.002957,1.05104 1.201203,-0.3003 1.951961,-1.35134 1.951961,-2.55253 0,-1.20119 -0.750758,-2.25223 -1.951961,-2.55252 -1.201168,-0.30032 -2.402371,0.15012 -3.002957,1.20118 m 5.105054,-5.70565 c 0.300417,0 0.600584,-0.15014 0.750757,-0.45046 0.150031,-0.3003 0.150031,-0.60059 0,-0.90088 m -0.750757,1.35134 c 0.300417,0 0.600584,-0.15014 0.750757,-0.45046 0.150031,-0.3003 0.150031,-0.60059 0,-0.90088 m -5.855811,9.90982 c -0.150031,-0.3003 -0.450447,-0.3003 -0.600619,-0.3003 m 0,-2.25224 c 0.150031,0 0.450447,-0.15014 0.600619,-0.30031 m -0.600619,0.30031 c 0.150031,0 0.450447,-0.15014 0.600619,-0.30031 m 0,2.85284 c -0.150031,-0.30032 -0.450447,-0.30032 -0.600619,-0.30032 m 12.762686,2.10209 c -0.15003,-0.15014 -0.450446,-0.15014 -0.600618,-0.15014 -0.150031,0.15014 -0.300418,0.30031 -0.300418,0.6006 m 0,6.00595 c 0,0.30032 0.150031,0.45046 0.300418,0.6006 0.150029,0 0.450445,0 0.600618,-0.15014 m -0.900893,-0.45044 c 0,0.3003 0.150031,0.45044 0.300416,0.60059 0.150031,0 0.450447,0 0.600619,-0.15014 m 0,-6.90685 c -0.150031,-0.15014 -0.450447,-0.15014 -0.600619,-0.15014 -0.150031,0.15014 -0.300416,0.30031 -0.300416,0.6006 m -7.657598,7.057 c -0.300416,0 -0.450445,0.15014 -0.450445,0.45045 m 5.405361,0 c 0,-0.30031 -0.150031,-0.45045 -0.450447,-0.45045 m 0,5.40535 c 0.300416,0 0.450447,-0.15004 0.450447,-0.45045 m -5.405361,0 c 0,0.30041 0.150029,0.45045 0.450445,0.45045 m -0.450445,-1.35135 c 0,-0.15002 -0.150032,-0.30042 -0.450448,-0.30042 m 0.600584,1.20118 c 0,0.15002 0.150031,0.45044 0.300416,0.45044 m 4.504469,0 c 0.150031,0 0.450447,-0.30042 0.450447,-0.45044 m 0,-4.50446 c 0,-0.3003 -0.300416,-0.45044 -0.450447,-0.45044 m -4.504469,0 c -0.150031,0 -0.300416,0.15014 -0.300416,0.45044 m -0.600584,1.05106 c 0.300416,0 0.450448,-0.15004 0.450448,-0.45046 m 8.108043,-3.60357 c 0,-0.15014 -0.150031,-0.30032 -0.450447,-0.30032 m 0,-2.25223 c 0.300416,0 0.450447,-0.30031 0.450447,-0.45044 m -0.450447,0.45044 c 0.300416,0 0.450447,-0.30031 0.450447,-0.45044 m 0,3.00297 c 0,-0.15014 -0.150031,-0.30032 -0.450447,-0.30032 m -8.108044,4.35432 c 0.300416,0 0.450448,-0.15002 0.450448,-0.45044 m 0,3.00296 c 0,-0.15004 -0.150032,-0.30042 -0.450448,-0.30042 m 13.663543,-7.50745 c 0.150032,-0.15013 0.150032,-0.15013 0.150032,-0.3003 0,0 0,-0.15014 -0.150032,-0.15014 m 0,0.45044 c 0.150032,-0.15013 0.150032,-0.15013 0.150032,-0.3003 0,0 0,-0.15014 -0.150032,-0.15014 M 31.606142,201.57467 c -0.150029,-0.15014 -0.450445,-0.30031 -0.75072,-0.30031 -0.300416,0 -0.60062,0.15014 -0.750756,0.30031 m 1.501476,0 c -0.150029,-0.15014 -0.450445,-0.30031 -0.75072,-0.30031 -0.300416,0 -0.60062,0.15014 -0.750756,0.30031 m 45.945582,37.98768 c 0.450447,-0.30042 0.750756,-0.9009 1.051031,-1.35134 m -2.102418,1.35144 c 0.450448,-0.3004 0.900895,-0.75075 1.20117,-1.35133 m -21.020832,-1.20119 c 0,0.6006 0.450447,1.20119 1.051031,1.20119 m 0,-33.78351 c -0.600584,0 -1.051031,0.45044 -1.051031,1.05103 m -1.500094,34.23605 v -17.41727 m 0,-1.05105 v -18.16801 m 33.333069,19.21906 v 17.41727 m 0,-36.63633 v 18.16801 m 0,0 v 1.05105 m -33.333212,-5.25522 1.501514,-0.15013 m 14.264127,-13.66356 -9.309211,-0.15014 m 10.059969,0.75075 -0.150031,-0.15014 -0.150031,-0.3003 -0.150031,-0.15014 h -0.300417 m 0,-0.15014 v 0.15014 m -15.765923,15.01511 h 1.501513 m 27.627396,19.96981 -1.201203,-1.05104 m 1.201203,-32.73247 -1.201203,1.20119 m -27.928381,15.61335 v 1.05104 m 46.245891,-0.6006 H 88.062389 M 40.01471,80.705063 H 29.203984 m 10.810726,-5.85581 v 5.85581 M 29.203984,74.849253 H 40.01471 m -10.810726,5.85581 v -5.85581", + "fill": { + "paint": "transparent" + }, + "id": "path313", + "name": "path313", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.15015" + }, + "type": "path" + }, + { + "d": "m 27.918296,87.912245 v -3.641111 h 0.47797 v 3.209433 h 1.793027 v 0.431678 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path314", + "name": "path314", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "m 30.846838,84.271141 h 0.477971 v 3.641111 h -0.477971 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path315", + "name": "path315", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "m 32.169415,87.912245 v -3.641111 h 0.487972 l 1.914399,2.852828 v -2.852828 h 0.459208 v 3.641111 h -0.496733 l -1.904398,-2.86159 v 2.86159 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path316", + "name": "path316", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "m 35.819915,87.912245 v -3.641111 h 0.47797 v 1.801787 l 1.801787,-1.801787 h 0.658149 l -1.530277,1.47396 1.595363,2.167151 H 38.18476 l -1.295052,-1.848085 -0.591823,0.580577 v 1.267508 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path317", + "name": "path317", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "m 41.384814,87.480522 v 0.431676 h -2.402372 c 0,-0.112607 0.01774,-0.216463 0.0564,-0.319072 0.0564,-0.160174 0.160317,-0.319073 0.290485,-0.477975 0.141519,-0.160174 0.329146,-0.337834 0.581822,-0.554301 0.394123,-0.319071 0.666909,-0.571814 0.807044,-0.769511 0.13123,-0.187699 0.206426,-0.366615 0.206426,-0.535533 0,-0.17766 -0.0649,-0.319071 -0.186563,-0.440436 -0.132657,-0.121369 -0.29155,-0.187699 -0.497975,-0.187699 -0.215292,0 -0.384121,0.06633 -0.515531,0.197699 -0.132657,0.131373 -0.197559,0.309071 -0.197559,0.534281 l -0.459207,-0.04629 c 0.0376,-0.347836 0.150031,-0.601846 0.356598,-0.788281 0.205361,-0.178937 0.47797,-0.26275 0.824567,-0.26275 0.347943,0 0.629384,0.09386 0.825806,0.290273 0.206426,0.187698 0.310347,0.431678 0.310347,0.713207 0,0.150137 -0.02837,0.290307 -0.09398,0.43168 -0.0564,0.141376 -0.160317,0.291549 -0.29155,0.441687 -0.140106,0.158897 -0.365358,0.365361 -0.694433,0.638133 -0.261401,0.225224 -0.430407,0.384133 -0.515495,0.459205 -0.07519,0.08509 -0.13123,0.158897 -0.187627,0.243985 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path318", + "name": "path318", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "m 4.5607807,260.73366 3.0780419,-8.02294 h 1.1448798 l 3.2745006,8.02294 H 10.857035 L 9.9185803,258.31253 H 6.5690289 l -0.882131,2.42113 z m 2.3085225,-3.29326 h 2.7214794 l -0.8358449,-2.2247 c -0.2528888,-0.67567 -0.4492055,-1.22873 -0.5718193,-1.66165 -0.1039222,0.50801 -0.2440216,1.0235 -0.4316841,1.53028 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path358", + "name": "path358", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "m 12.865886,260.73366 v -8.02294 h 1.061068 v 7.07577 h 3.950136 v 0.94717 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path359", + "name": "path359", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "m 19.097056,260.73366 v -8.02294 h 1.061069 v 7.07577 h 3.950135 v 0.94717 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path360", + "name": "path360", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "m 25.384549,260.73366 v -8.02294 h 5.799486 v 0.94717 h -4.738417 v 2.4587 h 4.438143 v 0.92967 h -4.438143 v 2.74023 h 4.926116 v 0.94717 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path361", + "name": "path361", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "m 32.826322,260.73366 v -8.02294 h 1.088592 l 4.214162,6.29625 v -6.29625 h 1.013506 v 8.02294 h -1.089834 l -4.21292,-6.30624 v 6.30624 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path362", + "name": "path362", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "m 43.993646,260.73366 v -8.02294 h 3.012992 c 0.609346,0 1.097318,0.0838 1.472714,0.24261 0.3666,0.16031 0.656907,0.41415 0.863333,0.75198 0.216357,0.33803 0.319214,0.68444 0.319214,1.0598 0,0.33801 -0.09398,0.66567 -0.281617,0.96722 -0.187628,0.30042 -0.46921,0.5443 -0.844607,0.73195 0.488008,0.14014 0.863369,0.38416 1.126117,0.722 0.253954,0.34793 0.385399,0.75071 0.385399,1.21992 0,0.3754 -0.07519,0.722 -0.235155,1.04104 -0.158897,0.32914 -0.356632,0.57309 -0.591859,0.75076 -0.23409,0.17875 -0.525497,0.31034 -0.872094,0.39539 -0.356632,0.0926 -0.788281,0.14013 -1.295052,0.14013 z m 1.061068,-4.65459 h 1.735462 c 0.46921,0 0.807045,-0.0284 1.013506,-0.094 0.27275,-0.0752 0.469209,-0.21528 0.610586,-0.39416 0.13123,-0.18763 0.205361,-0.42292 0.205361,-0.70443 0,-0.26282 -0.0649,-0.49673 -0.196494,-0.7032 -0.121298,-0.20642 -0.308928,-0.33765 -0.544296,-0.41292 -0.23409,-0.0752 -0.646871,-0.11274 -1.219932,-0.11274 h -1.604086 z m 0,3.70742 h 1.998211 c 0.337658,0 0.581822,-0.0177 0.723233,-0.0387 0.242603,-0.0465 0.44917,-0.12129 0.609345,-0.22415 0.168829,-0.10389 0.300416,-0.24508 0.402884,-0.44169 0.112436,-0.1965 0.160316,-0.42293 0.160316,-0.67567 0,-0.30042 -0.07519,-0.56306 -0.225223,-0.77951 -0.160317,-0.22382 -0.366601,-0.37537 -0.638145,-0.46923 -0.271332,-0.0838 -0.666909,-0.13128 -1.173644,-0.13128 h -1.856835 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path363", + "name": "path363", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "m 51.529267,260.73366 v -8.02294 h 3.556012 c 0.713232,0 1.258768,0.0752 1.624127,0.21529 0.375361,0.14014 0.66691,0.39412 0.890893,0.75948 0.225222,0.36664 0.337657,0.77076 0.337657,1.21121 0,0.57306 -0.187626,1.05107 -0.553057,1.43642 -0.3666,0.39288 -0.938419,0.63814 -1.707938,0.74948 0.281618,0.13272 0.497974,0.26389 0.638109,0.3954 0.310348,0.2802 0.60938,0.63814 0.882132,1.06984 l 1.398903,2.1859 h -1.34258 l -1.061068,-1.67042 c -0.308929,-0.48796 -0.563059,-0.85332 -0.759482,-1.10735 -0.206426,-0.25288 -0.385398,-0.43164 -0.544296,-0.53553 -0.160317,-0.10246 -0.319214,-0.1777 -0.47797,-0.2153 -0.122725,-0.0284 -0.320279,-0.0375 -0.591859,-0.0375 h -1.228692 v 3.56604 z m 1.061069,-4.4857 h 2.279758 c 0.479212,0 0.863332,-0.0461 1.136119,-0.15003 0.271332,-0.10246 0.47797,-0.26281 0.619347,-0.47925 0.150031,-0.2238 0.215292,-0.45916 0.215292,-0.72195 0,-0.37537 -0.13123,-0.69444 -0.412922,-0.93842 -0.27275,-0.24402 -0.704435,-0.36536 -1.305019,-0.36536 h -2.532505 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path364", + "name": "path364", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "m 58.717619,260.73366 3.078042,-8.02294 h 1.144879 l 3.284539,8.02294 h -1.211206 l -0.938455,-2.42113 h -3.349551 l -0.88213,2.42113 z m 2.308523,-3.29326 h 2.72148 l -0.835846,-2.2247 c -0.252889,-0.67567 -0.440445,-1.22873 -0.571819,-1.66165 -0.103917,0.50801 -0.244022,1.0235 -0.431684,1.53028 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path365", + "name": "path365", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "m 67.06965,260.73366 v -8.02294 h 2.758969 c 0.628143,0 1.097351,0.0361 1.426426,0.1113 0.46045,0.10389 0.854607,0.30149 1.182441,0.57307 0.422924,0.3566 0.731958,0.81581 0.948422,1.3701 0.206424,0.56306 0.308928,1.19117 0.308928,1.9144 0,0.60058 -0.06633,1.14488 -0.206426,1.61409 -0.15003,0.46925 -0.329145,0.86337 -0.553056,1.17244 -0.216356,0.30149 -0.460448,0.54554 -0.733236,0.7232 -0.262819,0.17875 -0.580544,0.30893 -0.95594,0.40415 -0.366599,0.0926 -0.798284,0.14014 -1.286256,0.14014 z m 1.061067,-0.94717 h 1.707938 c 0.534259,0 0.947181,-0.0575 1.247491,-0.15003 0.300416,-0.10389 0.54426,-0.23516 0.721956,-0.41288 0.245086,-0.25396 0.441686,-0.59186 0.583063,-1.02351 0.140091,-0.42169 0.215292,-0.93846 0.215292,-1.53904 0,-0.84461 -0.141519,-1.48272 -0.412922,-1.93316 -0.281618,-0.45044 -0.609345,-0.75076 -1.003468,-0.91093 -0.291549,-0.10246 -0.741996,-0.1589 -1.380141,-0.1589 h -1.679138 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path366", + "name": "path366", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "m 75.112005,260.73366 v -8.02294 h 1.061069 v 7.07577 h 3.950135 v 0.94717 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path367", + "name": "path367", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "m 81.408863,260.73366 v -8.02294 h 5.79076 v 0.94717 h -4.729692 v 2.4587 h 4.428142 v 0.92967 h -4.428142 v 2.74023 h 4.917356 v 0.94717 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path368", + "name": "path368", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "m 91.112269,260.73366 v -3.3971 l -3.086803,-4.62584 h 1.285015 l 1.586567,2.42113 c 0.290484,0.45044 0.563058,0.9009 0.815804,1.3501 0.235156,-0.41164 0.525534,-0.8909 0.873372,-1.41639 l 1.547798,-2.35484 h 1.23873 l -3.199415,4.62584 v 3.3971 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path369", + "name": "path369", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "m 21.508827,284.75746 h -0.985983 v -6.2775 c -0.23409,0.22381 -0.543018,0.45046 -0.928417,0.67567 -0.38412,0.22382 -0.731958,0.40292 -1.041028,0.51553 v -0.95721 c 0.553057,-0.25289 1.031026,-0.57181 1.445189,-0.93842 0.412886,-0.37536 0.703193,-0.73195 0.882132,-1.07983 h 0.628107 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path370", + "name": "path370", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "m 24.098896,277.7756 v -0.93841 h 5.190142 v 0.76075 c -0.516773,0.54303 -1.023508,1.26625 -1.521518,2.16715 -0.496733,0.9009 -0.890857,1.83055 -1.162401,2.77773 -0.197558,0.67567 -0.320279,1.40767 -0.376603,2.21471 h -1.013505 c 0.0107,-0.63815 0.141519,-1.39763 0.375361,-2.28976 0.235155,-0.9009 0.57306,-1.75426 1.014747,-2.59008 0.449206,-0.82583 0.918415,-1.52903 1.416424,-2.10209 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path371", + "name": "path371", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "m 30.255015,282.646 1.041029,-0.0852 c 0.07519,0.49801 0.253953,0.87337 0.526775,1.12612 0.280199,0.25395 0.618105,0.37663 1.012264,0.37663 0.470451,0 0.87337,-0.17875 1.202445,-0.53553 0.327726,-0.35659 0.496733,-0.82584 0.496733,-1.41766 0,-0.56182 -0.158899,-1.00351 -0.479212,-1.33131 -0.317796,-0.32914 -0.730752,-0.48924 -1.238729,-0.48924 -0.317796,0 -0.600619,0.0762 -0.853367,0.21635 -0.262819,0.14156 -0.459207,0.32914 -0.610586,0.56306 l -0.919691,-0.12129 0.779521,-4.11031 h 3.988973 v 0.92842 h -3.200691 l -0.431649,2.15839 c 0.479212,-0.33802 0.984705,-0.50678 1.510238,-0.50678 0.704437,0 1.296294,0.24402 1.774264,0.73199 0.477971,0.48798 0.723199,1.10737 0.723199,1.87688 0,0.72321 -0.216355,1.3513 -0.63811,1.88684 -0.516772,0.64691 -1.211206,0.97599 -2.103338,0.97599 -0.731994,0 -1.322577,-0.20644 -1.783025,-0.61935 -0.469209,-0.40416 -0.731995,-0.94846 -0.797043,-1.62413 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path372", + "name": "path372", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "m 41.591274,278.69523 -0.97598,0.0752 c -0.08512,-0.3854 -0.215292,-0.6569 -0.37536,-0.83584 -0.262821,-0.27134 -0.591823,-0.41293 -0.984741,-0.41293 -0.310348,0 -0.581821,0.0852 -0.825808,0.26282 -0.310347,0.22523 -0.554298,0.5543 -0.731958,0.98598 -0.179115,0.43165 -0.272751,1.04103 -0.272751,1.83932 0.235155,-0.3566 0.525533,-0.62811 0.863369,-0.80705 0.347943,-0.16883 0.703193,-0.26281 1.078554,-0.26281 0.656907,0 1.219966,0.24402 1.680415,0.73199 0.459208,0.47921 0.684431,1.10735 0.684431,1.87686 0,0.49798 -0.102504,0.96719 -0.317796,1.39888 -0.216355,0.43044 -0.516772,0.76827 -0.892133,0.99474 -0.385398,0.23409 -0.817081,0.34653 -1.295052,0.34653 -0.817047,0 -1.491476,-0.30042 -2.008249,-0.9109 -0.516772,-0.59934 -0.778279,-1.59533 -0.778279,-2.98423 0,-1.54776 0.290484,-2.67387 0.862126,-3.37834 0.497975,-0.60936 1.173645,-0.91843 2.018251,-0.91843 0.629384,0 1.14488,0.1777 1.54904,0.5343 0.402884,0.34794 0.646871,0.8446 0.721957,1.46395 z m -4.016496,3.45343 c 0,0.33801 0.07519,0.65688 0.216357,0.96719 0.140106,0.30892 0.346525,0.54305 0.600619,0.71194 0.261401,0.16033 0.534259,0.23516 0.815805,0.23516 0.422924,0 0.778281,-0.16031 1.069794,-0.498 0.300416,-0.33802 0.450447,-0.78705 0.450447,-1.37011 0,-0.5443 -0.141519,-0.98474 -0.441687,-1.30381 -0.29013,-0.31921 -0.665632,-0.47921 -1.116079,-0.47921 -0.440445,0 -0.817082,0.16031 -1.126117,0.47921 -0.319215,0.31921 -0.469246,0.74199 -0.469246,1.25753 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path373", + "name": "path373", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "m 42.604745,281.36041 h 3.021753 v 0.98471 h -3.021753 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path374", + "name": "path374", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "m 46.865262,284.75746 v -8.02296 h 5.799487 v 0.94718 h -4.738418 v 2.4587 h 4.438143 v 0.92966 h -4.438143 v 2.74024 h 4.926115 v 0.94718 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path375", + "name": "path375", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "m 54.307035,284.75746 v -8.02296 h 1.088592 l 4.204158,6.29625 v -6.29625 h 1.023508 v 8.02296 H 59.53346 l -4.212919,-6.30626 v 6.30626 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path376", + "name": "path376", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "m 65.15525,284.75746 v -1.92441 h -3.472201 v -0.89964 l 3.659898,-5.19891 h 0.798285 v 5.19891 h 1.088592 v 0.89964 h -1.088592 v 1.92441 z m 0,-2.82405 v -3.62358 l -2.506222,3.62358 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path377", + "name": "path377", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "m 70.673224,284.75746 v -7.07578 h -2.646358 v -0.94718 h 6.353783 v 0.94718 h -2.646356 v 7.07578 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path378", + "name": "path378", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "m 75.487402,284.75746 v -8.02296 h 3.556011 c 0.713231,0 1.258769,0.0752 1.63413,0.21529 0.365359,0.14014 0.665668,0.39412 0.890892,0.75949 0.225223,0.36663 0.327727,0.77075 0.327727,1.2112 0,0.57306 -0.177697,1.05107 -0.553057,1.43643 -0.3666,0.39289 -0.928417,0.63815 -1.699178,0.74947 0.281618,0.13272 0.489214,0.26389 0.638109,0.39541 0.310347,0.28019 0.60062,0.63815 0.882131,1.06983 l 1.390144,2.18591 H 81.22049 l -1.059826,-1.67041 c -0.310348,-0.48797 -0.563058,-0.85334 -0.769484,-1.10736 -0.196494,-0.25289 -0.375396,-0.43165 -0.534294,-0.53554 -0.160316,-0.10246 -0.319215,-0.17769 -0.487973,-0.21528 -0.112436,-0.0284 -0.310346,-0.0377 -0.591859,-0.0377 h -1.22869 v 3.56606 z m 1.061069,-4.4857 h 2.279757 c 0.487973,0 0.863332,-0.0461 1.14488,-0.15004 0.27275,-0.10246 0.47797,-0.26282 0.619346,-0.47924 0.141519,-0.2238 0.216357,-0.45918 0.216357,-0.72197 0,-0.37535 -0.141519,-0.69442 -0.414163,-0.93841 -0.281618,-0.24403 -0.713196,-0.36537 -1.303777,-0.36537 h -2.542507 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path379", + "name": "path379", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "M 99.82503,360.73408 H 89.765075", + "fill": { + "paint": "transparent" + }, + "id": "ethernet2", + "name": "ethernet2", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.15015" + }, + "type": "path" + } + ], + "id": "g1", + "name": "g1", + "type": "group" + } + ], + "id": "g2", + "name": "g2", + "transform": "matrix(2.5938402,0,0,2.5937159,806.10436,0.04236644)", + "type": "group" + } + ], + "id": "layer1", + "name": "layer1", + "type": "group" + } + ], + "preserveAspectRatio": "none", + "viewBox": "0 0 1920 1080" + }, + "type": "ia.shapes.svg" + } + ], + "meta": { + "name": "root" + }, + "props": { + "direction": "column" + }, + "type": "ia.container.flex" + } +} \ No newline at end of file diff --git a/.resources/779f3cb4ffd8dd2f67be07af3fbf2095f82391ae87ce1228a8dee248e52ecc40 b/.resources/779f3cb4ffd8dd2f67be07af3fbf2095f82391ae87ce1228a8dee248e52ecc40 deleted file mode 100644 index d2abf421..00000000 --- a/.resources/779f3cb4ffd8dd2f67be07af3fbf2095f82391ae87ce1228a8dee248e52ecc40 +++ /dev/null @@ -1,522 +0,0 @@ -{ - "custom": { - "alarm_message": null, - "covert_mode": true, - "disconnected": false, - "display_icon": true, - "error": false, - "isMatch": 0, - "plc": "value", - "priority": 0, - "priority_string": "No active alarms", - "running_status": 0, - "searchId": "PLC01", - "state": 5, - "state_string": "Unknown" - }, - "params": { - "forceFaultStatus": null, - "forceRunningStatus": null, - "has_state": false, - "tagProps": [ - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value" - ] - }, - "propConfig": { - "custom.alarm_message": { - "persistent": true - }, - "custom.covert_mode": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case(\t{value},\r\n\t\t0, {session.custom.alarm_filter.show_running},\r\n\t\t1, True,\r\n\t\t2, True,\r\n\t\t3, {session.custom.alarm_filter.show_low_alarm},\r\n\t\t4, {session.custom.alarm_filter.show_diagnostic},\r\n\t\t5, {session.custom.alarm_filter.show_running},\r\n\t\tFalse)", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.disconnected": { - "binding": { - "config": { - "fallbackDelay": 2.5, - "mode": "indirect", - "references": { - "fc": "{session.custom.fc}", - "plc": "{view.custom.plc}" - }, - "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{plc}/DCN" - }, - "transforms": [ - { - "expression": "if(isNull({value}), False, {value})", - "type": "expression" - } - ], - "type": "tag" - }, - "persistent": true - }, - "custom.display_icon": { - "binding": { - "config": { - "expression": "{this.custom.covert_mode}//||{this.custom.isMatch}\u003e0" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.error": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "0 \u003c {value} \u0026\u0026 {value} \u003c 5", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.isMatch": { - "binding": { - "config": { - "expression": "if({view.params.tagProps[0]}\u003d\"value\",0,\nif({this.custom.searchId}\u003d{view.params.tagProps[0]},100,0))" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.plc": { - "binding": { - "config": { - "path": "view.params.tagProps[0]" - }, - "transforms": [ - { - "expression": "split({value}, \"/\")[0]", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.priority": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "fallback": 0, - "inputType": "scalar", - "mappings": [ - { - "input": 1, - "output": 4 - }, - { - "input": 2, - "output": 3 - }, - { - "input": 3, - "output": 2 - }, - { - "input": 4, - "output": 1 - } - ], - "outputType": "scalar", - "type": "map" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.priority_string": { - "binding": { - "config": { - "expression": "case({view.custom.state},\r\n1, \"High\",\r\n2, \"Medium\",\r\n3, \"Low\",\r\n4, \"Diagnostic\",\r\n5, \"No active alarms\",\r\n\"Unknown\")" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.running_status": { - "binding": { - "config": { - "fallbackDelay": 2.5, - "mode": "indirect", - "references": { - "0": "{view.params.tagProps[0]}", - "fc": "{session.custom.fc}" - }, - "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/STATE" - }, - "transforms": [ - { - "expression": "coalesce({value},{view.params.forceRunningStatus},0)", - "type": "expression" - } - ], - "type": "tag" - }, - "persistent": true - }, - "custom.searchId": { - "binding": { - "config": { - "path": "session.custom.searchId" - }, - "type": "property" - }, - "persistent": true - }, - "custom.state": { - "binding": { - "config": { - "fallbackDelay": 2.5, - "mode": "indirect", - "references": { - "0": "{view.params.tagProps[0]}", - "fc": "{session.custom.fc}" - }, - "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/ALARMST" - }, - "transforms": [ - { - "expression": "coalesce({value},{view.params.forceFaultStatus},0)", - "type": "expression" - }, - { - "fallback": null, - "inputType": "scalar", - "mappings": [ - { - "input": 4, - "output": 1 - }, - { - "input": 3, - "output": 2 - }, - { - "input": 2, - "output": 3 - }, - { - "input": 1, - "output": 4 - }, - { - "input": 0, - "output": 5 - } - ], - "outputType": "scalar", - "type": "map" - } - ], - "type": "tag" - }, - "persistent": true - }, - "custom.state_string": { - "binding": { - "config": { - "expression": "case({view.custom.running_status},\r\n1, \"Faulted\",\r\n2, \"Stopped\",\r\n3, \"Running\",\r\n\"Unknown\")" - }, - "type": "expr" - }, - "persistent": true - }, - "params.forceFaultStatus": { - "paramDirection": "input", - "persistent": true - }, - "params.forceRunningStatus": { - "paramDirection": "input", - "persistent": true - }, - "params.has_state": { - "paramDirection": "input", - "persistent": true - }, - "params.tagProps": { - "paramDirection": "inout", - "persistent": true - } - }, - "props": { - "defaultSize": { - "height": 40, - "width": 30 - } - }, - "root": { - "children": [ - { - "meta": { - "name": "Icon_0" - }, - "position": { - "height": 1, - "width": 1 - }, - "propConfig": { - "props.style.backgroundColor": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "if({session.custom.colours}[\"state\"+{value}] \u003d null, \r\n{session.custom.colours}[\"Fallback\"],\r\n{session.custom.colours}[\"state\"+{value}])", - "type": "expression" - }, - { - "expression": "if({view.custom.display_icon}\u0026\u0026 {view.custom.isMatch}\u003d0,{value},{value}+\u002700\u0027)", - "type": "expression" - } - ], - "type": "property" - } - }, - "props.style.classes": { - "binding": { - "config": { - "expression": "if({session.custom.colours.colour_impaired} \u003d True \u0026\u0026 {view.custom.isMatch} \u003e 0,\r\n{view.custom.state} + 100 + {view.custom.isMatch},\r\n{view.custom.state} + {view.custom.isMatch})" - }, - "transforms": [ - { - "fallback": "", - "inputType": "scalar", - "mappings": [ - { - "input": 101, - "output": "State-Styles/State101" - }, - { - "input": 102, - "output": "State-Styles/State102" - }, - { - "input": 103, - "output": "State-Styles/State103" - }, - { - "input": 104, - "output": "State-Styles/State104" - }, - { - "input": 105, - "output": "State-Styles/State105" - }, - { - "input": 106, - "output": "State-Styles/State106" - }, - { - "input": 201, - "output": "State-Styles/State201" - }, - { - "input": 202, - "output": "State-Styles/State202" - }, - { - "input": 203, - "output": "State-Styles/State203" - }, - { - "input": 204, - "output": "State-Styles/State204" - }, - { - "input": 205, - "output": "State-Styles/State205" - } - ], - "outputType": "style-list", - "type": "map" - } - ], - "type": "expr" - } - } - }, - "props": { - "color": "#000000", - "path": "material/offline_bolt", - "style": { - "borderColor": "#000000", - "borderStyle": "none", - "borderWidth": "2px" - } - }, - "type": "ia.display.icon" - } - ], - "events": { - "dom": { - "onClick": { - "config": { - "script": "\tsystem.perspective.openDock(\u0027Docked-East\u0027,params\u003d{\u0027tagProps\u0027:self.view.params.tagProps})" - }, - "scope": "G", - "type": "script" - }, - "onDoubleClick": { - "config": { - "script": "\ttagProps \u003d self.view.params.tagProps\n\tsystem.perspective.openPopup(\"StatusPopUP\", \"PopUp-Views/Controller-Equipment/Information\", params \u003d{\"tagProps\":tagProps})\n\t" - }, - "enabled": false, - "scope": "G", - "type": "script" - }, - "onMouseEnter": { - "config": { - "script": "\tfrom time import sleep\n\t\n\talarm \u003d []\n\tmessage \u003d None\n\t\n\tsleep(0.5)\n\t\n\tif system.tag.exists(\"System/aws_data\"):\n\t\tif self.view.params.tagProps[0] !\u003d \"\":\n\t\t\ttags_to_read \u003d system.tag.readBlocking(\"System/aws_data\")\n\t\t\tdecode_alarm_data \u003d system.util.jsonDecode(tags_to_read[0].value)\n\t\t\talarm \u003d [decode_alarm_data[i] for i in decode_alarm_data\n\t\t\t\t\tif decode_alarm_data[i][\u0027sourceId\u0027].startswith(self.view.params.tagProps[0])]\n\t\tif alarm:\n\t\t\talarm \u003d sorted(alarm, key \u003d lambda t:t[\u0027timestamp\u0027], reverse\u003dTrue)\n\t\t\tmessage \u003d max(alarm, key \u003d lambda p:p[\u0027priority\u0027]).get(\u0027message\u0027)\n\t\t\tif len(alarm) \u003e 1:\n\t\t\t\tmessage +\u003d \" (+\" + str(len(alarm)-1) + \")\"\n\tself.view.custom.alarm_message \u003d message" - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "root", - "tooltip": { - "enabled": true, - "location": "top-left", - "style": {} - } - }, - "propConfig": { - "meta.tooltip.style.backgroundColor": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case({value},\r\n0,{session.custom.colours.state0},\r\n1,{session.custom.colours.state1},\r\n2,{session.custom.colours.state2},\r\n3,{session.custom.colours.state3},\r\n4,{session.custom.colours.state4},\r\n5,{session.custom.colours.state5},\r\n6,{session.custom.colours.state6},\r\n{session.custom.colours.fallback}\r\n)", - "type": "expression" - } - ], - "type": "property" - } - }, - "meta.tooltip.style.classes": { - "binding": { - "config": { - "expression": "{view.custom.priority}" - }, - "transforms": [ - { - "fallback": "Alarms-Styles/NoAlarm", - "inputType": "scalar", - "mappings": [ - { - "input": 1, - "output": "Alarms-Styles/Diagnostic" - }, - { - "input": 2, - "output": "Alarms-Styles/Low" - }, - { - "input": 3, - "output": "Alarms-Styles/Medium" - }, - { - "input": 4, - "output": "Alarms-Styles/High" - } - ], - "outputType": "style-list", - "type": "map" - } - ], - "type": "expr" - } - }, - "meta.tooltip.style.color": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "if({session.custom.colours.colour_impaired},\r\n\t\u0027#000000\u0027,\r\n\tcase(\t{value},\r\n\t\t\t1,\u0027#FFFFFF\u0027,\r\n\t\t\t2,\u0027#000000\u0027,\r\n\t\t\t3,\u0027#000000\u0027,\r\n\t\t\t4,\u0027#FFFFFF\u0027,\r\n\t\t\t5,\u0027#FFFFFF\u0027,\r\n\t\t\t\u0027#000000\u0027)\r\n\t)", - "type": "expression" - } - ], - "type": "property" - } - }, - "meta.tooltip.text": { - "binding": { - "config": { - "expression": "if({view.custom.disconnected} \u003d False,\n\tif(isNull({view.custom.alarm_message}),\n\t\"Source Id: \" + {view.params.tagProps[0]} +\n\t\", Priority: \" + {view.custom.priority_string} +\n\t\", State: \" + {view.custom.state_string},\n\t\"Source Id: \" + {view.params.tagProps[0]} +\n\t\", Alarm: \" + {view.custom.alarm_message} +\n\t\", Priority: \" + {view.custom.priority_string} +\n\t\", State: \" + {view.custom.state_string}),\n\"Source Id: \" +{view.params.tagProps[0]} + \", Priority: Unknown, State: Unknown\")" - }, - "type": "expr" - } - }, - "props.style.classes": { - "binding": { - "config": { - "path": "view.custom.disconnected" - }, - "transforms": [ - { - "fallback": "Disconnects/Device-Connected", - "inputType": "scalar", - "mappings": [ - { - "input": true, - "output": "Disconnects/Device-Disconnected" - }, - { - "input": false, - "output": "Disconnects/Device-Connected" - } - ], - "outputType": "style-list", - "type": "map" - } - ], - "type": "property" - } - } - }, - "props": { - "aspectRatio": "40:60", - "mode": "percent", - "style": { - "cursor": "pointer" - } - }, - "type": "ia.container.coord" - } -} \ No newline at end of file diff --git a/.resources/787c2b88bdfe4be914ce79abb2daabc6bc792c4a1f9ba28ad0d5e10611b5653c b/.resources/787c2b88bdfe4be914ce79abb2daabc6bc792c4a1f9ba28ad0d5e10611b5653c deleted file mode 100644 index bc0f83b6..00000000 Binary files a/.resources/787c2b88bdfe4be914ce79abb2daabc6bc792c4a1f9ba28ad0d5e10611b5653c and /dev/null differ diff --git a/.resources/7b2bac8e9c1a713a6b829737942542b64a929f214156a045143ec318379719d2 b/.resources/7b2bac8e9c1a713a6b829737942542b64a929f214156a045143ec318379719d2 deleted file mode 100644 index 1bfd973e..00000000 Binary files a/.resources/7b2bac8e9c1a713a6b829737942542b64a929f214156a045143ec318379719d2 and /dev/null differ diff --git a/.resources/7e13935b34ceef7ae2db762ea6819646eb74875680868398a025b5852f9c3c24 b/.resources/7e13935b34ceef7ae2db762ea6819646eb74875680868398a025b5852f9c3c24 new file mode 100644 index 00000000..3fb8cfa5 --- /dev/null +++ b/.resources/7e13935b34ceef7ae2db762ea6819646eb74875680868398a025b5852f9c3c24 @@ -0,0 +1,2293 @@ +{ + "custom": { + "currentTab": "Windows/Tabs/Enternet Windows/Enternet" + }, + "params": { + "Tab_ID": null, + "Table": null + }, + "propConfig": { + "custom.currentTab": { + "binding": { + "config": { + "path": "/root/Header.custom.currentTab" + }, + "type": "property" + }, + "persistent": true + }, + "params.Tab_ID": { + "binding": { + "config": { + "path": "/root/Status_tab.props.currentTabIndex" + }, + "type": "property" + }, + "paramDirection": "output", + "persistent": true + }, + "params.Table": { + "binding": { + "config": { + "path": "/root/Status_tab.meta.name" + }, + "type": "property" + }, + "paramDirection": "output", + "persistent": true + } + }, + "props": { + "defaultSize": { + "height": 930, + "width": 1920 + } + }, + "root": { + "children": [ + { + "meta": { + "name": "Content" + }, + "position": { + "height": 0.9613, + "width": 1, + "y": 0.043 + }, + "propConfig": { + "meta.visible": { + "binding": { + "config": { + "expression": "!{session.custom.show_dpm_device_view}" + }, + "type": "expr" + } + }, + "props.path": { + "binding": { + "config": { + "expression": "if(\r\n {view.custom.currentTab} \u003d \"value\",\r\n \"Windows/Tabs/Enternet Windows/Enternet\",\r\n {view.custom.currentTab}\r\n)\r\n" + }, + "type": "expr" + } + } + }, + "type": "ia.display.view" + }, + { + "children": [ + { + "children": [ + { + "meta": { + "name": "Button" + }, + "position": { + "basis": "80px", + "grow": 1 + }, + "props": { + "style": { + "backgroundColor": "#C4D0D5", + "borderStyle": "none" + }, + "text": "Enternet", + "textStyle": { + "color": "#000000", + "fontSize": "1.5vmin", + "fontWeight": "lighter" + } + }, + "type": "ia.input.button" + } + ], + "events": { + "dom": { + "onClick": { + "config": { + "script": "\tif (self.parent.custom.currentTab !\u003d \"Windows/Tabs/Enternet Windows/Enternet\"):\n\t\t\tself.parent.custom.currentTab \u003d \"Windows/Tabs/Enternet Windows/Enternet\"\n\tself.parent.parent.getChild(\"DPMs\").meta.visible \u003d False\n\tself.parent.parent.getChild(\"Content\").meta.visible \u003d True\n\t" + }, + "scope": "G", + "type": "script" + } + } + }, + "meta": { + "name": "Enternet" + }, + "position": { + "basis": "200px", + "grow": 1 + }, + "props": { + "style": { + "backgroundColor": "#C4D0D5" + } + }, + "type": "ia.container.flex" + }, + { + "meta": { + "name": "Button5" + }, + "position": { + "grow": 1 + }, + "props": { + "style": { + "backgroundColor": "#C4D0D5" + } + }, + "type": "ia.container.flex" + }, + { + "meta": { + "name": "Button6" + }, + "position": { + "grow": 1 + }, + "props": { + "style": { + "backgroundColor": "#C4D0D5" + } + }, + "type": "ia.container.flex" + }, + { + "meta": { + "name": "Button7" + }, + "position": { + "grow": 1 + }, + "props": { + "style": { + "backgroundColor": "#C4D0D5" + } + }, + "type": "ia.container.flex" + }, + { + "meta": { + "name": "Button8" + }, + "position": { + "grow": 1 + }, + "props": { + "style": { + "backgroundColor": "#C4D0D5" + } + }, + "type": "ia.container.flex" + }, + { + "meta": { + "name": "Button9" + }, + "position": { + "grow": 1 + }, + "props": { + "style": { + "backgroundColor": "#C4D0D5" + } + }, + "type": "ia.container.flex" + }, + { + "meta": { + "name": "Button10" + }, + "position": { + "grow": 1 + }, + "props": { + "style": { + "backgroundColor": "#C4D0D5" + } + }, + "type": "ia.container.flex" + } + ], + "custom": { + "currentTab": "Windows/Tabs/Enternet Windows/Enternet" + }, + "meta": { + "name": "Header" + }, + "position": { + "height": 0.043, + "width": 1 + }, + "type": "ia.container.flex" + }, + { + "custom": { + "debug": [ + [ + "2020-03-24 03:58:00", + 83.44392609984358, + 93.58514404296875, + 71.81086730957031 + ], + [ + "2020-03-24 03:59:00", + 83.35893577107669, + 106.05998229980469, + 72.54214477539062 + ], + [ + "2020-03-24 04:00:00", + 83.2739454423098, + 102.124267578125, + 72.18306732177734 + ], + [ + "2020-03-24 04:01:00", + 83.26998772600022, + 104.7994155883789, + 72.2726821899414 + ], + [ + "2020-03-24 04:02:00", + 83.09998708000028, + 110.67745971679688, + 72.70557403564453 + ], + [ + "2020-03-24 04:03:00", + 82.95057846075277, + 110.90865325927734, + 72.86494445800781 + ], + [ + "2020-03-24 04:04:00", + 82.87408810123425, + 111.18544006347656, + 72.739990234375 + ], + [ + "2020-03-24 04:05:00", + 82.79759774171573, + 110.57137298583984, + 72.47943878173828 + ], + [ + "2020-03-24 04:06:00", + 82.72110738219722, + 111.59486389160156, + 72.50711059570312 + ], + [ + "2020-03-24 04:07:00", + 82.6446170226787, + 110.79205322265625, + 72.84617614746094 + ], + [ + "2020-03-24 04:08:00", + 82.56812666316019, + 112.36724853515625, + 72.59688568115234 + ], + [ + "2020-03-24 04:09:00", + 82.49163630364167, + 111.96199035644531, + 71.75237274169922 + ], + [ + "2020-03-24 04:10:00", + 82.41514594412317, + 114.09909057617188, + 72.87260437011719 + ], + [ + "2020-03-24 04:11:00", + 82.33865558460465, + 113.22314453125, + 72.4264144897461 + ], + [ + "2020-03-24 04:12:00", + 82.26216522508614, + 112.67841339111328, + 72.77767944335938 + ], + [ + "2020-03-24 04:13:00", + 82.18567486556762, + 109.4883041381836, + 73.2457504272461 + ], + [ + "2020-03-24 04:14:00", + 82.1091845060491, + 109.47913360595703, + 72.0219955444336 + ], + [ + "2020-03-24 04:15:00", + 82.03269414653059, + 109.40910339355469, + 72.11457061767578 + ], + [ + "2020-03-24 04:16:00", + 81.95620378701207, + 108.2085189819336, + 73.03665924072266 + ], + [ + "2020-03-24 04:17:00", + 81.87971342749356, + 109.74492645263672, + 72.89605712890625 + ], + [ + "2020-03-24 04:18:00", + 81.80322306797505, + 110.48381042480469, + 72.340087890625 + ], + [ + "2020-03-24 04:19:00", + 81.72673270845654, + 110.1125259399414, + 72.04779815673828 + ], + [ + "2020-03-24 04:20:00", + 81.65024234893802, + 110.58039855957031, + 72.02574157714844 + ], + [ + "2020-03-24 04:21:00", + 81.5737519894195, + 111.26719665527344, + 72.68399810791016 + ], + [ + "2020-03-24 04:22:00", + 81.57001033599973, + 111.0679931640625, + 72.2317123413086 + ], + [ + "2020-03-24 04:23:00", + 81.40001291999972, + 111.84290313720703, + 73.5782470703125 + ], + [ + "2020-03-24 04:24:00", + 81.22444354734957, + 111.08856201171875, + 74.54239654541016 + ], + [ + "2020-03-24 04:25:00", + 81.13445335130304, + 110.7277603149414, + 73.62892150878906 + ], + [ + "2020-03-24 04:26:00", + 81.04446315525652, + 110.72388458251953, + 74.79293823242188 + ], + [ + "2020-03-24 04:27:00", + 80.95447295921001, + 113.21517944335938, + 73.95577239990234 + ], + [ + "2020-03-24 04:28:00", + 80.86448276316348, + 112.6423568725586, + 74.46560668945312 + ], + [ + "2020-03-24 04:29:00", + 80.77449256711697, + 113.47187805175781, + 75.20769500732422 + ], + [ + "2020-03-24 04:30:00", + 80.68450237107044, + 113.81484985351562, + 74.11184692382812 + ], + [ + "2020-03-24 04:31:00", + 80.59451217502392, + 110.26861572265625, + 73.92262268066406 + ], + [ + "2020-03-24 04:32:00", + 80.50452197897741, + 109.19113159179688, + 74.61058807373047 + ], + [ + "2020-03-24 04:33:00", + 80.41453178293088, + 108.94200134277344, + 74.5039291381836 + ], + [ + "2020-03-24 04:34:00", + 80.32454158688437, + 109.96826934814453, + 74.46529388427734 + ], + [ + "2020-03-24 04:35:00", + 80.23455139083784, + 81.94364929199219, + 73.67473602294922 + ], + [ + "2020-03-24 04:36:00", + 80.14456119479132, + 23.80181121826172, + 73.68876117466887 + ], + [ + "2020-03-24 04:37:00", + 80.0545709987448, + 1.4474921226501465, + 73.68912506103516 + ], + [ + "2020-03-24 04:38:00", + 79.96458080269828, + 4.1637725830078125, + 73.72541046142578 + ], + [ + "2020-03-24 04:39:00", + 79.87459060665176, + 26.945161819458008, + 74.61903381347656 + ], + [ + "2020-03-24 04:40:00", + 79.87000710599979, + 34.11628341674805, + 73.51866149902344 + ], + [ + "2020-03-24 04:41:00", + 79.70000645999983, + 27.773473739624023, + 74.04241180419922 + ], + [ + "2020-03-24 04:42:00", + 79.60965611151889, + 27.49029541015625, + 73.1905517578125 + ], + [ + "2020-03-24 04:43:00", + 79.56329763722199, + 34.070072174072266, + 73.98297882080078 + ], + [ + "2020-03-24 04:44:00", + 79.5169391629251, + 33.60432052612305, + 74.68580627441406 + ], + [ + "2020-03-24 04:45:00", + 79.4705806886282, + 33.17567825317383, + 73.96578216552734 + ], + [ + "2020-03-24 04:46:00", + 79.42422221433131, + 33.235443115234375, + 74.14202880859375 + ], + [ + "2020-03-24 04:47:00", + 79.37786374003441, + 33.624229431152344, + 73.29328918457031 + ], + [ + "2020-03-24 04:48:00", + 79.33150526573752, + 33.59697723388672, + 73.17694091796875 + ], + [ + "2020-03-24 04:49:00", + 79.28514679144062, + 33.403076171875, + 73.81486511230469 + ], + [ + "2020-03-24 04:50:00", + 79.23878831714373, + 33.89695739746094, + 74.30374145507812 + ], + [ + "2020-03-24 04:51:00", + 79.19242984284683, + 32.8265266418457, + 74.06024169921875 + ], + [ + "2020-03-24 04:52:00", + 79.14607136854994, + 48.27207946777344, + 73.2079086303711 + ], + [ + "2020-03-24 04:53:00", + 79.09971289425305, + 74.11988830566406, + 72.95736694335938 + ], + [ + "2020-03-24 04:54:00", + 79.05335441995615, + 85.12024688720703, + 73.62250518798828 + ], + [ + "2020-03-24 04:55:00", + 79.00699594565926, + 89.70301055908203, + 72.9462661743164 + ], + [ + "2020-03-24 04:56:00", + 78.96063747136236, + 98.89726257324219, + 72.34540557861328 + ], + [ + "2020-03-24 04:57:00", + 78.91427899706547, + 104.57252502441406, + 73.3578872680664 + ], + [ + "2020-03-24 04:58:00", + 78.86792052276857, + 103.37727355957031, + 73.94607543945312 + ], + [ + "2020-03-24 04:59:00", + 78.82156204847168, + 103.06717681884766, + 72.9709701538086 + ], + [ + "2020-03-24 05:00:00", + 78.77520357417478, + 102.50790405273438, + 74.46186065673828 + ], + [ + "2020-03-24 05:01:00", + 78.72884509987789, + 102.56554412841797, + 72.30302429199219 + ], + [ + "2020-03-24 05:02:00", + 78.68248662558099, + 100.72061157226562, + 73.90963745117188 + ], + [ + "2020-03-24 05:03:00", + 78.6361281512841, + 84.94855499267578, + 72.5624771118164 + ], + [ + "2020-03-24 05:04:00", + 78.5897696769872, + 73.80229949951172, + 72.40718078613281 + ], + [ + "2020-03-24 05:05:00", + 78.54341120269031, + 66.7529296875, + 73.5855941772461 + ], + [ + "2020-03-24 05:06:00", + 78.49705272839341, + 58.3730354309082, + 73.1899185180664 + ], + [ + "2020-03-24 05:07:00", + 78.45069425409652, + 54.12462615966797, + 73.07763671875 + ], + [ + "2020-03-24 05:08:00", + 78.40433577979962, + 51.171958923339844, + 73.19320678710938 + ], + [ + "2020-03-24 05:09:00", + 78.35797730550273, + 48.614585876464844, + 72.81364440917969 + ], + [ + "2020-03-24 05:10:00", + 78.31161883120583, + 55.98033905029297, + 74.0353775024414 + ], + [ + "2020-03-24 05:11:00", + 78.26526035690894, + 55.769962310791016, + 74.27434539794922 + ], + [ + "2020-03-24 05:12:00", + 78.21890188261204, + 55.67626190185547, + 72.99474334716797 + ], + [ + "2020-03-24 05:13:00", + 78.17254340831515, + 53.84586715698242, + 73.18851470947266 + ], + [ + "2020-03-24 05:14:00", + 78.17000064599996, + 49.15884017944336, + 72.83944702148438 + ], + [ + "2020-03-24 05:15:00", + 78, + 48.674129486083984, + 72.74655151367188 + ], + [ + "2020-03-24 05:16:00", + 77.9366887710829, + 48.823998987048924, + 73.24293518066406 + ], + [ + "2020-03-24 05:17:00", + 77.90413912638326, + 48.8282470703125, + 72.28050994873047 + ], + [ + "2020-03-24 05:18:00", + 77.87158948168361, + 49.756980895996094, + 72.88276672363281 + ], + [ + "2020-03-24 05:19:00", + 77.83903983698399, + 49.47259521484375, + 73.35757446289062 + ], + [ + "2020-03-24 05:20:00", + 77.80649019228434, + 49.850311279296875, + 73.20963287353516 + ], + [ + "2020-03-24 05:21:00", + 77.77394054758471, + 49.637855529785156, + 72.9081039428711 + ], + [ + "2020-03-24 05:22:00", + 77.74139090288507, + 49.61250305175781, + 72.93186950683594 + ], + [ + "2020-03-24 05:23:00", + 77.70884125818544, + 48.27946090698242, + 74.17268371582031 + ], + [ + "2020-03-24 05:24:00", + 77.6762916134858, + 48.74678421020508, + 73.15660858154297 + ], + [ + "2020-03-24 05:25:00", + 77.64374196878616, + 48.357120513916016, + 72.6622543334961 + ], + [ + "2020-03-24 05:26:00", + 77.61119232408653, + 49.31953430175781, + 72.34400177001953 + ], + [ + "2020-03-24 05:27:00", + 77.57864267938689, + 49.709964752197266, + 72.97113037109375 + ], + [ + "2020-03-24 05:28:00", + 77.54609303468726, + 50.2484130859375, + 72.39154052734375 + ], + [ + "2020-03-24 05:29:00", + 77.51354338998762, + 50.60381317138672, + 72.06515502929688 + ], + [ + "2020-03-24 05:30:00", + 77.48099374528799, + 50.00936508178711, + 56.87029266357422 + ], + [ + "2020-03-24 05:31:00", + 77.44844410058835, + 49.875885009765625, + 16.654312133789062 + ], + [ + "2020-03-24 05:32:00", + 77.4158944558887, + 48.563663482666016, + 18.19554901123047 + ], + [ + "2020-03-24 05:33:00", + 77.38334481118908, + 48.847572326660156, + 18.055583953857422 + ], + [ + "2020-03-24 05:34:00", + 77.35079516648943, + 48.35354232788086, + 18.378847122192383 + ], + [ + "2020-03-24 05:35:00", + 77.3182455217898, + 48.75905990600586, + 17.62409782409668 + ], + [ + "2020-03-24 05:36:00", + 77.28569587709016, + 48.05728530883789, + 18.058086395263672 + ], + [ + "2020-03-24 05:37:00", + 77.25314623239053, + 54.909175872802734, + 17.759536743164062 + ], + [ + "2020-03-24 05:38:00", + 77.22059658769089, + 54.575439453125, + 17.888395309448242 + ], + [ + "2020-03-24 05:39:00", + 77.18804694299125, + 55.046234130859375, + 18.210878372192383 + ], + [ + "2020-03-24 05:40:00", + 77.15549729829162, + 54.0140495300293, + 17.824277877807617 + ], + [ + "2020-03-24 05:41:00", + 77.12294765359198, + 53.690467834472656, + 18.451248168945312 + ], + [ + "2020-03-24 05:42:00", + 77.09039800889235, + 53.07158279418945, + 18.209468841552734 + ], + [ + "2020-03-24 05:43:00", + 77.05784836419271, + 53.31936264038086, + 18.179603576660156 + ], + [ + "2020-03-24 05:44:00", + 77.02529871949308, + 53.26475143432617, + 18.342716217041016 + ], + [ + "2020-03-24 05:45:00", + 76.99274907479344, + 51.945220947265625, + 18.539770126342773 + ], + [ + "2020-03-24 05:46:00", + 76.9601994300938, + 51.81389617919922, + 18.015705108642578 + ], + [ + "2020-03-24 05:47:00", + 76.92764978539417, + 51.123085021972656, + 17.368398666381836 + ], + [ + "2020-03-24 05:48:00", + 76.89510014069452, + 51.4550666809082, + 18.14003562927246 + ], + [ + "2020-03-24 05:49:00", + 76.8625504959949, + 50.60249710083008, + 18.289703369140625 + ], + [ + "2020-03-24 05:50:00", + 76.83000085129525, + 50.91603088378906, + 18.2962646484375 + ], + [ + "2020-03-24 05:51:00", + 76.79745120659562, + 53.06449508666992, + 18.563539505004883 + ], + [ + "2020-03-24 05:52:00", + 76.76490156189598, + 54.72663497924805, + 18.568862915039062 + ], + [ + "2020-03-24 05:53:00", + 76.73235191719634, + 54.90778732299805, + 18.28094482421875 + ], + [ + "2020-03-24 05:54:00", + 76.69980227249671, + 53.92911911010742, + 18.02821159362793 + ], + [ + "2020-03-24 05:55:00", + 76.66725262779707, + 53.20056915283203, + 21.20859718322754 + ], + [ + "2020-03-24 05:56:00", + 76.63470298309744, + 53.7746696472168, + 70.31324768066406 + ], + [ + "2020-03-24 05:57:00", + 76.6021533383978, + 54.07472610473633, + 73.2507553100586 + ], + [ + "2020-03-24 05:58:00", + 76.56960369369816, + 53.80739974975586, + 73.81517791748047 + ], + [ + "2020-03-24 05:59:00", + 76.53705404899853, + 53.748661041259766, + 73.31723022460938 + ], + [ + "2020-03-24 06:00:00", + 76.50450440429888, + 54.74142837524414, + 72.85430145263672 + ], + [ + "2020-03-24 06:01:00", + 76.47195475959926, + 56.06607437133789, + 73.29580688476562 + ], + [ + "2020-03-24 06:02:00", + 76.46999418600018, + 55.171714782714844, + 72.67166195723287 + ], + [ + "2020-03-24 06:03:00", + 76.29999354000017, + 55.41927719116211, + 72.6522445678711 + ], + [ + "2020-03-24 06:04:00", + 76.17097911658006, + 55.45018005371094, + 73.24137115478516 + ], + [ + "2020-03-24 06:05:00", + 76.10446483646761, + 55.66059112548828, + 72.9041976928711 + ], + [ + "2020-03-24 06:06:00", + 76.03795055635517, + 49.595481872558594, + 73.65878295898438 + ], + [ + "2020-03-24 06:07:00", + 75.97143627624271, + 47.00128173828125, + 72.86134338378906 + ], + [ + "2020-03-24 06:08:00", + 75.90492199613027, + 47.58378601074219, + 72.69776153564453 + ], + [ + "2020-03-24 06:09:00", + 75.83840771601783, + 49.07365417480469, + 72.17729187011719 + ], + [ + "2020-03-24 06:10:00", + 75.77189343590538, + 56.555606842041016, + 72.93250274658203 + ], + [ + "2020-03-24 06:11:00", + 75.70537915579293, + 56.26713180541992, + 72.06671905517578 + ], + [ + "2020-03-24 06:12:00", + 75.63886487568048, + 55.18650817871094, + 73.08904266357422 + ], + [ + "2020-03-24 06:13:00", + 75.57235059556804, + 48.025177001953125, + 73.17881774902344 + ], + [ + "2020-03-24 06:14:00", + 75.50583631545558, + 47.967350006103516, + 73.10953521728516 + ], + [ + "2020-03-24 06:15:00", + 75.43932203534314, + 49.351463317871094, + 72.9697265625 + ], + [ + "2020-03-24 06:16:00", + 75.3728077552307, + 57.63689041137695, + 73.93919372558594 + ], + [ + "2020-03-24 06:17:00", + 75.30629347511824, + 51.609039306640625, + 73.03306579589844 + ], + [ + "2020-03-24 06:18:00", + 75.2397791950058, + 49.73860549926758, + 73.2399673461914 + ], + [ + "2020-03-24 06:19:00", + 75.17326491489335, + 50.75581359863281, + 72.73904418945312 + ], + [ + "2020-03-24 06:20:00", + 75.1067506347809, + 50.66218566894531, + 72.50445556640625 + ], + [ + "2020-03-24 06:21:00", + 75.04023635466845, + 50.81214141845703, + 72.9201431274414 + ], + [ + "2020-03-24 06:22:00", + 74.97372207455601, + 51.4454231262207, + 72.74983978271484 + ], + [ + "2020-03-24 06:23:00", + 74.90720779444355, + 51.69704055786133, + 72.99396514892578 + ], + [ + "2020-03-24 06:24:00", + 74.84069351433111, + 51.35186767578125, + 73.40730285644531 + ], + [ + "2020-03-24 06:25:00", + 74.77417923421866, + 50.72081756591797, + 72.23859405517578 + ], + [ + "2020-03-24 06:26:00", + 74.76998772600024, + 50.91818618774414, + 73.011474609375 + ], + [ + "2020-03-24 06:27:00", + 74.59998708000028, + 50.9371452331543, + 73.52397918701172 + ], + [ + "2020-03-24 06:28:00", + 74.47115968724424, + 51.061458587646484, + 73.56307220458984 + ], + [ + "2020-03-24 06:29:00", + 74.40464696005053, + 50.900325775146484, + 73.50645446777344 + ], + [ + "2020-03-24 06:30:00", + 74.33813423285682, + 51.356689453125, + 73.11031341552734 + ], + [ + "2020-03-24 06:31:00", + 74.2716215056631, + 51.44089126586914, + 74.34957122802734 + ], + [ + "2020-03-24 06:32:00", + 74.2051087784694, + 51.28786849975586, + 73.98580169677734 + ], + [ + "2020-03-24 06:33:00", + 74.13859605127568, + 51.93085537607588, + 72.36542510986328 + ], + [ + "2020-03-24 06:34:00", + 74.07208332408197, + 51.952125549316406, + 72.51180267333984 + ], + [ + "2020-03-24 06:35:00", + 74.00557059688826, + 57.87371063232422, + 73.43373107910156 + ], + [ + "2020-03-24 06:36:00", + 73.93905786969457, + 80.50335693359375, + 73.54712677001953 + ], + [ + "2020-03-24 06:37:00", + 73.87254514250085, + 86.00247192382812, + 73.6276626586914 + ], + [ + "2020-03-24 06:38:00", + 73.80603241530714, + 92.10163116455078, + 73.07763671875 + ], + [ + "2020-03-24 06:39:00", + 73.73951968811343, + 92.22298431396484, + 72.73919677734375 + ], + [ + "2020-03-24 06:40:00", + 73.67300696091972, + 91.8537368774414, + 72.59422302246094 + ], + [ + "2020-03-24 06:41:00", + 73.60649423372601, + 91.79039764404297, + 72.58702850341797 + ], + [ + "2020-03-24 06:42:00", + 73.5399815065323, + 92.08602905273438, + 73.7885971069336 + ], + [ + "2020-03-24 06:43:00", + 73.47346877933859, + 92.87781524658203, + 72.7099609375 + ], + [ + "2020-03-24 06:44:00", + 73.40695605214488, + 96.19808197021484, + 73.00537872314453 + ], + [ + "2020-03-24 06:45:00", + 73.34044332495118, + 96.97959899902344, + 73.0341567993164 + ], + [ + "2020-03-24 06:46:00", + 73.27393059775747, + 92.9488296508789, + 73.91197967529297 + ], + [ + "2020-03-24 06:47:00", + 73.20741787056376, + 93.09352111816406, + 72.77579498291016 + ], + [ + "2020-03-24 06:48:00", + 73.14090514337005, + 91.96395111083984, + 71.88639831542969 + ], + [ + "2020-03-24 06:49:00", + 73.07439241617634, + 92.7508773803711, + 73.19898986816406 + ], + [ + "2020-03-24 06:50:00", + 73.07001033599973, + 91.7613525390625, + 73.58168029785156 + ], + [ + "2020-03-24 06:51:00", + 72.90001291999972, + 90.88325500488281, + 73.70819854736328 + ], + [ + "2020-03-24 06:52:00", + 72.74429166862062, + 90.33417510986328, + 72.71105194091797 + ], + [ + "2020-03-24 06:53:00", + 72.66377465236994, + 95.02799224853516, + 75.33968353271484 + ], + [ + "2020-03-24 06:54:00", + 72.58325763611924, + 96.9925308227539, + 74.09574890136719 + ], + [ + "2020-03-24 06:55:00", + 72.50274061986855, + 96.695068359375, + 73.8018798828125 + ], + [ + "2020-03-24 06:56:00", + 72.42222360361787, + 95.75796508789062, + 74.43511199951172 + ], + [ + "2020-03-24 06:57:00", + 72.34170658736717, + 96.17393493652344, + 74.73851776123047 + ], + [ + "2020-03-24 06:58:00", + 72.26118957111649, + 88.4173812866211, + 75.60273742675781 + ], + [ + "2020-03-24 06:59:00", + 72.1806725548658, + 88.39751434326172, + 74.84156799316406 + ], + [ + "2020-03-24 07:00:00", + 72.1001555386151, + 87.41456604003906, + 74.45763397216797 + ], + [ + "2020-03-24 07:01:00", + 72.01963852236442, + 87.65657806396484, + 73.62500762939453 + ], + [ + "2020-03-24 07:02:00", + 71.93912150611372, + 87.04649353027344, + 75.57865142822266 + ], + [ + "2020-03-24 07:03:00", + 71.85860448986304, + 87.92521667480469, + 74.86284637451172 + ], + [ + "2020-03-24 07:04:00", + 71.77808747361235, + 85.46574401855469, + 74.23040008544922 + ], + [ + "2020-03-24 07:05:00", + 71.69757045736166, + 51.844181060791016, + 73.2090072631836 + ], + [ + "2020-03-24 07:06:00", + 71.61705344111097, + 36.57521057128906, + 74.82296752929688 + ], + [ + "2020-03-24 07:07:00", + 71.53653642486027, + 34.56216812133789, + 74.66110229492188 + ], + [ + "2020-03-24 07:08:00", + 71.45601940860959, + 48.19200897216797, + 73.77107238769531 + ], + [ + "2020-03-24 07:09:00", + 71.3755023923589, + 52.86350631713867, + 74.53269958496094 + ], + [ + "2020-03-24 07:10:00", + 71.37000710599979, + 52.843929290771484, + 73.5987319946289 + ], + [ + "2020-03-24 07:11:00", + 71.20000645999983, + 52.08213424682617, + 74.15689849853516 + ], + [ + "2020-03-24 07:12:00", + 71.03583251441142, + 51.53842544555664, + 73.91010284423828 + ], + [ + "2020-03-24 07:13:00", + 70.95084242170037, + 43.506919860839844, + 73.70914459228516 + ], + [ + "2020-03-24 07:14:00", + 70.86585232898932, + 43.037841796875, + 73.2168197631836 + ], + [ + "2020-03-24 07:15:00", + 70.78086223627825, + 43.77318572998047, + 74.06806182861328 + ], + [ + "2020-03-24 07:16:00", + 70.6958721435672, + 46.766944885253906, + 74.05726623535156 + ], + [ + "2020-03-24 07:17:00", + 70.61088205085615, + 50.872379302978516, + 74.08291625976562 + ], + [ + "2020-03-24 07:18:00", + 70.5258919581451, + 51.395668029785156, + 74.64201354980469 + ], + [ + "2020-03-24 07:19:00", + 70.44090186543403, + 50.60863494873047, + 73.44953155517578 + ], + [ + "2020-03-24 07:20:00", + 70.35591177272298, + 40.730621337890625, + 72.79737854003906 + ], + [ + "2020-03-24 07:21:00", + 70.27092168001192, + 41.385196685791016, + 73.6615982055664 + ], + [ + "2020-03-24 07:22:00", + 70.18593158730087, + 52.25959777832031, + 73.92058563232422 + ], + [ + "2020-03-24 07:23:00", + 70.10094149458982, + 46.88405990600586, + 74.61308288574219 + ], + [ + "2020-03-24 07:24:00", + 70.01595140187875, + 47.141448974609375, + 73.66790870618443 + ], + [ + "2020-03-24 07:25:00", + 69.9309613091677, + 47.107181549072266, + 73.63360595703125 + ], + [ + "2020-03-24 07:26:00", + 69.84597121645665, + 47.4166259765625, + 74.238525390625 + ], + [ + "2020-03-24 07:27:00", + 69.7609811237456, + 46.56296157836914, + 73.82565307617188 + ], + [ + "2020-03-24 07:28:00", + 69.67599103103453, + 46.3474006652832, + 72.98832702636719 + ], + [ + "2020-03-24 07:29:00", + 69.67000064599995, + 47.08136046272777, + 73.30158233642578 + ], + [ + "2020-03-24 07:30:00", + 69.5, + 47.10820770263672, + 73.27828216552734 + ], + [ + "2020-03-24 07:31:00", + 69.32637243713472, + 47.034088134765625, + 73.60092163085938 + ], + [ + "2020-03-24 07:32:00", + 69.23638277037952, + 45.57647705078125, + 73.87054443359375 + ], + [ + "2020-03-24 07:33:00", + 69.1463931036243, + 51.21367645263672, + 72.25328826904297 + ], + [ + "2020-03-24 07:34:00", + 69.0564034368691, + 70.96977996826172, + 73.15692138671875 + ], + [ + "2020-03-24 07:35:00", + 68.96641377011389, + 76.6375961303711, + 72.21951293945312 + ], + [ + "2020-03-24 07:36:00", + 68.87642410335869, + 83.16655731201172, + 74.12545776367188 + ], + [ + "2020-03-24 07:37:00", + 68.78643443660347, + 83.07859802246094, + 72.88916991454134 + ], + [ + "2020-03-24 07:38:00", + 68.69644476984827, + 92.17417907714844, + 72.8433609008789 + ], + [ + "2020-03-24 07:39:00", + 68.60645510309305, + 92.9948959350586, + 73.65784454345703 + ], + [ + "2020-03-24 07:40:00", + 68.51646543633785, + 92.51905822753906, + 72.56232452392578 + ], + [ + "2020-03-24 07:41:00", + 68.42647576958265, + 91.8058090209961, + 73.06637573242188 + ], + [ + "2020-03-24 07:42:00", + 68.33648610282744, + 90.04006958007812, + 72.91545104980469 + ], + [ + "2020-03-24 07:43:00", + 68.24649643607223, + 85.17295837402344, + 73.79078674316406 + ], + [ + "2020-03-24 07:44:00", + 68.15650676931702, + 95.68914794921875, + 72.5380859375 + ], + [ + "2020-03-24 07:45:00", + 68.06651710256182, + 74.87901306152344, + 73.2021255493164 + ], + [ + "2020-03-24 07:46:00", + 67.9765274358066, + 60.12022018432617, + 73.76215362548828 + ], + [ + "2020-03-24 07:47:00", + 67.96999418600018, + 53.05949020385742, + 73.28720092773438 + ], + [ + "2020-03-24 07:48:00", + 67.79999354000017, + 48.9787483215332, + 73.20462799072266 + ], + [ + "2020-03-24 07:49:00", + 67.60342746002077, + 49.55990219116211, + 72.59485626220703 + ], + [ + "2020-03-24 07:50:00", + 67.50143795130171, + 50.27000427246094, + 73.38900756835938 + ], + [ + "2020-03-24 07:51:00", + 67.39944844258264, + 49.79863766947178, + 72.78111267089844 + ], + [ + "2020-03-24 07:52:00", + 67.29745893386358, + 49.78076171875, + 73.90713500976562 + ], + [ + "2020-03-24 07:53:00", + 67.19546942514451, + 50.86861801147461, + 38.183509826660156 + ], + [ + "2020-03-24 07:54:00", + 67.09347991642545, + 51.039466857910156, + 17.961437225341797 + ], + [ + "2020-03-24 07:55:00", + 66.99149040770638, + 51.160526275634766, + 19.09199333190918 + ], + [ + "2020-03-24 07:56:00", + 66.88950089898731, + 50.949893951416016, + 18.68396759033203 + ], + [ + "2020-03-24 07:57:00", + 66.78751139026825, + 51.169769287109375, + 17.29629898071289 + ], + [ + "2020-03-24 07:58:00", + 66.68552188154918, + 50.19011306762695, + 18.370710372924805 + ] + ] + }, + "events": { + "component": { + "onActionPerformed": { + "config": { + "script": "\tdata \u003d []\n\ttable \u003d []\n\n\n\tif self.getSibling(\"Status_tab\").props.currentTabIndex \u003d\u003d 0:\n\t\tresults \u003d self.parent.getChild(\"Status_tab\").getChild(\"Ethernet\").getChild(\"Ethernet\").props.filter.results.data\n\t\tif(len(results) \u003e 0):\n\t\t\theaders \u003d [\"Device Type\", \"Device\", \"IP Address\",\"Status\",\"Current (Amps)\",\"Speed (FPM)\",\"Status Code\", \"Last Status Code\"]\n\t\t\tfor result in results:\n\t\t\t\tdata.append([result[\u0027DeviceType\u0027],result[\u0027Device\u0027],result[\u0027IPAddress\u0027],result[\u0027Status\u0027],result[\u0027CurrentAmps\u0027],result[\u0027SpeedFPM\u0027],result[\u0027StatusCode\u0027],result[\u0027LastStatusCode\u0027]])\n\t\n\t\telse:\n\t\t\ttest_table \u003d system.dataset.toPyDataSet(self.parent.getChild(\"Status_tab\").getChild(\"Ethernet\").getChild(\"Ethernet\").props.data)\n\t\t\theaders \u003d [\"Device Type\", \"Device\", \"IP Address\",\"Status\",\"Current (Amps)\",\"Speed (FPM)\",\"Status Code\", \"Last Status Code\"]\n\t\t\tfor result in test_table:\n\t\t\t\tdata.append([result[\u0027DeviceType\u0027],result[\u0027Device\u0027],result[\u0027IPAddress\u0027],result[\u0027Status\u0027],result[\u0027CurrentAmps\u0027],result[\u0027SpeedFPM\u0027],result[\u0027StatusCode\u0027],result[\u0027LastStatusCode\u0027]])\n\t\t\n\t\ttable \u003d system.dataset.toDataSet(headers, data)\t\n\t\tcsv \u003d system.dataset.toCSV(table,1,0,1)\n\t\tsystem.perspective.download(filename \u003d \u0027Ethernet.csv\u0027, data \u003d csv)\t\n\n\t\n\telif self.getSibling(\"Status_tab\").props.currentTabIndex \u003d\u003d 1:\n\t\tresults \u003d self.parent.getChild(\"Status_tab\").getChild(\"Scanner History\").getChild(\"Scanner History\").props.filter.results.data\n\t\tif(len(results) \u003e 0):\n\t\t\theaders \u003d [\"Date\", \"Sorter\", \"Parcel ID\",\"Scanner\",\"Img ID\",\"Scan Label\",\"Scan Status\",\"Length (in)\",\"Trays (#)\",\"Assigment\",\"Divert Status\",\"Req Dest\",\"Actual Dest\",\"Sort Code\"]\n\t\t\tfor result in results:\n\t\t\t\tdata.append([result[\u0027t_stamp\u0027],result[\u0027SorterName\u0027],result[\u0027ParcelID\u0027],result[\u0027ScannerName\u0027],result[\u0027IMGID\u0027],result[\u0027ScanLabel\u0027],result[\u0027ScanStatus\u0027],result[\u0027Length\u0027],result[\u0027Tray\u0027],result[\u0027AssignmentScanHist\u0027],result[\u0027DivertStatus\u0027],result[\u0027DEST_REQ\u0027],result[\u0027ACTUAL_DEST\u0027],result[\u0027SortCode\u0027]])\n\t\t\t\n\t\telse:\n\t\t\theaders \u003d [\"Date\", \"Sorter\", \"Parcel ID\",\"Scanner\",\"Img ID\",\"Scan Label\",\"Scan Status\",\"Length (in)\",\"Trays (#)\",\"Assigment\",\"Divert Status\",\"Req Dest\",\"Actual Dest\",\"Sort Code\"]\n\t\t\tfor row in self.parent.getChild(\"Status_tab\").getChild(\"Scanner History\").getChild(\"Scanner History\").props.data:\n\t\t\t\tdata.append([row[\u0027value\u0027][\u0027t_stamp\u0027],row[\u0027value\u0027][\u0027SorterName\u0027],row[\u0027value\u0027][\u0027ParcelID\u0027],row[\u0027value\u0027][\u0027ScannerName\u0027],row[\u0027value\u0027][\u0027IMGID\u0027],row[\u0027value\u0027][\u0027ScanLabel\u0027],row[\u0027value\u0027][\u0027ScanStatus\u0027],row[\u0027value\u0027][\u0027Length\u0027],row[\u0027value\u0027][\u0027Tray\u0027],row[\u0027value\u0027][\u0027AssignmentScanHist\u0027],row[\u0027value\u0027][\u0027DivertStatus\u0027],row[\u0027value\u0027][\u0027DEST_REQ\u0027],row[\u0027value\u0027][\u0027ACTUAL_DEST\u0027],row[\u0027value\u0027][\u0027SortCode\u0027]])\n\t\t\t\n\t\ttable \u003d system.dataset.toDataSet(headers, data)\t\n\t\tcsv \u003d system.dataset.toCSV(table,1,0,1)\n\t\tsystem.perspective.download(filename \u003d \u0027Scanner History.csv\u0027, data \u003d csv)\n\t\n\t\n\telif self.getSibling(\"Status_tab\").props.currentTabIndex \u003d\u003d 2:\n\t\tresults \u003d self.parent.getChild(\"Status_tab\").getChild(\"Lane Status\").getChild(\"Lane Status\").props.filter.results.data\n\t\tif(len(results) \u003e 0):\n\t\t\theaders \u003d [\"Start Timestamp\", \"End Timestamp\", \"Lane\",\"Full (#)\",\"Jam (#)\",\"Full Duration\",\"Jam Duration\"]\n\t\t\tfor result in results:\n\t\t\t\tdata.append([result[\u0027StartTime\u0027],result[\u0027EndTime\u0027],result[\u0027Lane\u0027],result[\u0027Full_\u0027],result[\u0027Jam_\u0027],result[\u0027FullDuration\u0027],result[\u0027JamDuration\u0027]])\n\t\n\t\telse:\n\t\t\ttest_table \u003d system.dataset.toPyDataSet(self.parent.getChild(\"Status_tab\").getChild(\"Lane Status\").getChild(\"Lane Status\").props.data)\n\t\t\theaders \u003d [\"Start Timestamp\", \"End Timestamp\", \"Lane\",\"Full (#)\",\"Jam (#)\",\"Full Duration\",\"Jam Duration\"]\n\t\t\tfor result in test_table:\n\t\t\t\tdata.append([result[\u0027StartTime\u0027],result[\u0027EndTime\u0027],result[\u0027Lane\u0027],result[\u0027Full_\u0027],result[\u0027Jam_\u0027],result[\u0027FullDuration\u0027],result[\u0027JamDuration\u0027]])\n\t\t\t\n\t\ttable \u003d system.dataset.toDataSet(headers, data)\t\n\t\tcsv \u003d system.dataset.toCSV(table,1,0,1)\n\t\tsystem.perspective.download(filename \u003d \u0027Lane Status.csv\u0027, data \u003d csv)" + }, + "scope": "G", + "type": "script" + } + } + }, + "meta": { + "name": "ExportToCSV" + }, + "position": { + "height": 0.0269, + "width": 0.0625, + "x": 0.8974, + "y": 0.0084 + }, + "props": { + "mode": "percent", + "style": { + "classes": "Button_Action" + }, + "text": "Export to CSV", + "textStyle": { + "fontFamily": "Arial", + "fontSize": "1vmin" + } + }, + "type": "ia.input.button" + }, + { + "children": [ + { + "meta": { + "name": "LPeriod" + }, + "position": { + "basis": "60px" + }, + "props": { + "style": { + "color": "#000000" + }, + "text": "Period:" + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "Period" + }, + "position": { + "basis": "160px" + }, + "props": { + "options": [ + { + "label": "Past 30 Min", + "value": "Past 30 Min" + }, + { + "label": "Past Hour", + "value": "Past Hour" + }, + { + "label": "Past 2 Hour", + "value": "Past 2 Hour" + }, + { + "label": "Past 4 Hour", + "value": "Past 4 Hour" + }, + { + "label": "Past 8 Hour", + "value": "Past 8 Hour" + }, + { + "label": "Current Day", + "value": "Current Day" + }, + { + "label": "Morning", + "value": "Morning" + }, + { + "label": "Daylight", + "value": "Daylight" + }, + { + "label": "Twilight", + "value": "Twilight" + }, + { + "label": "Night", + "value": "Night" + }, + { + "label": "Wrap Down", + "value": "Wrap Down" + }, + { + "label": "Current Sort", + "value": "Current Sort" + }, + { + "label": "Custom", + "value": "Custom" + } + ], + "value": "Past 30 Min" + }, + "type": "ia.input.dropdown" + }, + { + "meta": { + "name": "Spare_0" + }, + "position": { + "basis": "18.1px" + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "Start Date" + }, + "position": { + "basis": "85px" + }, + "props": { + "style": { + "color": "#000000" + }, + "text": "Start Date:" + }, + "type": "ia.display.label" + }, + { + "custom": { + "Selected": "value" + }, + "events": { + "component": { + "onActionPerformed": { + "config": { + "script": "\t\n\tself.custom.Selected \u003d self.props.value" + }, + "scope": "G", + "type": "script" + } + } + }, + "meta": { + "name": "StartTime" + }, + "propConfig": { + "props.enabled": { + "binding": { + "config": { + "expression": "{../Period.props.value} \u003d \"Custom\"" + }, + "enabled": false, + "type": "expr" + } + }, + "props.maxDate": { + "binding": { + "config": { + "expression": "now()" + }, + "enabled": false, + "type": "expr" + } + }, + "props.startDate": { + "binding": { + "config": { + "path": "../Period.props.value" + }, + "enabled": false, + "transforms": [ + { + "fallback": "todate(now())", + "inputType": "expression", + "mappings": [ + { + "input": "\"Past 30 Min\"", + "output": "todate(dateFormat(dateArithmetic(now(),-30, \"Minute\"), \"yyyy-MM-dd HH:mm:ss\"))" + }, + { + "input": "\"Past Hour\"", + "output": "todate(dateFormat(dateArithmetic(now(),-1, \"Hour\"), \"yyyy-MM-dd HH:mm:ss\"))" + }, + { + "input": "\"Past 2 Hour\"", + "output": "todate(dateFormat(dateArithmetic(now(),-2, \"Hour\"), \"yyyy-MM-dd HH:mm:ss\"))" + }, + { + "input": "\"Past 4 Hour\"", + "output": "todate(dateFormat(dateArithmetic(now(),-4, \"Hour\"), \"yyyy-MM-dd HH:mm:ss\"))" + }, + { + "input": "\"Past 8 Hour\"", + "output": "todate(dateFormat(dateArithmetic(now(),-8, \"Hour\"), \"yyyy-MM-dd HH:mm:ss\"))" + }, + { + "input": "\"Current Day\"", + "output": "todate(dateFormat(dateArithmetic(now(0),0, \"Day\"), \"yyyy-MM-dd 00:00:00\"))" + }, + { + "input": "\"Morning\"", + "output": "if (dateFormat(dateArithmetic(now(),0, \"Day\"), \"HH:mm:ss\")\u003c\"2:30:00\",\r dateFormat(dateArithmetic(now(0),-1, \"Day\"), \"yyyy-MM-dd 2:30:00\"),todate(dateFormat(dateArithmetic(now(0),0, \"Day\"), \"yyyy-MM-dd 2:30:00\")))" + }, + { + "input": "\"Daylight\"", + "output": "if (dateFormat(dateArithmetic(now(),0, \"Day\"), \"HH:mm:ss\")\u003c\"7:30:00\", todate(dateFormat(dateArithmetic(now(0),-1, \"Day\"), \"yyyy-MM-dd 7:30:00\")),todate(dateFormat(dateArithmetic(now(0),0, \"Day\"), \"yyyy-MM-dd 7:30:00\")))" + }, + { + "input": "\"Twilight\"", + "output": "if (dateFormat(dateArithmetic(now(),0, \"Hours\"), \"HH:mm:ss\")\u003c\"13:00:00\", todate(dateFormat(dateArithmetic(now(0),-1, \"Day\"), \"yyyy-MM-dd 13:00:00\")),todate(dateFormat(dateArithmetic(now(0),0, \"Day\"), \"yyyy-MM-dd 13:00:00\")))" + }, + { + "input": "\"Night\"", + "output": "if (dateFormat(dateArithmetic(now(),0, \"Day\"), \"HH:mm:ss\")\u003c\"18:30:00\", todate(dateFormat(dateArithmetic(now(0),-1, \"Day\"), \"yyyy-MM-dd 18:30:00\")),todate(dateFormat(dateArithmetic(now(0),0, \"Day\"), \"yyyy-MM-dd 18:30:00\")))" + }, + { + "input": "\"Wrap Down\"", + "output": "if (dateFormat(dateArithmetic(now(),0, \"Day\"), \"HH:mm:ss\")\u003c\"23:30:00\", todate(dateFormat(dateArithmetic(now(0),-1, \"Day\"), \"yyyy-MM-dd 23:30:00\")),todate(dateFormat(dateArithmetic(now(0),0, \"Day\"), \"yyyy-MM-dd 23:30:00\")))" + }, + { + "input": "\"Current Sort\"", + "output": "if (dateFormat(dateArithmetic(now(),0, \"Day\"), \"HH:mm:ss\")\u003c\"7:30:00\", todate(dateFormat(dateArithmetic(now(0),0, \"Day\"), \"yyyy-MM-dd 2:30:00\")), \r if (dateFormat(dateArithmetic(now(),0, \"Day\"), \"HH:mm:ss\")\u003c\"13:00:00\",todate(dateFormat(dateArithmetic(now(0),0, \"Day\"), \"yyyy-MM-dd 7:30:00\")),\r if (dateFormat(dateArithmetic(now(),0, \"Day\"), \"HH:mm:ss\")\u003c\"18:30:00\",todate(dateFormat(dateArithmetic(now(0),0, \"Day\"), \"yyyy-MM-dd 13:00:00\")),\r if (dateFormat(dateArithmetic(now(),0, \"Day\"), \"HH:mm:ss\")\u003c\"23:30:00\",todate(dateFormat(dateArithmetic(now(0),0, \"Day\"), \"yyyy-MM-dd 18:30:00\")),\r if (dateFormat(dateArithmetic(now(),0, \"Day\"), \"HH:mm:ss\")\u003c\"2:30:00\", todate(dateFormat(dateArithmetic(now(0),0, \"Day\"), \"yyyy-MM-dd 23:30:00\")),\r todate(dateFormat(dateArithmetic(now(),0, \"Day\"), \"yyyy-MM-dd HH:mm:ss\")))))))" + }, + { + "input": "\"Custom\"", + "output": "{this.props.value}" + } + ], + "outputType": "expression", + "type": "map" + } + ], + "type": "property" + }, + "onChange": { + "enabled": null, + "script": "\t\n\tif self.getSibling(\"Period\").props.value !\u003d \"Custom\":\n\t\tself.props.value \u003d self.props.startDate" + } + }, + "props.value": { + "onChange": { + "enabled": null, + "script": "\t\n\tif system.date.secondsBetween(self.props.value,self.getSibling(\"EndTime\").props.value) \u003e 604800 or system.date.secondsBetween(self.props.value,self.getSibling(\"EndTime\").props.value) \u003c 0:\n\t if system.date.secondsBetween(system.date.addSeconds(self.props.value,604800),system.date.now()) \u003c 0: \n\t self.getSibling(\"EndTime\").props.value \u003d system.date.now()\n\t else:\n\t self.getSibling(\"EndTime\").props.value \u003d system.date.addSeconds(self.props.value,604800)" + } + } + }, + "props": { + "dismissOnSelect": false, + "enabled": false, + "formattedValue": "Apr 25, 2025 2:56 PM", + "formattedValues": { + "date": "Mar 26, 2021", + "datetime": "Mar 26, 2021 12:00 AM", + "time": "12:00 AM" + }, + "maxDate": { + "$": [ + "ts", + 192, + 1745580359823 + ], + "$ts": 1745580359823 + }, + "startDate": { + "$": [ + "ts", + 201, + 1745580368842 + ], + "$ts": 1745578568000 + }, + "value": { + "$": [ + "ts", + 192, + 1745580368842 + ], + "$ts": 1745578568000 + } + }, + "type": "ia.input.date-time-input" + }, + { + "meta": { + "name": "Spare" + }, + "position": { + "basis": "18.1px" + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "End Date" + }, + "position": { + "basis": "81px" + }, + "props": { + "style": { + "color": "#000000" + }, + "text": "End Date:" + }, + "type": "ia.display.label" + }, + { + "custom": { + "Selected": "value" + }, + "events": { + "component": { + "onActionPerformed": { + "config": { + "script": "\t\n\tself.custom.Selected \u003d self.props.value" + }, + "scope": "G", + "type": "script" + } + } + }, + "meta": { + "name": "EndTime" + }, + "position": { + "basis": "190px" + }, + "propConfig": { + "props.enabled": { + "binding": { + "config": { + "expression": "{../Period.props.value} \u003d \"Custom\"" + }, + "enabled": false, + "type": "expr" + } + }, + "props.endDate": { + "binding": { + "config": { + "path": "../Period.props.value" + }, + "enabled": false, + "transforms": [ + { + "fallback": "{this.props.value}", + "inputType": "scalar", + "mappings": [ + { + "input": "Past 30 Min", + "output": "todate(dateFormat(dateArithmetic(now(),0, \"Hour\"), \"yyyy-MM-dd HH:mm:ss\"))" + }, + { + "input": "Past Hour", + "output": "todate(dateFormat(dateArithmetic(now(),0, \"hour\"), \"yyyy-MM-dd HH:mm:ss\"))" + }, + { + "input": "Past 2 Hour", + "output": "todate(dateFormat(dateArithmetic(now(),0, \"hour\"), \"yyyy-MM-dd HH:mm:ss\"))" + }, + { + "input": "Past 4 Hour", + "output": "todate(dateFormat(dateArithmetic(now(),0, \"hour\"), \"yyyy-MM-dd HH:mm:ss\"))" + }, + { + "input": "Past 8 Hour", + "output": "todate(dateFormat(dateArithmetic(now(),0, \"hour\"), \"yyyy-MM-dd HH:mm:ss\"))" + }, + { + "input": "Current Day", + "output": "todate(dateFormat(dateArithmetic(now(),0, \"hour\"), \"yyyy-MM-dd HH:mm:ss\"))" + }, + { + "input": "Morning", + "output": "if (dateFormat(dateArithmetic(now(),0, \"Day\"), \"HH:mm:ss\")\u003c\"2:30:00\",\r todate(dateFormat(dateArithmetic(now(0),-1, \"Day\"), \"yyyy-MM-dd 7:30:00\")),\r if (dateFormat(dateArithmetic(now(),0, \"Day\"), \"HH:mm:ss\")\u003c\"7:30:00\",\r todate(dateFormat(dateArithmetic(now(),0, \"Day\"), \"yyyy-MM-dd HH:mm:ss\")), todate(dateFormat(dateArithmetic(now(0),0, \"Day\"), \"yyyy-MM-dd 7:30:00\"))))" + }, + { + "input": "Daylight", + "output": "if (dateFormat(dateArithmetic(now(),0, \"Day\"), \"HH:mm:ss\")\u003c\"7:30:00\",\r todate(dateFormat(dateArithmetic(now(0),-1, \"Day\"), \"yyyy-MM-dd 13:00:00\")),\r if (dateFormat(dateArithmetic(now(),0, \"Day\"), \"HH:mm:ss\")\u003c\"13:00:00\",\r todate(dateFormat(dateArithmetic(now(),0, \"Day\"), \"yyyy-MM-dd HH:mm:ss\")), todate(dateFormat(dateArithmetic(now(0),0, \"Day\"), \"yyyy-MM-dd 13:00:00\"))))" + }, + { + "input": "Twilight", + "output": "if (dateFormat(dateArithmetic(now(),0, \"Day\"), \"HH:mm:ss\")\u003c\"13:00:00\",\r todate(dateFormat(dateArithmetic(now(0),-1, \"Day\"), \"yyyy-MM-dd 18:30:00\")),\r if (dateFormat(dateArithmetic(now(),0, \"Day\"), \"HH:mm:ss\")\u003c\"18:30:00\",\r todate(dateFormat(dateArithmetic(now(),0, \"Day\"), \"yyyy-MM-dd HH:mm:ss\")), todate(dateFormat(dateArithmetic(now(0),0, \"Day\"), \"yyyy-MM-dd 18:30:00\"))))" + }, + { + "input": "Night", + "output": "if (dateFormat(dateArithmetic(now(),0, \"Day\"), \"HH:mm:ss\")\u003c\"18:30:00\",\r todate(dateFormat(dateArithmetic(now(0),-1, \"Day\"), \"yyyy-MM-dd 23:30:00\")),\r if (dateFormat(dateArithmetic(now(),0, \"Day\"), \"HH:mm:ss\")\u003c\"23:30:00\",\r todate(dateFormat(dateArithmetic(now(),0, \"Day\"), \"yyyy-MM-dd HH:mm:ss\")), todate(dateFormat(dateArithmetic(now(0),0, \"Day\"), \"yyyy-MM-dd 23:30:00\"))))" + }, + { + "input": "Wrap Down", + "output": "if (dateFormat(dateArithmetic(now(),0, \"Day\"), \"HH:mm:ss\")\u003c\"23:30:00\",\r todate(dateFormat(dateArithmetic(now(0),0, \"Day\"), \"yyyy-MM-dd 2:30:00\")),\r if (dateFormat(dateArithmetic(now(),0, \"Day\"), \"HH:mm:ss\")\u003c\"2:30:00\",\r todate(dateFormat(dateArithmetic(now(),0, \"Day\"), \"yyyy-MM-dd HH:mm:ss\")), todate(dateFormat(dateArithmetic(now(0),0, \"Day\"), \"yyyy-MM-dd 2:30:00\"))))" + }, + { + "input": "Current Sort", + "output": "todate(dateFormat(dateArithmetic(now(),0, \"hour\"), \"yyyy-MM-dd HH:mm:ss\"))" + } + ], + "outputType": "expression", + "type": "map" + } + ], + "type": "property" + }, + "onChange": { + "enabled": null, + "script": "\t\n\tif self.getSibling(\"Period\").props.value !\u003d \"Custom\":\n\t\tself.props.value \u003d self.props.endDate" + } + }, + "props.maxDate": { + "binding": { + "config": { + "expression": "if(dateDiff({../StartTime.props.value},now(),\"day\") \u003c 7, now(),dateArithmetic({../StartTime.props.value}, 7, \"days\"))" + }, + "enabled": false, + "type": "expr" + } + }, + "props.minDate": { + "binding": { + "config": { + "expression": "{../StartTime.props.value}" + }, + "enabled": false, + "type": "expr" + } + } + }, + "props": { + "dismissOnSelect": false, + "enabled": false, + "endDate": { + "$": [ + "ts", + 201, + 1745580379838 + ], + "$ts": 1745580379000 + }, + "formattedValue": "Apr 25, 2025 3:26 PM", + "formattedValues": { + "date": "Mar 29, 2021", + "datetime": "Mar 29, 2021 1:37 PM", + "time": "1:37 PM" + }, + "maxDate": { + "$": [ + "ts", + 192, + 1745580390851 + ], + "$ts": 1745580390851 + }, + "minDate": { + "$": [ + "ts", + 192, + 1745580368842 + ], + "$ts": 1745578568000 + }, + "value": { + "$": [ + "ts", + 192, + 1745580379838 + ], + "$ts": 1745580379000 + } + }, + "type": "ia.input.date-time-input" + } + ], + "custom": { + "EndDate": { + "$": [ + "ts", + 192, + 1745580348821 + ], + "$ts": 1745580348000 + }, + "StartDate": { + "$": [ + "ts", + 192, + 1745580344826 + ], + "$ts": 1745578544000 + } + }, + "meta": { + "name": "Period_not_Global_0", + "visible": false + }, + "position": { + "height": 0.0269, + "width": 0.413, + "x": 0.4821, + "y": 0.0067 + }, + "propConfig": { + "custom.EndDate": { + "binding": { + "config": { + "path": "./EndTime.props.value" + }, + "enabled": false, + "type": "property" + } + }, + "custom.StartDate": { + "binding": { + "config": { + "path": "./StartTime.props.value" + }, + "enabled": false, + "type": "property" + } + }, + "meta.visible": { + "binding": { + "config": { + "expression": "{../Status_tab.props.currentTabIndex} \u003d 1 | {../Status_tab.props.currentTabIndex} \u003d 2" + }, + "enabled": false, + "type": "expr" + } + } + }, + "type": "ia.container.flex" + }, + { + "meta": { + "name": "DPMs" + }, + "position": { + "height": 0.9613, + "width": 1, + "y": 0.043 + }, + "propConfig": { + "meta.visible": { + "binding": { + "config": { + "path": "session.custom.show_dpm_view" + }, + "type": "property" + } + }, + "props.path": { + "binding": { + "config": { + "path": "session.custom.dpm_view_path" + }, + "type": "property" + } + }, + "props.style.opacity": { + "binding": { + "config": { + "path": "this.meta.visible" + }, + "transforms": [ + { + "fallback": null, + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": 100 + }, + { + "input": false, + "output": 0 + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "property" + } + } + }, + "type": "ia.display.view" + } + ], + "meta": { + "name": "root" + }, + "position": { + "x": 8, + "y": -39 + }, + "props": { + "mode": "percent", + "style": { + "backgroundColor": "#F1F1F1", + "overflow": "hidden" + } + }, + "type": "ia.container.coord" + } +} \ No newline at end of file diff --git a/.resources/7e1ea020afeb133a0df55111ef46ccc99a061c2113546ab8297823ff5fb42b06 b/.resources/7e1ea020afeb133a0df55111ef46ccc99a061c2113546ab8297823ff5fb42b06 new file mode 100644 index 00000000..4e5c6212 --- /dev/null +++ b/.resources/7e1ea020afeb133a0df55111ef46ccc99a061c2113546ab8297823ff5fb42b06 @@ -0,0 +1,7031 @@ +{ + "custom": {}, + "params": {}, + "props": { + "defaultSize": { + "height": 180, + "width": 240 + } + }, + "root": { + "children": [ + { + "meta": { + "name": "PMM" + }, + "position": { + "basis": "300px" + }, + "props": { + "elements": [ + { + "id": "defs1", + "name": "defs1", + "type": "defs" + }, + { + "elements": [ + { + "d": "m 237.89528,179.85836 0.5998,-0.0817 0.54531,-0.20439 0.43628,-0.32704 0.32692,-0.40882 0.0545,-0.49059 V 1.6134249 l -0.0545,-0.4496995 -0.32692,-0.40882019 -0.43628,-0.32704235 -0.54531,-0.20439684 -0.5998,-0.0817512 H 2.1592915 L 1.5594613,0.22346587 0.95963119,0.42786271 0.5233715,0.75490521 0.25075407,1.1637254 0.14179026,1.6134249 V 178.34574 l 0.10896381,0.49058 0.27261743,0.40883 0.43625969,0.32704 0.59983011,0.20439 0.5998302,0.0817 z", + "fill": { + "paint": "transparent" + }, + "id": "path1235-9", + "name": "path1235-9", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "M 34.659548,15.022652 V 164.89558 H 206.322 V 15.022652 Z", + "fill": { + "paint": "transparent" + }, + "id": "path1236-1", + "name": "path1236-1", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "M 34.659548,164.89558 Z", + "fill": { + "paint": "transparent" + }, + "id": "path1237-0", + "name": "path1237-0", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "M 40.494339,19.601425 V 160.31681 H 199.50565 V 19.601425 Z", + "fill": { + "paint": "transparent" + }, + "id": "path1238-8", + "name": "path1238-8", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "M 40.494339,160.31681 Z", + "fill": { + "paint": "transparent" + }, + "id": "path1239-5", + "name": "path1239-5", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "M 41.803076,20.950527 V 159.13124 H 197.81522 V 20.950527 Z", + "fill": { + "paint": "transparent" + }, + "id": "path1240-0", + "name": "path1240-0", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "M 41.803076,159.13124 Z", + "fill": { + "paint": "transparent" + }, + "id": "path1241-7", + "name": "path1241-7", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "M 208.17604,15.022652 V 164.8547 h 29.71924 V 15.022652 Z", + "fill": { + "paint": "transparent" + }, + "id": "path1242-9", + "name": "path1242-9", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "M 208.17604,164.8547 Z", + "fill": { + "paint": "transparent" + }, + "id": "path1243-0", + "name": "path1243-0", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "M 1.7775666,15.063535 V 164.89558 H 31.551297 V 15.063535 Z", + "fill": { + "paint": "transparent" + }, + "id": "path1244-5", + "name": "path1244-5", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "M 1.7775666,164.89558 Z", + "fill": { + "paint": "transparent" + }, + "id": "path1245-3", + "name": "path1245-3", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "M 34.659548,1.8995692 V 13.387375 H 237.89528 V 1.8995692 Z", + "fill": { + "paint": "transparent" + }, + "id": "path1246-4", + "name": "path1246-4", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "M 34.659548,13.387375 Z", + "fill": { + "paint": "transparent" + }, + "id": "path1247-1", + "name": "path1247-1", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "M 6.4672212,3.3713134 V 9.1765395 H 27.243394 V 3.3713134 Z", + "fill": { + "paint": "transparent" + }, + "id": "path1248-0", + "name": "path1248-0", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "M 6.4672212,4.5160078 V 9.1765395 H 10.393426 V 4.5160078 Z", + "fill": { + "paint": "transparent" + }, + "id": "path1249-4", + "name": "path1249-4", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "M 6.4672212,9.1765395 Z", + "fill": { + "paint": "transparent" + }, + "id": "path1250-8", + "name": "path1250-8", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "M 6.4672212,3.3713134 V 4.5160078 H 27.243394 V 3.3713134 Z", + "fill": { + "paint": "transparent" + }, + "id": "path1251-5", + "name": "path1251-5", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "M 6.4672212,4.5160078 Z", + "fill": { + "paint": "transparent" + }, + "id": "path1252-9", + "name": "path1252-9", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 23.371701,4.5160078 v 4.6605317 h 3.871693 V 4.5160078 Z", + "fill": { + "paint": "transparent" + }, + "id": "path1253-2", + "name": "path1253-2", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "M 23.371701,9.1765395 Z", + "fill": { + "paint": "transparent" + }, + "id": "path1254-5", + "name": "path1254-5", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "M 1.7775666,178.14132 V 166.93968 H 238.22247 v 11.20164 z", + "fill": { + "paint": "transparent" + }, + "id": "path1255-4", + "name": "path1255-4", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "M 1.7775666,166.93968 Z", + "fill": { + "paint": "transparent" + }, + "id": "path1256-1", + "name": "path1256-1", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 5.2675345,164.89558 2.2902887,-5.27376 2.181238,-5.31464", + "fill": { + "paint": "transparent" + }, + "id": "path1257-3", + "name": "path1257-3", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 11.15685,150.38253 1.799508,-5.15113 1.581378,-5.1511 1.472331,-5.192", + "fill": { + "paint": "transparent" + }, + "id": "path1258-9", + "name": "path1258-9", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 16.991618,130.88187 1.308734,-5.96875", + "fill": { + "paint": "transparent" + }, + "id": "path1259-5", + "name": "path1259-5", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 19.063798,120.86582 0.927012,-5.68259", + "fill": { + "paint": "transparent" + }, + "id": "path1260-8", + "name": "path1260-8", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 20.590641,111.09506 0.381721,-1.43088 0.218229,-1.47175 0.108965,-1.47175 -0.108965,-1.47175", + "fill": { + "paint": "transparent" + }, + "id": "path1261-2", + "name": "path1261-2", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "M 21.517676,101.16076 21.84487,94.946704 C 22.701905,69.986961 18.155849,44.934554 8.5393745,21.032283 L 6.030954,15.063532", + "fill": { + "paint": "transparent" + }, + "id": "path1262-7", + "name": "path1262-7", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 21.190493,105.24893 0.708881,-0.0409 c 2.79379,-0.43812 3.003728,-3.26579 0.327195,-3.92465 l -0.708885,-0.12264", + "fill": { + "paint": "transparent" + }, + "id": "path1263-9", + "name": "path1263-9", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 19.99081,115.18323 h 0.76342 c 2.804717,-0.26095 3.260944,-3.27192 0.545318,-3.96553 l -0.708907,-0.12264", + "fill": { + "paint": "transparent" + }, + "id": "path1264-6", + "name": "path1264-6", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 18.300352,124.91312 h 0.708911 c 2.878311,-0.19962 3.271832,-3.1336 0.76342,-3.88377 l -0.708885,-0.16356", + "fill": { + "paint": "transparent" + }, + "id": "path1265-1", + "name": "path1265-1", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 16.010067,134.8883 0.708904,0.0409 c 2.828316,-0.26367 3.44543,-2.93462 0.927016,-3.88377 l -0.654369,-0.16355", + "fill": { + "paint": "transparent" + }, + "id": "path1266-7", + "name": "path1266-7", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 9.7390612,154.30718 0.7088778,0.0817 c 2.783792,-0.0197 3.872595,-2.80179 1.363276,-3.80201 l -0.654365,-0.2044", + "fill": { + "paint": "transparent" + }, + "id": "path1267-7", + "name": "path1267-7", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 41.803076,159.13124 -1.308737,1.18557", + "fill": { + "paint": "transparent" + }, + "id": "path1268-1", + "name": "path1268-1", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 197.81522,159.13124 1.69047,1.18557", + "fill": { + "paint": "transparent" + }, + "id": "path1269-9", + "name": "path1269-9", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 197.81522,20.95052 1.69047,-1.349102", + "fill": { + "paint": "transparent" + }, + "id": "path1270-0", + "name": "path1270-0", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "M 41.803076,20.95052 40.494339,19.601418", + "fill": { + "paint": "transparent" + }, + "id": "path1271-3", + "name": "path1271-3", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 234.62341,64.448828 0.38174,-0.899398 v -1.062932 c -1.07521,-5.585822 -16.07294,-11.390366 -22.13943,-7.685789 l -0.76346,0.776756 -0.43624,0.899402 c -0.6398,5.844742 14.29157,11.868007 20.9943,9.321066 l 1.14517,-0.572345 z", + "fill": { + "paint": "transparent" + }, + "id": "path1272-4", + "name": "path1272-4", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 234.62341,81.005992 0.38174,-0.89941 v -1.062921 c -1.01337,-5.514283 -15.99569,-11.429209 -22.13943,-7.685792 l -0.76346,0.776752 -0.43624,0.899402 c -0.62709,5.855647 14.29248,11.864607 20.9943,9.321066 l 1.14517,-0.572334 z", + "fill": { + "paint": "transparent" + }, + "id": "path1273-1", + "name": "path1273-1", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 235.16876,98.380779 -0.65439,-0.817628 -1.03608,-0.654116 c -6.25739,-3.121323 -22.08493,1.607332 -22.30304,7.440505 l 0.2725,0.98117 0.65436,0.81763 c 5.53304,4.19448 21.15973,-0.29161 23.17554,-5.76434 l 0.10885,-1.022056 z", + "fill": { + "paint": "transparent" + }, + "id": "path1274-7", + "name": "path1274-7", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 235.16876,115.26501 -0.65439,-0.81765 -1.03608,-0.69499 c -6.51919,-3.0532 -22.03768,1.6455 -22.30304,7.48138 l 0.2725,0.94028 0.65436,0.85852 c 5.5994,4.20879 21.23154,-0.3761 23.17554,-5.76435 l 0.10885,-1.06292 z", + "fill": { + "paint": "transparent" + }, + "id": "path1275-5", + "name": "path1275-5", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 237.24092,178.67278 0.38169,-0.0409 0.27251,-0.16355 0.21808,-0.24528 0.10885,-0.2862 V 2.1039812 L 238.1132,1.8177954 237.89512,1.5725041 237.62261,1.4089638 237.24092,1.3680694 H 2.6500671 L 2.2683686,1.4089638 1.9957135,1.572504 1.7774835,1.8177953 1.7228693,2.1039812 V 177.93691 l 0.054615,0.2862 0.21823,0.24527 0.2726551,0.16356 0.3816985,0.0409 z", + "fill": { + "paint": "transparent" + }, + "id": "path1276-3", + "name": "path1276-3", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 238.22247,2.1039774 1.63589,-0.040895", + "fill": { + "paint": "transparent" + }, + "id": "path1277-3", + "name": "path1277-3", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "M 237.24092,1.3681033 V 0.14164663", + "fill": { + "paint": "transparent" + }, + "id": "path1278-2", + "name": "path1278-2", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "M 2.6500671,1.3681033 V 0.14164663", + "fill": { + "paint": "transparent" + }, + "id": "path1279-4", + "name": "path1279-4", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "M 1.7230506,2.1039774 H 0.14164663", + "fill": { + "paint": "transparent" + }, + "id": "path1280-1", + "name": "path1280-1", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 2.6500671,178.67278 v 1.18558", + "fill": { + "paint": "transparent" + }, + "id": "path1281-2", + "name": "path1281-2", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "M 1.7230506,177.93691 H 0.14164663", + "fill": { + "paint": "transparent" + }, + "id": "path1282-9", + "name": "path1282-9", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 238.22247,177.93691 h 1.63589", + "fill": { + "paint": "transparent" + }, + "id": "path1283-0", + "name": "path1283-0", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 237.24092,178.67278 v 1.18558", + "fill": { + "paint": "transparent" + }, + "id": "path1284-8", + "name": "path1284-8", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 54.345114,10.975341 0.381721,-1.3082151 1.854029,-2.6573218 0.327193,2.6573218 -0.327193,1.3082151", + "fill": { + "paint": "transparent" + }, + "id": "path1285-7", + "name": "path1285-7", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 54.726835,9.6671259 h 2.181211", + "fill": { + "paint": "transparent" + }, + "id": "path1286-4", + "name": "path1286-4", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "M 58.762095,7.0098041 57.671496,10.975341 H 59.8527", + "fill": { + "paint": "transparent" + }, + "id": "path1287-5", + "name": "path1287-5", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 62.088473,7.0098041 -1.090629,3.9655369 h 2.181234", + "fill": { + "paint": "transparent" + }, + "id": "path1288-6", + "name": "path1288-6", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 64.269684,10.975341 1.145145,-3.9655369 h 2.235772", + "fill": { + "paint": "transparent" + }, + "id": "path1289-8", + "name": "path1289-8", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 64.869537,9.0130144 h 1.090606", + "fill": { + "paint": "transparent" + }, + "id": "path1290-0", + "name": "path1290-0", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 64.269684,10.975341 h 2.235773", + "fill": { + "paint": "transparent" + }, + "id": "path1291-7", + "name": "path1291-7", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "M 67.596063,10.975341 68.741207,7.0098041 69.83181,10.975341 70.97695,7.0098041", + "fill": { + "paint": "transparent" + }, + "id": "path1292-7", + "name": "path1292-7", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 71.467725,9.0130144 h 2.235777", + "fill": { + "paint": "transparent" + }, + "id": "path1293-4", + "name": "path1293-4", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 74.248789,10.975341 h 1.635924 L 76.64816,10.321234 76.811738,9.6671259 76.484544,9.0130144 h -1.145145", + "fill": { + "paint": "transparent" + }, + "id": "path1294-3", + "name": "path1294-3", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 76.484567,9.0130144 0.70888,-0.6541116 0.21823,-0.6949909 -0.381724,-0.6541078 h -1.635921", + "fill": { + "paint": "transparent" + }, + "id": "path1295-1", + "name": "path1295-1", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "M 75.939252,7.0098041 74.794107,10.975341", + "fill": { + "paint": "transparent" + }, + "id": "path1296-3", + "name": "path1296-3", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 77.575172,10.975341 1.090605,-3.9655369 h 1.69046 l 0.38172,0.6541078 -0.218229,0.6949909 -0.76342,0.6541116 h -1.63592", + "fill": { + "paint": "transparent" + }, + "id": "path1297-6", + "name": "path1297-6", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 78.665777,9.0130144 1.090629,1.9623266", + "fill": { + "paint": "transparent" + }, + "id": "path1298-3", + "name": "path1298-3", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 80.901551,10.975341 0.327194,-1.3082151 1.908563,-2.6573218 0.327194,2.6573218 -0.381721,1.3082151", + "fill": { + "paint": "transparent" + }, + "id": "path1299-0", + "name": "path1299-0", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 81.228733,9.6671259 h 2.235746", + "fill": { + "paint": "transparent" + }, + "id": "path1300-1", + "name": "path1300-1", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 84.173391,10.975341 h 1.690428 L 86.57273,10.321234 87.33615,7.6639119 86.954451,7.0098041 h -1.63592", + "fill": { + "paint": "transparent" + }, + "id": "path1301-9", + "name": "path1301-9", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "M 85.863819,7.0098041 84.773214,10.975341", + "fill": { + "paint": "transparent" + }, + "id": "path1302-0", + "name": "path1302-0", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 88.644883,7.0098041 -1.145144,3.9655369 h 2.235772", + "fill": { + "paint": "transparent" + }, + "id": "path1303-4", + "name": "path1303-4", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 90.826117,10.975341 1.145145,-3.9655369 h 2.181234", + "fill": { + "paint": "transparent" + }, + "id": "path1304-2", + "name": "path1304-2", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 91.371432,9.0130144 h 1.145144", + "fill": { + "paint": "transparent" + }, + "id": "path1305-9", + "name": "path1305-9", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 90.826117,10.975341 h 2.23575", + "fill": { + "paint": "transparent" + }, + "id": "path1306-3", + "name": "path1306-3", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 95.297637,7.0098041 0.490779,2.0032103 -0.545314,1.9623266", + "fill": { + "paint": "transparent" + }, + "id": "path1307-1", + "name": "path1307-1", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "M 95.788416,9.0130144 97.478844,7.0098041", + "fill": { + "paint": "transparent" + }, + "id": "path1308-4", + "name": "path1308-4", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 42.184774,11.179753 0.05462,-0.08175", + "fill": { + "paint": "transparent" + }, + "id": "path1309-8", + "name": "path1309-8", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 42.239313,10.934462 0.05462,-0.286184", + "fill": { + "paint": "transparent" + }, + "id": "path1310-2", + "name": "path1310-2", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 42.184774,10.402996 -0.21823,0.776757", + "fill": { + "paint": "transparent" + }, + "id": "path1311-0", + "name": "path1311-0", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "M 38.912935,8.6450772 40.003566,6.192164", + "fill": { + "paint": "transparent" + }, + "id": "path1312-5", + "name": "path1312-5", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "M 39.785435,5.5789355 38.422158,8.5224317", + "fill": { + "paint": "transparent" + }, + "id": "path1313-5", + "name": "path1313-5", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "M 44.965838,10.607408 45.184069,10.40301", + "fill": { + "paint": "transparent" + }, + "id": "path1314-9", + "name": "path1314-9", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 45.402098,10.402996 -0.327194,0.327042", + "fill": { + "paint": "transparent" + }, + "id": "path1315-3", + "name": "path1315-3", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "M 39.512791,4.3115996 37.985922,5.4154103", + "fill": { + "paint": "transparent" + }, + "id": "path1316-2", + "name": "path1316-2", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 45.947386,11.384161 1.526865,-1.185573", + "fill": { + "paint": "transparent" + }, + "id": "path1317-8", + "name": "path1317-8", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "M 37.16796,6.8871586 V 8.9721313", + "fill": { + "paint": "transparent" + }, + "id": "path1318-7", + "name": "path1318-7", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "M 39.785435,7.5821495 V 7.990966", + "fill": { + "paint": "transparent" + }, + "id": "path1319-4", + "name": "path1319-4", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 40.112617,11.016225 v -0.4497", + "fill": { + "paint": "transparent" + }, + "id": "path1320-8", + "name": "path1320-8", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 40.330748,10.484759 v 0.531466", + "fill": { + "paint": "transparent" + }, + "id": "path1321-1", + "name": "path1321-1", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 40.548854,10.484759 v 0.531466", + "fill": { + "paint": "transparent" + }, + "id": "path1322-4", + "name": "path1322-4", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 40.766986,10.566525 v 0.4497", + "fill": { + "paint": "transparent" + }, + "id": "path1323-3", + "name": "path1323-3", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 41.094168,10.402996 v 0.613229", + "fill": { + "paint": "transparent" + }, + "id": "path1324-5", + "name": "path1324-5", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 41.3123,10.402996 v 0.694991", + "fill": { + "paint": "transparent" + }, + "id": "path1325-5", + "name": "path1325-5", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 41.530406,10.402996 v 0.694991", + "fill": { + "paint": "transparent" + }, + "id": "path1326-2", + "name": "path1326-2", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 41.748533,10.402996 v 0.613229", + "fill": { + "paint": "transparent" + }, + "id": "path1327-6", + "name": "path1327-6", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "M 42.021181,7.0506838 V 7.377725", + "fill": { + "paint": "transparent" + }, + "id": "path1328-8", + "name": "path1328-8", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "M 42.67555,7.0506838 V 7.377725", + "fill": { + "paint": "transparent" + }, + "id": "path1329-9", + "name": "path1329-9", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 42.893678,10.402996 v 0.776757", + "fill": { + "paint": "transparent" + }, + "id": "path1330-2", + "name": "path1330-2", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 43.11181,10.402996 v 0.694991", + "fill": { + "paint": "transparent" + }, + "id": "path1331-9", + "name": "path1331-9", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "M 43.11181,5.9877557 V 8.5633148", + "fill": { + "paint": "transparent" + }, + "id": "path1332-5", + "name": "path1332-5", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 43.329918,11.097987 v 0.08175", + "fill": { + "paint": "transparent" + }, + "id": "path1333-9", + "name": "path1333-9", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 43.54805,10.402996 v 0.776757", + "fill": { + "paint": "transparent" + }, + "id": "path1334-4", + "name": "path1334-4", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 43.766178,10.402996 v 0.776757", + "fill": { + "paint": "transparent" + }, + "id": "path1335-5", + "name": "path1335-5", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 43.984284,10.402996 v 0.08175", + "fill": { + "paint": "transparent" + }, + "id": "path1336-0", + "name": "path1336-0", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 44.093364,5.9468727 v 2.575559", + "fill": { + "paint": "transparent" + }, + "id": "path1337-5", + "name": "path1337-5", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 44.202415,10.484759 v 0.694994", + "fill": { + "paint": "transparent" + }, + "id": "path1338-8", + "name": "path1338-8", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 44.420547,10.484759 v 0.694994", + "fill": { + "paint": "transparent" + }, + "id": "path1339-8", + "name": "path1339-8", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "M 44.475059,7.0506838 V 7.377725", + "fill": { + "paint": "transparent" + }, + "id": "path1340-0", + "name": "path1340-0", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 44.529598,10.402996 v 0.08175", + "fill": { + "paint": "transparent" + }, + "id": "path1341-1", + "name": "path1341-1", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 44.856784,10.811816 v 0.367936", + "fill": { + "paint": "transparent" + }, + "id": "path1342-3", + "name": "path1342-3", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 45.074911,10.730054 v 0.449699", + "fill": { + "paint": "transparent" + }, + "id": "path1343-2", + "name": "path1343-2", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "M 45.456614,6.192164 V 6.8053921", + "fill": { + "paint": "transparent" + }, + "id": "path1344-2", + "name": "path1344-2", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "M 45.729285,7.6230326 V 8.3180197", + "fill": { + "paint": "transparent" + }, + "id": "path1345-2", + "name": "path1345-2", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "M 46.492703,6.192164 V 6.6418673", + "fill": { + "paint": "transparent" + }, + "id": "path1346-7", + "name": "path1346-7", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "M 46.710832,7.7865578 V 8.3180197", + "fill": { + "paint": "transparent" + }, + "id": "path1347-0", + "name": "path1347-0", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "M 48.23767,6.8871586 V 8.9721313", + "fill": { + "paint": "transparent" + }, + "id": "path1348-3", + "name": "path1348-3", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 42.511956,10.402996 0.108965,0.776757", + "fill": { + "paint": "transparent" + }, + "id": "path1349-1", + "name": "path1349-1", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 42.293851,10.648287 0.05462,0.286185", + "fill": { + "paint": "transparent" + }, + "id": "path1350-3", + "name": "path1350-3", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 42.402906,11.179753 v -0.08175", + "fill": { + "paint": "transparent" + }, + "id": "path1351-3", + "name": "path1351-3", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 40.712443,11.13887 0.05462,0.122647", + "fill": { + "paint": "transparent" + }, + "id": "path1352-7", + "name": "path1352-7", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 40.003566,6.192164 0.708877,1.3899855", + "fill": { + "paint": "transparent" + }, + "id": "path1353-0", + "name": "path1353-0", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 40.930575,7.990966 0.327194,0.5314657", + "fill": { + "paint": "transparent" + }, + "id": "path1354-9", + "name": "path1354-9", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 40.712443,5.5789355 1.63592,3.0252624", + "fill": { + "paint": "transparent" + }, + "id": "path1355-5", + "name": "path1355-5", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 44.638652,10.402996 0.21823,0.40882", + "fill": { + "paint": "transparent" + }, + "id": "path1356-5", + "name": "path1356-5", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 44.856784,10.402996 0.108964,0.204399", + "fill": { + "paint": "transparent" + }, + "id": "path1357-8", + "name": "path1357-8", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 37.931383,10.198588 1.581408,1.185573", + "fill": { + "paint": "transparent" + }, + "id": "path1358-3", + "name": "path1358-3", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "M 40.548854,11.261516 40.43989,11.179765", + "fill": { + "paint": "transparent" + }, + "id": "path1359-7", + "name": "path1359-7", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "M 47.419713,5.4154103 45.947386,4.3115996", + "fill": { + "paint": "transparent" + }, + "id": "path1360-8", + "name": "path1360-8", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 41.421354,11.99739 h 2.56293", + "fill": { + "paint": "transparent" + }, + "id": "path1361-3", + "name": "path1361-3", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 40.548854,11.261516 h 0.21823", + "fill": { + "paint": "transparent" + }, + "id": "path1362-7", + "name": "path1362-7", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "M 40.4398,11.179753 H 40.330835", + "fill": { + "paint": "transparent" + }, + "id": "path1363-9", + "name": "path1363-9", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 41.3123,11.179753 h 0.21823", + "fill": { + "paint": "transparent" + }, + "id": "path1364-3", + "name": "path1364-3", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 41.966669,11.179753 h 0.21823", + "fill": { + "paint": "transparent" + }, + "id": "path1365-9", + "name": "path1365-9", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 42.402906,11.179753 h 0.218229", + "fill": { + "paint": "transparent" + }, + "id": "path1366-1", + "name": "path1366-1", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 44.202415,11.179753 h 0.21823", + "fill": { + "paint": "transparent" + }, + "id": "path1367-8", + "name": "path1367-8", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 43.54805,11.179753 h 0.21823", + "fill": { + "paint": "transparent" + }, + "id": "path1368-2", + "name": "path1368-2", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 42.893678,11.179753 h 0.43624", + "fill": { + "paint": "transparent" + }, + "id": "path1369-8", + "name": "path1369-8", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 44.856784,11.179753 h 0.218229", + "fill": { + "paint": "transparent" + }, + "id": "path1370-0", + "name": "path1370-0", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "M 43.329918,11.097987 H 43.111689", + "fill": { + "paint": "transparent" + }, + "id": "path1371-1", + "name": "path1371-1", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "M 41.530406,11.097987 H 41.312175", + "fill": { + "paint": "transparent" + }, + "id": "path1372-8", + "name": "path1372-8", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 42.239313,11.097987 h 0.163578", + "fill": { + "paint": "transparent" + }, + "id": "path1373-4", + "name": "path1373-4", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 40.330748,11.016225 h 0.218231", + "fill": { + "paint": "transparent" + }, + "id": "path1374-8", + "name": "path1374-8", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "M 42.348363,10.934462 H 42.2394", + "fill": { + "paint": "transparent" + }, + "id": "path1375-6", + "name": "path1375-6", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "M 44.529598,10.484759 H 44.420634", + "fill": { + "paint": "transparent" + }, + "id": "path1376-0", + "name": "path1376-0", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "M 44.202415,10.484759 H 43.984223", + "fill": { + "paint": "transparent" + }, + "id": "path1377-9", + "name": "path1377-9", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 40.330748,10.484759 h 0.218231", + "fill": { + "paint": "transparent" + }, + "id": "path1378-3", + "name": "path1378-3", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 45.402098,10.402996 h -0.21823", + "fill": { + "paint": "transparent" + }, + "id": "path1379-0", + "name": "path1379-0", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 44.856784,10.402996 h -0.21823", + "fill": { + "paint": "transparent" + }, + "id": "path1380-0", + "name": "path1380-0", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 43.766178,10.402996 h -0.21823", + "fill": { + "paint": "transparent" + }, + "id": "path1381-8", + "name": "path1381-8", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "M 43.11181,10.402996 H 42.893617", + "fill": { + "paint": "transparent" + }, + "id": "path1382-7", + "name": "path1382-7", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "M 41.748533,10.402996 H 41.530341", + "fill": { + "paint": "transparent" + }, + "id": "path1383-6", + "name": "path1383-6", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "M 42.511956,10.402996 H 42.184763", + "fill": { + "paint": "transparent" + }, + "id": "path1384-3", + "name": "path1384-3", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "M 41.3123,10.402996 H 41.094145", + "fill": { + "paint": "transparent" + }, + "id": "path1385-5", + "name": "path1385-5", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 40.330748,10.402996 h 0.218231", + "fill": { + "paint": "transparent" + }, + "id": "path1386-6", + "name": "path1386-6", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 43.984284,10.402996 h 0.545314", + "fill": { + "paint": "transparent" + }, + "id": "path1387-5", + "name": "path1387-5", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "M 47.310662,9.9124135 H 38.094976", + "fill": { + "paint": "transparent" + }, + "id": "path1388-8", + "name": "path1388-8", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 38.094976,9.6262429 h 9.215686", + "fill": { + "paint": "transparent" + }, + "id": "path1389-3", + "name": "path1389-3", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 38.040461,8.931252 h 0.817961", + "fill": { + "paint": "transparent" + }, + "id": "path1390-9", + "name": "path1390-9", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 43.057275,8.931252 h 2.835599", + "fill": { + "paint": "transparent" + }, + "id": "path1391-4", + "name": "path1391-4", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 41.3123,8.8494854 h 1.199656", + "fill": { + "paint": "transparent" + }, + "id": "path1392-8", + "name": "path1392-8", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 44.093364,8.5224317 h 1.36325", + "fill": { + "paint": "transparent" + }, + "id": "path1393-3", + "name": "path1393-3", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 40.930575,7.990966 h -1.14514", + "fill": { + "paint": "transparent" + }, + "id": "path1394-9", + "name": "path1394-9", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "M 40.712443,7.5821495 H 39.785435", + "fill": { + "paint": "transparent" + }, + "id": "path1395-7", + "name": "path1395-7", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "M 42.021181,7.3777375 H 42.67555", + "fill": { + "paint": "transparent" + }, + "id": "path1396-6", + "name": "path1396-6", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 44.475059,7.3777375 h 0.981555", + "fill": { + "paint": "transparent" + }, + "id": "path1397-4", + "name": "path1397-4", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "M 45.892874,7.1733293 H 45.783909", + "fill": { + "paint": "transparent" + }, + "id": "path1398-5", + "name": "path1398-5", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "M 42.021181,7.0506838 H 42.67555", + "fill": { + "paint": "transparent" + }, + "id": "path1399-8", + "name": "path1399-8", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 44.475059,7.0506838 h 0.708907", + "fill": { + "paint": "transparent" + }, + "id": "path1400-6", + "name": "path1400-6", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 44.093364,5.9468727 h 1.090602", + "fill": { + "paint": "transparent" + }, + "id": "path1401-1", + "name": "path1401-1", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 45.674742,5.5789355 h -2.67201", + "fill": { + "paint": "transparent" + }, + "id": "path1402-5", + "name": "path1402-5", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 39.785435,5.5789355 h 0.927008", + "fill": { + "paint": "transparent" + }, + "id": "path1403-5", + "name": "path1403-5", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 43.984284,3.6983711 h -2.56293 l -0.708911,0.081752 -0.654365,0.2043984 -0.545287,0.3270412", + "fill": { + "paint": "transparent" + }, + "id": "path1404-1", + "name": "path1404-1", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 37.985922,5.4154103 -0.436237,0.4496996 -0.272654,0.490583 -0.108965,0.5314657", + "fill": { + "paint": "transparent" + }, + "id": "path1405-9", + "name": "path1405-9", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 37.16796,8.9721313 0.108965,0.3270412 0.381725,0.2452932 0.436231,0.081752", + "fill": { + "paint": "transparent" + }, + "id": "path1406-6", + "name": "path1406-6", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 47.310662,9.6262429 0.490776,-0.081752 0.327193,-0.2452932 0.108965,-0.3270413", + "fill": { + "paint": "transparent" + }, + "id": "path1407-4", + "name": "path1407-4", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "M 48.23767,6.8871586 48.128707,6.3556929 47.85609,5.8651099 47.419822,5.4154103", + "fill": { + "paint": "transparent" + }, + "id": "path1408-5", + "name": "path1408-5", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "M 45.947386,4.3115996 45.34756,3.9845584 44.693195,3.78016 43.984284,3.6984082", + "fill": { + "paint": "transparent" + }, + "id": "path1409-4", + "name": "path1409-4", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 39.512791,11.384161 0.545287,0.327042 0.654365,0.204398 0.708911,0.08175", + "fill": { + "paint": "transparent" + }, + "id": "path1410-2", + "name": "path1410-2", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 43.984284,11.99739 0.708911,-0.08175 0.654365,-0.204398 0.599826,-0.327041", + "fill": { + "paint": "transparent" + }, + "id": "path1411-5", + "name": "path1411-5", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "M 47.474251,10.198588 47.583215,10.075941 47.474251,9.9532947 47.310674,9.9123999", + "fill": { + "paint": "transparent" + }, + "id": "path1412-3", + "name": "path1412-3", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 38.094976,9.9124135 -0.163578,0.040895 -0.05462,0.1226465 0.05462,0.122647", + "fill": { + "paint": "transparent" + }, + "id": "path1413-2", + "name": "path1413-2", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "M 38.040461,8.931252 38.422158,8.5224317", + "fill": { + "paint": "transparent" + }, + "id": "path1414-6", + "name": "path1414-6", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 38.912935,8.6450772 -0.05462,0.2861842", + "fill": { + "paint": "transparent" + }, + "id": "path1415-8", + "name": "path1415-8", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "M 41.3123,8.8494854 41.257681,8.5224442", + "fill": { + "paint": "transparent" + }, + "id": "path1416-2", + "name": "path1416-2", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 42.348363,8.6041979 0.163578,0.2452932", + "fill": { + "paint": "transparent" + }, + "id": "path1417-6", + "name": "path1417-6", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "M 43.11181,5.9877557 43.002845,5.5789355", + "fill": { + "paint": "transparent" + }, + "id": "path1418-6", + "name": "path1418-6", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 43.057275,8.931252 0.05462,-0.3679361", + "fill": { + "paint": "transparent" + }, + "id": "path1419-3", + "name": "path1419-3", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "M 45.892874,8.931252 46.329107,8.8495002 46.601725,8.604207 46.710688,8.3180227", + "fill": { + "paint": "transparent" + }, + "id": "path1420-9", + "name": "path1420-9", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "M 46.710832,7.7865578 46.601868,7.5003716 46.32925,7.2550803 45.893014,7.1733293", + "fill": { + "paint": "transparent" + }, + "id": "path1421-4", + "name": "path1421-4", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 45.783792,7.1733293 0.327195,-0.081752 0.272655,-0.1635414 0.108963,-0.2861843", + "fill": { + "paint": "transparent" + }, + "id": "path1422-5", + "name": "path1422-5", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "M 46.492703,6.192164 46.38374,5.8651228 46.056546,5.6607244 45.674825,5.5789726", + "fill": { + "paint": "transparent" + }, + "id": "path1423-6", + "name": "path1423-6", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 45.729285,7.6230326 -0.05462,-0.1635414 -0.21823,-0.081752", + "fill": { + "paint": "transparent" + }, + "id": "path1424-2", + "name": "path1424-2", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 45.456614,8.5224317 0.21823,-0.040895 0.05462,-0.1635414", + "fill": { + "paint": "transparent" + }, + "id": "path1425-5", + "name": "path1425-5", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 45.456614,6.192164 -0.05462,-0.1635414 -0.21823,-0.081752", + "fill": { + "paint": "transparent" + }, + "id": "path1426-3", + "name": "path1426-3", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 45.183966,7.0506838 0.218231,-0.081752 0.05462,-0.1635414", + "fill": { + "paint": "transparent" + }, + "id": "path1427-5", + "name": "path1427-5", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 40.112617,11.016225 0.05462,0.08175 0.163578,0.08175", + "fill": { + "paint": "transparent" + }, + "id": "path1428-6", + "name": "path1428-6", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 40.712443,11.13887 0.05462,-0.122647", + "fill": { + "paint": "transparent" + }, + "id": "path1429-6", + "name": "path1429-6", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 40.766986,10.566525 -0.05462,-0.08175 -0.163578,-0.08175", + "fill": { + "paint": "transparent" + }, + "id": "path1430-1", + "name": "path1430-1", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 40.330748,10.402996 -0.163578,0.08175 -0.05462,0.08175", + "fill": { + "paint": "transparent" + }, + "id": "path1431-4", + "name": "path1431-4", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 41.094168,11.016225 0.05462,0.08175 0.163578,0.08175", + "fill": { + "paint": "transparent" + }, + "id": "path1432-4", + "name": "path1432-4", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 41.530406,11.179753 0.163578,-0.08175 0.05462,-0.08175", + "fill": { + "paint": "transparent" + }, + "id": "path1433-6", + "name": "path1433-6", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 182.8193,176.83311 v -4.12909 h 1.69043 l 0.54535,0.695 v 0.695 l -0.54535,0.65411 h -1.69043", + "fill": { + "paint": "transparent" + }, + "id": "path1434-2", + "name": "path1434-2", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 187.94517,176.83311 h -1.14513 l -0.59984,-0.69501 v -1.38997 l 0.59984,-0.65411 h 1.14513 l 0.54534,0.65411 v 1.38997 z", + "fill": { + "paint": "transparent" + }, + "id": "path1435-6", + "name": "path1435-6", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 189.63564,174.09402 0.59985,2.73909 0.54527,-2.73909 0.59985,2.73909 0.54535,-2.73909", + "fill": { + "paint": "transparent" + }, + "id": "path1436-8", + "name": "path1436-8", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 193.07108,175.44312 h 1.69043 l 0.59985,-0.69499 -0.59985,-0.65411 h -1.09062 l -0.59981,0.65411 v 1.38997 l 0.59981,0.69501 h 1.09062", + "fill": { + "paint": "transparent" + }, + "id": "path1437-2", + "name": "path1437-2", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 196.50652,176.83311 v -2.73909", + "fill": { + "paint": "transparent" + }, + "id": "path1438-5", + "name": "path1438-5", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 196.50652,175.44312 1.14512,-1.3491 h 0.54531 l 0.59982,0.65411", + "fill": { + "paint": "transparent" + }, + "id": "path1439-5", + "name": "path1439-5", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 199.94196,176.83311 v -4.12909 l 1.14512,2.7391 1.14512,-2.7391 v 4.12909", + "fill": { + "paint": "transparent" + }, + "id": "path1440-1", + "name": "path1440-1", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 205.06784,176.83311 h -1.14517 l -0.5453,-0.69501 v -1.38997 l 0.5453,-0.65411 h 1.14517 l 0.54526,0.65411 v 1.38997 z", + "fill": { + "paint": "transparent" + }, + "id": "path1441-0", + "name": "path1441-0", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 206.75827,176.83311 v -2.73909", + "fill": { + "paint": "transparent" + }, + "id": "path1442-1", + "name": "path1442-1", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 206.75827,175.44312 1.14512,-1.3491 h 0.59984 l 0.54532,0.65411 v 2.08498", + "fill": { + "paint": "transparent" + }, + "id": "path1443-5", + "name": "path1443-5", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 210.19367,176.83311 v -2.73909", + "fill": { + "paint": "transparent" + }, + "id": "path1444-1", + "name": "path1444-1", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 210.19367,173.39902 v -0.695", + "fill": { + "paint": "transparent" + }, + "id": "path1445-7", + "name": "path1445-7", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 211.33883,174.09402 h 2.29028", + "fill": { + "paint": "transparent" + }, + "id": "path1446-6", + "name": "path1446-6", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 212.48399,172.70402 v 3.43408 l 0.5453,0.69501 0.59982,-0.69501", + "fill": { + "paint": "transparent" + }, + "id": "path1447-0", + "name": "path1447-0", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 216.46474,176.83311 h -1.14516 l -0.54531,-0.69501 v -1.38997 l 0.54531,-0.65411 h 1.14516 l 0.59981,0.65411 v 1.38997 z", + "fill": { + "paint": "transparent" + }, + "id": "path1448-0", + "name": "path1448-0", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 218.20967,176.83311 v -2.73909", + "fill": { + "paint": "transparent" + }, + "id": "path1449-2", + "name": "path1449-2", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 218.20967,175.44312 1.14516,-1.3491 h 0.54531 l 0.59985,0.65411", + "fill": { + "paint": "transparent" + }, + "id": "path1450-4", + "name": "path1450-4", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 225.02602,176.1381 0.59984,0.69501 h 1.14516 l 0.54531,-0.69501 v -1.38997 l -0.54531,-0.65411 h -1.745 v -1.39 h 2.29031", + "fill": { + "paint": "transparent" + }, + "id": "path1451-3", + "name": "path1451-3", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 229.0613,176.83311 -0.59985,-0.69501 v -2.73908 l 0.59985,-0.695 h 0.54528 l 0.59984,0.695 v 2.73908 l -0.59984,0.69501 z", + "fill": { + "paint": "transparent" + }, + "id": "path1452-3", + "name": "path1452-3", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 231.89689,176.83311 -0.54531,-0.69501 v -2.73908 l 0.54531,-0.695 h 0.54532 l 0.5998,0.695 v 2.73908 l -0.5998,0.69501 z", + "fill": { + "paint": "transparent" + }, + "id": "path1453-6", + "name": "path1453-6", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 11.756676,161.17534 v -4.12906", + "fill": { + "paint": "transparent" + }, + "id": "path1454-2", + "name": "path1454-2", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 11.756676,159.78535 h 1.145145 l 1.145143,-1.34909", + "fill": { + "paint": "transparent" + }, + "id": "path1455-8", + "name": "path1455-8", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 12.901821,159.78535 1.145143,1.38999", + "fill": { + "paint": "transparent" + }, + "id": "path1456-2", + "name": "path1456-2", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 15.192109,157.04628 1.14514,4.12906 0.545315,-2.0441 0.59983,2.0441 1.145144,-4.12906", + "fill": { + "paint": "transparent" + }, + "id": "path1457-3", + "name": "path1457-3", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 19.772683,161.17534 v -4.12906", + "fill": { + "paint": "transparent" + }, + "id": "path1458-4", + "name": "path1458-4", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 19.772683,159.78535 1.14514,-1.34909 h 0.545314 l 0.59983,0.69498 v 2.0441", + "fill": { + "paint": "transparent" + }, + "id": "path1459-3", + "name": "path1459-3", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 5.3220769,139.75323 v -1.34909 l 1.1451443,-2.7391 1.1451444,2.7391 v 1.34909", + "fill": { + "paint": "transparent" + }, + "id": "path1460-4", + "name": "path1460-4", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "M 5.3220769,138.40414 H 7.6123656", + "fill": { + "paint": "transparent" + }, + "id": "path1461-3", + "name": "path1461-3", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 8.7575062,135.66504 v 4.08819 h 2.2902888", + "fill": { + "paint": "transparent" + }, + "id": "path1462-6", + "name": "path1462-6", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 12.19294,136.31916 0.545287,-0.65412 v 4.08819", + "fill": { + "paint": "transparent" + }, + "id": "path1463-8", + "name": "path1463-8", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 12.19294,139.75323 h 1.090601", + "fill": { + "paint": "transparent" + }, + "id": "path1464-4", + "name": "path1464-4", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 5.4311314,129.73719 v -1.3491 l 1.1451406,-2.73909 1.1451443,2.73909 v 1.3491", + "fill": { + "paint": "transparent" + }, + "id": "path1465-7", + "name": "path1465-7", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "M 5.4311314,128.38809 H 7.7214163", + "fill": { + "paint": "transparent" + }, + "id": "path1466-3", + "name": "path1466-3", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 8.8665607,125.649 v 4.08819 H 11.15685", + "fill": { + "paint": "transparent" + }, + "id": "path1467-9", + "name": "path1467-9", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 12.247451,126.34398 0.599853,-0.69498 h 1.145144 l 0.545288,0.69498 v 0.65411 l -0.545288,0.69499 h -1.145144 l -0.599853,0.69501 v 1.3491 h 2.290285", + "fill": { + "paint": "transparent" + }, + "id": "path1468-8", + "name": "path1468-8", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 5.4311314,120.17083 v -1.38999 l 1.1451406,-2.73909 1.1451443,2.73909 v 1.38999", + "fill": { + "paint": "transparent" + }, + "id": "path1469-0", + "name": "path1469-0", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "M 5.4311314,118.78084 H 7.7214163", + "fill": { + "paint": "transparent" + }, + "id": "path1470-0", + "name": "path1470-0", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 8.8665607,116.04175 v 4.12908 H 11.15685", + "fill": { + "paint": "transparent" + }, + "id": "path1471-8", + "name": "path1471-8", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 12.30199,116.73675 0.545314,-0.695 h 1.145144 l 0.599831,0.695 v 0.69499 l -0.599831,0.69498 h -0.545313", + "fill": { + "paint": "transparent" + }, + "id": "path1472-8", + "name": "path1472-8", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 13.992448,118.12672 0.599831,0.65412 v 0.69499 l -0.599831,0.695 h -1.145144 l -0.545314,-0.695", + "fill": { + "paint": "transparent" + }, + "id": "path1473-0", + "name": "path1473-0", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 5.4311314,110.03212 v -1.38998 l 1.1451406,-2.73909 1.1451443,2.73909 v 1.38998", + "fill": { + "paint": "transparent" + }, + "id": "path1474-5", + "name": "path1474-5", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "M 5.4311314,108.64214 H 7.7214163", + "fill": { + "paint": "transparent" + }, + "id": "path1475-1", + "name": "path1475-1", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 8.8665607,105.90305 v 4.12907 H 11.15685", + "fill": { + "paint": "transparent" + }, + "id": "path1476-4", + "name": "path1476-4", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "M 14.592279,108.64214 H 12.30199 l 1.690458,-2.73909 v 4.12907", + "fill": { + "paint": "transparent" + }, + "id": "path1477-3", + "name": "path1477-3", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 229.0613,78.921014 h -9.87004 l 5.07132,-5.355518 z", + "fill": { + "paint": "transparent" + }, + "id": "path1478-6", + "name": "path1478-6", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 228.62503,99.72988 h -9.87004 l 5.1259,5.35554 z", + "fill": { + "paint": "transparent" + }, + "id": "path1479-3", + "name": "path1479-3", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 221.48153,32.847147 0.0545,-0.163542", + "fill": { + "paint": "transparent" + }, + "id": "path1480-9", + "name": "path1480-9", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 221.59061,32.397443 0.0545,-0.449699", + "fill": { + "paint": "transparent" + }, + "id": "path1481-2", + "name": "path1481-2", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 221.48153,31.538927 -0.38173,1.30822", + "fill": { + "paint": "transparent" + }, + "id": "path1482-1", + "name": "path1482-1", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "M 215.81035,28.472785 217.7189,24.22107", + "fill": { + "paint": "transparent" + }, + "id": "path1483-9", + "name": "path1483-9", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 217.28266,23.117259 -2.34477,5.151114", + "fill": { + "paint": "transparent" + }, + "id": "path1484-8", + "name": "path1484-8", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 226.28026,31.906864 0.38173,-0.367936", + "fill": { + "paint": "transparent" + }, + "id": "path1485-2", + "name": "path1485-2", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 227.04368,31.538927 -0.59985,0.531462", + "fill": { + "paint": "transparent" + }, + "id": "path1486-3", + "name": "path1486-3", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 216.79189,20.95052 -2.61747,1.962331", + "fill": { + "paint": "transparent" + }, + "id": "path1487-4", + "name": "path1487-4", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 227.91615,33.215083 2.72651,-2.044093", + "fill": { + "paint": "transparent" + }, + "id": "path1488-0", + "name": "path1488-0", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 212.75664,25.447523 v 3.556724", + "fill": { + "paint": "transparent" + }, + "id": "path1489-2", + "name": "path1489-2", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 217.33724,26.6331 v 0.654108", + "fill": { + "paint": "transparent" + }, + "id": "path1490-3", + "name": "path1490-3", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "M 217.82802,32.520092 V 31.825098", + "fill": { + "paint": "transparent" + }, + "id": "path1491-1", + "name": "path1491-1", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 218.20967,31.661573 v 0.858519", + "fill": { + "paint": "transparent" + }, + "id": "path1492-9", + "name": "path1492-9", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 218.5914,31.661573 v 0.858519", + "fill": { + "paint": "transparent" + }, + "id": "path1493-8", + "name": "path1493-8", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 218.97313,31.825098 v 0.694994", + "fill": { + "paint": "transparent" + }, + "id": "path1494-9", + "name": "path1494-9", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 219.57295,31.538927 v 0.981165", + "fill": { + "paint": "transparent" + }, + "id": "path1495-8", + "name": "path1495-8", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 219.95468,31.538927 v 1.144691", + "fill": { + "paint": "transparent" + }, + "id": "path1496-9", + "name": "path1496-9", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 220.33638,31.538927 v 1.144691", + "fill": { + "paint": "transparent" + }, + "id": "path1497-1", + "name": "path1497-1", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 220.71811,31.538927 v 0.981165", + "fill": { + "paint": "transparent" + }, + "id": "path1498-3", + "name": "path1498-3", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 221.20888,25.692818 v 0.572345", + "fill": { + "paint": "transparent" + }, + "id": "path1499-5", + "name": "path1499-5", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 222.29946,25.692818 v 0.572345", + "fill": { + "paint": "transparent" + }, + "id": "path1500-1", + "name": "path1500-1", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 222.62665,31.538927 v 1.30822", + "fill": { + "paint": "transparent" + }, + "id": "path1501-4", + "name": "path1501-4", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 223.00838,31.538927 v 1.144691", + "fill": { + "paint": "transparent" + }, + "id": "path1502-2", + "name": "path1502-2", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 223.06292,23.853133 v 4.456124", + "fill": { + "paint": "transparent" + }, + "id": "path1503-5", + "name": "path1503-5", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 223.39013,32.683618 v 0.163541", + "fill": { + "paint": "transparent" + }, + "id": "path1504-3", + "name": "path1504-3", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 223.77182,31.538927 v 1.30822", + "fill": { + "paint": "transparent" + }, + "id": "path1505-8", + "name": "path1505-8", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 224.15351,31.538927 v 1.30822", + "fill": { + "paint": "transparent" + }, + "id": "path1506-9", + "name": "path1506-9", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 224.53524,31.538927 v 0.122647", + "fill": { + "paint": "transparent" + }, + "id": "path1507-2", + "name": "path1507-2", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 224.75336,23.812254 v 4.456119", + "fill": { + "paint": "transparent" + }, + "id": "path1508-8", + "name": "path1508-8", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 224.91698,31.661573 v 1.185574", + "fill": { + "paint": "transparent" + }, + "id": "path1509-7", + "name": "path1509-7", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 225.29871,31.661573 v 1.185574", + "fill": { + "paint": "transparent" + }, + "id": "path1510-0", + "name": "path1510-0", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 225.46229,25.692818 v 0.572345", + "fill": { + "paint": "transparent" + }, + "id": "path1511-1", + "name": "path1511-1", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 225.51678,31.538927 v 0.122647", + "fill": { + "paint": "transparent" + }, + "id": "path1512-4", + "name": "path1512-4", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 226.0621,32.233918 v 0.613229", + "fill": { + "paint": "transparent" + }, + "id": "path1513-8", + "name": "path1513-8", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 226.44383,32.070389 v 0.776758", + "fill": { + "paint": "transparent" + }, + "id": "path1514-1", + "name": "path1514-1", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 227.09818,24.180187 v 1.144694", + "fill": { + "paint": "transparent" + }, + "id": "path1515-9", + "name": "path1515-9", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 227.64352,26.673983 v 1.226453", + "fill": { + "paint": "transparent" + }, + "id": "path1516-3", + "name": "path1516-3", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 228.84315,24.180187 v 0.85852", + "fill": { + "paint": "transparent" + }, + "id": "path1517-5", + "name": "path1517-5", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 229.33392,26.960154 v 0.940282", + "fill": { + "paint": "transparent" + }, + "id": "path1518-9", + "name": "path1518-9", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 231.95143,25.447523 v 3.556724", + "fill": { + "paint": "transparent" + }, + "id": "path1519-7", + "name": "path1519-7", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 222.02685,31.538927 0.21807,1.30822", + "fill": { + "paint": "transparent" + }, + "id": "path1520-9", + "name": "path1520-9", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 221.64511,31.947744 0.10885,0.449699", + "fill": { + "paint": "transparent" + }, + "id": "path1521-8", + "name": "path1521-8", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 221.86326,32.847147 -0.0545,-0.163542", + "fill": { + "paint": "transparent" + }, + "id": "path1522-0", + "name": "path1522-0", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 218.86406,32.765384 0.10885,0.204398", + "fill": { + "paint": "transparent" + }, + "id": "path1523-1", + "name": "path1523-1", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 217.7189,24.22107 1.1997,2.41203", + "fill": { + "paint": "transparent" + }, + "id": "path1524-4", + "name": "path1524-4", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 219.30033,27.287208 0.54527,0.981165", + "fill": { + "paint": "transparent" + }, + "id": "path1525-7", + "name": "path1525-7", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 218.9186,23.117259 2.83562,5.314643", + "fill": { + "paint": "transparent" + }, + "id": "path1526-5", + "name": "path1526-5", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 225.68044,31.538927 0.38166,0.694991", + "fill": { + "paint": "transparent" + }, + "id": "path1527-5", + "name": "path1527-5", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 226.0621,31.538927 0.21808,0.367936", + "fill": { + "paint": "transparent" + }, + "id": "path1528-5", + "name": "path1528-5", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 214.06538,31.17099 2.72651,2.044093", + "fill": { + "paint": "transparent" + }, + "id": "path1529-0", + "name": "path1529-0", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 218.5914,32.969792 -0.16365,-0.122647", + "fill": { + "paint": "transparent" + }, + "id": "path1530-9", + "name": "path1530-9", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "M 230.53362,22.912851 227.91615,20.95052", + "fill": { + "paint": "transparent" + }, + "id": "path1531-2", + "name": "path1531-2", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 220.17279,34.278011 h 4.36245", + "fill": { + "paint": "transparent" + }, + "id": "path1532-8", + "name": "path1532-8", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 218.5914,32.969792 h 0.38173", + "fill": { + "paint": "transparent" + }, + "id": "path1533-2", + "name": "path1533-2", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 218.42782,32.847147 h -0.21807", + "fill": { + "paint": "transparent" + }, + "id": "path1534-4", + "name": "path1534-4", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 219.95468,32.847147 h 0.3817", + "fill": { + "paint": "transparent" + }, + "id": "path1535-5", + "name": "path1535-5", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 221.0998,32.847147 h 0.38173", + "fill": { + "paint": "transparent" + }, + "id": "path1536-0", + "name": "path1536-0", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "M 221.86326,32.847147 H 222.245", + "fill": { + "paint": "transparent" + }, + "id": "path1537-4", + "name": "path1537-4", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 224.91698,32.847147 h 0.38173", + "fill": { + "paint": "transparent" + }, + "id": "path1538-4", + "name": "path1538-4", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 223.77182,32.847147 h 0.38169", + "fill": { + "paint": "transparent" + }, + "id": "path1539-0", + "name": "path1539-0", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 222.62665,32.847147 h 0.76348", + "fill": { + "paint": "transparent" + }, + "id": "path1540-5", + "name": "path1540-5", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 226.0621,32.847147 h 0.38173", + "fill": { + "paint": "transparent" + }, + "id": "path1541-1", + "name": "path1541-1", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 223.39013,32.683618 h -0.38175", + "fill": { + "paint": "transparent" + }, + "id": "path1542-1", + "name": "path1542-1", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 220.33638,32.683618 h -0.3817", + "fill": { + "paint": "transparent" + }, + "id": "path1543-5", + "name": "path1543-5", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 221.53607,32.683618 h 0.2725", + "fill": { + "paint": "transparent" + }, + "id": "path1544-9", + "name": "path1544-9", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 218.20967,32.520092 h 0.38173", + "fill": { + "paint": "transparent" + }, + "id": "path1545-0", + "name": "path1545-0", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 221.75422,32.397443 h -0.16364", + "fill": { + "paint": "transparent" + }, + "id": "path1546-8", + "name": "path1546-8", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 225.51678,31.661573 h -0.21807", + "fill": { + "paint": "transparent" + }, + "id": "path1547-3", + "name": "path1547-3", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 224.91698,31.661573 h -0.38174", + "fill": { + "paint": "transparent" + }, + "id": "path1548-8", + "name": "path1548-8", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 218.20967,31.661573 h 0.38173", + "fill": { + "paint": "transparent" + }, + "id": "path1549-7", + "name": "path1549-7", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 227.04368,31.538927 h -0.38169", + "fill": { + "paint": "transparent" + }, + "id": "path1550-2", + "name": "path1550-2", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 226.0621,31.538927 h -0.38166", + "fill": { + "paint": "transparent" + }, + "id": "path1551-6", + "name": "path1551-6", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 224.15351,31.538927 h -0.38169", + "fill": { + "paint": "transparent" + }, + "id": "path1552-9", + "name": "path1552-9", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 223.00838,31.538927 h -0.38173", + "fill": { + "paint": "transparent" + }, + "id": "path1553-3", + "name": "path1553-3", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 220.71811,31.538927 h -0.38173", + "fill": { + "paint": "transparent" + }, + "id": "path1554-8", + "name": "path1554-8", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 222.02685,31.538927 h -0.54532", + "fill": { + "paint": "transparent" + }, + "id": "path1555-1", + "name": "path1555-1", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 219.95468,31.538927 h -0.38173", + "fill": { + "paint": "transparent" + }, + "id": "path1556-0", + "name": "path1556-0", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 218.20967,31.538927 h 0.38173", + "fill": { + "paint": "transparent" + }, + "id": "path1557-3", + "name": "path1557-3", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 224.53524,31.538927 h 0.98154", + "fill": { + "paint": "transparent" + }, + "id": "path1558-3", + "name": "path1558-3", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "M 230.37004,30.680407 H 214.33803", + "fill": { + "paint": "transparent" + }, + "id": "path1559-8", + "name": "path1559-8", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 214.33803,30.189825 h 16.03201", + "fill": { + "paint": "transparent" + }, + "id": "path1560-4", + "name": "path1560-4", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 214.28345,28.922485 h 1.41786", + "fill": { + "paint": "transparent" + }, + "id": "path1561-8", + "name": "path1561-8", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 222.89935,28.922485 h 5.0168", + "fill": { + "paint": "transparent" + }, + "id": "path1562-0", + "name": "path1562-0", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 219.95468,28.840722 h 2.07217", + "fill": { + "paint": "transparent" + }, + "id": "path1563-1", + "name": "path1563-1", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 224.75336,28.268373 h 2.34482", + "fill": { + "paint": "transparent" + }, + "id": "path1564-5", + "name": "path1564-5", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 219.30033,27.287208 h -1.96309", + "fill": { + "paint": "transparent" + }, + "id": "path1565-4", + "name": "path1565-4", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 218.9186,26.6331 h -1.58136", + "fill": { + "paint": "transparent" + }, + "id": "path1566-1", + "name": "path1566-1", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 221.20888,26.265163 h 1.09058", + "fill": { + "paint": "transparent" + }, + "id": "path1567-3", + "name": "path1567-3", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 225.46229,26.265163 h 1.63589", + "fill": { + "paint": "transparent" + }, + "id": "path1568-7", + "name": "path1568-7", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 227.91615,25.938109 h -0.27251", + "fill": { + "paint": "transparent" + }, + "id": "path1569-3", + "name": "path1569-3", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 221.20888,25.692818 h 1.09058", + "fill": { + "paint": "transparent" + }, + "id": "path1570-5", + "name": "path1570-5", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 225.46229,25.692818 h 1.14512", + "fill": { + "paint": "transparent" + }, + "id": "path1571-8", + "name": "path1571-8", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 224.75336,23.812254 h 1.85405", + "fill": { + "paint": "transparent" + }, + "id": "path1572-5", + "name": "path1572-5", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 227.47991,23.117259 h -4.58056", + "fill": { + "paint": "transparent" + }, + "id": "path1573-6", + "name": "path1573-6", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 217.28266,23.117259 h 1.63594", + "fill": { + "paint": "transparent" + }, + "id": "path1574-9", + "name": "path1574-9", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 224.53524,19.887592 h -4.36245 l -0.92703,0.08175 -0.92697,0.204398 -0.81797,0.327042 -0.70893,0.449699", + "fill": { + "paint": "transparent" + }, + "id": "path1575-0", + "name": "path1575-0", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 214.17442,22.912851 -0.59981,0.531462 -0.43627,0.613232 -0.2725,0.694991 -0.10886,0.694987", + "fill": { + "paint": "transparent" + }, + "id": "path1576-8", + "name": "path1576-8", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 212.75664,29.004247 0.10885,0.449704 0.38174,0.408816 0.49077,0.245293 0.59981,0.08175", + "fill": { + "paint": "transparent" + }, + "id": "path1577-9", + "name": "path1577-9", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 230.37004,30.189825 0.59981,-0.08175 0.49081,-0.245293 0.38169,-0.408817 0.10886,-0.449703", + "fill": { + "paint": "transparent" + }, + "id": "path1578-3", + "name": "path1578-3", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 231.95143,25.447523 -0.10885,-0.694987 -0.2725,-0.694991 -0.43623,-0.613232 -0.59986,-0.531462", + "fill": { + "paint": "transparent" + }, + "id": "path1579-6", + "name": "path1579-6", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 227.91615,20.95052 -0.7089,-0.4497 -0.81796,-0.327041 -0.927,-0.204398 -0.92705,-0.08175", + "fill": { + "paint": "transparent" + }, + "id": "path1580-0", + "name": "path1580-0", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 216.79189,33.215083 0.70893,0.4497 0.81797,0.327041 0.92697,0.204398 0.92703,0.08175", + "fill": { + "paint": "transparent" + }, + "id": "path1581-6", + "name": "path1581-6", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 224.53524,34.278011 0.92705,-0.08175 0.927,-0.204395 0.81796,-0.327041 0.7089,-0.4497", + "fill": { + "paint": "transparent" + }, + "id": "path1582-9", + "name": "path1582-9", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 230.64266,31.17099 0.10885,-0.204395 -0.10885,-0.204398 -0.2725,-0.08175", + "fill": { + "paint": "transparent" + }, + "id": "path1583-7", + "name": "path1583-7", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 214.33803,30.680407 -0.2725,0.08175 -0.10885,0.204399 0.10885,0.204398", + "fill": { + "paint": "transparent" + }, + "id": "path1584-8", + "name": "path1584-8", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 214.28345,28.922485 0.38175,-0.286184 0.2725,-0.367936", + "fill": { + "paint": "transparent" + }, + "id": "path1585-9", + "name": "path1585-9", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 215.81035,28.472785 -0.10885,0.4497", + "fill": { + "paint": "transparent" + }, + "id": "path1586-4", + "name": "path1586-4", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 219.95468,28.840722 -0.10885,-0.572349", + "fill": { + "paint": "transparent" + }, + "id": "path1587-1", + "name": "path1587-1", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 221.75422,28.431902 0.27251,0.40882", + "fill": { + "paint": "transparent" + }, + "id": "path1588-5", + "name": "path1588-5", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 223.06292,23.853133 -0.16364,-0.735874", + "fill": { + "paint": "transparent" + }, + "id": "path1589-6", + "name": "path1589-6", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "M 222.89935,28.922485 223.063,28.309257", + "fill": { + "paint": "transparent" + }, + "id": "path1590-6", + "name": "path1590-6", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 227.91615,28.922485 0.5453,-0.08175 0.43627,-0.204398 0.32694,-0.367936 0.10884,-0.367936", + "fill": { + "paint": "transparent" + }, + "id": "path1591-6", + "name": "path1591-6", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 229.33392,26.960154 -0.10884,-0.367936 -0.32694,-0.367936 -0.43627,-0.204398 -0.54531,-0.08175", + "fill": { + "paint": "transparent" + }, + "id": "path1592-6", + "name": "path1592-6", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 227.64352,25.938109 0.49078,-0.08175 0.38169,-0.204395 0.27251,-0.286188 0.0545,-0.327041", + "fill": { + "paint": "transparent" + }, + "id": "path1593-6", + "name": "path1593-6", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 228.84315,24.180187 -0.0545,-0.408816 -0.32694,-0.327042 -0.43623,-0.245293 -0.54531,-0.08175", + "fill": { + "paint": "transparent" + }, + "id": "path1594-7", + "name": "path1594-7", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 227.64352,26.673983 -0.10884,-0.204398 -0.16366,-0.122647 -0.2725,-0.08175", + "fill": { + "paint": "transparent" + }, + "id": "path1595-1", + "name": "path1595-1", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 227.09818,28.268373 0.2725,-0.08175 0.16366,-0.122647 0.10884,-0.163541", + "fill": { + "paint": "transparent" + }, + "id": "path1596-4", + "name": "path1596-4", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 227.09818,24.180187 -0.0545,-0.163542 -0.16366,-0.163541 -0.2725,-0.04089", + "fill": { + "paint": "transparent" + }, + "id": "path1597-0", + "name": "path1597-0", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 226.60741,25.692818 0.2725,-0.08175 0.16366,-0.122646 0.0545,-0.163542", + "fill": { + "paint": "transparent" + }, + "id": "path1598-6", + "name": "path1598-6", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 217.82802,32.520092 0.10885,0.204399 0.2725,0.122646", + "fill": { + "paint": "transparent" + }, + "id": "path1599-1", + "name": "path1599-1", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 218.86406,32.765384 0.10885,-0.245293", + "fill": { + "paint": "transparent" + }, + "id": "path1600-2", + "name": "path1600-2", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 218.97313,31.825098 -0.10885,-0.204399 -0.2725,-0.08175", + "fill": { + "paint": "transparent" + }, + "id": "path1601-1", + "name": "path1601-1", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 218.20967,31.538927 -0.2725,0.08175 -0.10885,0.204398", + "fill": { + "paint": "transparent" + }, + "id": "path1602-4", + "name": "path1602-4", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 219.57295,32.520092 0.10884,0.204399 0.27251,0.122646", + "fill": { + "paint": "transparent" + }, + "id": "path1603-9", + "name": "path1603-9", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 220.33638,32.847147 0.2725,-0.122647 0.10885,-0.204398", + "fill": { + "paint": "transparent" + }, + "id": "path1604-5", + "name": "path1604-5", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 222.02685,62.282092 0.98153,0.245278 1.03609,0.08176 c 2.23665,0.207843 6.18013,-0.440842 6.10741,-2.616443 l -0.21807,-0.490579 -0.38173,-0.449703 c -1.92945,-1.627098 -5.64757,-1.755873 -8.17959,-0.940282 l -0.76342,0.327038 -0.59985,0.408819", + "fill": { + "paint": "transparent" + }, + "id": "path1605-2", + "name": "path1605-2", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 221.0998,63.140611 1.25424,0.286195 1.41778,0.122639 c 2.83559,0.317499 8.21688,-0.699758 8.07053,-3.434078 l -0.2725,-0.654109 -0.49077,-0.613226 c -2.37392,-2.100651 -7.70518,-2.414077 -10.85159,-1.226458 l -1.03608,0.408815 -0.81801,0.531467 1.63597,0.286195", + "fill": { + "paint": "transparent" + }, + "id": "path1606-3", + "name": "path1606-3", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 221.0998,63.140611 0.92705,-0.858519", + "fill": { + "paint": "transparent" + }, + "id": "path1607-4", + "name": "path1607-4", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 224.75336,60.115352 h -5.78023 l -1.19969,-0.858519 -2.67198,1.430868 6.10742,1.389981 -1.14516,-0.940286 h 5.94387 z", + "fill": { + "paint": "transparent" + }, + "id": "path1608-1", + "name": "path1608-1", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 221.37249,120.49788 0.98155,0.2044 1.03609,0.12264 c 2.28751,0.0987 6.13556,-0.42994 6.10741,-2.65732 l -0.16366,-0.49058 -0.38169,-0.44969 c -1.91312,-1.57396 -5.7484,-1.77157 -8.23412,-0.9403 l -0.76343,0.32708 -0.59985,0.40881", + "fill": { + "paint": "transparent" + }, + "id": "path1609-5", + "name": "path1609-5", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 220.44546,121.31551 1.30876,0.28619 1.36324,0.1636 c 2.84195,0.20712 8.22865,-0.68479 8.07051,-3.47497 l -0.27251,-0.65411 -0.49076,-0.61323 c -2.25393,-2.0986 -7.83606,-2.3841 -10.85164,-1.22646 l -1.03608,0.40883 -0.81797,0.53147 1.63593,0.28615", + "fill": { + "paint": "transparent" + }, + "id": "path1610-2", + "name": "path1610-2", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 220.44546,121.31551 0.92703,-0.81763", + "fill": { + "paint": "transparent" + }, + "id": "path1611-3", + "name": "path1611-3", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 215.91942,118.16761 h 5.8348 l 1.03601,-1.14469 2.72655,1.59439 -5.94383,1.26734 1.09062,-0.94027 h -5.50761 z", + "fill": { + "paint": "transparent" + }, + "id": "path1612-1", + "name": "path1612-1", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "M 237.89528,13.387375 233.15109,8.767723 H 125.18043", + "fill": { + "paint": "transparent" + }, + "id": "path1613-6", + "name": "path1613-6", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 83.464479,1.8995692 5.016814,1.4308649 C 98.574012,6.0211404 109.14114,7.6373382 119.7819,8.4815486 l 5.39853,0.2861843", + "fill": { + "paint": "transparent" + }, + "id": "path1614-8", + "name": "path1614-8", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 237.89528,166.61264 -4.74419,4.61964 H 125.18043 c -12.49298,0.47353 -24.91416,2.28735 -36.69911,5.4373 l -5.016841,1.38999", + "fill": { + "paint": "transparent" + }, + "id": "path1615-8", + "name": "path1615-8", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 214.39257,92.493791 -1.19969,-3.188789 1.36327,-0.286158 0.59981,0.449692 0.21808,0.531473 -0.27251,0.613229 -1.30876,0.286158", + "fill": { + "paint": "transparent" + }, + "id": "path1616-2", + "name": "path1616-2", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 214.229,90.817641 1.90855,1.308214", + "fill": { + "paint": "transparent" + }, + "id": "path1617-7", + "name": "path1617-7", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 216.62832,90.858528 1.30874,-0.286196 0.2725,-0.613229 -0.65435,-0.408823 -0.87246,0.163594 -0.21809,0.613226 0.3817,1.062921 0.65439,0.449714 0.87243,-0.204436", + "fill": { + "paint": "transparent" + }, + "id": "path1618-7", + "name": "path1618-7", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 219.68202,91.349111 1.30874,-0.245279 0.27251,-0.65412 -0.65439,-0.408823 -0.87251,0.163594 -0.65434,-0.408827 0.21807,-0.613225 1.36324,-0.286158", + "fill": { + "paint": "transparent" + }, + "id": "path1619-1", + "name": "path1619-1", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 221.9178,89.754716 1.30874,-0.286196 0.2725,-0.613225 -0.65434,-0.449695 -0.87251,0.204398 -0.2725,0.613229 0.43624,1.062917 0.59988,0.449718 0.92697,-0.204436", + "fill": { + "paint": "transparent" + }, + "id": "path1620-2", + "name": "path1620-2", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 224.15351,88.160325 1.74501,-0.367955", + "fill": { + "paint": "transparent" + }, + "id": "path1621-6", + "name": "path1621-6", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + }, + { + "d": "m 224.64432,86.89298 0.98154,2.657319 0.6544,0.408823 0.21807,-0.613229", + "fill": { + "paint": "transparent" + }, + "id": "path1622-0", + "name": "path1622-0", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.283294" + }, + "type": "path" + } + ], + "id": "layer1", + "name": "layer1", + "type": "group" + } + ], + "viewBox": "0 0 240 180.00001" + }, + "type": "ia.shapes.svg" + } + ], + "meta": { + "name": "root" + }, + "props": { + "direction": "column" + }, + "type": "ia.container.flex" + } +} \ No newline at end of file diff --git a/.resources/810a238bbc47f7d0e81e59c4f46391b8eb85966f3025574742ff8cc969546ff9 b/.resources/810a238bbc47f7d0e81e59c4f46391b8eb85966f3025574742ff8cc969546ff9 new file mode 100644 index 00000000..00c1db96 --- /dev/null +++ b/.resources/810a238bbc47f7d0e81e59c4f46391b8eb85966f3025574742ff8cc969546ff9 @@ -0,0 +1,787 @@ +{ + "custom": { + "PLC_list": [ + "MCM01", + "MCM02", + "MCM03", + "MCM04", + "MCM05" + ], + "running_state": -1, + "state": 0, + "views_data": [] + }, + "params": { + "tagProps": [ + "System/MCM04/Station/Chute_JR/FL1038_2_JR1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "propConfig": { + "custom.PLC_list": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]Configuration/PLC" + }, + "transforms": [ + { + "code": "\tdevices \u003d system.util.jsonDecode(value)\n\tplcList \u003d []\n\tfor k in devices.keys():\n\t\tplcList.append(k)\n\t\t\n\treturn(sorted(set(plcList)))\n", + "type": "script" + } + ], + "type": "tag" + }, + "persistent": true + }, + "custom.running_state": { + "binding": { + "config": { + "expression": "try(jsonGet({session.custom.state_messages},{this.custom.tag_path_to_lookup}),-1)\t\r\n" + }, + "transforms": [ + { + "expression": "if({value} !\u003d -1, try(jsonGet({value},\"state\"),4),{value})", + "type": "expression" + } + ], + "type": "expr" + }, + "persistent": true + }, + "custom.state": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[0]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/STATE" + }, + "transforms": [ + { + "expression": "if(isNull({value}), 0, {value})", + "type": "expression" + }, + { + "fallback": null, + "inputType": "scalar", + "mappings": [ + { + "input": 3, + "output": 3 + }, + { + "input": 2, + "output": 2 + }, + { + "input": 1, + "output": 1 + }, + { + "input": 0, + "output": 0 + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + }, + "persistent": true + }, + "custom.views_data": { + "binding": { + "config": { + "struct": { + "equipment_id": "{view.params.tagProps[0]}" + }, + "waitOnAll": true + }, + "transforms": [ + { + "code": "\tproject_info \u003d system.perspective.getProjectInfo()\n\t#self.custom.views_data \u003d project_info\n\tviews \u003d project_info.get(\"views\")\n\t#equipment_id \u003d self.view.params.tagProps[0]\n\tviews_data \u003d [i for i in views if i[\"path\"].startswith(\"Custom-Views/\"+ value.equipment_id)]\n\t#self.custom.views_data \u003d views_data\n\t\n\treturn views_data", + "type": "script" + } + ], + "type": "expr-struct" + }, + "persistent": true + }, + "params.tagProps": { + "paramDirection": "input", + "persistent": true + } + }, + "props": { + "defaultSize": { + "width": 400 + } + }, + "root": { + "children": [ + { + "children": [ + { + "children": [ + { + "meta": { + "name": "Label" + }, + "position": { + "grow": 1 + }, + "propConfig": { + "props.text": { + "binding": { + "config": { + "expression": "\u0027Source ID: \u0027 + {view.params.tagProps[0]}" + }, + "type": "expr" + } + } + }, + "props": { + "style": { + "color": "#FFFF", + "fontFamily": "Arial", + "fontSize": 14, + "fontWeight": "bold", + "paddingLeft": 10 + } + }, + "type": "ia.display.label" + }, + { + "events": { + "dom": { + "onClick": { + "config": { + "script": "\tsystem.perspective.closeDock(\u0027Docked-Eas-TPR\u0027)\n\tself.getSibling(\"tabs\").props.currentTabIndex \u003d 0" + }, + "scope": "G", + "type": "script" + } + } + }, + "meta": { + "name": "Icon", + "tooltip": { + "enabled": true, + "style": { + "cursor": "pointer" + }, + "text": "Close faceplate" + } + }, + "props": { + "path": "material/close", + "style": { + "cursor": "pointer", + "marginBottom": 5, + "marginLeft": 5, + "marginRight": 5, + "marginTop": 5 + } + }, + "type": "ia.display.icon" + } + ], + "meta": { + "name": "FlexContainer" + }, + "position": { + "basis": "30px", + "shrink": 0 + }, + "props": { + "style": { + "overflow": "hidden" + } + }, + "type": "ia.container.flex" + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "meta": { + "name": "Label" + }, + "position": { + "basis": "32px", + "display": false + }, + "propConfig": { + "position.display": { + "binding": { + "config": { + "expression": "if({../AlarmTable.props.params.length_of_table_data} \u003d 0, True, False)" + }, + "enabled": false, + "type": "expr" + } + } + }, + "props": { + "style": { + "classes": "Labels/Label_1", + "marginTop": 20 + }, + "text": "No Active Alarms" + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "AlarmStatusTable" + }, + "position": { + "basis": "400px", + "grow": 1 + }, + "propConfig": { + "props.filters.active.text": { + "binding": { + "config": { + "path": "view.params.tagProps[0]" + }, + "transforms": [ + { + "code": "\treturn value[1:]", + "type": "script" + } + ], + "type": "property" + } + } + }, + "props": { + "columns": { + "active": { + "displayPath": { + "enabled": false + }, + "priority": { + "enabled": false + }, + "source": { + "enabled": false + }, + "state": { + "enabled": false + } + } + }, + "filters": { + "active": { + "priorities": { + "critical": false, + "high": false, + "low": false, + "medium": false + }, + "states": { + "clearUnacked": false + } + } + }, + "refreshRate": 500, + "toolbar": { + "enabled": false + } + }, + "type": "ia.display.alarmstatustable" + } + ], + "meta": { + "name": "Active_tab" + }, + "props": { + "direction": "column" + }, + "type": "ia.container.flex" + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "meta": { + "name": "NameField" + }, + "position": { + "basis": "50%", + "grow": 1 + }, + "props": { + "style": { + "paddingLeft": 20 + }, + "text": "NAME" + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "DeviceName" + }, + "position": { + "basis": "50%", + "grow": 1 + }, + "propConfig": { + "props.text": { + "binding": { + "config": { + "path": "view.params.tagProps[0]" + }, + "transforms": [ + { + "code": " return value.rsplit(\u0027/\u0027, 1)[-1]", + "type": "script" + } + ], + "type": "property" + } + } + }, + "props": { + "style": { + "backgroundColor": "#FFFFFF", + "classes": "Text-Styles/Ariel-Bold-12pt", + "paddingLeft": 10 + } + }, + "type": "ia.display.label" + } + ], + "meta": { + "name": "Name" + }, + "position": { + "basis": "35px" + }, + "props": { + "style": { + "classes": "PopUp-Styles/InfoLabel", + "overflow": "hidden" + } + }, + "type": "ia.container.flex" + } + ], + "meta": { + "name": "FlexContainer_0" + }, + "position": { + "basis": "35px" + }, + "props": { + "direction": "column" + }, + "type": "ia.container.flex" + }, + { + "children": [ + { + "children": [ + { + "meta": { + "name": "NameField" + }, + "position": { + "basis": "50%", + "grow": 1 + }, + "props": { + "style": { + "paddingLeft": 20 + }, + "text": "TIPPER FAULTED" + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "PB_Light" + }, + "position": { + "basis": "50%", + "grow": 1 + }, + "propConfig": { + "props.style.backgroundColor": { + "binding": { + "config": { + "path": "this.props.text" + }, + "transforms": [ + { + "fallback": "#D5D5D5", + "inputType": "scalar", + "mappings": [ + { + "input": "UNKNOWN", + "output": "#FFFFFF" + } + ], + "outputType": "color", + "type": "map" + } + ], + "type": "property" + } + }, + "props.text": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[0]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Tipper_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},\"UNKNOWN\")", + "type": "expression" + }, + { + "fallback": "UNKNOWN", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "FAULTED" + }, + { + "input": false, + "output": "NOT FAULTED" + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.textStyle.color": { + "binding": { + "config": { + "path": "this.props.text" + }, + "transforms": [ + { + "fallback": "#000000", + "inputType": "scalar", + "mappings": [ + { + "input": "NOT FAULTED", + "output": "#47FF47" + }, + { + "input": "FAULTED", + "output": "#FF0000" + } + ], + "outputType": "color", + "type": "map" + } + ], + "type": "property" + } + } + }, + "props": { + "style": { + "classes": "Text-Styles/Ariel-Bold-12pt", + "paddingLeft": 10 + } + }, + "type": "ia.display.label" + } + ], + "meta": { + "name": "Name" + }, + "position": { + "basis": "35px", + "shrink": 2 + }, + "props": { + "style": { + "classes": "PopUp-Styles/InfoLabel" + } + }, + "type": "ia.container.flex" + } + ], + "meta": { + "name": "FlexContainer_1" + }, + "position": { + "basis": "35px" + }, + "props": { + "direction": "column" + }, + "type": "ia.container.flex" + } + ], + "meta": { + "name": "Info_tab" + }, + "position": { + "tabIndex": 1 + }, + "props": { + "direction": "column", + "style": { + "margin-left": "" + } + }, + "type": "ia.container.flex" + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "events": { + "component": { + "onActionPerformed": { + "config": { + "script": "\ttag_name \u003d self.view.params.tagProps[0]\n\ttag_path \u003d \"[\" + self.session.custom.fc+ \"_SCADA_TAG_PROVIDER]\"+tag_name+\"/JR_PB\"\n\tsystem.tag.writeBlocking([tag_path],[True])" + }, + "scope": "G", + "type": "script" + } + } + }, + "meta": { + "name": "Button" + }, + "position": { + "basis": "80px", + "grow": 1 + }, + "propConfig": { + "props.enabled": { + "binding": { + "config": { + "expression": "indexOf({session.props.auth.user.roles}, \"Administrator\") \u003e\u003d 0 || indexOf({session.props.auth.user.roles}, \"Maintenance\") \u003e\u003d 0" + }, + "type": "expr" + } + }, + "props.style.backgroundColor": { + "binding": { + "config": { + "expression": "if(\r\n {this.props.enabled} \u003d False,\r\n \"#B17B50\",\r\n if(\r\n {this.props.text} \u003d \"ENABLED\",\r\n \"#00FF00\",\r\n if(\r\n {this.props.text} \u003d \"DISABLED\",\r\n \"#FF0000\",\r\n \"#FFFFFF\"\r\n )\r\n )\r\n)\r\n" + }, + "type": "expr" + } + }, + "props.text": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[0]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Enable_PB" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},0)", + "type": "expression" + }, + { + "fallback": "JAM RESET", + "inputType": "scalar", + "mappings": [ + { + "input": 1, + "output": "JAM RESET PRESSED" + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + } + }, + "props": { + "image": { + "icon": { + "path": "material/sync_problem" + } + }, + "style": { + "classes": "Background-Styles/Controller" + } + }, + "type": "ia.input.button" + } + ], + "meta": { + "name": "Reset Jam" + }, + "position": { + "basis": "35px" + }, + "props": { + "style": { + "classes": "PopUp-Styles/InfoLabel", + "padding": "" + } + }, + "type": "ia.container.flex" + } + ], + "meta": { + "name": "FlexContainer_0" + }, + "position": { + "basis": "100px", + "grow": 1 + }, + "props": { + "direction": "column", + "style": { + "gap": 6, + "paddingBottom": 20, + "paddingLeft": 10, + "paddingRight": 10, + "paddingTop": 13 + } + }, + "type": "ia.container.flex" + } + ], + "meta": { + "name": "Commands_tab" + }, + "position": { + "tabIndex": 2 + }, + "props": { + "direction": "column", + "style": { + "paddingTop": 1 + } + }, + "type": "ia.container.flex" + } + ], + "meta": { + "name": "tabs" + }, + "position": { + "grow": 1 + }, + "props": { + "currentTabIndex": 1, + "menuType": "modern", + "tabSize": { + "width": 1000 + }, + "tabStyle": { + "active": { + "classes": "", + "color": "#FFFFFF", + "fontFamily": "Arial", + "fontSize": 14, + "fontWeight": "bold", + "paddingLeft": 10 + }, + "inactive": { + "classes": "", + "color": "#B8B8B8", + "fontFamily": "Arial", + "fontSize": 14, + "fontWeight": "bold", + "paddingLeft": 10 + } + }, + "tabs": [ + "Alarms", + "Info", + "Commands" + ] + }, + "type": "ia.container.tab" + } + ], + "meta": { + "name": "FlexContainer_1" + }, + "position": { + "basis": "670px", + "grow": 1 + }, + "props": { + "style": { + "border-top": "1px solid white", + "gap": "" + } + }, + "type": "ia.container.flex" + } + ], + "meta": { + "name": "FlexContainer" + }, + "position": { + "basis": "800px", + "grow": 1 + }, + "props": { + "direction": "column" + }, + "type": "ia.container.flex" + } + ], + "meta": { + "name": "root" + }, + "props": { + "direction": "column", + "style": { + "classes": "Buttons/Button-Menu" + } + }, + "type": "ia.container.flex" + } +} \ No newline at end of file diff --git a/.resources/818715c2c7e2c688b11b4ebec9d72b602e4d38a298e72863fbc4f845c202b5d8 b/.resources/818715c2c7e2c688b11b4ebec9d72b602e4d38a298e72863fbc4f845c202b5d8 deleted file mode 100644 index 8ecfff91..00000000 Binary files a/.resources/818715c2c7e2c688b11b4ebec9d72b602e4d38a298e72863fbc4f845c202b5d8 and /dev/null differ diff --git a/.resources/2a6b7c350cf423b2f6d72cfcdb5b3162fe49486bf06fd94500a50f7657c19a62 b/.resources/81b7646b3be88c929b2da5cb97fc48a3f83ce66dcd42aba240b32739b5de2eed similarity index 99% rename from .resources/2a6b7c350cf423b2f6d72cfcdb5b3162fe49486bf06fd94500a50f7657c19a62 rename to .resources/81b7646b3be88c929b2da5cb97fc48a3f83ce66dcd42aba240b32739b5de2eed index 6d260de1..425f4ee7 100644 --- a/.resources/2a6b7c350cf423b2f6d72cfcdb5b3162fe49486bf06fd94500a50f7657c19a62 +++ b/.resources/81b7646b3be88c929b2da5cb97fc48a3f83ce66dcd42aba240b32739b5de2eed @@ -1,9 +1,9 @@ { "custom": { - "color": "#90EE90", + "color": "#C2C2C2", "priority": "No Active Alarms", - "state": "Normal", - "type": 3 + "state": "Closed", + "type": 0 }, "params": { "directionLeft": false, diff --git a/.resources/82815b27440b0df7cb2fe9b9e8e25914dfc1afe26d2df69c87d2ff58487b98a8 b/.resources/82815b27440b0df7cb2fe9b9e8e25914dfc1afe26d2df69c87d2ff58487b98a8 deleted file mode 100644 index aee0c35f..00000000 Binary files a/.resources/82815b27440b0df7cb2fe9b9e8e25914dfc1afe26d2df69c87d2ff58487b98a8 and /dev/null differ diff --git a/.resources/83e82a468013cfc574b6be90ca897405c346f0b845d3e802cc12e887b62c57c1 b/.resources/83e82a468013cfc574b6be90ca897405c346f0b845d3e802cc12e887b62c57c1 deleted file mode 100644 index 3f0cd715..00000000 --- a/.resources/83e82a468013cfc574b6be90ca897405c346f0b845d3e802cc12e887b62c57c1 +++ /dev/null @@ -1,1142 +0,0 @@ -{ - "custom": { - "key": { - "alt_pageid": "library", - "pageid": "library", - "start_time": { - "$": [ - "ts", - 192, - 1702653666845 - ], - "$ts": 1702653102761 - } - } - }, - "events": { - "system": { - "onStartup": { - "config": { - "script": "\t#############################################################################################\n\t# Purpose:\tThis script searches the current views in the parent project. Script compares \t#\n\t#\t\t\tthe information from S3 to make sure the correct paths and information is\t\t#\n\t#\t\t\tdisplayed to the child objects. Where the path is the key for the JSON\t\t\t#\n\t# Login: \t\t\tDate:\t\t\t\t#Comment:\t\t\t\t\t\t\t\tVersion:\t# \n\t# dmamani\t\t\t1/4/23\t\t\t\tRelease to Production\t\t\t\t\tV1\t\t\t#\n\t# \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t#\n\t#############################################################################################\n\t\t\n\t# - Params to Force Filters to show all symbols on the custom properties\n\tself.session.custom.alarm_filter.show_running \u003d True\n\tself.session.custom.alarm_filter.show_safety \u003d True\n\tself.session.custom.alarm_filter.show_diagnostic \u003d True\n\tself.session.custom.alarm_filter.show_gateways \u003d True\n\tself.session.custom.alarm_filter.show_low_alarm \u003d True\n\tfrom SymbolLibrary import list_categories, fetch_library, update_symbol_library\n\t# - Default Symbol JSON structure definitions\n\tdefault_symbol_info \u003d {\"description\": \"\",\t\"name\": \"\",\t\"category\": \"\",\"info\": \"\"} \n\t# - Get all Symbol Views and write them to tags\n\tproject_info \u003d system.perspective.getProjectInfo()\n\tviews \u003d project_info.get(\u0027views\u0027,[])\n\t# - Define criterias\n\tfilter_criterion \u003d \"Symbol-Views\"\n\tfilter_criterion2 \u003d \"Symbol-Library-Views\"\n\tfilter_criterion3 \u003d \"Controller-Views\"\n\tfilter_criterion4 \u003d \"Symbol-Views/Equipment-Views/Test\"\n\t# - Filter views that are not necessary for the symbol library and ensure the correct path\n\tfiltered_views \u003d [\n\t\tview for view in views \n\t\tif filter_criterion in view.get(\u0027path\u0027,\u0027\u0027) \n\t\tand not filter_criterion2 in view.get(\u0027path\u0027,\u0027\u0027) \n\t\tand not filter_criterion3 in view.get(\u0027path\u0027,\u0027\u0027)\n\t\tand not filter_criterion4 in view.get(\u0027path\u0027,\u0027\u0027)\n\t\t]\n\t# - Create JSON from the list \n\tjson_structure \u003d []\n\tsymbol_view_list \u003d []\n\tfor view in filtered_views:\n\t\tinstance \u003d {\n\t\t\t\"instanceStyle\": {\n\t\t\t\t\"classes\": \"\"\n\t\t\t},\n\t\t\t\"instancePosition\": {},\n\t\t\t\"Path\": view.get(\u0027path\u0027,\u0027\u0027),\n\t\t\t\"forceRunning\": 3,\n\t\t\t\"forceFault\": None\n\t\t}\n\t\tjson_structure.append(instance)\n\t\tsymbol_view_list.append(view.get(\u0027path\u0027,\u0027\u0027))\n\tjson_structure.sort(key \u003d lambda x:x[\u0027Path\u0027].split(\"/\")[len(x[\u0027Path\u0027].split(\"/\"))-1])\n\t# - Encode JSON for igniton variables to populate correctly\n\tjson_result \u003d system.util.jsonEncode(json_structure)\n\tself.params.Dataset \u003d filtered_views\n\tself.params.FilteredViews \u003d json_structure\n\tsystem.perspective.print(filtered_views)\n\t\n\t# - Get all Symbol Categories from JSON Dictionary\t\n\tremote_json \u003d fetch_library(username\u003dself.session.props.auth.user.userName)\n\tfor path in json_structure:\n\t\tif path[\"Path\"] not in remote_json:\n\t\t\tupdate_symbol_library(path[\"Path\"], username\u003dself.session.props.auth.user.userName, **default_symbol_info)\n\t\t\tremote_json[path[\"Path\"]] \u003d default_symbol_info\n\t# - Remove by key in case symbol does not exist in Folder Structure\n\tself.params.SymbolLibrary \u003d {k: v for k, v in remote_json.items() if k in symbol_view_list}\n\tcategory_data \u003d [{\"Category\": category} for category in list_categories(self.params.SymbolLibrary)]\n\tself.params.CategoryList \u003d category_data\n" - }, - "scope": "G", - "type": "script" - } - } - }, - "params": { - "CategoryList": [ - { - "Category": "ALL" - }, - { - "Category": "Control" - }, - { - "Category": "Device Status" - }, - { - "Category": "Equipment Status" - }, - { - "Category": "Field Device" - }, - { - "Category": "Machine" - }, - { - "Category": "Network" - }, - { - "Category": "Not in use" - }, - { - "Category": "Safety" - } - ], - "SelectedCategory": "", - "SelectedDescription": "", - "SelectedInfo": "", - "SelectedPath": "", - "SelectedRow": "ALL", - "SymbolDetails": { - "ARSAW": { - "category": "", - "description": "", - "info": "Test", - "path": "Symbol-Views/Equipment-Views/ARSAW" - }, - "AUS": { - "category": "A", - "description": "AUS DESCRIPTION AUS DESCRIPTIONAUS DESCRIPTIONAUS DESCRIPTIONAUS DESCRIPTIONAUS DESCRIPTIONAUS DESCRIPTIONAUS DESCRIPTIONAUS DESCRIPTIONAUS DESCRIPTIONAUS DESCRIPTIONAUS DESCRIPTIONAUS DESCRIPTIONAUS DESCRIPTIONAUS DESCRIPTIONAUS DESCRIPTIONAUS DESCRIPTIONAUS DESCRIPTION", - "info": "AUS INFO AUS INFO AUS INFO AUS INFO AUS INFO AUS INFO AUS INFO AUS INFO AUS INFO AUS INFO ", - "path": "Symbol-Views/Equipment-Views/AUS" - }, - "Camera": { - "category": "", - "description": "", - "info": "", - "path": "Symbol-Views/Equipment-Views/Camera" - }, - "ControlCabinet": { - "category": "", - "description": "", - "info": "### Symbol Information\nDate Created: 12/20/21\n\nCreated By: amazonuser\n\nSize: 10X10", - "path": "Symbol-Views/Equipment-Views/ControlCabinet" - }, - "DeviceStatus": { - "category": "B", - "description": "", - "info": "", - "path": "Symbol-Views/Device-Views/DeviceStatus" - }, - "DeviceStatus_old": { - "category": "", - "description": "", - "info": "", - "path": "Symbol-Views/Device-Views/DeviceStatus_old" - }, - "Estop": { - "category": "C", - "description": "E-stop description, E-stop description, E-stop description, E-stop description, E-stop description", - "info": "E-stop info, E-stop info, E-stop info, E-stop info, E-stop info, E-stop info, E-stop info", - "path": "Symbol-Views/Equipment-Views/Estop" - }, - "GoodsLift": { - "category": "", - "description": "", - "info": "", - "path": "Symbol-Views/Equipment-Views/GoodsLift" - }, - "JAM": { - "category": "", - "description": "", - "info": "", - "path": "Symbol-Views/Equipment-Views/JAM" - }, - "Light_Curtain": { - "category": "B", - "description": "", - "info": "", - "path": "Symbol-Views/Equipment-Views/Light_Curtain" - }, - "Main_Panel": { - "category": "", - "description": "", - "info": "", - "path": "Symbol-Views/Equipment-Views/Main_Panel" - }, - "Network": { - "category": "", - "description": "", - "info": "", - "path": "Symbol-Views/Equipment-Views/Network" - }, - "Pointer": { - "category": "", - "description": "", - "info": "", - "path": "Symbol-Views/Equipment-Views/Pointer" - }, - "PressureSwitch": { - "category": "", - "description": "", - "info": "", - "path": "Symbol-Views/Equipment-Views/PressureSwitch" - }, - "PullChord": { - "category": "", - "description": "", - "info": "", - "path": "Symbol-Views/Equipment-Views/PullChord" - }, - "PullChord_End": { - "category": "", - "description": "", - "info": "", - "path": "Symbol-Views/Equipment-Views/PullChord_End" - }, - "PullChord_Line": { - "category": "", - "description": "", - "info": "", - "path": "Symbol-Views/Equipment-Views/PullChord_Line" - }, - "PullChord_Line_Vertical": { - "category": "", - "description": "", - "info": "", - "path": "Symbol-Views/Equipment-Views/PullChord_Line_Vertical" - }, - "RFID": { - "category": "", - "description": "", - "info": "", - "path": "Symbol-Views/Equipment-Views/RFID" - }, - "Robot": { - "category": "", - "description": "", - "info": "", - "path": "Symbol-Views/Equipment-Views/Robot" - }, - "SLAMs": { - "category": "", - "description": "", - "info": "", - "path": "Symbol-Views/Equipment-Views/SLAMs" - }, - "SafetyGate": { - "category": "", - "description": "", - "info": "", - "path": "Symbol-Views/Equipment-Views/SafetyGate" - }, - "Stacker_Destacker": { - "category": "", - "description": "", - "info": "", - "path": "Symbol-Views/Equipment-Views/Stacker_Destacker" - }, - "Status": { - "category": "", - "description": "", - "info": "", - "path": "Symbol-Views/Equipment-Views/Status" - }, - "StatusNonPowered": { - "category": "", - "description": "", - "info": "", - "path": "Symbol-Views/Equipment-Views/StatusNonPowered" - }, - "StatusNonPowered_NS": { - "category": "", - "description": "", - "info": "", - "path": "Symbol-Views/Equipment-Views/StatusNonPowered_NS" - }, - "Status_NS": { - "category": "", - "description": "", - "info": "", - "path": "Symbol-Views/Equipment-Views/Status_NS" - }, - "THEA": { - "category": "", - "description": "", - "info": "", - "path": "Symbol-Views/Equipment-Views/THEA" - } - }, - "SymbolLibrary": { - "Symbol-Views/Device-Views/DeviceStatus": { - "category": "Device Status", - "description": "The Area status symbol, displaying different colors for running state\n\n", - "info": "### Device Status\n\nDate Created: \n- 12/20/21\n\nCreated By: \n- MAP Team\n\nDimensions: \n- width: 0.0146, height: 0.0565\n\n### Symbol Category\nDevice Status ", - "name": "DeviceStatus" - }, - "Symbol-Views/Device-Views/DeviceStatus_old": { - "category": "Not in use", - "description": "Deprecated", - "info": "### Symbol Information \n\nDate Created: \n- 12/20/21\n\nCreated By: \n- MAP Team\n\nDimensions: \n- width: 0.0146, height: 0.0565\n\n### Symbol Category\nNot In use", - "name": "DeviceStatus_old" - }, - "Symbol-Views/Device-Views/Estop": { - "category": "Safety", - "description": "Standard symbol for an e-stop device in the field or on the control cabinet Initiated by a human action and is intended to shut down equipment in the case of an emergency. The emergency stop device is a manual control device. It is the method of initiating the emergency stop function.", - "info": "### Symbol Information \n\nDate Created: \n- 12/20/21\n\nCreated By: \n- MAP Team\n\nDimensions: \n- Width: 0.0104, Height: 0.0185\n\n### Symbol Category\nSafety", - "name": "Estop" - }, - "Symbol-Views/Equipment-Views/ARSAW": { - "category": "Machine", - "description": "Amazon Robotics Semi Automated Workstation or ARSAW is a machine used in Amazon Robotics (AR) sortable buildings for the primary purpose of picking inventory items from the AR fields. An associate would pick items assigned to them on a VDU screen which would be scanned and transferred to pre-scanned totes stacked in a row along a flow rack. There are 5 totes per flow rack, once each tote is filled, it can be pushed through to the take away conveyor to be lifted by a four position carriage system. The tote would be then transferred across to a trunk conveyor for subsequent order consolidation.", - "info": "### ARSAW\nDate Created: \n- 12/20/21\n\nCreated By: \n- MAP Team\n\nDimensions: \n- Width: 0.026, height :0.0463\n\n### Symbol Category\nMachine ", - "name": "ARSAW" - }, - "Symbol-Views/Equipment-Views/AUS": { - "category": "Machine", - "description": "Amazon Universal Sorter (AUS); a modular high-density matrix sorter which includes integrated container management. The AUS is wholly owned by Amazon and developed using commodity components which are already being maintained by RME", - "info": "### AUS\nDate Created: \n- 12/20/21\n\nCreated By: \n- MAP Team\n\nDimensions: \n- Width: 0.026, height :0.0463\n\n### Symbol Category\nMachine ", - "name": "AUS" - }, - "Symbol-Views/Equipment-Views/Camera": { - "category": "Field Device", - "description": "Generic Camera Symbol for any Cameras used in the process flow of product", - "info": "### Camera\n\nDate Created: \n- 12/20/21\n\nCreated By: \n- MAP Team\n\nDimensions: \n- Width: 0.026, height :0.0463\n\n### Symbol Category\nField Device", - "name": "Camera" - }, - "Symbol-Views/Equipment-Views/CognexCamera": { - "category": "Device Status", - "description": "OR ELSE", - "info": "DELETE THIS ", - "name": "" - }, - "Symbol-Views/Equipment-Views/ControlCabinet": { - "category": "Control", - "description": "Generic Control Cabinet for any panel used in the design ", - "info": "### Control Cabinet\n\nDate Created: \n- 12/20/21\n\nCreated By: \n- MAP Team\n\nDimensions: \n- Remote control cabinets must use the following dimensions for smaller gateways width: 0.0104, height: 0.0185.\n- For larger remote panels width:0.013, height: 0.0185.\n\n### Symbol Category\nControl", - "name": "ControlCabinet" - }, - "Symbol-Views/Equipment-Views/Estop": { - "category": "Safety", - "description": "Standard symbol for an e-stop device in the field or on the control cabinet Initiated by a human action and is intended to shut down equipment in the case of an emergency. The emergency stop device is a manual control device. It is the method of initiating the emergency stop function..", - "info": "### E-STOP\n\nDate Created: \n- 12/20/21\n\nCreated By: \n- MAP Team\n\nDimensions: \n- Width: 0.0104, Height: 0.0185\n\n### Symbol Category\nSafety", - "name": "Estop" - }, - "Symbol-Views/Equipment-Views/GoodsLift": { - "category": "Machine", - "description": "Goods lifts or \"vertical reciprocating conveyors\" (VRCs) are systems which functionality is to move inventory or non-inventory between floor levels. In TNS buildings, they are a key player in the building throughput, as they are intended and used to move inventory to fill or empty the TNS pick tower. \n\nIn ARS buildings, they are used to move non-inventory (spares), non-conveyable items or even inventory as a contingency to conveyor capacity in the event of equipment failure. ", - "info": "### Goodslift\n\nDate Created: \n- 12/20/21\n\nCreated By: \n- MAP Team\n\nDimensions: \n- Width: 0.026, height :0.0463\n\n### Symbol Category\nMachine ", - "name": "GoodsLift" - }, - "Symbol-Views/Equipment-Views/JAM": { - "category": "Device Status", - "description": "Jam indicator that initiate downtime events. ", - "info": "### Jam\nDate Created: \n- 12/20/21\n\nCreated By: \n- MAP Team\n\nDimensions: \n- width: 0.0146, height: 0.0565\n\n### Symbol Category\nDevice Status", - "name": "JAM" - }, - "Symbol-Views/Equipment-Views/Light_Curtain": { - "category": "Safety", - "description": "A safety device used when light beams are obstructed and the outputs turn off, which signals a stop to the associated hazardous movement(s).", - "info": "### Light Curtain\n\nDate Created: \n- 12/20/21\n\nCreated By: \n- MAP Team\n\nDimensions: \n- Width: 0.0104, Height: 0.0185\n\n### Symbol Category\nSafety", - "name": "Light_Curtain" - }, - "Symbol-Views/Equipment-Views/Main_Panel": { - "category": "Control", - "description": "Generic Control Cabinet for any panel used in the design ", - "info": "### Panel\n\nDate Created: \n- 12/20/21\n\nCreated By: \n- MAP Team\n\nDimensions: \n- width:0.013, height: 0.0185.\n\n### Symbol Category\nControl", - "name": "Main_Panel" - }, - "Symbol-Views/Equipment-Views/Network": { - "category": "Network", - "description": "Symbol used to display a Network Panel used in industrial control environments or as a remote network panel for other devices that need to be in the same network. ", - "info": "### Camera\n\nDate Created: \n- 12/20/21\n\nCreated By: \n- MAP Team\n\nDimensions: \n- Width: 0.026, height :0.0463\n\n### Symbol Category\nField Device", - "name": "Network" - }, - "Symbol-Views/Equipment-Views/Pointer": { - "category": "Device Status", - "description": "The Pointer status symbol, displaying different colors for running state.\n\n", - "info": "### Pointer\n\nDate Created: \n- 12/20/21\n\nCreated By: \n- MAP Team\n\nDimensions: \n- width: 0.0146, height: 0.0565\n\n### Symbol Category\nDevice Status ", - "name": "Pointer" - }, - "Symbol-Views/Equipment-Views/PressureSwitch": { - "category": "Field Device", - "description": "Symbol for Pressure switches in the field, controlling the activation and deactivation of pumps in fluid systems when pressure thresholds are reached. They are also used in process control systems for maintaining steady pneumatic or mechanical pressure.", - "info": "### Pressure Switch\n\nDate Created: \n- 12/20/21\n\nCreated By: \n- MAP Team\n\nDimensions: \n- width:0.013, height: 0.0185.\n\n### Symbol Category\nField Device", - "name": "PressureSwitch" - }, - "Symbol-Views/Equipment-Views/PullChord": { - "category": "Safety", - "description": "Cable-pull safety rope switches allow operators to initiate an E-stop from any point along the installed cable length, providing protection for exposed conveyors or machines, or wherever equipment cannot be protected by guards.", - "info": "### Pullchord\n\nDate Created: \n- 12/20/21\n\nCreated By: \n- MAP Team\n\nDimensions: \n- Width: 0.026, height :0.0463\n\n### Symbol Category\nSafety", - "name": "PullChord" - }, - "Symbol-Views/Equipment-Views/PullChord_End": { - "category": "Safety", - "description": "Cable-pull safety rope switches allow operators to initiate an E-stop from any point along the installed cable length, providing protection for exposed conveyors or machines, or wherever equipment cannot be protected by guards.", - "info": "### Pull Chord - END\n\nDate Created: \n- 12/20/21\n\nCreated By: \n- MAP Team\n\nDimensions: \n- Width: 0.026, height :0.0463\n\n### Symbol Category\nMachine ", - "name": "PullChord_End" - }, - "Symbol-Views/Equipment-Views/PullChord_Line": { - "category": "Safety", - "description": "Cable-pull safety rope switches allow operators to initiate an E-stop from any point along the installed cable length, providing protection for exposed conveyors or machines, or wherever equipment cannot be protected by guards.", - "info": "### Pullchord Line\n\nDate Created: \n- 12/20/21\n\nCreated By: \n- MAP Team\n\nDimensions: \n- Width: 0.026, height :0.0463\n\n### Symbol Category\nSafety", - "name": "PullChord_Line" - }, - "Symbol-Views/Equipment-Views/PullChord_Line_Vertical": { - "category": "Safety", - "description": "Cable-pull safety rope switches allow operators to initiate an E-stop from any point along the installed cable length, providing protection for exposed conveyors or machines, or wherever equipment cannot be protected by guards.", - "info": "\n### Pullchord\n\nDate Created: \n- 12/20/21\n\nCreated By: \n- MAP Team\n\nDimensions: \n- Width: 0.026, height :0.0463\n\n### Symbol Category\nSafety", - "name": "PullChord_Line_Vertical" - }, - "Symbol-Views/Equipment-Views/RFID": { - "category": "Field Device", - "description": "Symbols for RFID devices. There is a device that reads information contained in a wireless device or “tag” from a distance without making any physical contact or requiring a line of sight.", - "info": "###RFID \n\nDate Created: \n- 12/20/21\n\nCreated By: \n- MAP Team\n\nDimensions: \n- width: 0.0146, height: 0.0565\n\n### Symbol Category\nField Device", - "name": "RFID" - }, - "Symbol-Views/Equipment-Views/Robot": { - "category": "Machine", - "description": "Symbol for Robots used in FC\u0027s. One example would be the RWC4. Robotic Work Cell 4 (RWC4) is the Robotic Tote Palletizer seen in IXDs and FCs which is a robotic arm that eliminates the manual tote stacking process at the end of Transship lanes by physically and virtually palletizing totes by destination. In addition to the process efficiency gains, a RWC4 improves Amazonian safety by minimizing the bending/twisting motion associated with manual palletizing. ", - "info": "###Robot\n\nDate Created: \n- 12/20/21\n\nCreated By: \n- MAP Team\n\nDimensions: \n- Width: 0.026, height :0.0463\n\n### Symbol Category\nMachine ", - "name": "Robot" - }, - "Symbol-Views/Equipment-Views/SLAMs": { - "category": "Machine", - "description": "Symbol used for SLAMs in FC\u0027s. SLAM (Scan/Label/Apply/Manifest) line is to collect package data including weight, dimensions, and barcode data, transmit this data to the Warehouse Management System (WMS) which performs various pre-ship validations to ensure the package has the correct items, labeling, and packaging. If all validations pass, a shipping label is printed and applied to the package via a Label Print and Apply unit (LPA), also called the printer assembly. Finally, the SPOO and shipping labels are scanned to confirm that the correct shipping label has been applied to the package. If the package fails any portion of the verification process it will be rejected at the kick-out line. ", - "info": "### SLAM \n\nDate Created: \n- 12/20/21\n\nCreated By: \n- MAP Team\n\nDimensions: \n- Width: 0.026, height :0.0463\n\n### Symbol Category\nMachine ", - "name": "SLAMs" - }, - "Symbol-Views/Equipment-Views/SafetyGate": { - "category": "Safety", - "description": "Access gate symbol that provides protection from falling regardless of the position of the doors.", - "info": "### Safety Gate\nDate Created: \n- 12/20/21\n\nCreated By: \n- MAP Team\n\nDimensions: \n- Width: 0.026, height :0.0463\n\n### Symbol Category\nSafety", - "name": "SafetyGate" - }, - "Symbol-Views/Equipment-Views/Stacker_Destacker": { - "category": "", - "description": "", - "info": "### Tote Stacker \u0026 Destacker\n\nDate Created: \n- 12/20/21\n\nCreated By: \n- MAP Team\n\nDimensions: \n- Width: 0.026, height :0.0463\n\n### Symbol Category\nMachine ", - "name": "Stacker_Destacker" - }, - "Symbol-Views/Equipment-Views/Status": { - "category": "Equipment Status", - "description": "", - "info": "### Status\n\nDate Created: \n- 12/20/21\n\nCreated By: \n- MAP Team\n\nDimensions: \n- width: 0.0146, height: 0.0565\n\n### Symbol Category\nEquipment Status ", - "name": "Status" - }, - "Symbol-Views/Equipment-Views/StatusNonPowered": { - "category": "Equipment Status", - "description": "Test ", - "info": "### Status Non Powered\n\nDate Created: \n- 12/20/21\n\nCreated By: \n- MAP Team\n\nDimensions: \n- width: 0.0146, height: 0.0565\n\n### Symbol Category\nEquipment Status ", - "name": "StatusNonPowered" - }, - "Symbol-Views/Equipment-Views/StatusNonPowered_NS": { - "category": "Equipment Status", - "description": "", - "info": "### Status Non Powered North and South\n\nDate Created: \n- 12/20/21\n\nCreated By: \n- MAP Team\n\nDimensions: \n- width: 0.0146, height: 0.0565\n\n### Symbol Category\nEquipment Status ", - "name": "StatusNonPowered_NS" - }, - "Symbol-Views/Equipment-Views/Status_NS": { - "category": "Equipment Status", - "description": "", - "info": "### Status North and South \n\nDate Created: \n- 12/20/21\n\nCreated By: \n- MAP Team\n\nDimensions: \n- width: 0.0146, height: 0.0565\n\n### Symbol Category\nEquipment Status ", - "name": "Status_NS" - }, - "Symbol-Views/Equipment-Views/THEA": { - "category": "Machine", - "description": "THEA ", - "info": "### THEA\n\nDate Created: \n- 12/20/21\n\nCreated By: \n- MAP Team\n\nDimensions: \n- Width: 0.026, height :0.0463\n\n### Symbol Category\nMachine ", - "name": "THEA" - } - } - }, - "propConfig": { - "custom.key": { - "persistent": true - }, - "params.CategoryList": { - "binding": { - "config": { - "bidirectional": true, - "path": "/root/Dashboard.props.widgets[0].viewParams.Categories" - }, - "type": "property" - }, - "paramDirection": "inout", - "persistent": true - }, - "params.Dataset": { - "binding": { - "config": { - "path": "/root/Dashboard.props.widgets[3].viewParams.Dataset" - }, - "type": "property" - } - }, - "params.FilteredViews": { - "binding": { - "config": { - "bidirectional": true, - "path": "/root/Dashboard.props.widgets[3].viewParams.FilteredViews" - }, - "type": "property" - } - }, - "params.SelectedCategory": { - "paramDirection": "input", - "persistent": true - }, - "params.SelectedDescription": { - "binding": { - "config": { - "bidirectional": true, - "path": "/root/Dashboard.props.widgets[1].viewParams.Description" - }, - "type": "property" - }, - "paramDirection": "inout", - "persistent": true - }, - "params.SelectedInfo": { - "binding": { - "config": { - "bidirectional": true, - "path": "/root/Dashboard.props.widgets[2].viewParams.Information" - }, - "type": "property" - }, - "paramDirection": "inout", - "persistent": true - }, - "params.SelectedPath": { - "paramDirection": "input", - "persistent": true - }, - "params.SelectedRow": { - "onChange": { - "enabled": null, - "script": "\tfrom SymbolLibrary import search_items\n\tsystem.perspective.print(currentValue.value)\n\titems \u003d [{\t\"instanceStyle\": {\n\t\t\t\t\"classes\": \"\"\n\t\t\t\t\t},\n\t\t\t\t\t\"instancePosition\": {},\n\t\t\t\t\t\"forceRunning\": 3,\n\t\t\t\t\t\"forceFault\": None,\n\t\t\t\t\"Path\": item} for item in search_items(self.params.SymbolLibrary,currentValue.value)]\n\tsystem.perspective.print(items)\n\tself.params.FilteredViews \u003d items\n\t\n\t" - }, - "paramDirection": "inout", - "persistent": true - }, - "params.SymbolDetails": { - "binding": { - "config": { - "path": "" - }, - "enabled": false, - "transforms": [ - { - "code": "\tfrom SymbolLibrary import library_items\n\treturn library_items", - "type": "script" - } - ], - "type": "property" - }, - "paramDirection": "inout", - "persistent": true - }, - "params.SymbolLibrary": { - "binding": { - "config": { - "path": "/root/Dashboard.props.widgets[3].viewParams.SymbolLibrary" - }, - "type": "property" - }, - "paramDirection": "inout", - "persistent": true - } - }, - "props": { - "defaultSize": { - "height": 786, - "width": 1196 - } - }, - "root": { - "children": [ - { - "events": { - "dom": { - "onDoubleClick": { - "config": { - "draggable": true, - "id": "editItem", - "modal": false, - "overlayDismiss": false, - "resizable": true, - "showCloseIcon": true, - "type": "open", - "viewParams": { - "btnTextPrimary": "Submit Changes", - "btnTextSecondary": "", - "editField1": "{view.params.SelectedCategory}", - "editField2": "{view.params.SelectedInfo}", - "editField3": "{view.params.SelectedDescription}", - "field1Description": "Category", - "field2Description": "Information", - "field3Description": "Description", - "message": " ", - "path": "{view.params.SelectedPath}", - "showCloseBtn": "False", - "title": "Update Symbol Details" - }, - "viewPath": "PopUp-Views/EditItem", - "viewportBound": false - }, - "scope": "C", - "type": "popup" - } - } - }, - "meta": { - "name": "Dashboard" - }, - "position": { - "basis": "400px", - "grow": 1 - }, - "propConfig": { - "props.widgets[0].viewParams.Dataset": { - "binding": { - "config": { - "path": "view.params.Dataset" - }, - "type": "property" - } - } - }, - "props": { - "editingToggle": false, - "stretch": { - "rowCount": 5 - }, - "widgets": [ - { - "body": { - "style": { - "classes": "" - } - }, - "header": { - "enabled": true, - "style": { - "classes": "" - }, - "title": "Category" - }, - "isConfigurable": false, - "minSize": { - "columnSpan": 1, - "rowSpan": 1 - }, - "name": "Category", - "position": { - "columnEnd": 3, - "columnStart": 1, - "rowEnd": 3, - "rowStart": 1 - }, - "style": { - "classes": "" - }, - "viewParams": { - "Categories": [ - { - "Category": "ALL" - }, - { - "Category": "Control" - }, - { - "Category": "Device Status" - }, - { - "Category": "Equipment Status" - }, - { - "Category": "Field Device" - }, - { - "Category": "Machine" - }, - { - "Category": "Network" - }, - { - "Category": "Not in use" - }, - { - "Category": "Safety" - } - ], - "SelectedRow": "" - }, - "viewPath": "Symbol-Views/Symbol-Library-Views/Symbol-Filter-View" - }, - { - "body": { - "style": { - "classes": "" - } - }, - "header": { - "enabled": true, - "style": { - "classes": "" - }, - "title": "Symbol Description" - }, - "isConfigurable": false, - "minSize": { - "columnSpan": 1, - "rowSpan": 1 - }, - "name": "Description", - "position": { - "columnEnd": 9, - "columnStart": 3, - "rowEnd": 6, - "rowStart": 4 - }, - "style": { - "classes": "" - }, - "viewParams": { - "Description": "" - }, - "viewPath": "Symbol-Views/Symbol-Library-Views/Selected-Symbol-Description" - }, - { - "body": { - "style": { - "classes": "" - } - }, - "header": { - "enabled": true, - "style": { - "classes": "" - }, - "title": "Symbol Information" - }, - "isConfigurable": false, - "minSize": { - "columnSpan": 1, - "rowSpan": 1 - }, - "name": "Information", - "position": { - "columnEnd": 3, - "columnStart": 1, - "rowEnd": 6, - "rowStart": 3 - }, - "style": { - "classes": "" - }, - "viewParams": { - "Information": "" - }, - "viewPath": "Symbol-Views/Symbol-Library-Views/Symbol-Information-View" - }, - { - "body": { - "style": { - "classes": "" - } - }, - "header": { - "enabled": true, - "style": { - "classes": "" - }, - "title": "Symbol Library - All Available Symbols" - }, - "isConfigurable": false, - "minSize": { - "columnSpan": 1, - "rowSpan": 1 - }, - "name": "Description", - "position": { - "columnEnd": 9, - "columnStart": 3, - "rowEnd": 4, - "rowStart": 1 - }, - "style": { - "classes": "" - }, - "viewParams": { - "Dataset": [ - { - "path": "Symbol-Views/Device-Views/DeviceStatus" - }, - { - "path": "Symbol-Views/Device-Views/DeviceStatus_old" - }, - { - "path": "Symbol-Views/Device-Views/Estop" - }, - { - "path": "Symbol-Views/Equipment-Views/ARSAW" - }, - { - "path": "Symbol-Views/Equipment-Views/AUS" - }, - { - "path": "Symbol-Views/Equipment-Views/Camera" - }, - { - "path": "Symbol-Views/Equipment-Views/ControlCabinet" - }, - { - "path": "Symbol-Views/Equipment-Views/Estop" - }, - { - "path": "Symbol-Views/Equipment-Views/GoodsLift" - }, - { - "path": "Symbol-Views/Equipment-Views/JAM" - }, - { - "path": "Symbol-Views/Equipment-Views/Light_Curtain" - }, - { - "path": "Symbol-Views/Equipment-Views/Main_Panel" - }, - { - "path": "Symbol-Views/Equipment-Views/Network" - }, - { - "path": "Symbol-Views/Equipment-Views/Pointer" - }, - { - "path": "Symbol-Views/Equipment-Views/PressureSwitch" - }, - { - "path": "Symbol-Views/Equipment-Views/PullChord" - }, - { - "path": "Symbol-Views/Equipment-Views/PullChord_End" - }, - { - "path": "Symbol-Views/Equipment-Views/PullChord_Line" - }, - { - "path": "Symbol-Views/Equipment-Views/PullChord_Line_Vertical" - }, - { - "path": "Symbol-Views/Equipment-Views/RFID" - }, - { - "path": "Symbol-Views/Equipment-Views/Robot" - }, - { - "path": "Symbol-Views/Equipment-Views/SLAMs" - }, - { - "path": "Symbol-Views/Equipment-Views/SafetyGate" - }, - { - "path": "Symbol-Views/Equipment-Views/Stacker_Destacker" - }, - { - "path": "Symbol-Views/Equipment-Views/Status" - }, - { - "path": "Symbol-Views/Equipment-Views/StatusNonPowered" - }, - { - "path": "Symbol-Views/Equipment-Views/StatusNonPowered_NS" - }, - { - "path": "Symbol-Views/Equipment-Views/Status_NS" - }, - { - "path": "Symbol-Views/Equipment-Views/THEA" - }, - { - "path": "Symbol-Views/Equipment-Views/Test" - } - ], - "FilteredViews": [ - { - "Path": "Symbol-Views/Equipment-Views/ARSAW", - "forceFault": null, - "forceRunning": 3, - "instancePosition": {}, - "instanceStyle": { - "classes": "" - } - }, - { - "Path": "Symbol-Views/Equipment-Views/AUS", - "forceFault": null, - "forceRunning": 3, - "instancePosition": {}, - "instanceStyle": { - "classes": "" - } - }, - { - "Path": "Symbol-Views/Equipment-Views/Camera", - "forceFault": null, - "forceRunning": 3, - "instancePosition": {}, - "instanceStyle": { - "classes": "" - } - }, - { - "Path": "Symbol-Views/Equipment-Views/CognexCamera", - "forceFault": null, - "forceRunning": 3, - "instancePosition": {}, - "instanceStyle": { - "classes": "" - } - }, - { - "Path": "Symbol-Views/Equipment-Views/ControlCabinet", - "forceFault": null, - "forceRunning": 3, - "instancePosition": {}, - "instanceStyle": { - "classes": "" - } - }, - { - "Path": "Symbol-Views/Device-Views/DeviceStatus", - "forceFault": null, - "forceRunning": 3, - "instancePosition": {}, - "instanceStyle": { - "classes": "" - } - }, - { - "Path": "Symbol-Views/Device-Views/DeviceStatus_old", - "forceFault": null, - "forceRunning": 3, - "instancePosition": {}, - "instanceStyle": { - "classes": "" - } - }, - { - "Path": "Symbol-Views/Device-Views/Estop", - "forceFault": null, - "forceRunning": 3, - "instancePosition": {}, - "instanceStyle": { - "classes": "" - } - }, - { - "Path": "Symbol-Views/Equipment-Views/Estop", - "forceFault": null, - "forceRunning": 3, - "instancePosition": {}, - "instanceStyle": { - "classes": "" - } - }, - { - "Path": "Symbol-Views/Equipment-Views/GoodsLift", - "forceFault": null, - "forceRunning": 3, - "instancePosition": {}, - "instanceStyle": { - "classes": "" - } - }, - { - "Path": "Symbol-Views/Equipment-Views/JAM", - "forceFault": null, - "forceRunning": 3, - "instancePosition": {}, - "instanceStyle": { - "classes": "" - } - }, - { - "Path": "Symbol-Views/Equipment-Views/Light_Curtain", - "forceFault": null, - "forceRunning": 3, - "instancePosition": {}, - "instanceStyle": { - "classes": "" - } - }, - { - "Path": "Symbol-Views/Equipment-Views/Main_Panel", - "forceFault": null, - "forceRunning": 3, - "instancePosition": {}, - "instanceStyle": { - "classes": "" - } - }, - { - "Path": "Symbol-Views/Equipment-Views/Network", - "forceFault": null, - "forceRunning": 3, - "instancePosition": {}, - "instanceStyle": { - "classes": "" - } - }, - { - "Path": "Symbol-Views/Equipment-Views/Pointer", - "forceFault": null, - "forceRunning": 3, - "instancePosition": {}, - "instanceStyle": { - "classes": "" - } - }, - { - "Path": "Symbol-Views/Equipment-Views/PressureSwitch", - "forceFault": null, - "forceRunning": 3, - "instancePosition": {}, - "instanceStyle": { - "classes": "" - } - }, - { - "Path": "Symbol-Views/Equipment-Views/PullChord", - "forceFault": null, - "forceRunning": 3, - "instancePosition": {}, - "instanceStyle": { - "classes": "" - } - }, - { - "Path": "Symbol-Views/Equipment-Views/PullChord_End", - "forceFault": null, - "forceRunning": 3, - "instancePosition": {}, - "instanceStyle": { - "classes": "" - } - }, - { - "Path": "Symbol-Views/Equipment-Views/PullChord_Line", - "forceFault": null, - "forceRunning": 3, - "instancePosition": {}, - "instanceStyle": { - "classes": "" - } - }, - { - "Path": "Symbol-Views/Equipment-Views/PullChord_Line_Vertical", - "forceFault": null, - "forceRunning": 3, - "instancePosition": {}, - "instanceStyle": { - "classes": "" - } - }, - { - "Path": "Symbol-Views/Equipment-Views/RFID", - "forceFault": null, - "forceRunning": 3, - "instancePosition": {}, - "instanceStyle": { - "classes": "" - } - }, - { - "Path": "Symbol-Views/Equipment-Views/Robot", - "forceFault": null, - "forceRunning": 3, - "instancePosition": {}, - "instanceStyle": { - "classes": "" - } - }, - { - "Path": "Symbol-Views/Equipment-Views/SLAMs", - "forceFault": null, - "forceRunning": 3, - "instancePosition": {}, - "instanceStyle": { - "classes": "" - } - }, - { - "Path": "Symbol-Views/Equipment-Views/SafetyGate", - "forceFault": null, - "forceRunning": 3, - "instancePosition": {}, - "instanceStyle": { - "classes": "" - } - }, - { - "Path": "Symbol-Views/Equipment-Views/Stacker_Destacker", - "forceFault": null, - "forceRunning": 3, - "instancePosition": {}, - "instanceStyle": { - "classes": "" - } - }, - { - "Path": "Symbol-Views/Equipment-Views/Status", - "forceFault": null, - "forceRunning": 3, - "instancePosition": {}, - "instanceStyle": { - "classes": "" - } - }, - { - "Path": "Symbol-Views/Equipment-Views/StatusNonPowered", - "forceFault": null, - "forceRunning": 3, - "instancePosition": {}, - "instanceStyle": { - "classes": "" - } - }, - { - "Path": "Symbol-Views/Equipment-Views/StatusNonPowered_NS", - "forceFault": null, - "forceRunning": 3, - "instancePosition": {}, - "instanceStyle": { - "classes": "" - } - }, - { - "Path": "Symbol-Views/Equipment-Views/Status_NS", - "forceFault": null, - "forceRunning": 3, - "instancePosition": {}, - "instanceStyle": { - "classes": "" - } - }, - { - "Path": "Symbol-Views/Equipment-Views/THEA", - "forceFault": null, - "forceRunning": 3, - "instancePosition": {}, - "instanceStyle": { - "classes": "" - } - } - ], - "SelectedValue": "", - "SymbolLibrary": "", - "key": "" - }, - "viewPath": "Symbol-Views/Symbol-Library-Views/Symbol-Icons-View" - } - ] - }, - "type": "ia.display.dashboard" - } - ], - "meta": { - "name": "root" - }, - "scripts": { - "customMethods": [], - "extensionFunctions": null, - "messageHandlers": [ - { - "messageType": "UserClickInfo", - "pageScope": true, - "script": "\tfrom pprint import pformat\n\tSymbolPath \u003d payload[\"UserClickPath\"]\n\tsystem.perspective.print(pformat(self.view.params.SymbolLibrary[SymbolPath]))\n\tself.view.params.SelectedInfo \u003d self.view.params.SymbolLibrary[SymbolPath][\u0027info\u0027]\n\tself.view.params.SelectedDescription \u003d self.view.params.SymbolLibrary[SymbolPath][\u0027description\u0027]\n\tself.view.params.SelectedPath \u003d SymbolPath \n\tself.view.params.SelectedCategory \u003d self.view.params.SymbolLibrary[SymbolPath][\u0027category\u0027]\n\tsystem.perspective.print(SymbolPath)\n", - "sessionScope": false, - "viewScope": false - }, - { - "messageType": "UserClickCategory", - "pageScope": true, - "script": "\n\tSelectedRow \u003d payload[\"UserClickData\"]\n\tself.view.params.SelectedRow \u003d SelectedRow", - "sessionScope": false, - "viewScope": false - }, - { - "messageType": "UserClickRefresh", - "pageScope": true, - "script": "\tfrom SymbolLibrary import list_categories, fetch_library\n\t\n\t#Get all Symbol Views and write them to tags\n\tproject_info \u003d system.perspective.getProjectInfo()\n\tviews \u003d project_info.get(\u0027views\u0027,[])\n\t# - Define criterias\n\tfilter_criterion \u003d \"Symbol-Views\"\n\tfilter_criterion2 \u003d \"Symbol-Library-Views\"\n\tfilter_criterion3 \u003d \"Controller-Views\"\n\tfilter_criterion4 \u003d \"Symbol-Views/Equipment-Views/Test\"\n\t# - Filter views that are not necessary for the symbol library and ensure the correct path\n\tfiltered_views \u003d [\n\t\tview for view in views \n\t\tif filter_criterion in view.get(\u0027path\u0027,\u0027\u0027) \n\t\tand not filter_criterion2 in view.get(\u0027path\u0027,\u0027\u0027) \n\t\tand not filter_criterion3 in view.get(\u0027path\u0027,\u0027\u0027)\n\t\tand not filter_criterion4 in view.get(\u0027path\u0027,\u0027\u0027)\n\t\t]\n\t# - Create JSON from the list \n\tjson_structure \u003d []\n\tsymbol_view_list \u003d []\n\tfor view in filtered_views:\n\t\tinstance \u003d {\n\t\t\t\"instanceStyle\": {\n\t\t\t\t\"classes\": \"\"\n\t\t\t},\n\t\t\t\"instancePosition\": {},\n\t\t\t\"Path\": view.get(\u0027path\u0027,\u0027\u0027),\n\t\t\t\"forceRunning\": 3,\n\t\t\t\"forceFault\": None\n\t\t}\n\t\tjson_structure.append(instance)\n\t\tsymbol_view_list.append(view.get(\u0027path\u0027,\u0027\u0027))\n\tjson_structure.sort(key \u003d lambda x:x[\u0027Path\u0027].split(\"/\")[len(x[\u0027Path\u0027].split(\"/\"))-1])\t\n\t# - Encode JSON for igniton variables to populate correctly\n\tjson_result \u003d system.util.jsonEncode(json_structure)\n\tself.view.params.Dataset \u003d filtered_views\n\tself.view.params.FilteredViews \u003d json_structure\n\tsystem.perspective.print(filtered_views)\n\t\n\t# - Get all Symbol Categories from JSON Dictionary\t\n\tremote_json \u003d fetch_library(username\u003dself.session.props.auth.user.userName)\n\tself.view.params.SymbolLibrary \u003d {k: v for k, v in remote_json.items() if k in symbol_view_list}\n\tcategory_data \u003d [{\"Category\": category} for category in list_categories(self.view.params.SymbolLibrary)]\n\tself.view.params.CategoryList \u003d category_data\n\tself.view.params.SelectedRow \u003d \u0027ALL\u0027\n\tself.view.params.SelectedDescription \u003d \"\"\n\tself.view.params.SelectedInfo \u003d \"\"", - "sessionScope": false, - "viewScope": false - } - ] - }, - "type": "ia.container.flex" - } -} \ No newline at end of file diff --git a/.resources/8488289955438a2261fd93b295f877ead196c96ae94bc267d67aac510682e2f7 b/.resources/8488289955438a2261fd93b295f877ead196c96ae94bc267d67aac510682e2f7 new file mode 100644 index 00000000..cf389ded --- /dev/null +++ b/.resources/8488289955438a2261fd93b295f877ead196c96ae94bc267d67aac510682e2f7 @@ -0,0 +1,5439 @@ +{ + "custom": {}, + "params": { + "highlightTagPath": "" + }, + "propConfig": { + "params.highlightTagPath": { + "onChange": { + "enabled": null, + "script": "\tutils.handleTagHighlight(self.view, currentValue)" + }, + "paramDirection": "input", + "persistent": true + } + }, + "props": { + "defaultSize": { + "height": 1080, + "width": 1920 + } + }, + "root": { + "children": [ + { + "meta": { + "name": "MCM02 Fluid Inbound" + }, + "position": { + "height": 1, + "width": 1 + }, + "props": { + "elements": [ + { + "id": "defs1", + "name": "defs1", + "type": "defs" + }, + { + "elements": [ + { + "fill": { + "paint": "#ffffff" + }, + "height": "20.284283", + "id": "rect1-6-2-3-0-54-1-5-5-5-6-2-4-6", + "name": "rect1-6-2-3-0-54-1-5-5-5-6-2-4-6", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "rotate(-118.65477)", + "type": "rect", + "width": "20.471441", + "x": "-865.72107", + "y": "427.86304" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "20.284283", + "id": "rect1-6-2-3-0-54-1-5-5-5-5-3-6", + "name": "rect1-6-2-3-0-54-1-5-5-5-5-3-6", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "rotate(-118.65477)", + "type": "rect", + "width": "20.471441", + "x": "-866.1311", + "y": "450.76361" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "20.284283", + "id": "rect1-6-2-3-0-54-1-5-5-3-3-6", + "name": "rect1-6-2-3-0-54-1-5-5-3-3-6", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "rotate(-118.65477)", + "type": "rect", + "width": "20.471441", + "x": "-866.54419", + "y": "474.18307" + }, + { + "d": "m 879.05326,484.88837 9.70821,16.70776 32.31451,-16.7993 z", + "fill": { + "paint": "#ffffff" + }, + "id": "path5-6-62-6", + "name": "path5-6-62-6", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "type": "path" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "39.206818", + "id": "rect1-6-2-3-0-54-1-5-8-8-7", + "name": "rect1-6-2-3-0-54-1-5-8-8-7", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "rotate(-118.65477)", + "type": "rect", + "width": "20.471441", + "x": "-866.71521", + "y": "497.17682" + }, + { + "d": "m 779.4498,483.54329 9.80339,16.652 32.21803,-16.9837 z", + "fill": { + "paint": "#ffffff" + }, + "id": "path5-6-6-5-2-4-0-8-4", + "name": "path5-6-6-5-2-4-0-8-4", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "type": "path" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "21.440247", + "id": "rect1-6-2-3-0-54-1-5-5-5-6-2-3-8-36-5-1-5-7-0", + "name": "rect1-6-2-3-0-54-1-5-5-5-6-2-3-8-36-5-1-5-7-0", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "rotate(-118.98218)", + "type": "rect", + "width": "20.471556", + "x": "-820.38232", + "y": "398.97943" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "21.440247", + "id": "rect1-6-2-3-0-54-1-5-5-5-6-2-3-8-36-5-1-5-5-6", + "name": "rect1-6-2-3-0-54-1-5-5-5-6-2-3-8-36-5-1-5-5-6", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "rotate(-118.98218)", + "type": "rect", + "width": "20.471556", + "x": "-820.46985", + "y": "423.48462" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "35.016644", + "id": "rect1-6-2-3-0-54-1-5-5-5-6-2-3-8-36-5-1-5-9", + "name": "rect1-6-2-3-0-54-1-5-5-5-6-2-3-8-36-5-1-5-9", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "rotate(-118.98218)", + "type": "rect", + "width": "20.471556", + "x": "-820.36359", + "y": "361.37317" + }, + { + "d": "m 762.81006,421.40329 9.80338,16.65201 32.21801,-16.98368 z", + "fill": { + "paint": "#ffffff" + }, + "id": "path5-6-6-5-2-4-0-8", + "name": "path5-6-6-5-2-4-0-8", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "type": "path" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "21.440247", + "id": "rect1-6-2-3-0-54-1-5-5-5-6-2-3-8-36-5-1-5-7", + "name": "rect1-6-2-3-0-54-1-5-5-5-6-2-3-8-36-5-1-5-7", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "rotate(-118.98218)", + "type": "rect", + "width": "20.471556", + "x": "-758.26752", + "y": "414.15817" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "21.440247", + "id": "rect1-6-2-3-0-54-1-5-5-5-6-2-3-8-36-5-1-5-5", + "name": "rect1-6-2-3-0-54-1-5-5-5-6-2-3-8-36-5-1-5-5", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "rotate(-118.98218)", + "type": "rect", + "width": "20.471556", + "x": "-758.35498", + "y": "438.66342" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "21.440247", + "id": "rect1-6-2-3-0-54-1-5-5-5-6-2-3-8-36-5-1-5", + "name": "rect1-6-2-3-0-54-1-5-5-5-6-2-3-8-36-5-1-5", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "rotate(-118.98218)", + "type": "rect", + "width": "20.471556", + "x": "-758.24866", + "y": "390.12842" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "76.59301", + "id": "rect1-6-2-3-0-54-1-5-5-5-5-9-2-3-0-5-4", + "name": "rect1-6-2-3-0-54-1-5-5-5-5-9-2-3-0-5-4", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "rotate(-118.98218)", + "type": "rect", + "width": "20.471441", + "x": "-757.84259", + "y": "310.90164" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "30.179243", + "id": "rect1-6-2-3-0-54-1-5-5-5-6-2-3-8-36-5-1-0", + "name": "rect1-6-2-3-0-54-1-5-5-5-6-2-3-8-36-5-1-0", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "rotate(-118.98218)", + "type": "rect", + "width": "20.471556", + "x": "-708.67004", + "y": "252.18588" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "26.867399", + "id": "rect1-6-2-3-0-54-1-5-5-5-6-2-3-8-36-5-1", + "name": "rect1-6-2-3-0-54-1-5-5-5-6-2-3-8-36-5-1", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "rotate(-118.98218)", + "type": "rect", + "width": "20.471556", + "x": "-708.6637", + "y": "285.18494" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "26.407169", + "id": "rect1-6-2-3-0-54-1-5-5-5-5-9-2-3-0-5", + "name": "rect1-6-2-3-0-54-1-5-5-5-5-9-2-3-0-5", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "rotate(-118.98218)", + "type": "rect", + "width": "20.471441", + "x": "-708.65833", + "y": "314.30191" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "29.383572", + "id": "rect1-6-2-3-0-54-1-5-5-3-4-5-9-4-9", + "name": "rect1-6-2-3-0-54-1-5-5-3-4-5-9-4-9", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "rotate(-118.98218)", + "type": "rect", + "width": "20.471441", + "x": "-708.67535", + "y": "343.23447" + }, + { + "d": "m 662.36775,420.93156 9.8034,16.652 32.218,-16.9837 z", + "fill": { + "paint": "#ffffff" + }, + "id": "path5-6-6-5-2-4-0", + "name": "path5-6-6-5-2-4-0", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "type": "path" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "26.867399", + "id": "rect1-6-2-3-0-54-1-5-5-5-6-2-3-8-36-5", + "name": "rect1-6-2-3-0-54-1-5-5-5-6-2-3-8-36-5", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "rotate(-118.98218)", + "type": "rect", + "width": "20.471556", + "x": "-658.30945", + "y": "195.11452" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "26.407169", + "id": "rect1-6-2-3-0-54-1-5-5-5-5-9-2-3-0", + "name": "rect1-6-2-3-0-54-1-5-5-5-5-9-2-3-0", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "rotate(-118.98218)", + "type": "rect", + "width": "20.471441", + "x": "-658.95288", + "y": "224.29967" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "29.383572", + "id": "rect1-6-2-3-0-54-1-5-5-3-4-5-9-4", + "name": "rect1-6-2-3-0-54-1-5-5-3-4-5-9-4", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "rotate(-118.98218)", + "type": "rect", + "width": "20.471441", + "x": "-658.8924", + "y": "253.09193" + }, + { + "d": "m 559.01758,420.89901 9.80342,16.652 32.21798,-16.9837 z", + "fill": { + "paint": "#ffffff" + }, + "id": "path5-6-6-5-2-4", + "name": "path5-6-6-5-2-4", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "type": "path" + }, + { + "d": "m 451.01497,506.82724 c 0,0 0.19979,-17.1106 6.35784,-25.77646 6.15785,-8.66587 18.28649,-15.72733 18.28649,-15.72733 l 10.58346,17.18915 c 0,0 -7.60095,5.56417 -11.26758,10.891 -3.66681,5.32683 -3.25174,13.51299 -3.25174,13.51299 z", + "fill": { + "paint": "#ffffff" + }, + "id": "path9-4-6-2-4-8-1-9-7-2", + "name": "path9-4-6-2-4-8-1-9-7-2", + "stroke": { + "dasharray": "none", + "dashoffset": "0", + "paint": "#000000", + "width": "1" + }, + "type": "path" + }, + { + "d": "m 524.50294,522.31152 c 0,0 0.19981,-17.11059 6.35786,-25.77646 6.15783,-8.66587 19.67541,-14.76566 19.67541,-14.76566 l 10.31635,17.50971 c 0,0 -8.72278,4.28195 -12.3894,9.60879 -3.66682,5.32683 -3.25174,13.51297 -3.25174,13.51297 z", + "fill": { + "paint": "#ffffff" + }, + "id": "path9-4-6-2-4-8-1-9-7-5", + "name": "path9-4-6-2-4-8-1-9-7-5", + "stroke": { + "dasharray": "none", + "dashoffset": "0", + "paint": "#000000", + "width": "1" + }, + "type": "path" + }, + { + "d": "m 600.68387,537.18728 c 0,0 0.19981,-17.11061 6.35785,-25.77645 6.15784,-8.66589 18.28651,-15.72735 18.28651,-15.72735 l 10.58342,17.18916 c 0,0 -7.60093,5.56417 -11.26755,10.891 -3.66683,5.32684 -3.25175,13.513 -3.25175,13.513 z", + "fill": { + "paint": "#ffffff" + }, + "id": "path9-4-6-2-4-8-1-9-7-1", + "name": "path9-4-6-2-4-8-1-9-7-1", + "stroke": { + "dasharray": "none", + "dashoffset": "0", + "paint": "#000000", + "width": "1" + }, + "type": "path" + }, + { + "d": "m 676.57682,567.48222 c 0,0 0.19979,-17.11061 6.35783,-25.77647 6.15784,-8.66588 18.28651,-15.72733 18.28651,-15.72733 l 10.58343,17.18914 c 0,0 -7.60093,5.56417 -11.26755,10.89103 -3.66681,5.32682 -3.25176,13.51298 -3.25176,13.51298 z", + "fill": { + "paint": "#ffffff" + }, + "id": "path9-4-6-2-4-8-1-9-7", + "name": "path9-4-6-2-4-8-1-9-7", + "stroke": { + "dasharray": "none", + "dashoffset": "0", + "paint": "#000000", + "width": "1" + }, + "type": "path" + }, + { + "d": "m 751.96318,581.31198 c 0,0 0.1998,-17.11058 6.35784,-25.77644 6.15786,-8.66587 18.28651,-15.72733 18.28651,-15.72733 l 10.58343,17.18915 c 0,0 -7.60093,5.56415 -11.26755,10.89102 -3.66682,5.32683 -3.25175,13.51299 -3.25175,13.51299 z", + "fill": { + "paint": "#ffffff" + }, + "id": "path9-4-6-2-4-8-1-9", + "name": "path9-4-6-2-4-8-1-9", + "stroke": { + "dasharray": "none", + "dashoffset": "0", + "paint": "#000000", + "width": "1" + }, + "type": "path" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "361.86682", + "id": "rect1-6-2-3-7-2-1-6-9-0-3-4-2-4-2-0", + "name": "rect1-6-2-3-7-2-1-6-9-0-3-4-2-4-2-0", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "scale(-1)", + "type": "rect", + "width": "20.471556", + "x": "-471.91833", + "y": "-872.47406" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "77.796043", + "id": "rect1-6-2-3-7-2-1-6-9-0-3-4-0-2-5-3-1", + "name": "rect1-6-2-3-7-2-1-6-9-0-3-4-0-2-5-3-1", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "scale(-1)", + "type": "rect", + "width": "20.471441", + "x": "-472.1167", + "y": "-952.86865" + }, + { + "d": "m 511.19633,1040.8003 -0.15146,-39.9735 h 12.3233 l 0.15148,-14.41341 21.6681,-0.0904 -0.15146,14.41341 10.96397,0.062 0.15147,39.911 6.00203,3.537 -0.0756,10.9461 -56.55574,-0.038 c -0.07,-0.2837 0,-10.7274 0,-10.7274 z", + "fill": { + "paint": "#ffffff" + }, + "id": "path117-7-9-2-91-2-0-0-2-13-3-8-1-8", + "name": "path117-7-9-2-91-2-0-0-2-13-3-8-1-8", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1.12131" + }, + "type": "path" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "410.04987", + "id": "rect1-6-2-3-7-2-1-6-9-0-3-4-7-5-1-0-7-6-9-3-7-1-9-4-9", + "name": "rect1-6-2-3-7-2-1-6-9-0-3-4-7-5-1-0-7-6-9-3-7-1-9-4-9", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "scale(-1)", + "type": "rect", + "width": "20.471323", + "x": "-544.39417", + "y": "-935.52515" + }, + { + "d": "m 587.77724,1042.5555 -0.15148,-39.7184 h 12.32384 l 0.15148,-14.32142 21.66907,-0.0898 -0.15148,14.32132 10.96444,0.062 0.15148,39.6563 6.00228,3.5144 -0.0756,10.8761 -56.5582,-0.037 c -0.0701,-0.2818 0,-10.6588 0,-10.6588 z", + "fill": { + "paint": "#ffffff" + }, + "id": "path117-7-9-2-91-2-0-0-2-13-3-8-1", + "name": "path117-7-9-2-91-2-0-0-2-13-3-8-1", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1.12131" + }, + "type": "path" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "396.75208", + "id": "rect1-6-2-3-7-2-1-6-9-0-3-4-7-5-1-0-7-6-9-3-7-1-9-4", + "name": "rect1-6-2-3-7-2-1-6-9-0-3-4-7-5-1-0-7-6-9-3-7-1-9-4", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "scale(-1)", + "type": "rect", + "width": "20.471323", + "x": "-620.97595", + "y": "-937.18732" + }, + { + "d": "m 739.74872,1041.6361 -0.15151,-38.9532 h 12.32548 l 0.15149,-14.04552 21.67191,-0.0881 -0.15151,14.04552 10.9659,0.061 0.1515,38.8924 6.00306,3.4467 -0.0756,10.6666 -56.56564,-0.037 c -0.07,-0.2765 0,-10.4536 0,-10.4536 z", + "fill": { + "paint": "#ffffff" + }, + "id": "path117-7-9-2-91-2-0-0-2-13-3", + "name": "path117-7-9-2-91-2-0-0-2-13-3", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1.12131" + }, + "type": "path" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "351.44647", + "id": "rect1-6-2-3-7-2-1-6-9-0-3-4-7-5-1-0-7-6-9-3-7-1", + "name": "rect1-6-2-3-7-2-1-6-9-0-3-4-7-5-1-0-7-6-9-3-7-1", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "scale(-1)", + "type": "rect", + "width": "20.471323", + "x": "-772.95044", + "y": "-935.98871" + }, + { + "d": "m 664.60268,1042.485 -0.15146,-40.2286 h 12.32276 l 0.15147,-14.50538 21.66718,-0.091 -0.15147,14.50538 10.96351,0.063 0.15146,40.1658 6.00176,3.5595 -0.0756,11.0159 -56.55329,-0.038 c -0.07,-0.2855 0,-10.7958 0,-10.7958 z", + "fill": { + "paint": "#ffffff" + }, + "id": "path117-7-9-2-91-2-0-0-2-13-3-8", + "name": "path117-7-9-2-91-2-0-0-2-13-3-8", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1.12131" + }, + "type": "path" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "366.40637", + "id": "rect1-6-2-3-7-2-1-6-9-0-3-4-7-5-1-0-7-6-9-3-7-1-9", + "name": "rect1-6-2-3-7-2-1-6-9-0-3-4-7-5-1-0-7-6-9-3-7-1-9", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "scale(-1)", + "type": "rect", + "width": "20.471323", + "x": "-697.79932", + "y": "-937.30298" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "361.86682", + "id": "rect1-6-2-3-7-2-1-6-9-0-3-4-2-4-2", + "name": "rect1-6-2-3-7-2-1-6-9-0-3-4-2-4-2", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "scale(-1)", + "type": "rect", + "width": "20.471556", + "x": "-848.40118", + "y": "-973.54742" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "77.796043", + "id": "rect1-6-2-3-7-2-1-6-9-0-3-4-0-2-5-3", + "name": "rect1-6-2-3-7-2-1-6-9-0-3-4-0-2-5-3", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "scale(-1)", + "type": "rect", + "width": "20.471441", + "x": "-848.59943", + "y": "-1053.942" + }, + { + "d": "m 827.63176,608.1013 c 0,0 0.62724,-15.18726 6.78528,-23.85312 6.15785,-8.66587 19.24819,-14.97938 19.24819,-14.97938 l 9.72853,17.7234 c 0,0 -7.3872,4.06826 -11.05383,9.39509 -3.66683,5.32684 -3.9997,11.80337 -3.9997,11.80337 z", + "fill": { + "paint": "#ffffff" + }, + "id": "path9-4-6-2-4-8-1", + "name": "path9-4-6-2-4-8-1", + "stroke": { + "dasharray": "none", + "dashoffset": "0", + "paint": "#000000", + "width": "1" + }, + "type": "path" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "87.834923", + "id": "rect1-6-2-3-0-54-1-5-5-5-6-2-3-8-3-4", + "name": "rect1-6-2-3-0-54-1-5-5-5-6-2-3-8-3-4", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "rotate(-117.89443)", + "type": "rect", + "width": "20.471436", + "x": "-922.56323", + "y": "491.65726" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "25.315859", + "id": "rect1-6-2-3-0-54-1-5-5-5-6-2-3-8-36", + "name": "rect1-6-2-3-0-54-1-5-5-5-6-2-3-8-36", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "rotate(-117.89443)", + "type": "rect", + "width": "20.471441", + "x": "-921.90778", + "y": "582.96655" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "26.407169", + "id": "rect1-6-2-3-0-54-1-5-5-5-5-9-2-3", + "name": "rect1-6-2-3-0-54-1-5-5-5-5-9-2-3", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "rotate(-117.89443)", + "type": "rect", + "width": "20.471441", + "x": "-921.85254", + "y": "610.61652" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "29.383572", + "id": "rect1-6-2-3-0-54-1-5-5-3-4-5-9", + "name": "rect1-6-2-3-0-54-1-5-5-3-4-5-9", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "rotate(-117.89443)", + "type": "rect", + "width": "20.471441", + "x": "-922.1413", + "y": "639.40057" + }, + { + "d": "m 1015.6653,483.67911 9.4857,16.83512 32.5347,-16.36901 z", + "fill": { + "paint": "#ffffff" + }, + "id": "path5-6-6-5-2", + "name": "path5-6-6-5-2", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "type": "path" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "20.487658", + "id": "rect1-6-2-3-6-8-3-6-2-2-8", + "name": "rect1-6-2-3-6-8-3-6-2-2-8", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "scale(-1)", + "type": "rect", + "width": "20.471323", + "x": "-995.66125", + "y": "-90.280426" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "49.171974", + "id": "rect1-6-2-0-0-6-8-5", + "name": "rect1-6-2-0-0-6-8-5", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "scale(1,-1)", + "type": "rect", + "width": "20.471323", + "x": "975.34131", + "y": "-142.24397" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "111.27086", + "id": "rect1-6-2-0-0-6-8-3-4", + "name": "rect1-6-2-0-0-6-8-3-4", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "scale(1,-1)", + "type": "rect", + "width": "20.471319", + "x": "975.76892", + "y": "-256.24634" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "107.52756", + "id": "rect1-6-2-0-0-6-8-3-4-2-9", + "name": "rect1-6-2-0-0-6-8-3-4-2-9", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "scale(1,-1)", + "type": "rect", + "width": "20.471319", + "x": "975.97614", + "y": "-367.10788" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "423.35278", + "id": "rect1-6-2-3-7-2-1-6-9-0-3", + "name": "rect1-6-2-3-7-2-1-6-9-0-3", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "rotate(-90)", + "type": "rect", + "width": "20.471441", + "x": "-418.22577", + "y": "517.31915" + }, + { + "d": "m 976.21282,369.88821 c 0,0 -2.88966,12.35941 -10.28022,19.66091 -7.39051,7.30152 -20.86687,8.01356 -20.86687,8.01356 l 0.10674,20.67569 c 0,0 22.60563,0.55626 37.45797,-17.14539 14.85229,-17.70166 13.9375,-30.99107 13.9375,-30.99107 z", + "fill": { + "paint": "#ffffff" + }, + "id": "path7", + "name": "path7", + "stroke": { + "dasharray": "none", + "dashoffset": "0", + "paint": "#000000", + "width": "1" + }, + "type": "path" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "45.696453", + "id": "rect1-6-2-0-0-6-8-82", + "name": "rect1-6-2-0-0-6-8-82", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "scale(1,-1)", + "type": "rect", + "width": "20.471323", + "x": "1340.3522", + "y": "-406.02734" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "20.487658", + "id": "rect1-6-2-3-6-8-3-6-5", + "name": "rect1-6-2-3-6-8-3-6-5", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "scale(1,-1)", + "type": "rect", + "width": "20.471323", + "x": "1340.7665", + "y": "-312.04294" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "20.487658", + "id": "rect1-6-2-3-6-8-3-6-2-54", + "name": "rect1-6-2-3-6-8-3-6-2-54", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "scale(1,-1)", + "type": "rect", + "width": "20.471323", + "x": "1340.6475", + "y": "-334.74753" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "20.487658", + "id": "rect1-6-2-3-6-8-3-6-4-91", + "name": "rect1-6-2-3-6-8-3-6-4-91", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "scale(1,-1)", + "type": "rect", + "width": "20.471323", + "x": "1340.4055", + "y": "-357.7464" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "20.487658", + "id": "rect1-6-2-3-6-8-3-6-4-91-6", + "name": "rect1-6-2-3-6-8-3-6-4-91-6", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "scale(1,-1)", + "type": "rect", + "width": "20.471323", + "x": "1340.3976", + "y": "-428.95297" + }, + { + "d": "m 1361.1449,431.56251 c 0,0 -2.3267,19.11371 -14.9582,33.41096 -12.6313,14.29723 -36.5569,15.82299 -36.5569,15.82299 v -19.8095 c 0,0 12.0434,0.16383 21.4212,-9.10652 9.3775,-9.27027 9.4647,-20.52245 9.4647,-20.52245 z", + "fill": { + "paint": "#ffffff" + }, + "id": "path2-0", + "name": "path2-0", + "stroke": { + "dasharray": "none", + "dashoffset": "0", + "paint": "#000000", + "width": "1" + }, + "type": "path" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "558.07281", + "id": "rect1-6-2-3-7-2-1-6-9-0-3-6-9", + "name": "rect1-6-2-3-7-2-1-6-9-0-3-6-9", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "rotate(-90)", + "type": "rect", + "width": "20.471441", + "x": "-480.96695", + "y": "748.54083" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "20.487658", + "id": "rect1-6-2-3-6-8-3-6-2-2-8-1", + "name": "rect1-6-2-3-6-8-3-6-2-2-8-1", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "scale(-1)", + "type": "rect", + "width": "20.471323", + "x": "-995.55774", + "y": "-67.029472" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "20.487658", + "id": "rect1-6-2-3-6-8-3-6-2-2-8-5", + "name": "rect1-6-2-3-6-8-3-6-2-2-8-5", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "scale(-1)", + "type": "rect", + "width": "20.471323", + "x": "-995.67102", + "y": "-43.634087" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "45.975658", + "id": "rect1", + "name": "rect1", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "scale(-1)", + "type": "rect", + "width": "20.471436", + "x": "-544.32648", + "y": "-984.19452" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "45.975658", + "id": "rect2", + "name": "rect2", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "scale(-1)", + "type": "rect", + "width": "20.471436", + "x": "-620.76843", + "y": "-985.52039" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "45.975658", + "id": "rect3", + "name": "rect3", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "scale(-1)", + "type": "rect", + "width": "20.471436", + "x": "-697.67474", + "y": "-985.52039" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "45.975658", + "id": "rect4", + "name": "rect4", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "scale(-1)", + "type": "rect", + "width": "20.471436", + "x": "-772.81323", + "y": "-985.52039" + } + ], + "id": "layer1", + "name": "layer1", + "type": "group" + } + ], + "preserveAspectRatio": "none", + "viewBox": "0 0 1920 1080" + }, + "type": "ia.shapes.svg" + }, + { + "meta": { + "name": "UL5_5" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -28 + }, + "width": 0.0104, + "x": 0.4088, + "y": 0.4913 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Conveyor/VFD/UL5_5_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL5_6" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -28 + }, + "width": 0.0104, + "x": 0.4194, + "y": 0.4815 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Conveyor/VFD/UL5_6_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL5_7" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -28 + }, + "width": 0.0104, + "x": 0.4302, + "y": 0.4714 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Conveyor/VFD/UL5_7_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL5_9" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -28 + }, + "width": 0.0104, + "x": 0.4591, + "y": 0.4452 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Conveyor/VFD/UL5_9_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL5_8" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -28 + }, + "width": 0.0104, + "x": 0.4451, + "y": 0.4572 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Conveyor/VFD/UL5_8_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL4_8" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -28 + }, + "width": 0.0104, + "x": 0.4082, + "y": 0.4431 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Conveyor/VFD/UL4_8_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL4_6" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -28 + }, + "width": 0.0104, + "x": 0.3861, + "y": 0.4631 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Conveyor/VFD/UL4_6_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL4_7" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -28 + }, + "width": 0.0104, + "x": 0.3973, + "y": 0.4522 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Conveyor/VFD/UL4_7_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL4_5" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -28 + }, + "width": 0.0104, + "x": 0.372, + "y": 0.4769 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Conveyor/VFD/UL4_5_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL3_9" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -28 + }, + "width": 0.0104, + "x": 0.399, + "y": 0.3864 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Conveyor/VFD/UL3_9_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL3_7" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -28 + }, + "width": 0.0104, + "x": 0.3773, + "y": 0.406 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Conveyor/VFD/UL3_7_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL3_8" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -28 + }, + "width": 0.0104, + "x": 0.3885, + "y": 0.395 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Conveyor/VFD/UL3_8_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL3_6" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -28 + }, + "width": 0.0104, + "x": 0.3664, + "y": 0.4167 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Conveyor/VFD/UL3_6_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL3_5" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -28 + }, + "width": 0.0104, + "x": 0.3427, + "y": 0.4396 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Conveyor/VFD/UL3_5_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL2_5" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -28 + }, + "width": 0.0104, + "x": 0.293, + "y": 0.4365 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Conveyor/VFD/UL2_5_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL2_6" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -28 + }, + "width": 0.0104, + "x": 0.3073, + "y": 0.4224 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Conveyor/VFD/UL2_6_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL2_7" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -28 + }, + "width": 0.0104, + "x": 0.3204, + "y": 0.4095 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Conveyor/VFD/UL2_7_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL2_8" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -28 + }, + "width": 0.0104, + "x": 0.3343, + "y": 0.3958 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Conveyor/VFD/UL2_8_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL2_9" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -28 + }, + "width": 0.0104, + "x": 0.3472, + "y": 0.3851 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Conveyor/VFD/UL2_9_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL1_4" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -28 + }, + "width": 0.0104, + "x": 0.2535, + "y": 0.4221 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Conveyor/VFD/UL1_4_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL1_5" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -28 + }, + "width": 0.0104, + "x": 0.2669, + "y": 0.4096 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Conveyor/VFD/UL1_5_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL1_6" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -28 + }, + "width": 0.0104, + "x": 0.2807, + "y": 0.396 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Conveyor/VFD/UL1_6_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL1_7" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -28 + }, + "width": 0.0104, + "x": 0.2925, + "y": 0.385 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Conveyor/VFD/UL1_7_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL1_3" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -50 + }, + "width": 0.0104, + "x": 0.2384, + "y": 0.4424 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Conveyor/VFD/UL1_3_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL2_4" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -50 + }, + "width": 0.0104, + "x": 0.2766, + "y": 0.4568 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Conveyor/VFD/UL2_4_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL3_4" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -50 + }, + "width": 0.0104, + "x": 0.3163, + "y": 0.4705 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Conveyor/VFD/UL3_4_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL4_4" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -50 + }, + "width": 0.0104, + "x": 0.3558, + "y": 0.4986 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Conveyor/VFD/UL4_4_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL5_4" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -50 + }, + "width": 0.0104, + "x": 0.3951, + "y": 0.5114 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Conveyor/VFD/UL5_4_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL1_2" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -90 + }, + "width": 0.0104, + "x": 0.2354, + "y": 0.631 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Conveyor/VFD/UL1_2_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL1_1" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -90 + }, + "width": 0.0104, + "x": 0.2355, + "y": 0.837 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Conveyor/VFD/UL1_1_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL2_3" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -90 + }, + "width": 0.0104, + "x": 0.2732, + "y": 0.6458 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Conveyor/VFD/UL2_3_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL3_2" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -90 + }, + "width": 0.0146, + "x": 0.3111, + "y": 0.8847 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Conveyor/EXTENDO/UL3_2_EX1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Extendo" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL3_3" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -90 + }, + "width": 0.0104, + "x": 0.3131, + "y": 0.6618 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Conveyor/VFD/UL3_3_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL5_2" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -90 + }, + "width": 0.0146, + "x": 0.3898, + "y": 0.8828 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Conveyor/EXTENDO/UL5_2_EX1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Extendo" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL5_3" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -90 + }, + "width": 0.0104, + "x": 0.3922, + "y": 0.6947 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Conveyor/VFD/UL5_3_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL4_2" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -90 + }, + "width": 0.0146, + "x": 0.3511, + "y": 0.8849 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Conveyor/EXTENDO/UL4_2_EX1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Extendo" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL4_3" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -90 + }, + "width": 0.0104, + "x": 0.3531, + "y": 0.6788 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Conveyor/VFD/UL4_3_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL6_2" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -90 + }, + "width": 0.0104, + "x": 0.4315, + "y": 0.7246 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Conveyor/VFD/UL6_2_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL6_1" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -90 + }, + "width": 0.0104, + "x": 0.4316, + "y": 0.9306 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Conveyor/VFD/UL6_1_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL6_3" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -50 + }, + "width": 0.0104, + "x": 0.4345, + "y": 0.5362 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Conveyor/VFD/UL6_3_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL6_4" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -28 + }, + "width": 0.0104, + "x": 0.4638, + "y": 0.5053 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Conveyor/VFD/UL6_4_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL6_5" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -28 + }, + "width": 0.0104, + "x": 0.4913, + "y": 0.4787 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Conveyor/VFD/UL6_5_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL6_6" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -28 + }, + "width": 0.0104, + "x": 0.5043, + "y": 0.4665 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Conveyor/VFD/UL6_6_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL6_7" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -28 + }, + "width": 0.0104, + "x": 0.5183, + "y": 0.4536 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Conveyor/VFD/UL6_7_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL6_8" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -28 + }, + "width": 0.0104, + "x": 0.5297, + "y": 0.4432 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Conveyor/VFD/UL6_8_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS1_6" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -90 + }, + "width": 0.0104, + "x": 0.5082, + "y": 0.0648 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Conveyor/VFD/PS1_6_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS1_5A" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -90 + }, + "width": 0.0104, + "x": 0.5083, + "y": 0.108 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Conveyor/VFD/PS1_5A_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS1_4" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -90 + }, + "width": 0.0104, + "x": 0.5085, + "y": 0.1765 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Conveyor/VFD/PS1_4_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS1_3" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -90 + }, + "width": 0.0104, + "x": 0.5086, + "y": 0.2643 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Conveyor/VFD/PS1_3_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS1_1" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 0 + }, + "width": 0.0104, + "x": 0.3747, + "y": 0.3685 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Conveyor/VFD/PS1_1_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS1_2" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -40 + }, + "width": 0.0104, + "x": 0.5024, + "y": 0.3582 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Conveyor/VFD/PS1_2_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS2_1" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 0 + }, + "width": 0.0104, + "x": 0.5302, + "y": 0.4266 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Conveyor/VFD/PS2_1_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS1_7" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -90 + }, + "width": 0.0104, + "x": 0.5082, + "y": 0.0433 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Conveyor/VFD/PS1_7_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS1_8" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -90 + }, + "width": 0.0104, + "x": 0.5082, + "y": 0.0216 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Conveyor/VFD/PS1_8_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS1_8_S2" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.5307, + "y": 0.0264 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM02/Station/S_PB/PS1_8_S2", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS1_8_EPC1" + }, + "position": { + "height": 0.0296, + "rotate": { + "angle": 0 + }, + "width": 0.0083, + "x": 0.4979, + "y": 0.0176 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Station/EPC/PS1_8_EPC1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS1_8_EPC2" + }, + "position": { + "height": 0.0296, + "rotate": { + "angle": 0 + }, + "width": 0.0083, + "x": 0.5203, + "y": 0.0176 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Station/EPC/PS1_8_EPC2", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS1_8_EPC1_Line" + }, + "position": { + "height": 0.0056, + "rotate": { + "angle": 90 + }, + "width": 0.0417, + "x": 0.4813, + "y": 0.0778 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Station/EPC/PS1_8_EPC1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_Line" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS1_8_EPC1_End" + }, + "position": { + "height": 0.0278, + "rotate": { + "angle": 0 + }, + "width": 0.0073, + "x": 0.4984, + "y": 0.1167 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Station/EPC/PS1_8_EPC1_End", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_End" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS1_8_EPC2_Line" + }, + "position": { + "height": 0.0056, + "rotate": { + "angle": 90 + }, + "width": 0.0417, + "x": 0.5031, + "y": 0.0778 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Station/EPC/PS1_8_EPC2", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_Line" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS1_8_EPC2_End" + }, + "position": { + "height": 0.0278, + "rotate": { + "angle": 0 + }, + "width": 0.0073, + "x": 0.5203, + "y": 0.1167 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Station/EPC/PS1_8_EPC2_End", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_End" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS1_1_JR2" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.4922, + "y": 0.3389 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM02/Station/JR/PS1_1_JR2", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS1_1_JR1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.3771, + "y": 0.35 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM02/Station/JR/PS1_1_JR1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL1_2_JR1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.249, + "y": 0.4861 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM02/Station/JR/UL1_2_JR1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL1_1_SS1" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.2359, + "y": 0.8843 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM02/Station/SS_PB/UL1_1_SS1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/SS_Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL6_1_SS1" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.4318, + "y": 0.9778 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM02/Station/SS_PB/UL6_1_SS1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/SS_Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL1_1_EPC1_Line" + }, + "position": { + "height": 0.0056, + "rotate": { + "angle": 90 + }, + "width": 0.1042, + "x": 0.1774, + "y": 0.7676 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Station/EPC/UL1_1_EPC1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_Line" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL1_1_EPC1_End" + }, + "position": { + "height": 0.0278, + "rotate": { + "angle": 0 + }, + "width": 0.0073, + "x": 0.2257, + "y": 0.6583 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Station/EPC/UL1_1_EPC1_End", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_End" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL1_1_EPC1" + }, + "position": { + "height": 0.0296, + "rotate": { + "angle": -180 + }, + "width": 0.0083, + "x": 0.2252, + "y": 0.8565 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Station/EPC/UL1_1_EPC1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL1_1_EPC2_Line" + }, + "position": { + "height": 0.0056, + "rotate": { + "angle": 90 + }, + "width": 0.1042, + "x": 0.2005, + "y": 0.7704 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Station/EPC/UL1_1_EPC2", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_Line" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL1_1_EPC2" + }, + "position": { + "height": 0.0296, + "rotate": { + "angle": -180 + }, + "width": 0.0083, + "x": 0.2484, + "y": 0.8565 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Station/EPC/UL1_1_EPC2", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL1_1_EPC2_End" + }, + "position": { + "height": 0.0278, + "rotate": { + "angle": 0 + }, + "width": 0.0073, + "x": 0.249, + "y": 0.6583 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Station/EPC/UL1_1_EPC2_End", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_End" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL2_3_JR1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.2859, + "y": 0.4944 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM02/Station/JR/UL2_3_JR1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL3_3_JR1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.3255, + "y": 0.5102 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM02/Station/JR/UL3_3_JR1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL4_3_JR1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.3656, + "y": 0.5389 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM02/Station/JR/UL4_3_JR1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL5_3_JR1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.4047, + "y": 0.5509 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM02/Station/JR/UL5_3_JR1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL6_3_JR1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.4443, + "y": 0.5741 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM02/Station/JR/UL6_3_JR1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS2_1_JR2" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.5339, + "y": 0.4079 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM02/Station/JR/PS2_1_JR2", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL6_1_EPC1_End" + }, + "position": { + "height": 0.0278, + "rotate": { + "angle": 0 + }, + "width": 0.0073, + "x": 0.4215, + "y": 0.7509 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Station/EPC/UL6_1_EPC1_End", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_End" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL6_1_EPC1_Line" + }, + "position": { + "height": 0.0056, + "rotate": { + "angle": 90 + }, + "width": 0.0995, + "x": 0.3759, + "y": 0.8644 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Station/EPC/UL6_1_EPC1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_Line" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL6_1_EPC1" + }, + "position": { + "height": 0.0296, + "rotate": { + "angle": -180 + }, + "width": 0.0083, + "x": 0.421, + "y": 0.9491 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Station/EPC/UL6_1_EPC1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL6_1_EPC2" + }, + "position": { + "height": 0.0296, + "rotate": { + "angle": -180 + }, + "width": 0.0083, + "x": 0.4444, + "y": 0.9491 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Station/EPC/UL6_1_EPC2", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL6_1_EPC2_Line" + }, + "position": { + "height": 0.0056, + "rotate": { + "angle": 90 + }, + "width": 0.101, + "x": 0.3981, + "y": 0.8602 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Station/EPC/UL6_1_EPC2", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_Line" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL6_1_EPC2_End" + }, + "position": { + "height": 0.0278, + "rotate": { + "angle": 0 + }, + "width": 0.0073, + "x": 0.4449, + "y": 0.7509 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Station/EPC/UL6_1_EPC2_End", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_End" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL1_2_FIO1" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 0 + }, + "width": 0.0104, + "x": 0.2352, + "y": 0.7088 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/IO_BLOCK/FIO/UL1_2_FIO1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/DeviceStatus" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL2_3_FIO1" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 0 + }, + "width": 0.0104, + "x": 0.2729, + "y": 0.6967 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/IO_BLOCK/FIO/UL2_3_FIO1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/DeviceStatus" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL3_3_FIO1" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 0 + }, + "width": 0.0104, + "x": 0.3128, + "y": 0.6875 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/IO_BLOCK/FIO/UL3_3_FIO1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/DeviceStatus" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL4_3_FIO1" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 0 + }, + "width": 0.0104, + "x": 0.3531, + "y": 0.7023 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/IO_BLOCK/FIO/UL4_3_FIO1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/DeviceStatus" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL5_3_FIO1" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 0 + }, + "width": 0.0104, + "x": 0.3923, + "y": 0.7217 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/IO_BLOCK/FIO/UL5_3_FIO1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/DeviceStatus" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL6_2_FIO1" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 0 + }, + "width": 0.0104, + "x": 0.4319, + "y": 0.7838 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/IO_BLOCK/FIO/UL6_2_FIO1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/DeviceStatus" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS1_5B" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -90 + }, + "width": 0.0104, + "x": 0.5083, + "y": 0.0904 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Conveyor/VFD/PS1_5B_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS1_8_S1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.4875, + "y": 0.0269 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM02/Station/S_PB/PS1_8_S1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS2_7_EPC2_End" + }, + "position": { + "height": 0.0278, + "rotate": { + "angle": 90 + }, + "width": 0.0073, + "x": 0.6656, + "y": 0.4398 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Station/EPC/PS2_7_EPC2_End", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_End" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS2_7_EPC1_End" + }, + "position": { + "height": 0.0278, + "rotate": { + "angle": 90 + }, + "width": 0.0073, + "x": 0.6656, + "y": 0.4031 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Station/EPC/PS2_7_EPC1_End", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_End" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS2_2" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -40 + }, + "width": 0.0104, + "x": 0.6924, + "y": 0.4144 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Conveyor/VFD/PS2_2_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS2_7_EPC2_Line_3" + }, + "position": { + "height": 0.0056, + "rotate": { + "angle": 0 + }, + "width": 0.0167, + "x": 0.6766, + "y": 0.4501 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Station/EPC/PS2_7_EPC2", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_Line" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS2_7_EPC2_Line_2" + }, + "position": { + "height": 0.0052, + "rotate": { + "angle": -40 + }, + "width": 0.0298, + "x": 0.6891, + "y": 0.4338 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Station/EPC/PS2_7_EPC2", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_Line" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS2_7_EPC1_Line_2" + }, + "position": { + "height": 0.0056, + "rotate": { + "angle": -40 + }, + "width": 0.0104, + "x": 0.6839, + "y": 0.4069 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Station/EPC/PS2_7_EPC1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_Line" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS2_7_EPC1_Line_1" + }, + "position": { + "height": 0.0056, + "rotate": { + "angle": 90 + }, + "width": 0.0641, + "x": 0.6607, + "y": 0.3455 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Station/EPC/PS2_7_EPC1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_Line" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS2_7_EPC1" + }, + "position": { + "height": 0.0296, + "rotate": { + "angle": 0 + }, + "width": 0.0083, + "x": 0.6885, + "y": 0.2661 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Station/EPC/PS2_7_EPC1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS2_7_S1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.6797, + "y": 0.2759 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM02/Station/S_PB/PS2_7_S1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS2_1_JR3" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.6797, + "y": 0.3809 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM02/Station/JR/PS2_1_JR3", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS2_7_EPC2_Line_1" + }, + "position": { + "height": 0.0065, + "rotate": { + "angle": 90 + }, + "width": 0.0745, + "x": 0.6776, + "y": 0.353 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Station/EPC/PS2_7_EPC2", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_Line" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS2_3" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -90 + }, + "width": 0.0104, + "x": 0.6984, + "y": 0.3784 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Conveyor/VFD/PS2_3_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS2_4A" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -90 + }, + "width": 0.0104, + "x": 0.6984, + "y": 0.3529 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Conveyor/VFD/PS2_4A_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS2_4B" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -90 + }, + "width": 0.0104, + "x": 0.6984, + "y": 0.3353 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Conveyor/VFD/PS2_4B_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS2_5" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -90 + }, + "width": 0.0104, + "x": 0.6984, + "y": 0.3125 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Conveyor/VFD/PS2_5_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS2_6" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -90 + }, + "width": 0.0104, + "x": 0.6986, + "y": 0.2912 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Conveyor/VFD/PS2_6_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS2_7" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -90 + }, + "width": 0.0104, + "x": 0.6986, + "y": 0.2701 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Conveyor/VFD/PS2_7_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS2_7_S2" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.7214, + "y": 0.2753 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM02/Station/S_PB/PS2_7_S2", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS2_7_EPC2" + }, + "position": { + "height": 0.0296, + "rotate": { + "angle": 0 + }, + "width": 0.0083, + "x": 0.7109, + "y": 0.2661 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Station/EPC/PS2_7_EPC2", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS2_7_EPC1_Line_3" + }, + "position": { + "height": 0.0056, + "rotate": { + "angle": 0 + }, + "width": 0.0083, + "x": 0.6771, + "y": 0.4131 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Station/EPC/PS2_7_EPC1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_Line" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "MCM02" + }, + "position": { + "height": 0.0139, + "rotate": { + "angle": 0 + }, + "width": 0.0156, + "x": 0.7368, + "y": 0.2671 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM02/MCM02", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/MCM" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS2_1_DPM1" + }, + "position": { + "height": 0.0139, + "rotate": { + "angle": 0 + }, + "width": 0.0156, + "x": 0.4237, + "y": 0.4086 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM02/IO_BLOCK/DPM/PS2_1_DPM1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/ControlCabinet" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS1_1_DPM2" + }, + "position": { + "height": 0.0139, + "rotate": { + "angle": 0 + }, + "width": 0.0156, + "x": 0.4314, + "y": 0.3492 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM02/IO_BLOCK/DPM/PS1_1_DPM2", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/ControlCabinet" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS1_1_DPM1" + }, + "position": { + "height": 0.0139, + "rotate": { + "angle": 0 + }, + "width": 0.0156, + "x": 0.3255, + "y": 0.3492 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM02/IO_BLOCK/DPM/PS1_1_DPM1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/ControlCabinet" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS2_1_DPM2" + }, + "position": { + "height": 0.0139, + "rotate": { + "angle": 0 + }, + "width": 0.0156, + "x": 0.5482, + "y": 0.4085 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM02/IO_BLOCK/DPM/PS2_1_DPM2", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/ControlCabinet" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS2_1_JR1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.4661, + "y": 0.4079 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM02/Station/JR/PS2_1_JR1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS1_4_DPM1" + }, + "position": { + "height": 0.0139, + "rotate": { + "angle": 0 + }, + "width": 0.0156, + "x": 0.5273, + "y": 0.0943 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM02/IO_BLOCK/DPM/PS1_4_DPM1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/ControlCabinet" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL2_2" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -90 + }, + "width": 0.0146, + "x": 0.2712, + "y": 0.8832 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Conveyor/EXTENDO/UL2_2_EX1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Extendo" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "MCM05_Button" + }, + "position": { + "height": 0.0426, + "width": 0.1521, + "x": 0.2126, + "y": 0.0997 + }, + "props": { + "params": { + "pageid": "DetailedView/MCM05 Sorter Destination and Chutes", + "panel_id": "value", + "text": "MCM05 Sorter Destination and Chutes" + }, + "path": "Symbol-Views/Equipment-Views/Area_Nav_Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "MCM05_Button_0" + }, + "position": { + "height": 0.0426, + "width": 0.1521, + "x": 0.6252, + "y": 0.0957 + }, + "props": { + "params": { + "pageid": "DetailedView/MCM04 Sorter Destination, Chutes and Bypass", + "panel_id": "value", + "text": "MCM04 Sorter Destination, Chutes and Bypass" + }, + "path": "Symbol-Views/Equipment-Views/Area_Nav_Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PDP02_FIOM1" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 0 + }, + "width": 0.0104, + "x": 0.4769, + "y": 0.7842 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/IO_BLOCK/FIO/PDP2_FIO1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/DeviceStatus" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS1_2B" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -90 + }, + "width": 0.0104, + "x": 0.5086, + "y": 0.313 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM02/Conveyor/VFD/PS1_2B_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + } + ], + "meta": { + "name": "root" + }, + "position": { + "x": 42.09710693359375, + "y": 36.40085983276367 + }, + "props": { + "mode": "percent", + "style": { + "backgroundColor": "#FFFFFF" + } + }, + "type": "ia.container.coord" + } +} \ No newline at end of file diff --git a/.resources/8553640c597f96faefb40de44e4030043a1dd54e87b57029016e8d9abab0261f b/.resources/8553640c597f96faefb40de44e4030043a1dd54e87b57029016e8d9abab0261f deleted file mode 100644 index 575140c3..00000000 Binary files a/.resources/8553640c597f96faefb40de44e4030043a1dd54e87b57029016e8d9abab0261f and /dev/null differ diff --git a/.resources/876a6785ab5250eb585fe56f33aa494d51c846748dd988283d27a2a4085b6a15 b/.resources/876a6785ab5250eb585fe56f33aa494d51c846748dd988283d27a2a4085b6a15 deleted file mode 100644 index 3de54937..00000000 Binary files a/.resources/876a6785ab5250eb585fe56f33aa494d51c846748dd988283d27a2a4085b6a15 and /dev/null differ diff --git a/.resources/889cd1185cc851d221846cd7a8140e70ccbad2be4e74b9c68fb50f46c839c786 b/.resources/889cd1185cc851d221846cd7a8140e70ccbad2be4e74b9c68fb50f46c839c786 new file mode 100644 index 00000000..948428d0 --- /dev/null +++ b/.resources/889cd1185cc851d221846cd7a8140e70ccbad2be4e74b9c68fb50f46c839c786 @@ -0,0 +1,3563 @@ +{ + "custom": {}, + "params": { + "con_lines": [ + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true + ], + "con_lines_visible": [ + false, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true + ], + "in": true, + "out": true + }, + "propConfig": { + "params.con_lines": { + "paramDirection": "input", + "persistent": true + }, + "params.con_lines_visible": { + "paramDirection": "input", + "persistent": true + }, + "params.in": { + "paramDirection": "input", + "persistent": true + }, + "params.out": { + "paramDirection": "input", + "persistent": true + } + }, + "props": { + "defaultSize": { + "height": 1080, + "width": 1920 + } + }, + "root": { + "children": [ + { + "meta": { + "name": "DPM_TO_HUB" + }, + "position": { + "basis": "300px", + "grow": 1 + }, + "propConfig": { + "props.elements[0].elements[0].elements[1].stroke.paint": { + "binding": { + "config": { + "path": "view.params.in" + }, + "transforms": [ + { + "fallback": "#FF0000", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "#00FF00" + }, + { + "input": false, + "output": "#FF0000" + } + ], + "outputType": "color", + "type": "map" + } + ], + "type": "property" + } + }, + "props.elements[0].elements[0].elements[2].stroke.paint": { + "binding": { + "config": { + "path": "view.params.out" + }, + "transforms": [ + { + "fallback": "#FF0000", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "#00FF00" + }, + { + "input": false, + "output": "#FF0000" + } + ], + "outputType": "color", + "type": "map" + } + ], + "type": "property" + } + }, + "props.elements[0].elements[1].elements[0].stroke.paint": { + "binding": { + "config": { + "path": "view.params.con_lines[0]" + }, + "transforms": [ + { + "fallback": "#FF0000", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "#00FF00" + }, + { + "input": false, + "output": "#FF0000" + } + ], + "outputType": "color", + "type": "map" + } + ], + "type": "property" + } + }, + "props.elements[0].elements[1].elements[0].visibility": { + "binding": { + "config": { + "path": "view.params.con_lines_visible[0]" + }, + "transforms": [ + { + "fallback": "hidden", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "visible" + }, + { + "input": false, + "output": "hidden" + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "property" + } + }, + "props.elements[0].elements[1].elements[1].stroke.paint": { + "binding": { + "config": { + "path": "view.params.con_lines[1]" + }, + "transforms": [ + { + "fallback": "#FF0000", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "#00FF00" + }, + { + "input": false, + "output": "#FF0000" + } + ], + "outputType": "color", + "type": "map" + } + ], + "type": "property" + } + }, + "props.elements[0].elements[1].elements[1].visibility": { + "binding": { + "config": { + "path": "view.params.con_lines_visible[1]" + }, + "transforms": [ + { + "fallback": "hidden", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "visible" + }, + { + "input": false, + "output": "hidden" + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "property" + } + }, + "props.elements[0].elements[1].elements[2].stroke.paint": { + "binding": { + "config": { + "path": "view.params.con_lines[2]" + }, + "transforms": [ + { + "fallback": "#FF0000", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "#00FF00" + }, + { + "input": false, + "output": "#FF0000" + } + ], + "outputType": "color", + "type": "map" + } + ], + "type": "property" + } + }, + "props.elements[0].elements[1].elements[2].visibility": { + "binding": { + "config": { + "path": "view.params.con_lines_visible[2]" + }, + "transforms": [ + { + "fallback": "hidden", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "visible" + }, + { + "input": false, + "output": "hidden" + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "property" + } + }, + "props.elements[0].elements[1].elements[3].stroke.paint": { + "binding": { + "config": { + "path": "view.params.con_lines[3]" + }, + "transforms": [ + { + "fallback": "#FF0000", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "#00FF00" + }, + { + "input": false, + "output": "#FF0000" + } + ], + "outputType": "color", + "type": "map" + } + ], + "type": "property" + } + }, + "props.elements[0].elements[1].elements[3].visibility": { + "binding": { + "config": { + "path": "view.params.con_lines_visible[3]" + }, + "transforms": [ + { + "fallback": "hidden", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "visible" + }, + { + "input": false, + "output": "hidden" + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "property" + } + }, + "props.elements[0].elements[1].elements[4].stroke.paint": { + "binding": { + "config": { + "path": "view.params.con_lines[4]" + }, + "transforms": [ + { + "fallback": "#FF0000", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "#00FF00" + }, + { + "input": false, + "output": "#FF0000" + } + ], + "outputType": "color", + "type": "map" + } + ], + "type": "property" + } + }, + "props.elements[0].elements[1].elements[4].visibility": { + "binding": { + "config": { + "path": "view.params.con_lines_visible[4]" + }, + "transforms": [ + { + "fallback": "hidden", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "visible" + }, + { + "input": false, + "output": "hidden" + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "property" + } + }, + "props.elements[0].elements[1].elements[5].stroke.paint": { + "binding": { + "config": { + "path": "view.params.con_lines[5]" + }, + "transforms": [ + { + "fallback": "#FF0000", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "#00FF00" + }, + { + "input": false, + "output": "#FF0000" + } + ], + "outputType": "color", + "type": "map" + } + ], + "type": "property" + } + }, + "props.elements[0].elements[1].elements[5].visibility": { + "binding": { + "config": { + "path": "view.params.con_lines_visible[5]" + }, + "transforms": [ + { + "fallback": "hidden", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "visible" + }, + { + "input": false, + "output": "hidden" + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "property" + } + }, + "props.elements[0].elements[2].elements[0].stroke.paint": { + "binding": { + "config": { + "path": "view.params.con_lines[6]" + }, + "transforms": [ + { + "fallback": "#FF0000", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "#00FF00" + }, + { + "input": false, + "output": "#FF0000" + } + ], + "outputType": "color", + "type": "map" + } + ], + "type": "property" + } + }, + "props.elements[0].elements[2].elements[0].visibility": { + "binding": { + "config": { + "path": "view.params.con_lines_visible[6]" + }, + "transforms": [ + { + "fallback": "hidden", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "visible" + }, + { + "input": false, + "output": "hidden" + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "property" + } + }, + "props.elements[0].elements[2].elements[1].stroke.paint": { + "binding": { + "config": { + "path": "view.params.con_lines[7]" + }, + "transforms": [ + { + "fallback": "#FF0000", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "#00FF00" + }, + { + "input": false, + "output": "#FF0000" + } + ], + "outputType": "color", + "type": "map" + } + ], + "type": "property" + } + }, + "props.elements[0].elements[2].elements[1].visibility": { + "binding": { + "config": { + "path": "view.params.con_lines_visible[7]" + }, + "transforms": [ + { + "fallback": "hidden", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "visible" + }, + { + "input": false, + "output": "hidden" + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "property" + } + }, + "props.elements[0].elements[2].elements[2].stroke.paint": { + "binding": { + "config": { + "path": "view.params.con_lines[8]" + }, + "transforms": [ + { + "fallback": "#FF0000", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "#00FF00" + }, + { + "input": false, + "output": "#FF0000" + } + ], + "outputType": "color", + "type": "map" + } + ], + "type": "property" + } + }, + "props.elements[0].elements[2].elements[2].visibility": { + "binding": { + "config": { + "path": "view.params.con_lines_visible[8]" + }, + "transforms": [ + { + "fallback": "hidden", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "visible" + }, + { + "input": false, + "output": "hidden" + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "property" + } + }, + "props.elements[0].elements[2].elements[3].stroke.paint": { + "binding": { + "config": { + "path": "view.params.con_lines[9]" + }, + "transforms": [ + { + "fallback": "#FF0000", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "#00FF00" + }, + { + "input": false, + "output": "#FF0000" + } + ], + "outputType": "color", + "type": "map" + } + ], + "type": "property" + } + }, + "props.elements[0].elements[2].elements[3].visibility": { + "binding": { + "config": { + "path": "view.params.con_lines_visible[9]" + }, + "transforms": [ + { + "fallback": "hidden", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "visible" + }, + { + "input": false, + "output": "hidden" + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "property" + } + }, + "props.elements[0].elements[2].elements[4].stroke.paint": { + "binding": { + "config": { + "path": "view.params.con_lines[10]" + }, + "transforms": [ + { + "fallback": "#FF0000", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "#00FF00" + }, + { + "input": false, + "output": "#FF0000" + } + ], + "outputType": "color", + "type": "map" + } + ], + "type": "property" + } + }, + "props.elements[0].elements[2].elements[4].visibility": { + "binding": { + "config": { + "path": "view.params.con_lines_visible[10]" + }, + "transforms": [ + { + "fallback": "hidden", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "visible" + }, + { + "input": false, + "output": "hidden" + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "property" + } + }, + "props.elements[0].elements[2].elements[5].stroke.paint": { + "binding": { + "config": { + "path": "view.params.con_lines[11]" + }, + "transforms": [ + { + "fallback": "#FF0000", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "#00FF00" + }, + { + "input": false, + "output": "#FF0000" + } + ], + "outputType": "color", + "type": "map" + } + ], + "type": "property" + } + }, + "props.elements[0].elements[2].elements[5].visibility": { + "binding": { + "config": { + "path": "view.params.con_lines_visible[11]" + }, + "transforms": [ + { + "fallback": "hidden", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "visible" + }, + { + "input": false, + "output": "hidden" + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "property" + } + }, + "props.elements[0].elements[3].elements[0].stroke.paint": { + "binding": { + "config": { + "path": "view.params.con_lines[12]" + }, + "transforms": [ + { + "fallback": "#FF0000", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "#00FF00" + }, + { + "input": false, + "output": "#FF0000" + } + ], + "outputType": "color", + "type": "map" + } + ], + "type": "property" + } + }, + "props.elements[0].elements[3].elements[0].visibility": { + "binding": { + "config": { + "path": "view.params.con_lines_visible[12]" + }, + "transforms": [ + { + "fallback": "hidden", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "visible" + }, + { + "input": false, + "output": "hidden" + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "property" + } + }, + "props.elements[0].elements[3].elements[1].stroke.paint": { + "binding": { + "config": { + "path": "view.params.con_lines[13]" + }, + "transforms": [ + { + "fallback": "#FF0000", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "#00FF00" + }, + { + "input": false, + "output": "#FF0000" + } + ], + "outputType": "color", + "type": "map" + } + ], + "type": "property" + } + }, + "props.elements[0].elements[3].elements[1].visibility": { + "binding": { + "config": { + "path": "view.params.con_lines_visible[13]" + }, + "transforms": [ + { + "fallback": "hidden", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "visible" + }, + { + "input": false, + "output": "hidden" + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "property" + } + }, + "props.elements[0].elements[3].elements[2].stroke.paint": { + "binding": { + "config": { + "path": "view.params.con_lines[14]" + }, + "transforms": [ + { + "fallback": "#FF0000", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "#00FF00" + }, + { + "input": false, + "output": "#FF0000" + } + ], + "outputType": "color", + "type": "map" + } + ], + "type": "property" + } + }, + "props.elements[0].elements[3].elements[2].visibility": { + "binding": { + "config": { + "path": "view.params.con_lines_visible[14]" + }, + "transforms": [ + { + "fallback": "hidden", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "visible" + }, + { + "input": false, + "output": "hidden" + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "property" + } + }, + "props.elements[0].elements[3].elements[3].stroke.paint": { + "binding": { + "config": { + "path": "view.params.con_lines[15]" + }, + "transforms": [ + { + "fallback": "#FF0000", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "#00FF00" + }, + { + "input": false, + "output": "#FF0000" + } + ], + "outputType": "color", + "type": "map" + } + ], + "type": "property" + } + }, + "props.elements[0].elements[3].elements[3].visibility": { + "binding": { + "config": { + "path": "view.params.con_lines_visible[15]" + }, + "transforms": [ + { + "fallback": "hidden", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "visible" + }, + { + "input": false, + "output": "hidden" + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "property" + } + }, + "props.elements[0].elements[3].elements[4].stroke.paint": { + "binding": { + "config": { + "path": "view.params.con_lines[16]" + }, + "transforms": [ + { + "fallback": "#FF0000", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "#00FF00" + }, + { + "input": false, + "output": "#FF0000" + } + ], + "outputType": "color", + "type": "map" + } + ], + "type": "property" + } + }, + "props.elements[0].elements[3].elements[4].visibility": { + "binding": { + "config": { + "path": "view.params.con_lines_visible[16]" + }, + "transforms": [ + { + "fallback": "hidden", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "visible" + }, + { + "input": false, + "output": "hidden" + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "property" + } + }, + "props.elements[0].elements[3].elements[5].stroke.paint": { + "binding": { + "config": { + "path": "view.params.con_lines[17]" + }, + "transforms": [ + { + "fallback": "#FF0000", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "#00FF00" + }, + { + "input": false, + "output": "#FF0000" + } + ], + "outputType": "color", + "type": "map" + } + ], + "type": "property" + } + }, + "props.elements[0].elements[3].elements[5].visibility": { + "binding": { + "config": { + "path": "view.params.con_lines_visible[17]" + }, + "transforms": [ + { + "fallback": "hidden", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "visible" + }, + { + "input": false, + "output": "hidden" + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "property" + } + }, + "props.elements[0].elements[4].elements[0].stroke.paint": { + "binding": { + "config": { + "path": "view.params.con_lines[18]" + }, + "transforms": [ + { + "fallback": "#FF0000", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "#00FF00" + }, + { + "input": false, + "output": "#FF0000" + } + ], + "outputType": "color", + "type": "map" + } + ], + "type": "property" + } + }, + "props.elements[0].elements[4].elements[0].visibility": { + "binding": { + "config": { + "path": "view.params.con_lines_visible[18]" + }, + "transforms": [ + { + "fallback": "hidden", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "visible" + }, + { + "input": false, + "output": "hidden" + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "property" + } + }, + "props.elements[0].elements[4].elements[1].stroke.paint": { + "binding": { + "config": { + "path": "view.params.con_lines[19]" + }, + "transforms": [ + { + "fallback": "#FF0000", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "#00FF00" + }, + { + "input": false, + "output": "#FF0000" + } + ], + "outputType": "color", + "type": "map" + } + ], + "type": "property" + } + }, + "props.elements[0].elements[4].elements[1].visibility": { + "binding": { + "config": { + "path": "view.params.con_lines_visible[19]" + }, + "transforms": [ + { + "fallback": "hidden", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "visible" + }, + { + "input": false, + "output": "hidden" + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "property" + } + }, + "props.elements[0].elements[4].elements[2].stroke.paint": { + "binding": { + "config": { + "path": "view.params.con_lines[20]" + }, + "transforms": [ + { + "fallback": "#FF0000", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "#00FF00" + }, + { + "input": false, + "output": "#FF0000" + } + ], + "outputType": "color", + "type": "map" + } + ], + "type": "property" + } + }, + "props.elements[0].elements[4].elements[2].visibility": { + "binding": { + "config": { + "path": "view.params.con_lines_visible[20]" + }, + "transforms": [ + { + "fallback": "hidden", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "visible" + }, + { + "input": false, + "output": "hidden" + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "property" + } + }, + "props.elements[0].elements[4].elements[3].stroke.paint": { + "binding": { + "config": { + "path": "view.params.con_lines[21]" + }, + "transforms": [ + { + "fallback": "#FF0000", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "#00FF00" + }, + { + "input": false, + "output": "#FF0000" + } + ], + "outputType": "color", + "type": "map" + } + ], + "type": "property" + } + }, + "props.elements[0].elements[4].elements[3].visibility": { + "binding": { + "config": { + "path": "view.params.con_lines_visible[21]" + }, + "transforms": [ + { + "fallback": "hidden", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "visible" + }, + { + "input": false, + "output": "hidden" + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "property" + } + }, + "props.elements[0].elements[4].elements[4].stroke.paint": { + "binding": { + "config": { + "path": "view.params.con_lines[22]" + }, + "transforms": [ + { + "fallback": "#FF0000", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "#00FF00" + }, + { + "input": false, + "output": "#FF0000" + } + ], + "outputType": "color", + "type": "map" + } + ], + "type": "property" + } + }, + "props.elements[0].elements[4].elements[4].visibility": { + "binding": { + "config": { + "path": "view.params.con_lines_visible[22]" + }, + "transforms": [ + { + "fallback": "hidden", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "visible" + }, + { + "input": false, + "output": "hidden" + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "property" + } + }, + "props.elements[0].elements[4].elements[5].stroke.paint": { + "binding": { + "config": { + "path": "view.params.con_lines[23]" + }, + "transforms": [ + { + "fallback": "#FF0000", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "#00FF00" + }, + { + "input": false, + "output": "#FF0000" + } + ], + "outputType": "color", + "type": "map" + } + ], + "type": "property" + } + }, + "props.elements[0].elements[4].elements[5].visibility": { + "binding": { + "config": { + "path": "view.params.con_lines_visible[23]" + }, + "transforms": [ + { + "fallback": "hidden", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "visible" + }, + { + "input": false, + "output": "hidden" + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "property" + } + } + }, + "props": { + "elements": [ + { + "elements": [ + { + "elements": [ + { + "elements": [ + { + "d": "m 74.541388,43.698219 h -0.232437 v -1.936962 h -0.43217 v -0.264292 c 0.18079,-0.03874 0.296148,-0.07834 0.341789,-0.129143 0.05765,-0.05853 0.116205,-0.193701 0.160972,-0.414073 h 0.161846 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path1-7", + "name": "path1-7", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 40.340817,75.05145 c 0,-3.202491 -2.479357,-5.681795 -5.681821,-5.681795 -3.202463,0 -5.785114,2.479304 -5.785114,5.681795 0,3.202463 2.582651,5.785088 5.785114,5.785088 3.202464,0 5.681821,-2.582625 5.681821,-5.785088 M 35.588742,32.696209 c 0,-1.033065 -0.929746,-1.962811 -1.962811,-1.962811 -1.136333,0 -2.066079,0.929746 -2.066079,1.962811 0,1.136333 0.929746,2.066079 2.066079,2.066079 1.033065,0 1.962811,-0.929746 1.962811,-2.066079 m 30.268518,0 c 0,-1.033065 -0.929746,-1.962811 -1.962811,-1.962811 -1.136359,0 -2.066131,0.929746 -2.066131,1.962811 0,1.136333 0.929772,2.066079 2.066131,2.066079 1.033065,0 1.962811,-0.929746 1.962811,-2.066079 M 81.972899,156.97269 V 12.448308 M 40.96063,32.696209 c 0,-1.033065 -0.929745,-1.962811 -1.962811,-1.962811 -1.136359,0 -2.066105,0.929746 -2.066105,1.962811 0,1.136333 0.929746,2.066079 2.066105,2.066079 1.033066,0 1.962811,-0.929746 1.962811,-2.066079 m 5.371889,0 c 0,-1.033065 -0.929746,-1.962811 -1.962812,-1.962811 -1.136359,0 -2.066105,0.929746 -2.066105,1.962811 0,1.136333 0.929746,2.066079 2.066105,2.066079 1.033066,0 1.962812,-0.929746 1.962812,-2.066079 m 5.371888,0 c 0,-1.033065 -0.826426,-1.962811 -1.962812,-1.962811 -1.033039,0 -1.962811,0.929746 -1.962811,1.962811 0,1.136333 0.929772,2.066079 1.962811,2.066079 1.136386,0 1.962812,-0.929746 1.962812,-2.066079 m -11.36359,75.206381 c 0,-3.20246 -2.479357,-5.78511 -5.681821,-5.78511 -3.202463,0 -5.785114,2.58265 -5.785114,5.78511 0,3.20247 2.582651,5.78512 5.785114,5.78512 3.202464,0 5.681821,-2.58265 5.681821,-5.78512 m 0,32.74785 c 0,-3.20249 -2.479357,-5.68179 -5.681821,-5.68179 -3.202463,0 -5.785114,2.4793 -5.785114,5.68179 0,3.20246 2.582651,5.78509 5.785114,5.78509 3.202464,0 5.681821,-2.58263 5.681821,-5.78509 M 65.85726,19.266462 c 0,-1.136359 -0.929746,-1.962785 -1.962811,-1.962785 -1.136359,0 -2.066131,0.826426 -2.066131,1.962785 0,1.033066 0.929772,1.962812 2.066131,1.962812 1.033065,0 1.962811,-0.929746 1.962811,-1.962812 m 0,8.987578 c 0,-1.136359 -0.929746,-1.962811 -1.962811,-1.962811 -1.136359,0 -2.066131,0.826452 -2.066131,1.962811 0,1.033066 0.929772,1.962812 2.066131,1.962812 1.033065,0 1.962811,-0.929746 1.962811,-1.962812 m 0,-4.545435 c 0,-1.03304 -0.929746,-1.962785 -1.962811,-1.962785 -1.136359,0 -2.066131,0.929745 -2.066131,1.962785 0,1.136359 0.929772,2.066104 2.066131,2.066104 1.033065,0 1.962811,-0.929745 1.962811,-2.066104 M 81.972899,12.448308 H 24.121833 m -0.826426,0.929773 V 156.04295 M 24.225126,12.448308 c -0.516519,0 -0.929719,0.309933 -0.929719,0.826453 m 0.826426,143.697929 h 57.851066 m -58.677492,-0.92974 c 0,0.51652 0.4132,0.92974 0.929719,0.92974 m 48.037062,-49.0701 c 0,-3.20246 -2.479305,-5.78511 -5.681795,-5.78511 -3.20249,0 -5.785088,2.58265 -5.785088,5.78511 0,3.20247 2.582598,5.78512 5.785088,5.78512 3.20249,0 5.681795,-2.58265 5.681795,-5.78512 m 0,32.74785 c 0,-3.20249 -2.479305,-5.68179 -5.681795,-5.68179 -3.20249,0 -5.785088,2.4793 -5.785088,5.68179 0,3.20246 2.582598,5.78509 5.785088,5.78509 3.20249,0 5.681795,-2.58263 5.681795,-5.78509 M 10.175593,93.749739 c 0,-1.342972 -0.51652,-2.582651 -1.4462922,-3.409104 m -5.7850881,0 c -1.0330656,0.929773 -1.6528785,2.272745 -1.5495852,3.615717 0.1033198,1.446265 0.8264525,2.685944 1.9628114,3.409077 m 4.8553423,0 c 1.2396787,-0.723133 1.9628118,-2.169425 1.9628118,-3.61569 m -0.6198398,0 c 0,-0.929746 -0.3099064,-1.756199 -0.9297458,-2.479331 m -5.6817947,0 c -1.3429721,1.652878 -1.1363589,3.925596 0.4132262,5.268595 m 4.8553423,0 c 0.8264525,-0.61984 1.342972,-1.756199 1.342972,-2.789264 m 0.2066132,0 c 0,-1.033066 -0.3099065,-2.066132 -1.0330656,-2.789264 m -5.7850881,0 c -0.8264525,0.826452 -1.2396787,1.962811 -1.1363589,3.09917 0.1032933,1.136359 0.6198393,2.169425 1.5495851,2.789264 m 4.8553423,0 c 1.0330656,-0.723133 1.5495852,-1.859518 1.5495852,-3.09917 M 283.10872,90.960475 V 153.87355 M 282.9021,90.960475 v 62.913075 m 0.20662,-62.913075 h -0.20662 m 0,0 v -0.413226 -0.309907 -0.10332 l 0.1033,-0.103293 m 0,0 h 0.20661 m 0,0 v 0.103293 l -0.10329,0.10332 v 0.309907 0.413226 M 283.21201,154.7 h -0.20661 m 0,0 h -0.1033 v -0.20661 -0.30993 -0.30991 m 0,0 h 0.20662 m 0,0 v 0.30991 0.30993 l 0.10329,0.20661 m 1.03306,0 h -1.03306 m 1.03306,0 v -0.82645 m 0,-63.842821 h -1.03306 m 1.03306,0.929746 v -0.929746 m 0,63.842821 V 90.857181 M 20.816076,107.28275 h -0.10332 m -0.206613,-0.82642 h -3.512397 m 3.71901,0.82642 v -0.3099 l -0.103293,-0.30991 v -0.20661 h -0.10332 m 0,0 h 0.10332 m 0,0 h 0.103293 v 0.20661 l 0.10332,0.30991 v 0.3099 m -0.309933,49.68994 h -3.512397 m 3.615717,0 h -0.10332 m 0.206613,-0.92974 v -48.7602 m -0.206613,49.68994 0.10332,-0.10332 v -0.20661 l 0.103293,-0.20659 v -0.41322 m 0.10332,0 v -48.7602 m -0.10332,48.7602 h 0.10332 m 0,0 v 0.41322 l -0.10332,0.20659 v 0.20661 l -0.103293,0.10332 m -3.615717,-50.51636 v 0.20661 l -0.103293,0.30991 v 0.3099 m 0,48.7602 v -48.7602 m 0,48.7602 v 0.41322 l 0.103293,0.20659 v 0.20661 0.10332 M 65.444034,19.266462 c 0,-0.929746 -0.723133,-1.549585 -1.549585,-1.549585 -0.929746,0 -1.652905,0.619839 -1.652905,1.549585 0,0.826453 0.723159,1.549612 1.652905,1.549612 0.826452,0 1.549585,-0.723159 1.549585,-1.549612 M 35.175516,32.696209 c 0,-0.826452 -0.723133,-1.549585 -1.549585,-1.549585 -0.92972,0 -1.652879,0.723133 -1.652879,1.549585 0,0.92972 0.723159,1.652852 1.652879,1.652852 0.826452,0 1.549585,-0.723132 1.549585,-1.652852 M 98.08859,39.20443 c -0.309933,0 -0.61984,0.10332 -0.826453,0.206613 m 1.033066,-0.619839 c -0.516546,0 -1.033066,0.10332 -1.446292,0.309933 m -1.239679,1.136359 c -0.826426,1.136359 -0.929745,2.789237 -0.103293,3.925596 0.826453,1.239679 2.272718,1.859492 3.718983,1.549585 1.446268,-0.309906 2.479328,-1.446292 2.789268,-2.892557 m -5.165279,-3.718983 c -0.516519,0.309906 -0.929746,0.619839 -1.239679,1.136359 m 0.309933,-0.103294 c -0.929772,1.033039 -1.033065,2.582598 -0.309933,3.822277 0.61984,1.239679 2.066132,1.859492 3.512371,1.652905 1.342967,-0.309933 2.479357,-1.342999 2.685967,-2.789264 m 0,0.103293 h 0.20662 m -6.404958,-2.685917 0.309933,-0.103294 m 0.929746,-0.723159 V 39.20443 m 1.549585,-0.309906 c -0.516519,0 -1.033065,0.206613 -1.549585,0.413226 m 1.446292,-0.516546 0.103293,0.206613 m 2.892534,3.822303 0.51654,0.103293 m -0.41322,-1.033012 -0.10332,0.929719 m 0.51654,-0.826426 -0.41322,-0.103293 m 0.41322,0 c -0.10332,-1.239679 -0.92977,-2.376038 -2.169421,-2.789264 m -1.136359,0.413226 1.136359,-0.309933 m -1.239653,-0.206613 0.103294,0.516546 m -1.549586,0.309906 -0.103293,-0.413226 m -0.929746,0.723159 1.033039,-0.309933 m 4.028916,2.272745 c 0,-0.309933 -0.10332,-0.61984 -0.20661,-0.929773 m -0.72314,1.239653 0.92975,-0.30988 m -0.92975,0.206586 c -0.516541,0.103294 -0.929767,0.723133 -0.723154,1.342972 m 0.309933,1.549586 -0.309933,-1.446292 m -0.51652,1.652905 c 0.309907,-0.10332 0.619839,-0.10332 0.929746,-0.206613 m -1.342946,-1.239679 0.4132,1.446292 M 98.50179,43.853186 c -0.206587,-0.516546 -0.826426,-0.929773 -1.446266,-0.72316 m -1.446292,0.413227 1.446292,-0.413227 m -1.652905,-0.516519 c 0,0.309906 0.10332,0.619839 0.206613,0.929746 m 1.239679,-1.239653 -1.446292,0.4132 m 1.446292,-0.4132 c 0.619839,-0.206586 0.929746,-0.826426 0.826453,-1.446265 m -0.413227,-1.342972 0.413227,1.446265 m 0.826426,-0.206613 -0.4132,-1.549585 m 0.4132,1.446292 c 0.103319,0.619839 0.723132,0.929746 1.342972,0.826452 m 0.929748,-0.206613 -0.929748,0.206613 m 0.103293,-2.376037 c -0.51652,-0.309933 -1.033066,-0.413227 -1.652852,-0.309933 m 3.718987,3.099197 c -0.10332,-1.239679 -0.92978,-2.272745 -2.066135,-2.789264 m 2.066135,3.718983 v -0.929719 m 0,0.103293 h -0.20662 M 99.638149,39.20443 99.948055,39.101137 M 98.708403,42.3036 c 0,-0.103293 -0.103294,-0.206586 -0.206613,-0.206586 -0.103294,0 -0.206587,0.103293 -0.206587,0.206586 0,0.103294 0.103293,0.206587 0.206587,0.206587 0.103319,0 0.206613,-0.103293 0.206613,-0.206587 m -1.446266,-1.136359 c 0,-0.309906 -0.309933,-0.619839 -0.723132,-0.619839 -0.309933,0 -0.61984,0.309933 -0.61984,0.619839 0,0.413227 0.309907,0.72316 0.61984,0.72316 0.413199,0 0.723132,-0.309933 0.723132,-0.72316 m 2.995853,-0.826426 c 0,-0.309933 -0.309935,-0.619839 -0.723161,-0.619839 -0.309907,0 -0.61984,0.309906 -0.61984,0.619839 0,0.4132 0.309933,0.723133 0.61984,0.723133 0.413226,0 0.723161,-0.309933 0.723161,-0.723133 m 0.82642,2.995825 c 0,-0.309907 -0.3099,-0.61984 -0.72313,-0.61984 -0.30991,0 -0.619838,0.309933 -0.619838,0.61984 0,0.413226 0.309928,0.723132 0.619838,0.723132 0.41323,0 0.72313,-0.309906 0.72313,-0.723132 m -2.99582,0.826452 c 0,-0.309906 -0.309933,-0.619839 -0.723159,-0.619839 -0.309907,0 -0.61984,0.309933 -0.61984,0.619839 0,0.413226 0.309933,0.723133 0.61984,0.723133 0.413226,0 0.723159,-0.309907 0.723159,-0.723133 m -0.206613,0 c 0,-0.206613 -0.206613,-0.413226 -0.516546,-0.413226 -0.206613,0 -0.413227,0.206613 -0.413227,0.413226 0,0.309906 0.206614,0.51652 0.413227,0.51652 0.309933,0 0.516546,-0.206614 0.516546,-0.51652 M 100.8778,43.33664 c 0,-0.206614 -0.20661,-0.413227 -0.51652,-0.413227 -0.20661,0 -0.413225,0.206613 -0.413225,0.413227 0,0.309932 0.206615,0.516546 0.413225,0.516546 0.30991,0 0.51652,-0.206614 0.51652,-0.516546 m -0.82643,-2.995825 c 0,-0.206613 -0.206608,-0.413226 -0.516541,-0.413226 -0.206613,0 -0.413226,0.206613 -0.413226,0.413226 0,0.309907 0.206613,0.51652 0.413226,0.51652 0.309933,0 0.516541,-0.206613 0.516541,-0.51652 m -2.995846,0.826426 c 0,-0.206613 -0.206613,-0.413226 -0.516519,-0.413226 -0.206613,0 -0.413227,0.206613 -0.413227,0.413226 0,0.309933 0.206614,0.516546 0.413227,0.516546 0.309906,0 0.516519,-0.206613 0.516519,-0.516546 m -1.652905,0.516546 h 0.10332 m 0,0 0.206613,0.723107 m 0,0 0.103293,-0.103294 m 0,0 0.10332,0.103294 m 0,0 -0.10332,0.103293 m 0,0 -0.206613,0.10332 m 0,0 -0.206613,-0.92972 m 2.789264,3.305758 0.10332,0.206613 m 0,0 -0.10332,0.103293 m 0,0 -0.103293,-0.309906 m 0,0 h -0.10332 m 0,0 v -0.10332 m 0,0 h 0.10332 m 0,0 -0.10332,-0.103294 m 0,0 h 0.10332 m 0,0 0.103293,0.103294 m 0,0 0.309907,-0.103294 m 0,0 0.103319,0.103294 m 0,0 -0.206613,0.723159 m 0,0 h -0.103293 m 0,0 0.103293,-0.723159 m 0,0 -0.206613,0.10332 m 1.549559,0 0.10332,0.103293 h 0.206608 m 0,0 h 0.1033 m 0,0 c 0.10332,-0.103293 0.20661,-0.206613 0.10332,-0.309907 m 0,0.103294 h -0.10332 m -0.1033,0 c 0.1033,0 0.1033,0 0.1033,-0.103294 m -0.206615,0.103294 v 0 c 0,0.10332 0.103315,0.10332 0.103315,0 m -0.206608,0 0.103293,-0.103294 m 0,0 h 0.103315 m 0,0 v -0.103319 m 0,0 h -0.103315 m -0.103293,-0.206614 v 0.10332 h 0.103293 m -0.103293,-0.206613 v 0 c -0.10332,0 -0.10332,0.103293 0,0.103293 m 0,-0.103293 h 0.103293 l 0.103315,0.103293 m 0,0 0.1033,-0.103293 m 0,0 -0.1033,-0.10332 h -0.206608 m 0,0 -0.206613,0.10332 v 0.206613 m 0,0 c 0,0.103294 0.103293,0.103294 0.206613,0.103294 m 0,0.103319 -0.10332,0.103294 v 0.10332 m 1.136358,-4.752049 -0.51652,0.103319 m 0,0 v 0.103294 m 0,0 h 0.41323 m 0,0 -0.20662,0.413226 m 0,-0.10332 c 0,0.10332 0,0.206613 0.1033,0.309933 0.10332,0.103293 0.20661,0.103293 0.20661,0 0.10332,0 0.20661,-0.10332 0.10332,-0.206613 m 0,0 h -0.10332 m -0.20661,0 v 0.103293 c 0.10332,0.10332 0.10332,0.10332 0.20661,0 0,0 0.10332,-0.103293 0,-0.103293 m -0.20661,0 0.20661,-0.51652 m 0,0 v -0.103319 m -2.78921,31.714783 c -0.309933,0.103294 -0.61984,0.103294 -0.826453,0.206587 m 1.033066,-0.619813 c -0.516546,0 -1.033066,0.206613 -1.446292,0.413226 m -1.239679,1.033039 c -0.826426,1.239679 -0.929745,2.789264 -0.103293,4.028943 0.826453,1.239652 2.272718,1.859492 3.718983,1.549585 1.446268,-0.309933 2.479328,-1.446292 2.789268,-2.892584 m -5.165279,-3.718983 c -0.516519,0.206587 -0.929746,0.619813 -1.239679,1.033039 m 0.309933,-0.103293 c -0.929772,1.136359 -1.033065,2.685944 -0.309933,3.925623 0.61984,1.239652 2.066132,1.859492 3.512371,1.549585 1.342967,-0.206613 2.479357,-1.342972 2.685967,-2.685971 m 0,0 h 0.20662 m -6.404958,-2.582624 0.309933,-0.10332 m 0.929746,-0.826452 v -0.206587 m 1.549585,-0.206613 c -0.516519,0 -1.033065,0.103293 -1.549585,0.309907 m 1.446292,-0.51652 0.103293,0.206613 m 2.892534,3.925596 h 0.51654 m -0.41322,-0.929745 -0.10332,0.929745 m 0.51654,-0.929745 h -0.41322 m 0.41322,0 c -0.10332,-1.342972 -0.92977,-2.376038 -2.169421,-2.789238 m -1.136359,0.309907 1.136359,-0.309907 m -1.239653,-0.206613 0.103294,0.51652 m -1.549586,0.413226 -0.103293,-0.516546 m -0.929746,0.826452 1.033039,-0.309906 m 4.028916,2.169424 c 0,-0.309932 -0.10332,-0.516546 -0.20661,-0.826452 m -0.72314,1.136359 0.92975,-0.206613 m -0.92975,0.10332 c -0.516541,0.206613 -0.929767,0.826426 -0.723154,1.446265 m 0.309933,1.446292 -0.309933,-1.446292 m -0.51652,1.652905 c 0.309907,0 0.619839,-0.10332 0.929746,-0.206613 m -1.342946,-1.239679 0.4132,1.549585 M 98.50179,76.704328 c -0.206587,-0.619839 -0.826426,-0.929746 -1.446266,-0.826452 m -1.446292,0.516546 1.446292,-0.413227 m -1.652905,-0.516519 c 0,0.309906 0.10332,0.619813 0.206613,0.826426 m 1.239679,-1.136359 -1.446292,0.309933 m 1.446292,-0.413226 c 0.619839,-0.10332 0.929746,-0.72316 0.826453,-1.342973 m -0.413227,-1.446291 0.413227,1.446291 m 0.826426,-0.206613 -0.4132,-1.446291 m 0.4132,1.446291 c 0.103319,0.51652 0.723132,0.929746 1.342972,0.723133 m 0.929748,-0.206613 -0.929748,0.309906 m 0.103293,-2.479331 c -0.51652,-0.206613 -1.033066,-0.309906 -1.652852,-0.309906 m 3.718987,3.202464 c -0.10332,-1.239653 -0.92978,-2.376038 -2.066135,-2.892558 m 2.066135,3.822303 v -0.929745 m 0,0 h -0.20662 m -2.169421,-2.789238 0.309906,-0.10332 m 2.685945,0.929746 c 0,0 0.10332,0 0,0 m -3.925597,2.272745 c 0,-0.10332 -0.103294,-0.206614 -0.206613,-0.206614 -0.103294,0 -0.206587,0.103294 -0.206587,0.206614 0,0.103293 0.103293,0.309906 0.206587,0.309906 0.103319,0 0.206613,-0.206613 0.206613,-0.309906 m -1.446266,-1.033066 c 0,-0.413226 -0.309933,-0.723133 -0.723132,-0.723133 -0.309933,0 -0.61984,0.309907 -0.61984,0.723133 0,0.309906 0.309907,0.723133 0.61984,0.723133 0.413199,0 0.723132,-0.413227 0.723132,-0.723133 m 2.995853,-0.826453 c 0,-0.413226 -0.309935,-0.723132 -0.723161,-0.723132 -0.309907,0 -0.61984,0.309906 -0.61984,0.723132 0,0.309933 0.309933,0.723133 0.61984,0.723133 0.413226,0 0.723161,-0.4132 0.723161,-0.723133 m 0.82642,2.995878 c 0,-0.413227 -0.3099,-0.723133 -0.72313,-0.723133 -0.30991,0 -0.619838,0.309906 -0.619838,0.723133 0,0.309906 0.309928,0.723132 0.619838,0.723132 0.41323,0 0.72313,-0.413226 0.72313,-0.723132 m -2.99582,0.826452 c 0,-0.413226 -0.309933,-0.723159 -0.723159,-0.723159 -0.309907,0 -0.61984,0.309933 -0.61984,0.723159 0,0.309906 0.309933,0.723133 0.61984,0.723133 0.413226,0 0.723159,-0.413227 0.723159,-0.723133 m -0.206613,0 c 0,-0.309933 -0.206613,-0.516546 -0.516546,-0.516546 -0.206613,0 -0.413227,0.206613 -0.413227,0.516546 0,0.206613 0.206614,0.51652 0.413227,0.51652 0.309933,0 0.516546,-0.309907 0.516546,-0.51652 m 2.995823,-0.826452 c 0,-0.309933 -0.20661,-0.516547 -0.51652,-0.516547 -0.20661,0 -0.413225,0.206614 -0.413225,0.516547 0,0.206613 0.206615,0.516519 0.413225,0.516519 0.30991,0 0.51652,-0.309906 0.51652,-0.516519 m -0.82643,-2.995878 c 0,-0.309906 -0.206608,-0.516519 -0.516541,-0.516519 -0.206613,0 -0.413226,0.206613 -0.413226,0.516519 0,0.206614 0.206613,0.516546 0.413226,0.516546 0.309933,0 0.516541,-0.309932 0.516541,-0.516546 m -2.995846,0.826453 c 0,-0.309907 -0.206613,-0.51652 -0.516519,-0.51652 -0.206613,0 -0.413227,0.206613 -0.413227,0.51652 0,0.206613 0.206614,0.51652 0.413227,0.51652 0.309906,0 0.516519,-0.309907 0.516519,-0.51652 m -1.652905,0.51652 0.10332,-0.103294 m 0,0 0.206613,0.826453 m 0,0 0.103293,-0.206613 m 0,0 0.10332,0.206613 m 0,0 -0.10332,0.103293 m 0,0 h -0.206613 m 0,0 -0.206613,-0.826452 m 2.789264,3.20249 0.10332,0.309906 m 0,0 h -0.10332 m 0,0 -0.103293,-0.206613 m 0,0 h -0.10332 m 0,0 v -0.103293 m 0,0 h 0.10332 m 0,0 -0.10332,-0.206613 m 0,0 h 0.10332 m 0,0 0.103293,0.103293 m 0,0 0.309907,-0.103293 m 0,0 0.103319,0.206613 m 0,0 -0.206613,0.619839 m 0,0 -0.103293,0.103293 m 0,0 0.103293,-0.723132 m 0,0 h -0.206613 m 1.549559,0 0.10332,0.103293 0.206608,0.10332 m 0,0 h 0.1033 m 0,-0.10332 c 0.10332,0 0.20661,-0.206613 0.10332,-0.309906 m 0,0.103293 h -0.10332 m -0.1033,0.10332 c 0.1033,0 0.1033,-0.10332 0.1033,-0.10332 m -0.206615,0 v 0.10332 h 0.103315 m -0.206608,0 0.103293,-0.10332 v -0.103293 m 0,0 h 0.103315 m 0,0 v -0.10332 m 0,0 h -0.103315 m -0.103293,-0.103294 v 0.103294 h 0.103293 m -0.103293,-0.309907 v 0.10332 c -0.10332,0 -0.10332,0 0,0.103293 m 0,-0.103293 h 0.103293 0.103315 m 0,0 h 0.1033 m 0,0 -0.1033,-0.10332 -0.206608,-0.103293 m 0,0 -0.206613,0.206613 v 0.206587 m 0,-0.103294 c 0,0.103294 0.103293,0.206614 0.206613,0.206614 m 0,0 -0.10332,0.103293 v 0.10332 m 1.136358,-4.648756 -0.51652,0.103293 m 0,0 v 0.10332 m 0,0 0.41323,-0.10332 m 0,0 -0.20662,0.413227 m 0,0 c 0,0.103319 0,0.206613 0.1033,0.206613 0.10332,0.103293 0.20661,0.103293 0.20661,0.103293 0.10332,-0.103293 0.20661,-0.206587 0.10332,-0.309906 m 0,0.103319 h -0.10332 m -0.20661,-0.103319 v 0.206613 h 0.20661 c 0,0 0.10332,-0.103294 0,-0.206613 m -0.20661,0.103319 0.20661,-0.516546 m 0,0 v -0.103293 m -2.78921,31.714782 c -0.309933,0 -0.61984,0.10332 -0.826453,0.20661 m 1.033066,-0.61983 c -0.516546,0 -1.033066,0.10332 -1.446292,0.30993 m -1.239679,1.13636 c -0.826426,1.13636 -0.929745,2.78923 -0.103293,3.92559 0.826453,1.23966 2.272718,1.8595 3.718983,1.54959 1.446268,-0.30993 2.479328,-1.44629 2.789268,-2.89256 m -5.165279,-3.71898 c -0.516519,0.3099 -0.929746,0.61984 -1.239679,1.13636 m 0.309933,-0.10332 c -0.929772,1.03306 -1.033065,2.58262 -0.309933,3.8223 0.61984,1.23965 2.066132,1.85949 3.512371,1.65288 1.342967,-0.30991 2.479357,-1.34297 2.685967,-2.78924 m 0,0.10329 h 0.20662 m -6.404958,-2.68591 0.309933,-0.10332 m 0.929746,-0.72314 v -0.20661 m 1.549585,-0.3099 c -0.516519,0 -1.033065,0.20661 -1.549585,0.41322 m 1.446292,-0.51654 0.103293,0.20661 m 2.892534,3.92559 h 0.51654 m -0.41322,-1.03303 -0.10332,1.03303 m 0.51654,-0.92971 -0.41322,-0.10332 m 0.41322,0 c -0.10332,-1.23966 -0.92977,-2.37602 -2.169421,-2.78924 m -1.136359,0.41322 1.136359,-0.30993 m -1.239653,-0.20661 0.103294,0.51654 m -1.549586,0.4132 -0.103293,-0.51652 m -0.929746,0.72314 1.033039,-0.20662 m 4.028916,2.16943 c 0,-0.30991 -0.10332,-0.61981 -0.20661,-0.92975 m -0.72314,1.23968 0.92975,-0.30993 m -0.92975,0.20661 c -0.516541,0.10332 -0.929767,0.72313 -0.723154,1.34295 m 0.309933,1.54958 -0.309933,-1.44626 m -0.51652,1.65288 c 0.309907,-0.1033 0.619839,-0.1033 0.929746,-0.20662 m -1.342946,-1.23965 0.4132,1.44627 m -0.309906,-1.54959 c -0.206587,-0.51652 -0.826426,-0.92975 -1.446266,-0.72313 m -1.446292,0.41322 1.446292,-0.41322 m -1.652905,-0.5165 c 0,0.30988 0.10332,0.61982 0.206613,0.92972 m 1.239679,-1.23965 -1.446292,0.4132 m 1.446292,-0.4132 c 0.619839,-0.20661 0.929746,-0.82642 0.826453,-1.44626 m -0.413227,-1.34298 0.413227,1.44627 m 0.826426,-0.20661 -0.4132,-1.54959 m 0.4132,1.44629 c 0.103319,0.61984 0.723132,0.92975 1.342972,0.82646 m 0.929748,-0.20662 -0.929748,0.20662 m 0.103293,-2.37604 c -0.51652,-0.30993 -1.033066,-0.41323 -1.652852,-0.30993 m 3.718987,3.09917 c -0.10332,-1.23966 -0.92978,-2.27272 -2.066135,-2.78924 m 2.066135,3.71898 v -0.92974 m 0,0.10332 h -0.20662 m -2.169421,-2.78927 0.309906,-0.10329 m 2.685945,0.92974 c 0,0 0.10332,-0.10332 0,-0.10332 m -3.925597,2.37604 c 0,-0.10329 -0.103294,-0.20661 -0.206613,-0.20661 -0.103294,0 -0.206587,0.10332 -0.206587,0.20661 0,0.10332 0.103293,0.20662 0.206587,0.20662 0.103319,0 0.206613,-0.1033 0.206613,-0.20662 m -1.446266,-1.13636 c 0,-0.3099 -0.309933,-0.61984 -0.723132,-0.61984 -0.309933,0 -0.61984,0.30994 -0.61984,0.61984 0,0.41323 0.309907,0.72314 0.61984,0.72314 0.413199,0 0.723132,-0.30991 0.723132,-0.72314 m 2.995853,-0.82645 c 0,-0.30991 -0.309935,-0.61981 -0.723161,-0.61981 -0.309907,0 -0.61984,0.3099 -0.61984,0.61981 0,0.41323 0.309933,0.72316 0.61984,0.72316 0.413226,0 0.723161,-0.30993 0.723161,-0.72316 m 0.82642,2.99585 c 0,-0.30991 -0.3099,-0.61984 -0.72313,-0.61984 -0.30991,0 -0.619838,0.30993 -0.619838,0.61984 0,0.41323 0.309928,0.72313 0.619838,0.72313 0.41323,0 0.72313,-0.3099 0.72313,-0.72313 m -2.99582,0.82645 c 0,-0.30993 -0.309933,-0.61984 -0.723159,-0.61984 -0.309907,0 -0.61984,0.30991 -0.61984,0.61984 0,0.41323 0.309933,0.72314 0.61984,0.72314 0.413226,0 0.723159,-0.30991 0.723159,-0.72314 m -0.206613,0 c 0,-0.20661 -0.206613,-0.41322 -0.516546,-0.41322 -0.206613,0 -0.413227,0.20661 -0.413227,0.41322 0,0.30991 0.206614,0.51652 0.413227,0.51652 0.309933,0 0.516546,-0.20661 0.516546,-0.51652 m 2.995823,-0.82645 c 0,-0.20661 -0.20661,-0.41323 -0.51652,-0.41323 -0.20661,0 -0.413225,0.20662 -0.413225,0.41323 0,0.30991 0.206615,0.51652 0.413225,0.51652 0.30991,0 0.51652,-0.20661 0.51652,-0.51652 m -0.82643,-2.99585 c 0,-0.20661 -0.206608,-0.41323 -0.516541,-0.41323 -0.206613,0 -0.413226,0.20662 -0.413226,0.41323 0,0.30993 0.206613,0.51655 0.413226,0.51655 0.309933,0 0.516541,-0.20662 0.516541,-0.51655 m -2.995846,0.82645 c 0,-0.20661 -0.206613,-0.41322 -0.516519,-0.41322 -0.206613,0 -0.413227,0.20661 -0.413227,0.41322 0,0.30994 0.206614,0.51652 0.413227,0.51652 0.309906,0 0.516519,-0.20658 0.516519,-0.51652 m -1.652905,0.51652 h 0.10332 m 0,0 0.206613,0.72316 m 0,0 0.103293,-0.10332 m 0,0 0.10332,0.10332 m 0,0 -0.10332,0.1033 m 0,0 -0.206613,0.10331 m 0,0 -0.206613,-0.92977 m 2.789264,3.30579 0.10332,0.20658 m 0,0 -0.10332,0.10332 m 0,0 -0.103293,-0.3099 m 0,0 h -0.10332 m 0,0 v -0.10332 m 0,0 h 0.10332 m 0,0 -0.10332,-0.1033 m 0,0 h 0.10332 m 0,0 0.103293,0.1033 m 0,0 0.309907,-0.1033 m 0,0 0.103319,0.1033 m 0,0 -0.206613,0.72313 m 0,0 h -0.103293 m 0,0 0.103293,-0.72313 m 0,0 -0.206613,0.10332 m 1.549559,0 0.10332,0.10329 h 0.206608 m 0,0 h 0.1033 m 0,0 c 0.10332,-0.10329 0.20661,-0.20661 0.10332,-0.30991 m 0,0.1033 h -0.10332 m -0.1033,0.10332 c 0.1033,0 0.1033,-0.10332 0.1033,-0.10332 m -0.206615,0 v 0 c 0,0.10332 0.103315,0.10332 0.103315,0 m -0.206608,0 0.103293,-0.1033 m 0,0 h 0.103315 m 0,0 v -0.10332 m 0,0 h -0.103315 m -0.103293,-0.20661 v 0.10332 c 0,0.10329 0.103293,0.10329 0.103293,0 m -0.103293,-0.20661 v 0 c -0.10332,0 -0.10332,0.10329 0,0.10329 m 0,-0.10329 h 0.103293 l 0.103315,0.10329 m 0,0 0.1033,-0.10329 m 0,0 -0.1033,-0.10332 h -0.206608 m 0,0 -0.206613,0.10332 v 0.20661 m 0,0 c 0,0.10329 0.103293,0.10329 0.206613,0.10329 m 0,0.10332 -0.10332,0.1033 v 0.10332 m 1.136358,-4.75205 -0.51652,0.10329 m 0,0 v 0.10332 m 0,0 h 0.41323 m 0,0 -0.20662,0.41323 m 0,-0.10332 c 0,0.10332 0,0.20661 0.1033,0.30993 0.10332,0.10329 0.20661,0.10329 0.20661,0 0.10332,0 0.20661,-0.10332 0.10332,-0.20661 m 0,0 h -0.10332 m -0.20661,0 v 0.10329 c 0.10332,0.10332 0.10332,0.10332 0.20661,0 0,0 0.10332,-0.10329 0,-0.10329 m -0.20661,0 0.20661,-0.51655 m 0,0 v -0.10329 m -2.78921,31.71475 c -0.309933,0.10332 -0.61984,0.10332 -0.826453,0.20662 m 1.033066,-0.61982 c -0.516546,0 -1.033066,0.20659 -1.446292,0.4132 m -1.239679,1.03307 c -0.826426,1.23968 -0.929745,2.78926 -0.103293,4.02892 0.826453,1.23967 2.272718,1.85951 3.718983,1.54961 1.446268,-0.30994 2.479328,-1.44629 2.789268,-2.89259 m -5.165279,-3.71901 c -0.516519,0.20662 -0.929746,0.61984 -1.239679,1.03307 m 0.309933,-0.10329 c -0.929772,1.13636 -1.033065,2.68594 -0.309933,3.92562 0.61984,1.23965 2.066132,1.85949 3.512371,1.54958 1.342967,-0.20661 2.479357,-1.34299 2.685967,-2.68597 m 0,0 h 0.20662 m -6.404958,-2.58262 0.309933,-0.10332 m 0.929746,-0.82645 v -0.20662 m 1.549585,-0.20661 c -0.516519,0 -1.033065,0.10332 -1.549585,0.30993 m 1.446292,-0.51652 0.103293,0.20659 m 2.892534,3.92562 h 0.51654 m -0.41322,-0.92974 -0.10332,0.92974 m 0.51654,-0.92974 h -0.41322 m 0.41322,0 c -0.10332,-1.34297 -0.92977,-2.37604 -2.169421,-2.78927 m -1.136359,0.30994 1.136359,-0.30994 m -1.239653,-0.20661 0.103294,0.51655 m -1.549586,0.41322 -0.103293,-0.51654 m -0.929746,0.82645 1.033039,-0.30991 m 4.028916,2.16943 c 0,-0.30993 -0.10332,-0.51655 -0.20661,-0.82645 m -0.72314,1.13635 0.92975,-0.20661 m -0.92975,0.10332 c -0.516541,0.20659 -0.929767,0.82643 -0.723154,1.44627 m 0.309933,1.44629 -0.309933,-1.44629 m -0.51652,1.6529 c 0.309907,0 0.619839,-0.10332 0.929746,-0.20661 m -1.342946,-1.23968 0.4132,1.54958 m -0.309906,-1.54958 c -0.206587,-0.61984 -0.826426,-0.92975 -1.446266,-0.82645 m -1.446292,0.51654 1.446292,-0.41322 m -1.652905,-0.51655 c 0,0.30993 0.10332,0.61984 0.206613,0.82645 m 1.239679,-1.13636 -1.446292,0.30991 m 1.446292,-0.4132 c 0.619839,-0.10332 0.929746,-0.72316 0.826453,-1.343 m -0.413227,-1.44626 0.413227,1.44626 m 0.826426,-0.20661 -0.4132,-1.44627 m 0.4132,1.44627 c 0.103319,0.51655 0.723132,0.92977 1.342972,0.72316 m 0.929748,-0.20661 -0.929748,0.3099 m 0.103293,-2.47933 c -0.51652,-0.20661 -1.033066,-0.30991 -1.652852,-0.30991 m 3.718987,3.20247 c -0.10332,-1.23968 -0.92978,-2.37604 -2.066135,-2.89256 m 2.066135,3.8223 v -0.92974 m 0,0 h -0.20662 m -2.169421,-2.78927 0.309906,-0.10329 m 2.685945,0.92975 c 0,0 0.10332,0 0,0 m -3.925597,2.27274 c 0,-0.10332 -0.103294,-0.20661 -0.206613,-0.20661 -0.103294,0 -0.206587,0.10329 -0.206587,0.20661 0,0.10329 0.103293,0.30991 0.206587,0.30991 0.103319,0 0.206613,-0.20662 0.206613,-0.30991 m -1.446266,-1.03306 c 0,-0.41323 -0.309933,-0.72314 -0.723132,-0.72314 -0.309933,0 -0.61984,0.30991 -0.61984,0.72314 0,0.3099 0.309907,0.72313 0.61984,0.72313 0.413199,0 0.723132,-0.41323 0.723132,-0.72313 m 2.995853,-0.82646 c 0,-0.41322 -0.309935,-0.72313 -0.723161,-0.72313 -0.309907,0 -0.61984,0.30991 -0.61984,0.72313 0,0.30991 0.309933,0.72314 0.61984,0.72314 0.413226,0 0.723161,-0.41323 0.723161,-0.72314 m 0.82642,2.99588 c 0,-0.41323 -0.3099,-0.72316 -0.72313,-0.72316 -0.30991,0 -0.619838,0.30993 -0.619838,0.72316 0,0.30991 0.309928,0.72313 0.619838,0.72313 0.41323,0 0.72313,-0.41322 0.72313,-0.72313 m -2.99582,0.82643 c 0,-0.4132 -0.309933,-0.72314 -0.723159,-0.72314 -0.309907,0 -0.61984,0.30994 -0.61984,0.72314 0,0.30993 0.309933,0.72316 0.61984,0.72316 0.413226,0 0.723159,-0.41323 0.723159,-0.72316 m -0.206613,0 c 0,-0.30991 -0.206613,-0.51652 -0.516546,-0.51652 -0.206613,0 -0.413227,0.20661 -0.413227,0.51652 0,0.20661 0.206614,0.51654 0.413227,0.51654 0.309933,0 0.516546,-0.30993 0.516546,-0.51654 m 2.995823,-0.82643 c 0,-0.30993 -0.20661,-0.51655 -0.51652,-0.51655 -0.20661,0 -0.413225,0.20662 -0.413225,0.51655 0,0.20661 0.206615,0.51652 0.413225,0.51652 0.30991,0 0.51652,-0.30991 0.51652,-0.51652 m -0.82643,-2.99588 c 0,-0.3099 -0.206608,-0.51652 -0.516541,-0.51652 -0.206613,0 -0.413226,0.20662 -0.413226,0.51652 0,0.20662 0.206613,0.51652 0.413226,0.51652 0.309933,0 0.516541,-0.3099 0.516541,-0.51652 m -2.995846,0.82646 c 0,-0.30994 -0.206613,-0.51655 -0.516519,-0.51655 -0.206613,0 -0.413227,0.20661 -0.413227,0.51655 0,0.20661 0.206614,0.51652 0.413227,0.51652 0.309906,0 0.516519,-0.30991 0.516519,-0.51652 m -1.652905,0.51652 h 0.10332 m 0,0 0.206613,0.72313 m 0,0 0.103293,-0.20659 m 0,0 0.10332,0.20659 m 0,0 -0.10332,0.10332 m 0,0 h -0.206613 m 0,0 -0.206613,-0.82645 m 2.789264,3.20249 0.10332,0.3099 m 0,0 h -0.10332 m 0,0 -0.103293,-0.20661 m 0,0 h -0.10332 m 0,0 v -0.10329 m 0,0 h 0.10332 m 0,0 -0.10332,-0.20662 m 0,0 h 0.10332 m 0,0 0.103293,0.1033 m 0,0 0.309907,-0.1033 m 0,0 0.103319,0.20662 m 0,0 -0.206613,0.61983 m 0,0 -0.103293,0.1033 m 0,0 0.103293,-0.72313 m 0,0 h -0.206613 m 1.549559,0 0.10332,0.10329 0.206608,0.10332 m 0,0 h 0.1033 m 0,-0.10332 c 0.10332,0 0.20661,-0.20661 0.10332,-0.30991 m 0,0.1033 h -0.10332 m -0.1033,0.10332 c 0.1033,0 0.1033,0 0.1033,-0.10332 m -0.206615,0 v 0.10332 h 0.103315 m -0.206608,0 0.103293,-0.10332 v -0.1033 m 0,0 h 0.103315 m 0,0 v -0.10332 m 0,0 h -0.103315 m -0.103293,-0.10329 v 0.10329 h 0.103293 m -0.103293,-0.3099 v 0.10329 c -0.10332,0 -0.10332,0 0,0.10332 m 0,-0.10332 h 0.103293 0.103315 m 0,0 h 0.1033 m 0,0 -0.1033,-0.10329 -0.206608,-0.10332 m 0,0 -0.206613,0.20661 v 0.20661 m 0,-0.10329 c 0,0.10329 0.103293,0.20661 0.206613,0.20661 m 0,0 -0.10332,0.1033 v 0.10332 m 1.136358,-4.64876 -0.51652,0.10329 m 0,0 v 0.10332 m 0,0 0.41323,-0.10332 m 0,0 -0.20662,0.41323 m 0,0 c 0,0.10329 0,0.20661 0.1033,0.20661 0.10332,0.1033 0.20661,0.1033 0.20661,0.1033 0.10332,-0.1033 0.20661,-0.20662 0.10332,-0.30991 m 0,0.10329 h -0.10332 m -0.20661,-0.10329 v 0.20661 h 0.20661 c 0,0 0.10332,-0.10332 0,-0.20661 m -0.20661,0.10329 0.20661,-0.51652 m 0,0 v -0.10329 M 33.109411,71.952279 v 0 m 1.239652,-0.413226 c 0,0 -0.103293,0.103293 0,0.103293 m -0.826452,0.723133 c 0.10332,0.10332 0.309933,0.206613 0.413226,0.10332 0.206613,0 0.309933,-0.10332 0.413226,-0.309933 m 0,0 v -0.309907 m 0.61984,6.301661 c 0.309906,0 0.619839,-0.10332 0.929746,-0.206613 m -2.789238,-6.095048 c -1.652878,0.826453 -2.479331,2.789264 -1.756172,4.442143 0.619813,1.756198 2.479305,2.68597 4.235503,2.169424 1.756198,-0.413226 2.789264,-2.169424 2.582651,-3.925622 -0.309933,-1.859492 -1.962812,-3.099171 -3.82233,-2.995851 m 0,0 c -0.413226,0 -0.826452,0.206613 -1.239652,0.309906 m 0.103293,0.10332 c -1.549558,0.723133 -2.376011,2.582625 -1.756171,4.23553 0.619839,1.652878 2.376011,2.58265 4.028889,2.169424 1.756199,-0.516546 2.789264,-2.169424 2.479358,-3.925623 -0.309933,-1.652905 -1.859518,-2.892557 -3.615717,-2.685944 m -0.103293,0.103293 v -0.103293 m 0.413226,1.756198 -0.413226,-1.239678 m 0.413226,1.239678 c 0.103294,0.51652 0.723133,0.929746 1.342972,0.723133 m 1.446266,-0.309933 -1.446266,0.413226 m 1.756199,0.413227 c -0.10332,-0.309907 -0.10332,-0.61984 -0.206613,-0.929746 m -0.413227,1.136359 0.51652,-0.206613 m -0.51652,0.206613 h 0.103294 l 0.103319,0.10332 m 0,0 v 0.103293 0.10332 m 0,0 0.103294,0.103293 v 0.10332 m 0,0 v 0.206586 l -0.103294,0.10332 m 0,0 h -0.206613 l -0.10332,-0.10332 m 0,0 0.10332,-0.103293 m 0,0 v 0.103293 h 0.103294 m 0,0 0.103319,-0.103293 v -0.103293 m 0,0 v -0.10332 h -0.103319 m 0,0 h -0.103294 m 0,0 v -0.103293 m 0,0 h 0.103294 v -0.10332 m 0,0 V 75.05145 h -0.103294 m 0,0 h -0.10332 v 0.103293 m 0,0 h -0.103293 m 0,0 V 75.05145 l 0.103293,-0.10332 m -0.826426,0.206613 0.826426,-0.206613 m -0.826426,0.10332 c -0.516546,0.206613 -0.929772,0.826426 -0.723159,1.446265 m 0.309933,1.446292 -0.413226,-1.446292 m -0.826453,0.206613 0.413227,1.549585 m -0.309907,-1.549585 c -0.206613,-0.619839 -0.826452,-0.929746 -1.446292,-0.826452 m -1.446265,0.516546 1.446265,-0.413227 m -1.652852,-0.516519 c 0,0.309906 0.103294,0.619813 0.206587,0.826426 m 1.239652,-1.136359 -1.549558,0.309933 m 1.549558,-0.413226 c 0.61984,-0.10332 0.929746,-0.72316 0.826453,-1.342973 m -0.413226,-1.239678 0.309906,1.239678 m -0.4132,-1.549611 c 0,0.10332 0.103294,0.206613 0.206587,0.206613 m -0.309907,-0.309906 v 0.103293 m -0.619813,4.752075 -0.413226,0.10332 m 0,0 v -0.10332 m 0,0 0.10332,-0.723132 m 0,0 h 0.206613 m 0,0 -0.206613,0.619839 m 0,0 h 0.309906 m 0,0 -0.103293,-0.309933 m 0,0 h 0.103293 m 0,0 0.10332,0.309933 m 0,0 v -0.10332 m 0,0 0.103294,0.10332 m 0,0 -0.103294,0.103293 m 0,0 v 0.10332 m 0,0 h -0.10332 m 0,0 v -0.10332 m -0.516519,-1.962811 -0.206613,0.10332 m 0,0 -0.10332,-0.72316 m 0,0 -0.103293,0.10332 m 0,0 -0.103294,-0.10332 m 0,0 0.103294,-0.206613 m 0,0 h 0.103293 m 0,0 0.309933,0.826453 m 5.061955,-1.342972 -0.516519,0.206613 m 0,0 -0.10332,-0.206613 m 0,0 0.309933,-0.413227 m 0,-0.103293 c 0.103293,0 0.103293,-0.10332 0,-0.10332 m 0,0.10332 -0.10332,-0.10332 h -0.103293 m 0,0 -0.10332,0.10332 m 0,0 -0.103293,0.103293 m 0,0 v -0.206613 l 0.206613,-0.103293 m 0,0 h 0.206613 l 0.103293,0.103293 m 0,0 v 0.206613 m 0,0 -0.206613,0.413227 m 0,0 0.309906,-0.103294 m 0,0 0.10332,0.103294 m -2.789264,-2.066105 v 0 m -1.136359,0.413226 v 0.103294 m 0,-0.103294 c 0,0 -0.103293,-0.10332 -0.103293,0 m 4.028916,2.995851 h -0.10332 m -2.169398,0.10332 c 0,-0.10332 -0.103319,-0.206614 -0.206613,-0.206614 -0.10332,0 -0.309933,0.103294 -0.309933,0.206614 0,0.103293 0.206613,0.309906 0.309933,0.309906 0.103294,0 0.206613,-0.206613 0.206613,-0.309906 m 1.549586,-1.859519 c 0,-0.413226 -0.309933,-0.723132 -0.72316,-0.723132 -0.309906,0 -0.723132,0.309906 -0.723132,0.723132 0,0.309933 0.413226,0.723133 0.723132,0.723133 0.413227,0 0.72316,-0.4132 0.72316,-0.723133 m 0.826426,2.995878 c 0,-0.413227 -0.309907,-0.723133 -0.723133,-0.723133 -0.309907,0 -0.723133,0.309906 -0.723133,0.723133 0,0.309906 0.413226,0.723132 0.723133,0.723132 0.413226,0 0.723133,-0.413226 0.723133,-0.723132 m -2.995851,0.826452 c 0,-0.413226 -0.309933,-0.723159 -0.723159,-0.723159 -0.309907,0 -0.723106,0.309933 -0.723106,0.723159 0,0.309906 0.413199,0.723133 0.723106,0.723133 0.413226,0 0.723159,-0.413227 0.723159,-0.723133 m -0.826452,-2.995877 c 0,-0.413226 -0.309907,-0.723133 -0.723107,-0.723133 -0.309933,0 -0.723159,0.309907 -0.723159,0.723133 0,0.309906 0.413226,0.723133 0.723159,0.723133 0.4132,0 0.723107,-0.413227 0.723107,-0.723133 m -0.206614,0 c 0,-0.309907 -0.206613,-0.51652 -0.516493,-0.51652 -0.206613,0 -0.516546,0.206613 -0.516546,0.51652 0,0.206613 0.309933,0.51652 0.516546,0.51652 0.30988,0 0.516493,-0.309907 0.516493,-0.51652 m 0.826453,2.995877 c 0,-0.309933 -0.206613,-0.516546 -0.516546,-0.516546 -0.206587,0 -0.51652,0.206613 -0.51652,0.516546 0,0.206613 0.309933,0.51652 0.51652,0.51652 0.309933,0 0.516546,-0.309907 0.516546,-0.51652 m 2.99585,-0.826452 c 0,-0.309933 -0.206586,-0.516547 -0.516519,-0.516547 -0.206613,0 -0.51652,0.206614 -0.51652,0.516547 0,0.206613 0.309907,0.516519 0.51652,0.516519 0.309933,0 0.516519,-0.309906 0.516519,-0.516519 m -0.826426,-2.995878 c 0,-0.309906 -0.206613,-0.516519 -0.516546,-0.516519 -0.206613,0 -0.516519,0.206613 -0.516519,0.516519 0,0.206614 0.309906,0.516546 0.516519,0.516546 0.309933,0 0.516546,-0.309932 0.516546,-0.516546 m -2.892557,31.714809 c 0,0.10329 0.103294,0.20661 0.206587,0.30991 m 0,0 c 0.10332,0.10332 0.309933,0.10332 0.413226,0.10332 0.206613,-0.10332 0.309933,-0.20662 0.413226,-0.30994 m 0,0 v -0.41322 m -1.136359,0.30993 v -0.10332 m 0,0.10332 v 0.10329 m 1.136359,-0.61983 c -0.413226,0 -0.826452,0.10332 -1.239652,0.30993 m 0.103293,0.10329 c -1.549558,0.72313 -2.376011,2.58265 -1.756171,4.2355 0.619839,1.65291 2.376011,2.58266 4.028889,2.06614 1.756199,-0.41323 2.789264,-2.06614 2.479358,-3.82231 -0.309933,-1.7562 -1.859518,-2.89255 -3.615717,-2.78923 m -0.103293,0.20661 v -0.10332 m 0.413226,1.7562 -0.413226,-1.34298 m 0.413226,1.23968 c 0.103294,0.61984 0.723133,0.92975 1.342972,0.82646 m 1.446266,-0.41323 -1.446266,0.41323 m 1.756199,0.4132 c -0.10332,-0.30991 -0.10332,-0.61982 -0.206613,-0.82643 m -1.342973,1.34297 1.446266,-0.41322 m -1.446266,0.3099 c -0.516546,0.10332 -0.929772,0.72313 -0.723159,1.34295 m 0.309933,1.54958 -0.413226,-1.44626 m -0.413226,1.65288 c 0.309906,-0.1033 0.619839,-0.1033 0.929746,-0.20662 m -1.342973,-1.23965 0.413227,1.44627 m -0.309907,-1.54959 c -0.206613,-0.51652 -0.826452,-0.92975 -1.446292,-0.72313 m -1.446265,0.41322 1.446265,-0.41322 m -1.652852,-0.5165 c 0,0.30988 0.103294,0.61982 0.206587,0.92972 m 1.239652,-1.23965 -1.549558,0.4132 m 1.549558,-0.4132 c 0.61984,-0.20661 0.929746,-0.82642 0.826453,-1.44626 m -0.413226,-1.23968 0.309906,1.34297 m 0.516546,3.20246 c 0,-0.30993 -0.309933,-0.61984 -0.723159,-0.61984 -0.309907,0 -0.723106,0.30991 -0.723106,0.61984 0,0.41323 0.413199,0.72314 0.723106,0.72314 0.413226,0 0.723159,-0.30991 0.723159,-0.72314 m 2.995851,-0.72316 c 0,-0.4132 -0.309907,-0.72313 -0.723133,-0.72313 -0.309907,0 -0.723133,0.30993 -0.723133,0.72313 0,0.30994 0.413226,0.72316 0.723133,0.72316 0.413226,0 0.723133,-0.41322 0.723133,-0.72316 m -3.822303,-2.27269 c 0,-0.3099 -0.309907,-0.61984 -0.723107,-0.61984 -0.309933,0 -0.723159,0.30994 -0.723159,0.61984 0,0.41323 0.413226,0.72314 0.723159,0.72314 0.4132,0 0.723107,-0.30991 0.723107,-0.72314 m 2.995877,-0.82645 c 0,-0.30991 -0.309933,-0.61981 -0.61984,-0.61981 -0.413226,0 -0.723132,0.3099 -0.723132,0.61981 0,0.41323 0.309906,0.72316 0.723132,0.72316 0.309907,0 0.61984,-0.30993 0.61984,-0.72316 m -1.342972,1.96281 c 0,-0.3099 -0.206614,-0.51652 -0.413227,-0.51652 -0.309933,0 -0.516546,0.20662 -0.516546,0.51652 0,0.20662 0.206613,0.51652 0.516546,0.51652 0.206613,0 0.413227,-0.3099 0.413227,-0.51652 m -0.826453,-3.30578 v -0.10329 m -1.033066,0.3099 v -0.10329 h -0.103293 m 0,0 c -1.652878,0.82642 -2.479331,2.68594 -1.756172,4.44211 0.619813,1.65288 2.479305,2.58266 4.235503,2.16943 1.756198,-0.51655 2.789264,-2.27275 2.582651,-4.02892 -0.309933,-1.7562 -1.962812,-3.09917 -3.82233,-2.89255 m 0,0 v 0 c 0,0 -0.103293,0 0,0 m -0.309906,5.37188 c 0,-0.20661 -0.206613,-0.41322 -0.516546,-0.41322 -0.206587,0 -0.51652,0.20661 -0.51652,0.41322 0,0.30991 0.309933,0.51652 0.51652,0.51652 0.309933,0 0.516546,-0.20661 0.516546,-0.51652 m 2.99585,-0.72316 c 0,-0.3099 -0.206586,-0.51652 -0.516519,-0.51652 -0.206613,0 -0.51652,0.20662 -0.51652,0.51652 0,0.20662 0.309907,0.51655 0.51652,0.51655 0.309933,0 0.516519,-0.30993 0.516519,-0.51655 m -3.822303,-2.27269 c 0,-0.20661 -0.206613,-0.41322 -0.516493,-0.41322 -0.206613,0 -0.516546,0.20661 -0.516546,0.41322 0,0.30994 0.309933,0.51652 0.516546,0.51652 0.30988,0 0.516493,-0.20658 0.516493,-0.51652 m 2.995877,-0.82645 c 0,-0.20661 -0.206613,-0.41323 -0.413226,-0.41323 -0.309933,0 -0.516546,0.20662 -0.516546,0.41323 0,0.30993 0.206613,0.51655 0.516546,0.51655 0.206613,0 0.413226,-0.20662 0.413226,-0.51655 m 29.855292,37.80983 c 0.103294,-0.20661 0.103294,-0.41322 0.103294,-0.61984 m -0.103294,-4.33885 c 0.103294,-0.20661 0.103294,-0.41322 0.103294,-0.61984 m -2.685944,3.71901 c 0,0.30994 0.309906,0.61984 0.619839,0.61984 0.309906,0 0.51652,-0.3099 0.51652,-0.61984 m -1.136359,-2.47933 c 0,0.30991 0.309906,0.61984 0.619839,0.61984 0.309906,0 0.51652,-0.30993 0.51652,-0.61984 m 0.103319,-1.23968 c 0,0.30994 0.309907,0.61984 0.619813,0.61984 0.309933,0 0.516546,-0.3099 0.516546,-0.61984 m 1.342972,0 c 0,0.30994 0.309907,0.61984 0.61984,0.61984 0.309906,0 0.516519,-0.3099 0.516519,-0.61984 m 0.10332,1.23968 c 0,0.30991 0.309906,0.61984 0.619813,0.61984 0.309933,0 0.516546,-0.30993 0.516546,-0.61984 m -1.136359,2.47933 c 0,0.30994 0.309906,0.61984 0.619813,0.61984 0.309933,0 0.516546,-0.3099 0.516546,-0.61984 m -2.376038,1.23968 c 0,0.30991 0.309907,0.61984 0.61984,0.61984 0.309906,0 0.516519,-0.30993 0.516519,-0.61984 m -3.61569,0 c 0,0.30991 0.309907,0.61984 0.619813,0.61984 0.309933,0 0.516546,-0.30993 0.516546,-0.61984 m 4.338849,-2.47933 c 0,-0.30993 0,-0.72316 -0.103319,-1.03306 m -7.024794,0 c -0.103293,0.3099 -0.206613,0.72313 -0.206613,1.03306 m 4.752076,-3.5124 c -0.72316,-0.10332 -1.446292,-0.10332 -2.066132,0 m 0,0 c -1.239652,0.4132 -2.169424,1.34298 -2.479331,2.47934 m 0,0 c 0,0.10329 -0.103293,0.10329 -0.103293,0.10329 m 0,0 c 0,0.20661 0.206613,0.41323 0.4132,0.41323 m 2.582651,-2.58266 c 0,-0.10329 0,-0.20661 -0.103294,-0.3099 -0.10332,0 -0.206613,-0.1033 -0.309933,0 m 4.545463,2.37604 c -0.413227,-1.13636 -1.342973,-2.06614 -2.479331,-2.47934 m 0,0.1033 c -0.10332,-0.1033 -0.309933,0 -0.309933,0 -0.103294,0.10329 -0.206613,0.20661 -0.206613,0.3099 m 2.58265,2.58266 c 0.10332,0 0.206613,-0.1033 0.309933,-0.20662 0,0 0.103294,-0.20661 0,-0.3099 m -2.892583,4.23552 c 0,0.10332 0.103319,0.20662 0.206613,0.30994 0,0 0.206613,0.10329 0.309933,0 m 0,0 c 1.136358,-0.30994 2.066104,-1.23968 2.479331,-2.47936 m -0.103294,0 c 0.103294,-0.10329 0,-0.20661 0,-0.30991 -0.10332,-0.10332 -0.206613,-0.10332 -0.309933,-0.10332 m -6.611567,0.41323 c 0.309907,1.23968 1.239679,2.16942 2.479331,2.47936 m 0,0 c 0.10332,0.10329 0.206613,0 0.309933,0 0.103294,-0.10332 0.103294,-0.20662 0.103294,-0.30994 m -2.582651,-2.58265 c -0.206587,0 -0.4132,0.10332 -0.4132,0.30994 m 0,0 c 0,0.10329 0.103293,0.10329 0.103293,0.10329 m -0.206613,-1.03304 c 0,0.4132 0.10332,0.72313 0.206613,1.03304 m 7.024794,0 c 0.103319,-0.30991 0.103319,-0.61984 0.103319,-1.03304 m -4.648782,3.5124 c 0.61984,0.20658 1.342972,0.20658 2.066132,0 m -1.756199,-1.03307 c 0,-0.30993 -0.206613,-0.51654 -0.516546,-0.51654 -0.309906,0 -0.619813,0.20661 -0.619813,0.51654 m 3.61569,0 c 0,-0.30993 -0.206613,-0.51654 -0.516519,-0.51654 -0.309933,0 -0.61984,0.20661 -0.61984,0.51654 m 2.376038,-1.23968 c 0,-0.3099 -0.206613,-0.51652 -0.516546,-0.51652 -0.309907,0 -0.619813,0.20662 -0.619813,0.51652 m 1.136359,-2.47933 c 0,-0.30993 -0.206613,-0.51652 -0.516546,-0.51652 -0.309907,0 -0.619813,0.20659 -0.619813,0.51652 m -0.10332,-1.23968 c 0,-0.3099 -0.206613,-0.51652 -0.516519,-0.51652 -0.309933,0 -0.61984,0.20662 -0.61984,0.51652 m -1.342972,0 c 0,-0.3099 -0.206613,-0.51652 -0.516546,-0.51652 -0.309906,0 -0.619813,0.20662 -0.619813,0.51652 m -0.103319,1.23968 c 0,-0.30993 -0.206614,-0.51652 -0.51652,-0.51652 -0.309933,0 -0.619839,0.20659 -0.619839,0.51652 m 1.136359,2.47933 c 0,-0.3099 -0.206614,-0.51652 -0.51652,-0.51652 -0.309933,0 -0.619839,0.20662 -0.619839,0.51652 m 0,-1.65288 h -0.10332 m 3.615716,3.61569 v -0.10329 m -1.033065,0 v 0.10329 m -2.582651,-2.58265 h 0.10332 m 0,-1.13635 c 0.413226,0.30993 0.826452,0.30993 1.136359,0 m 1.033065,0.10331 h -1.033065 m 1.033065,-0.10331 c 0.206613,0 0.309907,-0.1033 0.309907,-0.30991 m 0,-1.03307 v 1.03307 m 0.206613,-1.65291 c 0,-0.20661 0,-0.41322 -0.103294,-0.51652 m 1.03304,0 c -0.309907,0.30991 -0.309907,0.72314 0,1.13636 m -0.103294,1.03307 v -1.03307 m 0.103294,1.03307 c 0,0.20661 0.103319,0.30991 0.309932,0.30991 m 1.033066,0.10331 h -1.033066 m 1.033066,-0.10331 c 0.4132,0.30993 0.826426,0.30993 1.136359,0 m 0,1.03306 c -0.309933,-0.20661 -0.723159,-0.20661 -1.136359,0 m -0.413226,0.10329 h 0.413226 m -0.309933,0 c -0.103293,0 -0.206613,0 -0.206613,0.10332 m 0,0.51652 v -0.41322 m -0.206613,0.61984 c 0.10332,0 0.206613,-0.1033 0.206613,-0.20662 m -0.723133,0.20662 h 0.51652 m -0.413226,0 c -0.103294,0 -0.206613,0 -0.206613,0.10332 m -0.103294,0.4132 v -0.30991 m 0.103294,0.30991 c -0.309907,0.30993 -0.309907,0.72316 0,1.13638 m -0.929746,-0.61984 c 0,-0.20661 0,-0.41322 -0.103294,-0.51654 m -0.103319,-1.03304 v 1.03304 m 0,-1.03304 c 0,-0.20662 -0.103294,-0.30994 -0.309907,-0.30994 m -1.033065,0 h 1.033065 m -1.033065,-0.10329 c -0.309907,-0.20661 -0.723133,-0.20661 -1.136359,0 m 1.033065,0 h 2.066105 m 0,0 v 2.58265 m 0,0 h 0.206613 m 0,0 v -0.51654 m 0.206613,-0.61984 c -0.10332,0.10332 -0.206613,0.30993 -0.206613,0.51654 m 0.206613,-0.41322 v -2.16943 m 0,0 h 2.479331 m 0,0 v -0.10329 m 0,0 h -0.516519 m -0.51652,-0.20662 c 0.206587,0.1033 0.4132,0.20662 0.619813,0.20662 m -0.619813,-0.20662 H 66.37378 m 0,0 v -2.47935 m 0,0 h -0.206613 m 0,0 v 0.51654 m -0.103294,0.51652 c 0.103294,-0.20661 0.206613,-0.41322 0.206613,-0.61984 m -0.206613,0.61984 v 2.06611 m 0,0 h -2.58265 m 0,0 v 0.20661 m 0,0 h 0.516519 m 0.61984,0.10332 c -0.103294,-0.10332 -0.309907,-0.20661 -0.51652,-0.20661 m 2.479331,2.78926 H 66.4771 m 2.99585,-3.20249 v 0.20661 m -3.09917,-2.99587 h 0.10332 m -2.995877,3.09917 v -0.1033 m 0,0 h 2.58265 m 0.413227,-2.99587 v 2.47935 m 2.99585,0.51652 h -2.479331 m -0.516519,2.99588 v -2.58265 m -0.413227,-30.26852 c 0.103294,-0.10332 0.103294,-0.3099 0.103294,-0.51652 m -0.103294,-4.44214 c 0.103294,-0.10329 0.103294,-0.30991 0.103294,-0.51652 m -2.685944,3.71898 c 0,0.30991 0.309906,0.61984 0.619839,0.61984 0.309906,0 0.51652,-0.30993 0.51652,-0.61984 m -1.136359,-2.4793 c 0,0.30991 0.309906,0.61981 0.619839,0.61981 0.309906,0 0.51652,-0.3099 0.51652,-0.61981 m 0.103319,-1.23968 c 0,0.30991 0.309907,0.61984 0.619813,0.61984 0.309933,0 0.516546,-0.30993 0.516546,-0.61984 m 1.342972,0 c 0,0.30991 0.309907,0.61984 0.61984,0.61984 0.309906,0 0.516519,-0.30993 0.516519,-0.61984 m 0.10332,1.23968 c 0,0.30991 0.309906,0.61981 0.619813,0.61981 0.309933,0 0.516546,-0.3099 0.516546,-0.61981 m -1.136359,2.4793 c 0,0.30991 0.309906,0.61984 0.619813,0.61984 0.309933,0 0.516546,-0.30993 0.516546,-0.61984 m -2.376038,1.23968 c 0,0.30991 0.309907,0.61982 0.61984,0.61982 0.309906,0 0.516519,-0.30991 0.516519,-0.61982 m -3.61569,0 c 0,0.30991 0.309907,0.61982 0.619813,0.61982 0.309933,0 0.516546,-0.30991 0.516546,-0.61982 m 4.338849,-2.47933 c 0,-0.41322 0,-0.72313 -0.103319,-1.03304 m -7.024794,0 c -0.103293,0.30991 -0.206613,0.61982 -0.206613,1.03304 m 4.752076,-3.51239 c -0.72316,-0.20662 -1.446292,-0.20662 -2.066132,0 m 0,0 c -1.239652,0.30993 -2.169424,1.23967 -2.479331,2.47935 m 0,0 c 0,0 -0.103293,0 -0.103293,0.1033 m 0,0 c 0,0.20661 0.206613,0.41322 0.4132,0.41322 m 2.582651,-2.58265 c 0,-0.10329 0,-0.3099 -0.103294,-0.3099 -0.10332,-0.10332 -0.206613,-0.10332 -0.309933,-0.10332 m 4.545463,2.47935 c -0.413227,-1.23968 -1.342973,-2.16942 -2.479331,-2.47935 m 0,0 c -0.10332,0 -0.309933,0 -0.309933,0.10332 -0.103294,0 -0.206613,0.20661 -0.206613,0.3099 m 2.58265,2.58265 c 0.10332,0 0.206613,-0.10332 0.309933,-0.20661 0,-0.10329 0.103294,-0.20661 0,-0.30991 m -2.892583,4.13219 c 0,0.10332 0.103319,0.20661 0.206613,0.30993 0,0 0.206613,0.10329 0.309933,0 m 0,0.10329 c 1.136358,-0.41322 2.066104,-1.34297 2.479331,-2.47933 m -0.103294,0 c 0.103294,-0.10329 0,-0.30991 0,-0.30991 -0.10332,-0.10332 -0.206613,-0.20661 -0.309933,-0.20661 m -6.611567,0.51652 c 0.309907,1.13636 1.239679,2.06611 2.479331,2.47933 m 0,-0.10329 c 0.10332,0.10329 0.206613,0 0.309933,0 0.103294,-0.10332 0.103294,-0.20661 0.103294,-0.30993 m -2.582651,-2.58263 c -0.206587,0 -0.4132,0.20661 -0.4132,0.41323 m 0,0 c 0,0 0.103293,0 0.103293,0.10329 m -0.206613,-1.03304 c 0,0.30993 0.10332,0.72313 0.206613,1.03304 m 7.024794,0 c 0.103319,-0.30991 0.103319,-0.72311 0.103319,-1.03304 m -4.648782,3.51237 c 0.61984,0.10332 1.342972,0.10332 2.066132,0 m -1.756199,-1.03304 c 0,-0.30993 -0.206613,-0.61984 -0.516546,-0.61984 -0.309906,0 -0.619813,0.30991 -0.619813,0.61984 m 3.61569,0 c 0,-0.30993 -0.206613,-0.61984 -0.516519,-0.61984 -0.309933,0 -0.61984,0.30991 -0.61984,0.61984 m 2.376038,-1.23968 c 0,-0.3099 -0.206613,-0.61984 -0.516546,-0.61984 -0.309907,0 -0.619813,0.30994 -0.619813,0.61984 m 1.136359,-2.4793 c 0,-0.30993 -0.206613,-0.61984 -0.516546,-0.61984 -0.309907,0 -0.619813,0.30991 -0.619813,0.61984 m -0.10332,-1.23968 c 0,-0.30991 -0.206613,-0.61984 -0.516519,-0.61984 -0.309933,0 -0.61984,0.30993 -0.61984,0.61984 m -1.342972,0 c 0,-0.30991 -0.206613,-0.61984 -0.516546,-0.61984 -0.309906,0 -0.619813,0.30993 -0.619813,0.61984 m -0.103319,1.23968 c 0,-0.30993 -0.206614,-0.61984 -0.51652,-0.61984 -0.309933,0 -0.619839,0.30991 -0.619839,0.61984 m 1.136359,2.4793 c 0,-0.3099 -0.206614,-0.61984 -0.51652,-0.61984 -0.309933,0 -0.619839,0.30994 -0.619839,0.61984 m 0,-1.75617 h -0.10332 m 2.582651,-2.58265 v 0.10332 m 1.033065,0 v -0.10332 m -3.615716,3.61569 h 0.10332 m 0,-1.03304 c 0.413226,0.20662 0.826452,0.20662 1.136359,0 m 1.033065,0 h -1.033065 m 1.033065,0 c 0.206613,0 0.309907,-0.20661 0.309907,-0.41322 m 0,-0.92975 v 1.03307 m 0.206613,-1.65291 c 0,-0.20661 0,-0.41323 -0.103294,-0.61984 m 1.03304,0 c -0.309907,0.41323 -0.309907,0.82645 0,1.13636 m -0.103294,1.13639 v -1.03307 m 0.103294,0.92975 c 0,0.20661 0.103319,0.41322 0.309932,0.41322 m 1.033066,0 h -1.033066 m 1.033066,0 c 0.4132,0.20662 0.826426,0.20662 1.136359,0 m 0,1.03304 c -0.309933,-0.3099 -0.723159,-0.3099 -1.136359,0 m -0.413226,0 h 0.413226 m -0.309933,0 c -0.103293,0 -0.206613,0.10329 -0.206613,0.20661 m 0,0.51652 v -0.51652 m -0.206613,0.61982 c 0.10332,0 0.206613,-0.1033 0.206613,-0.20662 m -0.723133,0.30994 h 0.51652 m -0.413226,-0.10332 c -0.103294,0 -0.206613,0.10332 -0.206613,0.20661 m -0.103294,0.41323 v -0.41323 m 0.103294,0.30993 c -0.309907,0.41323 -0.309907,0.82646 0,1.13636 m -0.929746,-0.51652 c 0,-0.20661 0,-0.41322 -0.103294,-0.61984 m -0.103319,-0.92974 v 1.03304 m 0,-1.13636 c 0,-0.20662 -0.103294,-0.30991 -0.309907,-0.30991 m -1.033065,0 h 1.033065 m -1.033065,0 c -0.309907,-0.3099 -0.723133,-0.3099 -1.136359,0 m 1.033065,0 h 2.066105 m 0,0 v 2.47933 m 0,0 h 0.206613 m 0,0 v -0.51652 m 0.206613,-0.61984 c -0.10332,0.20662 -0.206613,0.41323 -0.206613,0.61984 m 0.206613,-0.51654 v -2.06608 m 0,0 h 2.479331 m 0,0 v -0.20661 m 0,0 h -0.516519 m -0.51652,-0.20662 c 0.206587,0.1033 0.4132,0.20662 0.619813,0.20662 m -0.619813,-0.10332 H 66.37378 m 0,0 v -2.58263 m 0,0 h -0.206613 m 0,0 v 0.51652 m -0.103294,0.51652 c 0.103294,-0.10329 0.206613,-0.30991 0.206613,-0.51652 m -0.206613,0.61984 v 2.06611 m 0,0 h -2.58265 m 0,0 v 0.10331 m 0,0 h 0.516519 m 0.61984,0.10327 c -0.103294,-0.10327 -0.309907,-0.10327 -0.51652,-0.10327 m 2.479331,2.68592 H 66.4771 m 2.99585,-3.09914 v 0.10329 m -3.09917,-2.99585 h 0.10332 m -2.995877,3.20247 v -0.20662 m 0,0 h 2.58265 m 0.413227,-2.99585 v 2.58263 m 2.99585,0.41322 h -2.479331 m -0.516519,2.99585 v -2.47933 m 63.53286,-69.21468 c -0.30991,0 -0.61984,0.10332 -0.82645,0.206613 m 1.03306,-0.619839 c -0.51652,0 -1.03306,0.10332 -1.44629,0.309933 m -1.23965,1.136359 c -0.82643,1.136359 -0.92972,2.789237 -0.10332,3.925596 0.82645,1.239679 2.27274,1.859492 3.71901,1.549585 1.44629,-0.309906 2.47936,-1.446292 2.78926,-2.892557 m -5.1653,-3.718983 c -0.51652,0.309906 -0.92974,0.619839 -1.23965,1.136359 m 0.30991,-0.103294 c -0.92972,1.033039 -1.03304,2.582598 -0.30991,3.822277 0.61984,1.239679 2.0661,1.859492 3.5124,1.652905 1.34297,-0.309933 2.47933,-1.342999 2.68594,-2.789264 m 0,0.103293 h 0.10329 m -6.30163,-2.685917 0.20661,-0.103294 m 1.03304,-0.723159 V 39.20443 m 1.54959,-0.309906 c -0.51652,0 -1.03304,0.206613 -1.54959,0.413226 m 1.44629,-0.516546 0.1033,0.206613 m 2.89258,3.822303 0.51652,0.103293 m -0.41323,-1.033012 -0.10329,0.929719 m 0.51652,-0.826426 -0.41323,-0.103293 m 0.41323,0 c -0.10329,-1.239679 -0.92975,-2.376038 -2.16942,-2.789264 m -1.13636,0.413226 1.13636,-0.309933 m -1.23968,-0.206613 0.10332,0.516546 m -1.54959,0.309906 -0.10332,-0.413226 m -1.03304,0.723159 1.13636,-0.309933 m 4.02892,2.272745 c 0,-0.309933 -0.1033,-0.61984 -0.20662,-0.929773 m -0.72313,1.239653 0.92975,-0.30988 m -0.92975,0.206586 c -0.61984,0.103294 -0.92974,0.723133 -0.82645,1.342972 m 0.41323,1.549586 -0.30991,-1.446292 m -0.51655,1.652905 c 0.30994,-0.10332 0.61984,-0.10332 0.92978,-0.206613 m -1.343,-1.239679 0.41322,1.446292 m -0.41322,-1.549585 c -0.1033,-0.516546 -0.72314,-0.929773 -1.34298,-0.72316 m -1.44626,0.413227 1.44626,-0.413227 m -1.65287,-0.516519 c 0,0.309906 0.10329,0.619839 0.20661,0.929746 m 1.23965,-1.239653 -1.44626,0.4132 m 1.44626,-0.4132 c 0.61984,-0.206586 0.92977,-0.826426 0.82645,-1.446265 m -0.41322,-1.342972 0.41322,1.446265 m 0.82646,-0.206613 -0.41323,-1.549585 m 0.41323,1.446292 c 0.10329,0.619839 0.72313,0.929746 1.34297,0.826452 m 0.92974,-0.206613 -0.92974,0.206613 m 0.10332,-2.376037 c -0.51655,-0.309933 -1.03307,-0.413227 -1.65291,-0.309933 m 3.71901,3.099197 c -0.10332,-1.239679 -0.92974,-2.272745 -2.0661,-2.789264 m 2.0661,3.718983 v -0.929719 m 0,0.103293 h -0.20661 m -2.16942,-2.789264 0.30993,-0.103293 M 130.6298,42.3036 c 0,-0.103293 -0.10332,-0.206586 -0.20661,-0.206586 -0.10332,0 -0.20662,0.103293 -0.20662,0.206586 0,0.103294 0.1033,0.206587 0.20662,0.206587 0.10329,0 0.20661,-0.103293 0.20661,-0.206587 m -1.44629,-1.136359 c 0,-0.309906 -0.30991,-0.619839 -0.72314,-0.619839 -0.3099,0 -0.61983,0.309933 -0.61983,0.619839 0,0.413227 0.30993,0.72316 0.61983,0.72316 0.41323,0 0.72314,-0.309933 0.72314,-0.72316 m 2.99587,-0.826426 c 0,-0.309933 -0.3099,-0.619839 -0.72313,-0.619839 -0.30993,0 -0.61984,0.309906 -0.61984,0.619839 0,0.4132 0.30991,0.723133 0.61984,0.723133 0.41323,0 0.72313,-0.309933 0.72313,-0.723133 m 0.82646,2.995825 c 0,-0.309907 -0.41323,-0.61984 -0.72316,-0.61984 -0.4132,0 -0.72313,0.309933 -0.72313,0.61984 0,0.413226 0.30993,0.723132 0.72313,0.723132 0.30993,0 0.72316,-0.309906 0.72316,-0.723132 m -2.99588,0.826452 c 0,-0.309906 -0.41323,-0.619839 -0.72313,-0.619839 -0.41323,0 -0.72316,0.309933 -0.72316,0.619839 0,0.413226 0.30993,0.723133 0.72316,0.723133 0.3099,0 0.72313,-0.309907 0.72313,-0.723133 m -0.20661,0 c 0,-0.206613 -0.30991,-0.413226 -0.51652,-0.413226 -0.30994,0 -0.51655,0.206613 -0.51655,0.413226 0,0.309906 0.20661,0.51652 0.51655,0.51652 0.20661,0 0.51652,-0.206614 0.51652,-0.51652 m 2.99587,-0.826452 c 0,-0.206614 -0.30993,-0.413227 -0.51654,-0.413227 -0.30991,0 -0.51652,0.206613 -0.51652,0.413227 0,0.309932 0.20661,0.516546 0.51652,0.516546 0.20661,0 0.51654,-0.206614 0.51654,-0.516546 m -0.82645,-2.995825 c 0,-0.206613 -0.20661,-0.413226 -0.51652,-0.413226 -0.20661,0 -0.41322,0.206613 -0.41322,0.413226 0,0.309907 0.20661,0.51652 0.41322,0.51652 0.30991,0 0.51652,-0.206613 0.51652,-0.51652 m -2.99588,0.826426 c 0,-0.206613 -0.20661,-0.413226 -0.51652,-0.413226 -0.20661,0 -0.41322,0.206613 -0.41322,0.413226 0,0.309933 0.20661,0.516546 0.41322,0.516546 0.30991,0 0.51652,-0.206613 0.51652,-0.516546 m -1.65287,0.516546 h 0.10329 m 0,0 0.20661,0.723107 m 0,0 0.10332,-0.103294 m 0,0 v 0.103294 m 0,0 v 0.103293 m 0,0 -0.20661,0.10332 m 0,0 -0.20661,-0.92972 m 2.78926,3.305758 0.10329,0.206613 m 0,0 -0.20661,0.103293 m 0,0 v -0.309906 m 0,0 h -0.10329 m 0,0 v -0.10332 m 0,0 h 0.10329 m 0,0 -0.10329,-0.103294 m 0,0 h 0.10329 m 0,0 0.10332,0.103294 m 0,0 0.30991,-0.103294 m 0,0 v 0.103294 m 0,0 -0.10332,0.723159 m 0,0 h -0.1033 m 0,0 0.1033,-0.723159 m 0,0 -0.20659,0.10332 m 1.54959,0 0.10329,0.103293 h 0.20661 m 0,0 h 0.10329 m 0,0 c 0.10332,-0.103293 0.10332,-0.206613 0.10332,-0.309907 m 0,0.103294 h -0.10332 m -0.10329,0 c 0.10329,0 0.10329,0 0.10329,-0.103294 m -0.20658,0.103294 v 0 c 0,0.10332 0.10329,0.10332 0.10329,0 m -0.20661,0 v -0.103294 h 0.10332 m 0,0 h 0.10329 m 0,0 -0.10329,-0.103319 m -0.10332,-0.206614 v 0.10332 h 0.10332 m -0.10332,-0.206613 v 0 c -0.10329,0 -0.10329,0.103293 0,0.103293 m 0,-0.103293 h 0.10332 l 0.10329,0.103293 m 0,0 0.10329,-0.103293 m 0,0 -0.10329,-0.10332 h -0.20661 m 0,0 -0.20661,0.10332 v 0.206613 m 0,0 c 0,0.103294 0.10332,0.103294 0.20661,0.103294 m 0,0.103319 -0.10329,0.103294 v 0.10332 m 1.13635,-4.752049 -0.51654,0.103319 m 0,0 v 0.103294 m 0,0 h 0.30993 m 0,0 -0.10332,0.413226 m 0,-0.10332 c -0.10329,0.10332 0,0.206613 0,0.309933 0.10332,0.103293 0.20661,0.103293 0.30993,0 0.1033,0 0.1033,-0.10332 0.1033,-0.206613 m 0,0 h -0.1033 m -0.20661,0 c -0.10332,0 -0.10332,0.103293 0,0.103293 0,0.10332 0.10329,0.10332 0.10329,0 0.10332,0 0.10332,-0.103293 0.10332,-0.103293 m -0.20661,0 0.20661,-0.51652 m 0,0 v -0.103319 m -2.78926,64.565924 c -0.30991,0 -0.61984,0.10332 -0.82645,0.20661 m 1.03306,-0.61983 c -0.51652,0 -1.03306,0.10332 -1.44629,0.30993 m -1.23965,1.13636 c -0.82643,1.13636 -0.92972,2.78923 -0.10332,3.92559 0.82645,1.23966 2.27274,1.8595 3.71901,1.54959 1.44629,-0.30993 2.47936,-1.44629 2.78926,-2.89256 m -5.1653,-3.71898 c -0.51652,0.3099 -0.92974,0.61984 -1.23965,1.13636 m 0.30991,-0.10332 c -0.92972,1.03306 -1.03304,2.58262 -0.30991,3.8223 0.61984,1.23965 2.0661,1.85949 3.5124,1.65288 1.34297,-0.30991 2.47933,-1.34297 2.68594,-2.78924 m 0,0.10329 h 0.10329 m -6.30163,-2.68591 0.20661,-0.10332 m 1.03304,-0.72314 v -0.20661 m 1.54959,-0.3099 c -0.51652,0 -1.03304,0.20661 -1.54959,0.41322 m 1.44629,-0.51654 0.1033,0.20661 m 2.89258,3.92559 h 0.51652 m -0.41323,-1.03303 -0.10329,1.03303 m 0.51652,-0.92971 -0.41323,-0.10332 m 0.41323,0 c -0.10329,-1.23966 -0.92975,-2.37602 -2.16942,-2.78924 m -1.13636,0.41322 1.13636,-0.30993 m -1.23968,-0.20661 0.10332,0.51654 m -1.54959,0.4132 -0.10332,-0.51652 m -1.03304,0.72314 1.13636,-0.20662 m 4.02892,2.16943 c 0,-0.30991 -0.1033,-0.61981 -0.20662,-0.92975 m -0.72313,1.23968 0.92975,-0.30993 m -0.92975,0.20661 c -0.61984,0.10332 -0.92974,0.72313 -0.82645,1.34295 m 0.41323,1.54958 -0.30991,-1.44626 m -0.51655,1.65288 c 0.30994,-0.1033 0.61984,-0.1033 0.92978,-0.20662 m -1.343,-1.23965 0.41322,1.44627 m -0.41322,-1.54959 c -0.1033,-0.51652 -0.72314,-0.92975 -1.34298,-0.72313 m -1.44626,0.41322 1.44626,-0.41322 m -1.65287,-0.5165 c 0,0.30988 0.10329,0.61982 0.20661,0.92972 m 1.23965,-1.23965 -1.44626,0.4132 m 1.44626,-0.4132 c 0.61984,-0.20661 0.92977,-0.82642 0.82645,-1.44626 m -0.41322,-1.34298 0.41322,1.44627 m 0.82646,-0.20661 -0.41323,-1.54959 m 0.41323,1.44629 c 0.10329,0.61984 0.72313,0.92975 1.34297,0.82646 m 0.92974,-0.20662 -0.92974,0.20662 m 0.10332,-2.37604 c -0.51655,-0.30993 -1.03307,-0.41323 -1.65291,-0.30993 m 3.71901,3.09917 c -0.10332,-1.23966 -0.92974,-2.27272 -2.0661,-2.78924 m 2.0661,3.71898 v -0.92974 m 0,0.10332 h -0.20661 m -2.16942,-2.78927 0.30993,-0.10329 m 2.68594,0.92974 c 0,0 0.1033,-0.10332 0,-0.10332 m -3.92562,2.37604 c 0,-0.10329 -0.10332,-0.20661 -0.20661,-0.20661 -0.10332,0 -0.20662,0.10332 -0.20662,0.20661 0,0.10332 0.1033,0.20662 0.20662,0.20662 0.10329,0 0.20661,-0.1033 0.20661,-0.20662 m -1.44629,-1.13636 c 0,-0.3099 -0.30991,-0.61984 -0.72314,-0.61984 -0.3099,0 -0.61983,0.30994 -0.61983,0.61984 0,0.41323 0.30993,0.72314 0.61983,0.72314 0.41323,0 0.72314,-0.30991 0.72314,-0.72314 m 2.99587,-0.82645 c 0,-0.30991 -0.3099,-0.61981 -0.72313,-0.61981 -0.30993,0 -0.61984,0.3099 -0.61984,0.61981 0,0.41323 0.30991,0.72316 0.61984,0.72316 0.41323,0 0.72313,-0.30993 0.72313,-0.72316 m 0.82646,2.99585 c 0,-0.30991 -0.41323,-0.61984 -0.72316,-0.61984 -0.4132,0 -0.72313,0.30993 -0.72313,0.61984 0,0.41323 0.30993,0.72313 0.72313,0.72313 0.30993,0 0.72316,-0.3099 0.72316,-0.72313 m -2.99588,0.82645 c 0,-0.30993 -0.41323,-0.61984 -0.72313,-0.61984 -0.41323,0 -0.72316,0.30991 -0.72316,0.61984 0,0.41323 0.30993,0.72314 0.72316,0.72314 0.3099,0 0.72313,-0.30991 0.72313,-0.72314 m -0.20661,0 c 0,-0.20661 -0.30991,-0.41322 -0.51652,-0.41322 -0.30994,0 -0.51655,0.20661 -0.51655,0.41322 0,0.30991 0.20661,0.51652 0.51655,0.51652 0.20661,0 0.51652,-0.20661 0.51652,-0.51652 m 2.99587,-0.82645 c 0,-0.20661 -0.30993,-0.41323 -0.51654,-0.41323 -0.30991,0 -0.51652,0.20662 -0.51652,0.41323 0,0.30991 0.20661,0.51652 0.51652,0.51652 0.20661,0 0.51654,-0.20661 0.51654,-0.51652 m -0.82645,-2.99585 c 0,-0.20661 -0.20661,-0.41323 -0.51652,-0.41323 -0.20661,0 -0.41322,0.20662 -0.41322,0.41323 0,0.30993 0.20661,0.51655 0.41322,0.51655 0.30991,0 0.51652,-0.20662 0.51652,-0.51655 m -2.99588,0.82645 c 0,-0.20661 -0.20661,-0.41322 -0.51652,-0.41322 -0.20661,0 -0.41322,0.20661 -0.41322,0.41322 0,0.30994 0.20661,0.51652 0.41322,0.51652 0.30991,0 0.51652,-0.20658 0.51652,-0.51652 m -1.65287,0.51652 h 0.10329 m 0,0 0.20661,0.72316 m 0,0 0.10332,-0.10332 m 0,0 v 0.10332 m 0,0 v 0.1033 m 0,0 -0.20661,0.10331 m 0,0 -0.20661,-0.92977 m 2.78926,3.30579 0.10329,0.20658 m 0,0 -0.20661,0.10332 m 0,0 v -0.3099 m 0,0 h -0.10329 m 0,0 v -0.10332 m 0,0 h 0.10329 m 0,0 -0.10329,-0.1033 m 0,0 h 0.10329 m 0,0 0.10332,0.1033 m 0,0 0.30991,-0.1033 m 0,0 v 0.1033 m 0,0 -0.10332,0.72313 m 0,0 h -0.1033 m 0,0 0.1033,-0.72313 m 0,0 -0.20659,0.10332 m 1.54959,0 0.10329,0.10329 h 0.20661 m 0,0 h 0.10329 m 0,0 c 0.10332,-0.10329 0.10332,-0.20661 0.10332,-0.30991 m 0,0.1033 h -0.10332 m -0.10329,0.10332 c 0.10329,0 0.10329,-0.10332 0.10329,-0.10332 m -0.20658,0 v 0 c 0,0.10332 0.10329,0.10332 0.10329,0 m -0.20661,0 v -0.1033 h 0.10332 m 0,0 h 0.10329 m 0,0 -0.10329,-0.10332 m -0.10332,-0.20661 v 0.10332 c 0,0.10329 0.10332,0.10329 0.10332,0 m -0.10332,-0.20661 v 0 c -0.10329,0 -0.10329,0.10329 0,0.10329 m 0,-0.10329 h 0.10332 l 0.10329,0.10329 m 0,0 0.10329,-0.10329 m 0,0 -0.10329,-0.10332 h -0.20661 m 0,0 -0.20661,0.10332 v 0.20661 m 0,0 c 0,0.10329 0.10332,0.10329 0.20661,0.10329 m 0,0.10332 -0.10329,0.1033 v 0.10332 m 1.13635,-4.75205 -0.51654,0.10329 m 0,0 v 0.10332 m 0,0 h 0.30993 m 0,0 -0.10332,0.41323 m 0,-0.10332 c -0.10329,0.10332 0,0.20661 0,0.30993 0.10332,0.10329 0.20661,0.10329 0.30993,0 0.1033,0 0.1033,-0.10332 0.1033,-0.20661 m 0,0 h -0.1033 m -0.20661,0 c -0.10332,0 -0.10332,0.10329 0,0.10329 0,0.10332 0.10329,0.10332 0.10329,0 0.10332,0 0.10332,-0.10329 0.10332,-0.10329 m -0.20661,0 0.20661,-0.51655 m 0,0 v -0.10329 m -2.78926,31.71475 c -0.30991,0.10332 -0.61984,0.10332 -0.82645,0.20662 m 1.03306,-0.61982 c -0.51652,0 -1.03306,0.20659 -1.44629,0.4132 m -1.23965,1.03307 c -0.82643,1.23968 -0.92972,2.78926 -0.10332,4.02892 0.82645,1.23967 2.27274,1.85951 3.71901,1.54961 1.44629,-0.30994 2.47936,-1.44629 2.78926,-2.89259 m -5.1653,-3.71901 c -0.51652,0.20662 -0.92974,0.61984 -1.23965,1.03307 m 0.30991,-0.10329 c -0.92972,1.13636 -1.03304,2.68594 -0.30991,3.92562 0.61984,1.23965 2.0661,1.85949 3.5124,1.54958 1.34297,-0.20661 2.47933,-1.34299 2.68594,-2.68597 m 0,0 h 0.10329 m -6.30163,-2.58262 0.20661,-0.10332 m 1.03304,-0.82645 v -0.20662 m 1.54959,-0.20661 c -0.51652,0 -1.03304,0.10332 -1.54959,0.30993 m 1.44629,-0.51652 0.1033,0.20659 m 2.89258,3.92562 h 0.51652 m -0.41323,-0.92974 -0.10329,0.92974 m 0.51652,-0.92974 h -0.41323 m 0.41323,0 c -0.10329,-1.34297 -0.92975,-2.37604 -2.16942,-2.78927 m -1.13636,0.30994 1.13636,-0.30994 m -1.23968,-0.20661 0.10332,0.51655 m -1.54959,0.41322 -0.10332,-0.51654 m -1.03304,0.82645 1.13636,-0.30991 m 4.02892,2.16943 c 0,-0.30993 -0.1033,-0.51655 -0.20662,-0.82645 m -0.72313,1.13635 0.92975,-0.20661 m -0.92975,0.10332 c -0.61984,0.20659 -0.92974,0.82643 -0.82645,1.44627 m 0.41323,1.44629 -0.30991,-1.44629 m -0.51655,1.6529 c 0.30994,0 0.61984,-0.10332 0.92978,-0.20661 m -1.343,-1.23968 0.41322,1.54958 m -0.41322,-1.54958 c -0.1033,-0.61984 -0.72314,-0.92975 -1.34298,-0.82645 m -1.44626,0.51654 1.44626,-0.41322 m -1.65287,-0.51655 c 0,0.30993 0.10329,0.61984 0.20661,0.82645 m 1.23965,-1.13636 -1.44626,0.30991 m 1.44626,-0.4132 c 0.61984,-0.10332 0.92977,-0.72316 0.82645,-1.343 m -0.41322,-1.44626 0.41322,1.44626 m 0.82646,-0.20661 -0.41323,-1.44627 m 0.41323,1.44627 c 0.10329,0.51655 0.72313,0.92977 1.34297,0.72316 m 0.92974,-0.20661 -0.92974,0.3099 m 0.10332,-2.47933 c -0.51655,-0.20661 -1.03307,-0.30991 -1.65291,-0.30991 m 3.71901,3.20247 c -0.10332,-1.23968 -0.92974,-2.37604 -2.0661,-2.89256 m 2.0661,3.8223 v -0.92974 m 0,0 h -0.20661 m -2.16942,-2.78927 0.30993,-0.10329 m 2.68594,0.92975 c 0,0 0.1033,0 0,0 m -3.92562,2.27274 c 0,-0.10332 -0.10332,-0.20661 -0.20661,-0.20661 -0.10332,0 -0.20662,0.10329 -0.20662,0.20661 0,0.10329 0.1033,0.30991 0.20662,0.30991 0.10329,0 0.20661,-0.20662 0.20661,-0.30991 m -1.44629,-1.03306 c 0,-0.41323 -0.30991,-0.72314 -0.72314,-0.72314 -0.3099,0 -0.61983,0.30991 -0.61983,0.72314 0,0.3099 0.30993,0.72313 0.61983,0.72313 0.41323,0 0.72314,-0.41323 0.72314,-0.72313 m 2.99587,-0.82646 c 0,-0.41322 -0.3099,-0.72313 -0.72313,-0.72313 -0.30993,0 -0.61984,0.30991 -0.61984,0.72313 0,0.30991 0.30991,0.72314 0.61984,0.72314 0.41323,0 0.72313,-0.41323 0.72313,-0.72314 m 0.82646,2.99588 c 0,-0.41323 -0.41323,-0.72316 -0.72316,-0.72316 -0.4132,0 -0.72313,0.30993 -0.72313,0.72316 0,0.30991 0.30993,0.72313 0.72313,0.72313 0.30993,0 0.72316,-0.41322 0.72316,-0.72313 m -2.99588,0.82643 c 0,-0.4132 -0.41323,-0.72314 -0.72313,-0.72314 -0.41323,0 -0.72316,0.30994 -0.72316,0.72314 0,0.30993 0.30993,0.72316 0.72316,0.72316 0.3099,0 0.72313,-0.41323 0.72313,-0.72316 m -0.20661,0 c 0,-0.30991 -0.30991,-0.51652 -0.51652,-0.51652 -0.30994,0 -0.51655,0.20661 -0.51655,0.51652 0,0.20661 0.20661,0.51654 0.51655,0.51654 0.20661,0 0.51652,-0.30993 0.51652,-0.51654 m 2.99587,-0.82643 c 0,-0.30993 -0.30993,-0.51655 -0.51654,-0.51655 -0.30991,0 -0.51652,0.20662 -0.51652,0.51655 0,0.20661 0.20661,0.51652 0.51652,0.51652 0.20661,0 0.51654,-0.30991 0.51654,-0.51652 m -0.82645,-2.99588 c 0,-0.3099 -0.20661,-0.51652 -0.51652,-0.51652 -0.20661,0 -0.41322,0.20662 -0.41322,0.51652 0,0.20662 0.20661,0.51652 0.41322,0.51652 0.30991,0 0.51652,-0.3099 0.51652,-0.51652 m -2.99588,0.82646 c 0,-0.30994 -0.20661,-0.51655 -0.51652,-0.51655 -0.20661,0 -0.41322,0.20661 -0.41322,0.51655 0,0.20661 0.20661,0.51652 0.41322,0.51652 0.30991,0 0.51652,-0.30991 0.51652,-0.51652 m -1.65287,0.51652 h 0.10329 m 0,0 0.20661,0.72313 m 0,0 0.10332,-0.20659 m 0,0 v 0.20659 m 0,0 v 0.10332 m 0,0 h -0.20661 m 0,0 -0.20661,-0.82645 m 2.78926,3.20249 0.10329,0.3099 m 0,0 h -0.20661 m 0,0 v -0.20661 m 0,0 h -0.10329 m 0,0 v -0.10329 m 0,0 h 0.10329 m 0,0 -0.10329,-0.20662 m 0,0 h 0.10329 m 0,0 0.10332,0.1033 m 0,0 0.30991,-0.1033 m 0,0 v 0.20662 m 0,0 -0.10332,0.61983 m 0,0 -0.1033,0.1033 m 0,0 0.1033,-0.72313 m 0,0 h -0.20659 m 1.54959,0 0.10329,0.10329 0.20661,0.10332 m 0,0 h 0.10329 m 0,-0.10332 c 0.10332,0 0.10332,-0.20661 0.10332,-0.30991 m 0,0.1033 h -0.10332 m -0.10329,0.10332 c 0.10329,0 0.10329,0 0.10329,-0.10332 m -0.20658,0 v 0.10332 h 0.10329 m -0.20661,0 v -0.10332 l 0.10332,-0.1033 m 0,0 h 0.10329 m 0,0 -0.10329,-0.10332 m -0.10332,-0.10329 v 0.10329 h 0.10332 m -0.10332,-0.3099 v 0.10329 c -0.10329,0 -0.10329,0 0,0.10332 m 0,-0.10332 h 0.10332 0.10329 m 0,0 h 0.10329 m 0,0 -0.10329,-0.10329 -0.20661,-0.10332 m 0,0 -0.20661,0.20661 v 0.20661 m 0,-0.10329 c 0,0.10329 0.10332,0.20661 0.20661,0.20661 m 0,0 -0.10329,0.1033 v 0.10332 m 1.13635,-4.64876 -0.51654,0.10329 m 0,0 v 0.10332 m 0,0 0.30993,-0.10332 m 0,0 -0.10332,0.41323 m 0,0 c -0.10329,0.10329 0,0.20661 0,0.20661 0.10332,0.1033 0.20661,0.1033 0.30993,0.1033 0.1033,-0.1033 0.1033,-0.20662 0.1033,-0.30991 m 0,0.10329 h -0.1033 m -0.20661,-0.10329 c -0.10332,0.10329 -0.10332,0.10329 0,0.20661 h 0.10329 c 0.10332,0 0.10332,-0.10332 0.10332,-0.20661 m -0.20661,0.10329 0.20661,-0.51652 m 0,0 v -0.10329 m 29.13214,-99.4832 c -0.30991,0 -0.61982,0.10332 -0.92975,0.206613 m 1.13636,-0.619839 c -0.51652,0 -1.03304,0.10332 -1.54959,0.309933 m -1.23965,1.136359 c -0.82645,1.136359 -0.82645,2.789237 0,3.925596 0.72314,1.239679 2.27272,1.859492 3.61569,1.549585 1.44629,-0.309906 2.58263,-1.446292 2.78924,-2.892557 m -5.16528,-3.718983 c -0.41322,0.309906 -0.82642,0.619839 -1.23965,1.136359 m 0.30991,-0.103294 c -0.92975,1.033039 -1.03307,2.582598 -0.30991,3.822277 0.72314,1.239679 2.16943,1.859492 3.5124,1.652905 1.44626,-0.309933 2.4793,-1.342999 2.78921,-2.789264 m 0,0.103293 h 0.10332 m -6.30163,-2.685917 0.20661,-0.103294 m 1.03306,-0.723159 V 39.20443 m 1.44627,-0.309906 c -0.51652,0 -1.03304,0.206613 -1.44627,0.413226 m 1.44627,-0.516546 v 0.206613 m 2.99585,3.822303 0.51652,0.103293 m -0.51652,-1.033012 v 0.929719 m 0.51652,-0.826426 -0.51652,-0.103293 m 0.51652,0 c -0.20661,-1.239679 -1.03301,-2.376038 -2.16937,-2.789264 m -1.13639,0.413226 1.13639,-0.309933 m -1.343,-0.206613 0.20661,0.516546 m -1.54958,0.309906 -0.1033,-0.413226 m -1.03306,0.723159 1.13636,-0.309933 m 3.92559,2.272745 c 0,-0.309933 -0.10326,-0.61984 -0.20658,-0.929773 m -0.61984,1.239653 0.92974,-0.30988 m -0.92974,0.206586 c -0.61981,0.103294 -0.92975,0.723133 -0.82643,1.342972 m 0.41323,1.549586 -0.41323,-1.446292 m -0.41322,1.652905 c 0.3099,-0.10332 0.61984,-0.10332 0.82645,-0.206613 m -1.23968,-1.239679 0.41323,1.446292 m -0.41323,-1.549585 c -0.10332,-0.516546 -0.72313,-0.929773 -1.34297,-0.72316 m -1.44629,0.413227 1.44629,-0.413227 m -1.7562,-0.516519 c 0.10329,0.309906 0.10329,0.619839 0.20661,0.929746 m 1.34297,-1.239653 -1.44629,0.4132 m 1.44629,-0.4132 c 0.61984,-0.206586 0.92975,-0.826426 0.82646,-1.446265 m -0.41323,-1.342972 0.30991,1.446265 m 0.92974,-0.206613 -0.41322,-1.549585 m 0.41322,1.446292 c 0.10332,0.619839 0.72316,0.929746 1.34298,0.826452 m 0.92977,-0.206613 -0.92977,0.206613 m 0,-2.376037 c -0.51652,-0.309933 -1.03304,-0.413227 -1.54959,-0.309933 m 3.61569,3.099197 c -0.10332,-1.239679 -0.92975,-2.272745 -2.0661,-2.789264 m 2.0661,3.718983 c 0.10329,-0.309933 0.10329,-0.619813 0,-0.929719 m 0.10329,0.103293 h -0.20661 m -2.16937,-2.789264 0.3099,-0.103293 M 162.5512,42.3036 c 0,-0.103293 -0.20662,-0.206586 -0.30991,-0.206586 -0.10332,0 -0.20661,0.103293 -0.20661,0.206586 0,0.103294 0.10329,0.206587 0.20661,0.206587 0.10329,0 0.30991,-0.103293 0.30991,-0.206587 m -1.44627,-1.136359 c 0,-0.309906 -0.30993,-0.619839 -0.72316,-0.619839 -0.3099,0 -0.61981,0.309933 -0.61981,0.619839 0,0.413227 0.30991,0.72316 0.61981,0.72316 0.41323,0 0.72316,-0.309933 0.72316,-0.72316 m 2.99585,-0.826426 c 0,-0.309933 -0.30991,-0.619839 -0.72313,-0.619839 -0.30991,0 -0.61984,0.309906 -0.61984,0.619839 0,0.4132 0.30993,0.723133 0.61984,0.723133 0.41322,0 0.72313,-0.309933 0.72313,-0.723133 m 0.82643,2.995825 c 0,-0.309907 -0.4132,-0.61984 -0.72311,-0.61984 -0.41323,0 -0.72313,0.309933 -0.72313,0.61984 0,0.413226 0.3099,0.723132 0.72313,0.723132 0.30991,0 0.72311,-0.309906 0.72311,-0.723132 m -2.99585,0.826452 c 0,-0.309906 -0.4132,-0.619839 -0.72314,-0.619839 -0.41322,0 -0.72313,0.309933 -0.72313,0.619839 0,0.413226 0.30991,0.723133 0.72313,0.723133 0.30994,0 0.72314,-0.309907 0.72314,-0.723133 m -0.20659,0 c 0,-0.206613 -0.30993,-0.413226 -0.51655,-0.413226 -0.3099,0 -0.51652,0.206613 -0.51652,0.413226 0,0.309906 0.20662,0.51652 0.51652,0.51652 0.20662,0 0.51655,-0.206614 0.51655,-0.51652 m 2.99582,-0.826452 c 0,-0.206614 -0.30988,-0.413227 -0.51649,-0.413227 -0.30993,0 -0.51654,0.206613 -0.51654,0.413227 0,0.309932 0.20661,0.516546 0.51654,0.516546 0.20661,0 0.51649,-0.206614 0.51649,-0.516546 m -0.82642,-2.995825 c 0,-0.206613 -0.20661,-0.413226 -0.51652,-0.413226 -0.20661,0 -0.41323,0.206613 -0.41323,0.413226 0,0.309907 0.20662,0.51652 0.41323,0.51652 0.30991,0 0.51652,-0.206613 0.51652,-0.51652 m -2.99585,0.826426 c 0,-0.206613 -0.20662,-0.413226 -0.51655,-0.413226 -0.20661,0 -0.4132,0.206613 -0.4132,0.413226 0,0.309933 0.20659,0.516546 0.4132,0.516546 0.30993,0 0.51655,-0.206613 0.51655,-0.516546 m -1.65291,0.516546 h 0.10332 m 0,0 0.20662,0.723107 m 0,0 0.10329,-0.103294 m 0,0 v 0.103294 m 0,0 -0.10329,0.103293 m 0,0 -0.10332,0.10332 m 0,0 -0.20662,-0.92972 m 2.78927,3.305758 0.10329,0.206613 m 0,0 -0.20661,0.103293 m 0,0 v -0.309906 m 0,0 h -0.1033 m 0,0 v -0.10332 m 0,0 v -0.103294 m 0,0 h 0.1033 m 0,0 0.10332,0.103294 m 0,0 0.3099,-0.103294 m 0,0 v 0.103294 m 0,0 -0.10329,0.723159 m 0,0 h -0.10332 m 0,0 0.10332,-0.723159 m 0,0 -0.20661,0.10332 m 1.54958,0 0.1033,0.103293 h 0.10331 m 0,0 h 0.20662 m 0,0 c 0.10329,-0.103293 0.10329,-0.206613 0.10329,-0.309907 m 0,0.103294 h -0.10329 m -0.10332,0 c 0,0 0.10332,0 0,-0.103294 m -0.20661,0.103294 h 0.10331 c 0,0.10332 0,0.10332 0.1033,0 m -0.20661,0 v -0.103294 h 0.10331 m 0,0 h 0.1033 m 0,0 -0.1033,-0.103319 m -0.20661,-0.206614 c 0,0 0,0.10332 0.1033,0.10332 h 0.10331 m -0.10331,-0.206613 h -0.1033 v 0.103293 m 0.1033,-0.103293 h 0.10331 l 0.1033,0.103293 m 0,0 0.10332,-0.103293 m 0,0 -0.10332,-0.10332 h -0.20661 m 0,0 -0.20659,0.10332 v 0.206613 m 0,0 c 0,0.103294 0.10329,0.103294 0.20659,0.103294 m -0.1033,0.103319 v 0.103294 0.10332 m 1.13633,-4.752049 -0.51649,0.103319 m 0,0 v 0.103294 m 0,0 h 0.30991 m 0,0 -0.1033,0.413226 m 0,-0.10332 c -0.10332,0.10332 0,0.206613 0,0.309933 0.1033,0.103293 0.20662,0.103293 0.30988,0 0.10332,0 0.10332,-0.10332 0.10332,-0.206613 m 0,0 h -0.10332 m -0.20658,0 c -0.1033,0 -0.1033,0.103293 0,0.103293 0,0.10332 0.10332,0.10332 0.10332,0 0.10326,0 0.10326,-0.103293 0.10326,-0.103293 m -0.20658,0 0.20658,-0.51652 m 0,0 v -0.103319 m -2.78923,31.714783 c -0.30991,0.103294 -0.61982,0.103294 -0.92975,0.206587 m 1.13636,-0.619813 c -0.51652,0 -1.03304,0.206613 -1.54959,0.413226 m -1.23965,1.033039 c -0.82645,1.239679 -0.82645,2.789264 0,4.028943 0.72314,1.239652 2.27272,1.859492 3.61569,1.549585 1.44629,-0.309933 2.58263,-1.446292 2.78924,-2.892584 m -5.16528,-3.718983 c -0.41322,0.206587 -0.82642,0.619813 -1.23965,1.033039 m 0.30991,-0.103293 c -0.92975,1.136359 -1.03307,2.685944 -0.30991,3.925623 0.72314,1.239652 2.16943,1.859492 3.5124,1.549585 1.44626,-0.206613 2.4793,-1.342972 2.78921,-2.685971 m 0,0 h 0.10332 m -6.30163,-2.582624 0.20661,-0.10332 m 1.03306,-0.826452 v -0.206587 m 1.44627,-0.206613 c -0.51652,0 -1.03304,0.103293 -1.44627,0.309907 m 1.44627,-0.51652 v 0.206613 m 2.99585,3.925596 h 0.51652 m -0.51652,-0.929745 v 0.929745 m 0.51652,-0.929745 h -0.51652 m 0.51652,0 c -0.20661,-1.342972 -1.03301,-2.376038 -2.16937,-2.789238 m -1.13639,0.309907 1.13639,-0.309907 m -1.343,-0.206613 0.20661,0.51652 m -1.54958,0.413226 -0.1033,-0.516546 m -1.03306,0.826452 1.13636,-0.309906 m 3.92559,2.169424 c 0,-0.309932 -0.10326,-0.516546 -0.20658,-0.826452 m -0.61984,1.136359 0.92974,-0.206613 m -0.92974,0.10332 c -0.61981,0.206613 -0.92975,0.826426 -0.82643,1.446265 m 0.41323,1.446292 -0.41323,-1.446292 m -0.41322,1.652905 c 0.3099,0 0.61984,-0.10332 0.82645,-0.206613 m -1.23968,-1.239679 0.41323,1.549585 m -0.41323,-1.549585 c -0.10332,-0.619839 -0.72313,-0.929746 -1.34297,-0.826452 m -1.44629,0.516546 1.44629,-0.413227 m -1.7562,-0.516519 c 0.10329,0.309906 0.10329,0.619813 0.20661,0.826426 m 1.34297,-1.136359 -1.44629,0.309933 m 1.44629,-0.413226 c 0.61984,-0.10332 0.92975,-0.72316 0.82646,-1.342973 m -0.41323,-1.446291 0.30991,1.446291 m 0.92974,-0.206613 -0.41322,-1.446291 m 0.41322,1.446291 c 0.10332,0.51652 0.72316,0.929746 1.34298,0.723133 m 0.92977,-0.206613 -0.92977,0.309906 m 0,-2.479331 c -0.51652,-0.206613 -1.03304,-0.309906 -1.54959,-0.309906 m 3.61569,3.202464 c -0.10332,-1.239653 -0.92975,-2.376038 -2.0661,-2.892558 m 2.0661,3.822303 c 0.10329,-0.309906 0.10329,-0.619812 0,-0.929745 m 0.10329,0 h -0.20661 m -2.16937,-2.789238 0.3099,-0.10332 m -1.23967,3.202491 c 0,-0.10332 -0.20662,-0.206614 -0.30991,-0.206614 -0.10332,0 -0.20661,0.103294 -0.20661,0.206614 0,0.103293 0.10329,0.309906 0.20661,0.309906 0.10329,0 0.30991,-0.206613 0.30991,-0.309906 m -1.44627,-1.033066 c 0,-0.413226 -0.30993,-0.723133 -0.72316,-0.723133 -0.3099,0 -0.61981,0.309907 -0.61981,0.723133 0,0.309906 0.30991,0.723133 0.61981,0.723133 0.41323,0 0.72316,-0.413227 0.72316,-0.723133 m 2.99585,-0.826453 c 0,-0.413226 -0.30991,-0.723132 -0.72313,-0.723132 -0.30991,0 -0.61984,0.309906 -0.61984,0.723132 0,0.309933 0.30993,0.723133 0.61984,0.723133 0.41322,0 0.72313,-0.4132 0.72313,-0.723133 m 0.82643,2.995878 c 0,-0.413227 -0.4132,-0.723133 -0.72311,-0.723133 -0.41323,0 -0.72313,0.309906 -0.72313,0.723133 0,0.309906 0.3099,0.723132 0.72313,0.723132 0.30991,0 0.72311,-0.413226 0.72311,-0.723132 m -2.99585,0.826452 c 0,-0.413226 -0.4132,-0.723159 -0.72314,-0.723159 -0.41322,0 -0.72313,0.309933 -0.72313,0.723159 0,0.309906 0.30991,0.723133 0.72313,0.723133 0.30994,0 0.72314,-0.413227 0.72314,-0.723133 m -0.20659,0 c 0,-0.309933 -0.30993,-0.516546 -0.51655,-0.516546 -0.3099,0 -0.51652,0.206613 -0.51652,0.516546 0,0.206613 0.20662,0.51652 0.51652,0.51652 0.20662,0 0.51655,-0.309907 0.51655,-0.51652 m 2.99582,-0.826452 c 0,-0.309933 -0.30988,-0.516547 -0.51649,-0.516547 -0.30993,0 -0.51654,0.206614 -0.51654,0.516547 0,0.206613 0.20661,0.516519 0.51654,0.516519 0.20661,0 0.51649,-0.309906 0.51649,-0.516519 m -0.82642,-2.995878 c 0,-0.309906 -0.20661,-0.516519 -0.51652,-0.516519 -0.20661,0 -0.41323,0.206613 -0.41323,0.516519 0,0.206614 0.20662,0.516546 0.41323,0.516546 0.30991,0 0.51652,-0.309932 0.51652,-0.516546 m -2.99585,0.826453 c 0,-0.309907 -0.20662,-0.51652 -0.51655,-0.51652 -0.20661,0 -0.4132,0.206613 -0.4132,0.51652 0,0.206613 0.20659,0.51652 0.4132,0.51652 0.30993,0 0.51655,-0.309907 0.51655,-0.51652 m -1.65291,0.51652 0.10332,-0.103294 m 0,0 0.20662,0.826453 m 0,0 0.10329,-0.206613 m 0,0 v 0.206613 m 0,0 -0.10329,0.103293 m 0,0 h -0.10332 m 0,0 -0.20662,-0.826452 m 2.78927,3.20249 0.10329,0.309906 m 0,0 h -0.20661 m 0,0 v -0.206613 m 0,0 h -0.1033 m 0,0 v -0.103293 m 0,0 v -0.206613 m 0,0 h 0.1033 m 0,0 0.10332,0.103293 m 0,0 0.3099,-0.103293 m 0,0 v 0.206613 m 0,0 -0.10329,0.619839 m 0,0 -0.10332,0.103293 m 0,0 0.10332,-0.723132 m 0,0 h -0.20661 m 1.54958,0 0.1033,0.103293 0.10331,0.10332 m 0,0 h 0.20662 m 0,-0.10332 c 0.10329,0 0.10329,-0.206613 0.10329,-0.309906 m 0,0.103293 h -0.10329 m -0.10332,0.10332 c 0,0 0.10332,-0.10332 0,-0.10332 m -0.20661,0 c 0,0 0,0.10332 0.10331,0.10332 h 0.1033 m -0.20661,0 v -0.10332 l 0.10331,-0.103293 m 0,0 h 0.1033 m 0,0 -0.1033,-0.10332 m -0.20661,-0.103294 c 0,0 0,0.103294 0.1033,0.103294 h 0.10331 m -0.10331,-0.309907 c 0,0 -0.1033,0 -0.1033,0.10332 v 0.103293 m 0.1033,-0.103293 h 0.10331 0.1033 m 0,0 h 0.10332 m 0,0 -0.10332,-0.10332 -0.20661,-0.103293 m 0,0 -0.20659,0.206613 v 0.206587 m 0,-0.103294 c 0,0.103294 0.10329,0.206614 0.20659,0.206614 m -0.1033,0 v 0.103293 0.10332 m 1.13633,-4.648756 -0.51649,0.103293 m 0,0 v 0.10332 m 0,0 0.30991,-0.10332 m 0,0 -0.1033,0.413227 m 0,0 c -0.10332,0.103319 0,0.206613 0,0.206613 0.1033,0.103293 0.20662,0.103293 0.30988,0.103293 0.10332,-0.103293 0.10332,-0.206587 0.10332,-0.309906 m 0,0.103319 h -0.10332 m -0.20658,-0.103319 c -0.1033,0.103319 -0.1033,0.103319 0,0.206613 h 0.10332 c 0.10326,0 0.10326,-0.103294 0.10326,-0.206613 m -0.20658,0.103319 0.20658,-0.516546 m 0,0 v -0.103293 m -2.78923,31.714782 c -0.30991,0 -0.61982,0.10332 -0.92975,0.20661 m 1.13636,-0.61983 c -0.51652,0 -1.03304,0.10332 -1.54959,0.30993 m -1.23965,1.13636 c -0.82645,1.13636 -0.82645,2.78923 0,3.92559 0.72314,1.23966 2.27272,1.8595 3.61569,1.54959 1.44629,-0.30993 2.58263,-1.44629 2.78924,-2.89256 m -5.16528,-3.71898 c -0.41322,0.3099 -0.82642,0.61984 -1.23965,1.13636 m 0.30991,-0.10332 c -0.92975,1.03306 -1.03307,2.58262 -0.30991,3.8223 0.72314,1.23965 2.16943,1.85949 3.5124,1.65288 1.44626,-0.30991 2.4793,-1.34297 2.78921,-2.78924 m 0,0.10329 h 0.10332 m -6.30163,-2.68591 0.20661,-0.10332 m 1.03306,-0.72314 v -0.20661 m 1.44627,-0.3099 c -0.51652,0 -1.03304,0.20661 -1.44627,0.41322 m 1.44627,-0.51654 v 0.20661 m 2.99585,3.92559 h 0.51652 m -0.51652,-1.03303 v 1.03303 m 0.51652,-0.92971 -0.51652,-0.10332 m 0.51652,0 c -0.20661,-1.23966 -1.03301,-2.37602 -2.16937,-2.78924 m -1.13639,0.41322 1.13639,-0.30993 m -1.343,-0.20661 0.20661,0.51654 m -1.54958,0.4132 -0.1033,-0.51652 m -1.03306,0.72314 1.13636,-0.20662 m 3.92559,2.16943 c 0,-0.30991 -0.10326,-0.61981 -0.20658,-0.92975 m -0.61984,1.23968 0.92974,-0.30993 m -0.92974,0.20661 c -0.61981,0.10332 -0.92975,0.72313 -0.82643,1.34295 m 0.41323,1.54958 -0.41323,-1.44626 m -0.41322,1.65288 c 0.3099,-0.1033 0.61984,-0.1033 0.82645,-0.20662 m -1.23968,-1.23965 0.41323,1.44627 m -0.41323,-1.54959 c -0.10332,-0.51652 -0.72313,-0.92975 -1.34297,-0.72313 m -1.44629,0.41322 1.44629,-0.41322 m -1.7562,-0.5165 c 0.10329,0.30988 0.10329,0.61982 0.20661,0.92972 m 1.34297,-1.23965 -1.44629,0.4132 m 1.44629,-0.4132 c 0.61984,-0.20661 0.92975,-0.82642 0.82646,-1.44626 m -0.41323,-1.34298 0.30991,1.44627 m 0.92974,-0.20661 -0.41322,-1.54959 m 0.41322,1.44629 c 0.10332,0.61984 0.72316,0.92975 1.34298,0.82646 m 0.92977,-0.20662 -0.92977,0.20662 m 0,-2.37604 c -0.51652,-0.30993 -1.03304,-0.41323 -1.54959,-0.30993 m 3.61569,3.09917 c -0.10332,-1.23966 -0.92975,-2.27272 -2.0661,-2.78924 m 2.0661,3.71898 c 0.10329,-0.3099 0.10329,-0.61981 0,-0.92974 m 0.10329,0.10332 h -0.20661 m -2.16937,-2.78927 0.3099,-0.10329 m -6.19834,2.27272 h -0.10332 m 5.06199,0.92974 c 0,-0.10329 -0.20662,-0.20661 -0.30991,-0.20661 -0.10332,0 -0.20661,0.10332 -0.20661,0.20661 0,0.10332 0.10329,0.20662 0.20661,0.20662 0.10329,0 0.30991,-0.1033 0.30991,-0.20662 m -1.44627,-1.13636 c 0,-0.3099 -0.30993,-0.61984 -0.72316,-0.61984 -0.3099,0 -0.61981,0.30994 -0.61981,0.61984 0,0.41323 0.30991,0.72314 0.61981,0.72314 0.41323,0 0.72316,-0.30991 0.72316,-0.72314 m 2.99585,-0.82645 c 0,-0.30991 -0.30991,-0.61981 -0.72313,-0.61981 -0.30991,0 -0.61984,0.3099 -0.61984,0.61981 0,0.41323 0.30993,0.72316 0.61984,0.72316 0.41322,0 0.72313,-0.30993 0.72313,-0.72316 m 0.82643,2.99585 c 0,-0.30991 -0.4132,-0.61984 -0.72311,-0.61984 -0.41323,0 -0.72313,0.30993 -0.72313,0.61984 0,0.41323 0.3099,0.72313 0.72313,0.72313 0.30991,0 0.72311,-0.3099 0.72311,-0.72313 m -2.99585,0.82645 c 0,-0.30993 -0.4132,-0.61984 -0.72314,-0.61984 -0.41322,0 -0.72313,0.30991 -0.72313,0.61984 0,0.41323 0.30991,0.72314 0.72313,0.72314 0.30994,0 0.72314,-0.30991 0.72314,-0.72314 m -0.20659,0 c 0,-0.20661 -0.30993,-0.41322 -0.51655,-0.41322 -0.3099,0 -0.51652,0.20661 -0.51652,0.41322 0,0.30991 0.20662,0.51652 0.51652,0.51652 0.20662,0 0.51655,-0.20661 0.51655,-0.51652 m 2.99582,-0.82645 c 0,-0.20661 -0.30988,-0.41323 -0.51649,-0.41323 -0.30993,0 -0.51654,0.20662 -0.51654,0.41323 0,0.30991 0.20661,0.51652 0.51654,0.51652 0.20661,0 0.51649,-0.20661 0.51649,-0.51652 m -0.82642,-2.99585 c 0,-0.20661 -0.20661,-0.41323 -0.51652,-0.41323 -0.20661,0 -0.41323,0.20662 -0.41323,0.41323 0,0.30993 0.20662,0.51655 0.41323,0.51655 0.30991,0 0.51652,-0.20662 0.51652,-0.51655 m -2.99585,0.82645 c 0,-0.20661 -0.20662,-0.41322 -0.51655,-0.41322 -0.20661,0 -0.4132,0.20661 -0.4132,0.41322 0,0.30994 0.20659,0.51652 0.4132,0.51652 0.30993,0 0.51655,-0.20658 0.51655,-0.51652 m -1.65291,0.51652 h 0.10332 m 0,0 0.20662,0.72316 m 0,0 0.10329,-0.10332 m 0,0 v 0.10332 m 0,0 -0.10329,0.1033 m 0,0 -0.10332,0.10331 m 0,0 -0.20662,-0.92977 m 2.78927,3.30579 0.10329,0.20658 m 0,0 -0.20661,0.10332 m 0,0 v -0.3099 m 0,0 h -0.1033 m 0,0 v -0.10332 m 0,0 v -0.1033 m 0,0 h 0.1033 m 0,0 0.10332,0.1033 m 0,0 0.3099,-0.1033 m 0,0 v 0.1033 m 0,0 -0.10329,0.72313 m 0,0 h -0.10332 m 0,0 0.10332,-0.72313 m 0,0 -0.20661,0.10332 m 1.54958,0 0.1033,0.10329 h 0.10331 m 0,0 h 0.20662 m 0,0 c 0.10329,-0.10329 0.10329,-0.20661 0.10329,-0.30991 m 0,0.1033 h -0.10329 m -0.10332,0.10332 c 0,0 0.10332,-0.10332 0,-0.10332 m -0.20661,0 h 0.10331 c 0,0.10332 0,0.10332 0.1033,0 m -0.20661,0 v -0.1033 h 0.10331 m 0,0 h 0.1033 m 0,0 -0.1033,-0.10332 m -0.20661,-0.20661 c 0,0.10332 0,0.10332 0.1033,0.10332 0,0.10329 0,0.10329 0.10331,0 m -0.10331,-0.20661 h -0.1033 v 0.10329 m 0.1033,-0.10329 h 0.10331 l 0.1033,0.10329 m 0,0 0.10332,-0.10329 m 0,0 -0.10332,-0.10332 h -0.20661 m 0,0 -0.20659,0.10332 v 0.20661 m 0,0 c 0,0.10329 0.10329,0.10329 0.20659,0.10329 m -0.1033,0.10332 v 0.1033 0.10332 m 1.13633,-4.75205 -0.51649,0.10329 m 0,0 v 0.10332 m 0,0 h 0.30991 m 0,0 -0.1033,0.41323 m 0,-0.10332 c -0.10332,0.10332 0,0.20661 0,0.30993 0.1033,0.10329 0.20662,0.10329 0.30988,0 0.10332,0 0.10332,-0.10332 0.10332,-0.20661 m 0,0 h -0.10332 m -0.20658,0 c -0.1033,0 -0.1033,0.10329 0,0.10329 0,0.10332 0.10332,0.10332 0.10332,0 0.10326,0 0.10326,-0.10329 0.10326,-0.10329 m -0.20658,0 0.20658,-0.51655 m 0,0 v -0.10329 m -2.78923,31.71475 c -0.30991,0.10332 -0.61982,0.10332 -0.92975,0.20662 m 1.13636,-0.61982 c -0.51652,0 -1.03304,0.20659 -1.54959,0.4132 m -1.23965,1.03307 c -0.82645,1.23968 -0.82645,2.78926 0,4.02892 0.72314,1.23967 2.27272,1.85951 3.61569,1.54961 1.44629,-0.30994 2.58263,-1.44629 2.78924,-2.89259 m -5.16528,-3.71901 c -0.41322,0.20662 -0.82642,0.61984 -1.23965,1.03307 m 0.30991,-0.10329 c -0.92975,1.13636 -1.03307,2.68594 -0.30991,3.92562 0.72314,1.23965 2.16943,1.85949 3.5124,1.54958 1.44626,-0.20661 2.4793,-1.34299 2.78921,-2.68597 m 0,0 h 0.10332 m -6.30163,-2.58262 0.20661,-0.10332 m 1.03306,-0.82645 v -0.20662 m 1.44627,-0.20661 c -0.51652,0 -1.03304,0.10332 -1.44627,0.30993 m 1.44627,-0.51652 v 0.20659 m 2.99585,3.92562 h 0.51652 m -0.51652,-0.92974 v 0.92974 m 0.51652,-0.92974 h -0.51652 m 0.51652,0 c -0.20661,-1.34297 -1.03301,-2.37604 -2.16937,-2.78927 m -1.13639,0.30994 1.13639,-0.30994 m -1.343,-0.20661 0.20661,0.51655 m -1.54958,0.41322 -0.1033,-0.51654 m -1.03306,0.82645 1.13636,-0.30991 m 3.92559,2.16943 c 0,-0.30993 -0.10326,-0.51655 -0.20658,-0.82645 m -0.61984,1.13635 0.92974,-0.20661 m -0.92974,0.10332 c -0.61981,0.20659 -0.92975,0.82643 -0.82643,1.44627 m 0.41323,1.44629 -0.41323,-1.44629 m -0.41322,1.6529 c 0.3099,0 0.61984,-0.10332 0.82645,-0.20661 m -1.23968,-1.23968 0.41323,1.54958 m -0.41323,-1.54958 c -0.10332,-0.61984 -0.72313,-0.92975 -1.34297,-0.82645 m -1.44629,0.51654 1.44629,-0.41322 m -1.7562,-0.51655 c 0.10329,0.30993 0.10329,0.61984 0.20661,0.82645 m 1.34297,-1.13636 -1.44629,0.30991 m 1.44629,-0.4132 c 0.61984,-0.10332 0.92975,-0.72316 0.82646,-1.343 m -0.41323,-1.44626 0.30991,1.44626 m 0.92974,-0.20661 -0.41322,-1.44627 m 0.41322,1.44627 c 0.10332,0.51655 0.72316,0.92977 1.34298,0.72316 m 0.92977,-0.20661 -0.92977,0.3099 m 0,-2.47933 c -0.51652,-0.20661 -1.03304,-0.30991 -1.54959,-0.30991 m 3.61569,3.20247 c -0.10332,-1.23968 -0.92975,-2.37604 -2.0661,-2.89256 m 2.0661,3.8223 c 0.10329,-0.3099 0.10329,-0.61981 0,-0.92974 m 0.10329,0 h -0.20661 m -2.16937,-2.78927 0.3099,-0.10329 m -6.19834,2.37604 h -0.10332 m 5.06199,0.82645 c 0,-0.10332 -0.20662,-0.20661 -0.30991,-0.20661 -0.10332,0 -0.20661,0.10329 -0.20661,0.20661 0,0.10329 0.10329,0.30991 0.20661,0.30991 0.10329,0 0.30991,-0.20662 0.30991,-0.30991 m -1.44627,-1.03306 c 0,-0.41323 -0.30993,-0.72314 -0.72316,-0.72314 -0.3099,0 -0.61981,0.30991 -0.61981,0.72314 0,0.3099 0.30991,0.72313 0.61981,0.72313 0.41323,0 0.72316,-0.41323 0.72316,-0.72313 m 2.99585,-0.82646 c 0,-0.41322 -0.30991,-0.72313 -0.72313,-0.72313 -0.30991,0 -0.61984,0.30991 -0.61984,0.72313 0,0.30991 0.30993,0.72314 0.61984,0.72314 0.41322,0 0.72313,-0.41323 0.72313,-0.72314 m 0.82643,2.99588 c 0,-0.41323 -0.4132,-0.72316 -0.72311,-0.72316 -0.41323,0 -0.72313,0.30993 -0.72313,0.72316 0,0.30991 0.3099,0.72313 0.72313,0.72313 0.30991,0 0.72311,-0.41322 0.72311,-0.72313 m -2.99585,0.82643 c 0,-0.4132 -0.4132,-0.72314 -0.72314,-0.72314 -0.41322,0 -0.72313,0.30994 -0.72313,0.72314 0,0.30993 0.30991,0.72316 0.72313,0.72316 0.30994,0 0.72314,-0.41323 0.72314,-0.72316 m -0.20659,0 c 0,-0.30991 -0.30993,-0.51652 -0.51655,-0.51652 -0.3099,0 -0.51652,0.20661 -0.51652,0.51652 0,0.20661 0.20662,0.51654 0.51652,0.51654 0.20662,0 0.51655,-0.30993 0.51655,-0.51654 m 2.99582,-0.82643 c 0,-0.30993 -0.30988,-0.51655 -0.51649,-0.51655 -0.30993,0 -0.51654,0.20662 -0.51654,0.51655 0,0.20661 0.20661,0.51652 0.51654,0.51652 0.20661,0 0.51649,-0.30991 0.51649,-0.51652 m -0.82642,-2.99588 c 0,-0.3099 -0.20661,-0.51652 -0.51652,-0.51652 -0.20661,0 -0.41323,0.20662 -0.41323,0.51652 0,0.20662 0.20662,0.51652 0.41323,0.51652 0.30991,0 0.51652,-0.3099 0.51652,-0.51652 m -2.99585,0.82646 c 0,-0.30994 -0.20662,-0.51655 -0.51655,-0.51655 -0.20661,0 -0.4132,0.20661 -0.4132,0.51655 0,0.20661 0.20659,0.51652 0.4132,0.51652 0.30993,0 0.51655,-0.30991 0.51655,-0.51652 m -1.65291,0.51652 h 0.10332 m 0,0 0.20662,0.72313 m 0,0 0.10329,-0.20659 m 0,0 v 0.20659 m 0,0 -0.10329,0.10332 m 0,0 h -0.10332 m 0,0 -0.20662,-0.82645 m 2.78927,3.20249 0.10329,0.3099 m 0,0 h -0.20661 m 0,0 v -0.20661 m 0,0 h -0.1033 m 0,0 v -0.10329 m 0,0 v -0.20662 m 0,0 h 0.1033 m 0,0 0.10332,0.1033 m 0,0 0.3099,-0.1033 m 0,0 v 0.20662 m 0,0 -0.10329,0.61983 m 0,0 -0.10332,0.1033 m 0,0 0.10332,-0.72313 m 0,0 h -0.20661 m 1.54958,0 0.1033,0.10329 0.10331,0.10332 m 0,0 h 0.20662 m 0,-0.10332 c 0.10329,0 0.10329,-0.20661 0.10329,-0.30991 m 0,0.1033 h -0.10329 m -0.10332,0.10332 c 0,0 0.10332,0 0,-0.10332 m -0.20661,0 c 0,0 0,0.10332 0.10331,0.10332 h 0.1033 m -0.20661,0 v -0.10332 l 0.10331,-0.1033 m 0,0 h 0.1033 m 0,0 -0.1033,-0.10332 m -0.20661,-0.10329 c 0,0 0,0.10329 0.1033,0.10329 h 0.10331 m -0.10331,-0.3099 c 0,0 -0.1033,0 -0.1033,0.10329 v 0.10332 m 0.1033,-0.10332 h 0.10331 0.1033 m 0,0 h 0.10332 m 0,0 -0.10332,-0.10329 -0.20661,-0.10332 m 0,0 -0.20659,0.20661 v 0.20661 m 0,-0.10329 c 0,0.10329 0.10329,0.20661 0.20659,0.20661 m -0.1033,0 v 0.1033 0.10332 m 1.13633,-4.64876 -0.51649,0.10329 m 0,0 v 0.10332 m 0,0 0.30991,-0.10332 m 0,0 -0.1033,0.41323 m 0,0 c -0.10332,0.10329 0,0.20661 0,0.20661 0.1033,0.1033 0.20662,0.1033 0.30988,0.1033 0.10332,-0.1033 0.10332,-0.20662 0.10332,-0.30991 m 0,0.10329 h -0.10332 m -0.20658,-0.10329 c -0.1033,0.10329 -0.1033,0.10329 0,0.20661 h 0.10332 c 0.10326,0 0.10326,-0.10332 0.10326,-0.20661 m -0.20658,0.10329 0.20658,-0.51652 m 0,0 v -0.10329 m 29.13217,-99.4832 c -0.30992,0 -0.61983,0.10332 -0.92975,0.206613 m 1.13636,-0.619839 c -0.51653,0 -1.03305,0.10332 -1.54958,0.309933 m -1.23967,1.136359 c -0.82644,1.136359 -0.82644,2.789237 0,3.925596 0.72314,1.239679 2.27272,1.859492 3.6157,1.549585 1.44627,-0.309906 2.58263,-1.446292 2.78924,-2.892557 m -5.16527,-3.718983 c -0.41322,0.309906 -0.82645,0.619839 -1.23967,1.136359 m 0.30992,-0.103294 c -0.92975,1.033039 -1.03305,2.582598 -0.30992,3.822277 0.72314,1.239679 2.16942,1.859492 3.51239,1.652905 1.44628,-0.309933 2.47933,-1.342999 2.78925,-2.789264 m 0,0.103293 h 0.1033 m -6.30163,-2.685917 0.20661,-0.103294 m 1.03305,-0.723159 -0.1033,-0.206613 m 1.54958,-0.309906 c -0.51653,0 -1.03305,0.206613 -1.44628,0.413226 m 1.44628,-0.516546 v 0.206613 m 2.99586,3.822303 0.51653,0.103293 m -0.51653,-1.033012 v 0.929719 m 0.51653,-0.826426 -0.51653,-0.103293 m 0.51653,0 c -0.20661,-1.239679 -1.03306,-2.376038 -2.16942,-2.789264 m -1.13636,0.413226 1.13636,-0.309933 m -1.34297,-0.206613 0.20661,0.516546 m -1.54958,0.309906 -0.10331,-0.413226 m -1.03305,0.723159 1.13636,-0.309933 m 3.92561,2.272745 c 0,-0.309933 -0.10331,-0.61984 -0.20661,-0.929773 m -0.61984,1.239653 0.92976,-0.30988 m -0.92976,0.206586 c -0.61983,0.103294 -0.92974,0.723133 -0.82644,1.342972 m 0.41322,1.549586 -0.41322,-1.446292 m -0.41322,1.652905 c 0.30992,-0.10332 0.61983,-0.10332 0.82644,-0.206613 m -1.23966,-1.239679 0.41322,1.446292 m -0.41322,-1.549585 c -0.10331,-0.516546 -0.72314,-0.929773 -1.34297,-0.72316 m -1.44628,0.413227 1.44628,-0.413227 m -1.7562,-0.516519 c 0.10331,0.309906 0.10331,0.619839 0.20661,0.929746 m 1.34297,-1.239653 -1.44627,0.4132 m 1.44627,-0.4132 c 0.51653,-0.206586 0.92975,-0.826426 0.72314,-1.446265 m -0.30991,-1.342972 0.30991,1.446265 m 0.92975,-0.206613 -0.41322,-1.549585 m 0.30992,1.446292 c 0.20661,0.619839 0.82644,0.929746 1.44627,0.826452 m 0.92975,-0.206613 -0.92975,0.206613 m 0,-2.376037 c -0.51652,-0.309933 -1.03305,-0.413227 -1.54958,-0.309933 m 3.61569,3.099197 c -0.1033,-1.239679 -0.92974,-2.272745 -2.06611,-2.789264 m 2.06611,3.718983 c 0.10331,-0.309933 0.10331,-0.619813 0,-0.929719 m 0.10331,0.103293 h -0.20661 m -2.16942,-2.789264 0.20661,-0.103293 m -1.13636,3.202463 c 0,-0.103293 -0.20661,-0.206586 -0.30991,-0.206586 -0.10331,0 -0.20661,0.103293 -0.20661,0.206586 0,0.103294 0.1033,0.206587 0.20661,0.206587 0.1033,0 0.30991,-0.103293 0.30991,-0.206587 m -1.44627,-1.136359 c 0,-0.309906 -0.41323,-0.619839 -0.72314,-0.619839 -0.41322,0 -0.72314,0.309933 -0.72314,0.619839 0,0.413227 0.30992,0.72316 0.72314,0.72316 0.30991,0 0.72314,-0.309933 0.72314,-0.72316 m 2.99586,-0.826426 c 0,-0.309933 -0.41323,-0.619839 -0.72314,-0.619839 -0.41322,0 -0.72314,0.309906 -0.72314,0.619839 0,0.4132 0.30992,0.723133 0.72314,0.723133 0.30991,0 0.72314,-0.309933 0.72314,-0.723133 m 0.82644,2.995825 c 0,-0.309907 -0.41322,-0.61984 -0.72314,-0.61984 -0.41322,0 -0.72314,0.309933 -0.72314,0.61984 0,0.413226 0.30992,0.723132 0.72314,0.723132 0.30992,0 0.72314,-0.309906 0.72314,-0.723132 m -2.99586,0.826452 c 0,-0.309906 -0.41322,-0.619839 -0.72314,-0.619839 -0.41322,0 -0.72313,0.309933 -0.72313,0.619839 0,0.413226 0.30991,0.723133 0.72313,0.723133 0.30992,0 0.72314,-0.309907 0.72314,-0.723133 m -0.20661,0 c 0,-0.206613 -0.30992,-0.413226 -0.51653,-0.413226 -0.30991,0 -0.51653,0.206613 -0.51653,0.413226 0,0.309906 0.20662,0.51652 0.51653,0.51652 0.20661,0 0.51653,-0.206614 0.51653,-0.51652 m 2.99586,-0.826452 c 0,-0.206614 -0.30992,-0.413227 -0.51653,-0.413227 -0.30992,0 -0.51653,0.206613 -0.51653,0.413227 0,0.309932 0.20661,0.516546 0.51653,0.516546 0.20661,0 0.51653,-0.206614 0.51653,-0.516546 m -0.82645,-2.995825 c 0,-0.206613 -0.30991,-0.413226 -0.51652,-0.413226 -0.30992,0 -0.51653,0.206613 -0.51653,0.413226 0,0.309907 0.20661,0.51652 0.51653,0.51652 0.20661,0 0.51652,-0.206613 0.51652,-0.51652 m -2.99585,0.826426 c 0,-0.206613 -0.30992,-0.413226 -0.51653,-0.413226 -0.30992,0 -0.51653,0.206613 -0.51653,0.413226 0,0.309933 0.20661,0.516546 0.51653,0.516546 0.20661,0 0.51653,-0.206613 0.51653,-0.516546 m -1.65289,0.516546 h 0.1033 m 0,0 0.20661,0.723107 m 0,0 0.10331,-0.103294 m 0,0 v 0.103294 m 0,0 -0.10331,0.103293 m 0,0 -0.1033,0.10332 m 0,0 -0.20661,-0.92972 m 2.78925,3.305758 v 0.206613 m 0,0 -0.10331,0.103293 m 0,0 v -0.309906 m 0,0 h -0.10331 m 0,0 v -0.10332 m 0,0 v -0.103294 m 0,0 h 0.10331 m 0,0 0.10331,0.103294 m 0,0 0.30991,-0.103294 m 0,0 v 0.103294 m 0,0 -0.1033,0.723159 m 0,0 h -0.10331 m 0,0 0.10331,-0.723159 m 0,0 -0.20661,0.10332 m 1.54958,0 0.1033,0.103293 h 0.10331 m 0,0 h 0.20661 m 0,0 c 0.10331,-0.103293 0.10331,-0.206613 0.10331,-0.309907 m 0,0.103294 h -0.10331 m -0.10331,0 c 0,0 0.10331,0 0,-0.103294 m -0.20661,0.103294 h 0.10331 c 0,0.10332 0,0.10332 0.1033,0 m -0.20661,0 v -0.103294 h 0.10331 m 0,0 h 0.1033 m 0,0 -0.1033,-0.103319 m -0.20661,-0.206614 c 0,0 0,0.10332 0.1033,0.10332 h 0.10331 m -0.10331,-0.206613 h -0.1033 v 0.103293 m 0.1033,-0.103293 h 0.10331 l 0.1033,0.103293 m 0,0 0.10331,-0.103293 m 0,0 -0.10331,-0.10332 h -0.20661 m 0,0 -0.20661,0.10332 v 0.206613 m 0,0 c 0,0.103294 0.10331,0.103294 0.20661,0.103294 m -0.1033,0.103319 v 0.103294 0.10332 m 1.13636,-4.752049 -0.51653,0.103319 m 0,0 v 0.103294 m 0,0 h 0.30992 m 0,0 -0.20661,0.413226 m 0.1033,-0.10332 c -0.1033,0.10332 0,0.206613 0,0.309933 0.10331,0.103293 0.20661,0.103293 0.30992,0 0.10331,0 0.10331,-0.10332 0.10331,-0.206613 m 0,0 h -0.10331 m -0.20661,0 c -0.10331,0 -0.10331,0.103293 0,0.103293 0,0.10332 0.1033,0.10332 0.1033,0 0.10331,0 0.10331,-0.103293 0.10331,-0.103293 m -0.20661,0 0.20661,-0.51652 m 0,0 v -0.103319 m -2.78925,31.714783 c -0.30992,0.103294 -0.61983,0.103294 -0.92975,0.206587 m 1.13636,-0.619813 c -0.51653,0 -1.03305,0.206613 -1.54958,0.413226 m -1.23967,1.033039 c -0.82644,1.239679 -0.82644,2.789264 0,4.028943 0.72314,1.239652 2.27272,1.859492 3.6157,1.549585 1.44627,-0.309933 2.58263,-1.446292 2.78924,-2.892584 m -5.16527,-3.718983 c -0.41322,0.206587 -0.82645,0.619813 -1.23967,1.033039 m 0.30992,-0.103293 c -0.92975,1.136359 -1.03305,2.685944 -0.30992,3.925623 0.72314,1.239652 2.16942,1.859492 3.51239,1.549585 1.44628,-0.206613 2.47933,-1.342972 2.78925,-2.685971 m 0,0 h 0.1033 m -6.30163,-2.582624 0.20661,-0.10332 m 1.03305,-0.826452 -0.1033,-0.206587 m 1.54958,-0.206613 c -0.51653,0 -1.03305,0.103293 -1.44628,0.309907 m 1.44628,-0.51652 v 0.206613 m 2.99586,3.925596 h 0.51653 m -0.51653,-0.929745 v 0.929745 m 0.51653,-0.929745 h -0.51653 m 0.51653,0 c -0.20661,-1.342972 -1.03306,-2.376038 -2.16942,-2.789238 m -1.13636,0.309907 1.13636,-0.309907 m -1.34297,-0.206613 0.20661,0.51652 m -1.54958,0.413226 -0.10331,-0.516546 m -1.03305,0.826452 1.13636,-0.309906 m 3.92561,2.169424 c 0,-0.309932 -0.10331,-0.516546 -0.20661,-0.826452 m -0.61984,1.136359 0.92976,-0.206613 m -0.92976,0.10332 c -0.61983,0.206613 -0.92974,0.826426 -0.82644,1.446265 m 0.41322,1.446292 -0.41322,-1.446292 m -0.41322,1.652905 c 0.30992,0 0.61983,-0.10332 0.82644,-0.206613 m -1.23966,-1.239679 0.41322,1.549585 m -0.41322,-1.549585 c -0.10331,-0.619839 -0.72314,-0.929746 -1.34297,-0.826452 m -1.44628,0.516546 1.44628,-0.413227 m -1.7562,-0.516519 c 0.10331,0.309906 0.10331,0.619813 0.20661,0.826426 m 1.34297,-1.136359 -1.44627,0.309933 m 1.44627,-0.413226 c 0.51653,-0.10332 0.92975,-0.72316 0.72314,-1.342973 m -0.30991,-1.446291 0.30991,1.446291 m 0.92975,-0.206613 -0.41322,-1.446291 m 0.30992,1.446291 c 0.20661,0.51652 0.82644,0.929746 1.44627,0.723133 m 0.92975,-0.206613 -0.92975,0.309906 m 0,-2.479331 c -0.51652,-0.206613 -1.03305,-0.309906 -1.54958,-0.309906 m 3.61569,3.202464 c -0.1033,-1.239653 -0.92974,-2.376038 -2.06611,-2.892558 m 2.06611,3.822303 c 0.10331,-0.309906 0.10331,-0.619812 0,-0.929745 m 0.10331,0 h -0.20661 m -2.16942,-2.789238 0.20661,-0.10332 m -1.13636,3.202491 c 0,-0.10332 -0.20661,-0.206614 -0.30991,-0.206614 -0.10331,0 -0.20661,0.103294 -0.20661,0.206614 0,0.103293 0.1033,0.309906 0.20661,0.309906 0.1033,0 0.30991,-0.206613 0.30991,-0.309906 m -1.44627,-1.033066 c 0,-0.413226 -0.41323,-0.723133 -0.72314,-0.723133 -0.41322,0 -0.72314,0.309907 -0.72314,0.723133 0,0.309906 0.30992,0.723133 0.72314,0.723133 0.30991,0 0.72314,-0.413227 0.72314,-0.723133 m 2.99586,-0.826453 c 0,-0.413226 -0.41323,-0.723132 -0.72314,-0.723132 -0.41322,0 -0.72314,0.309906 -0.72314,0.723132 0,0.309933 0.30992,0.723133 0.72314,0.723133 0.30991,0 0.72314,-0.4132 0.72314,-0.723133 m 0.82644,2.995878 c 0,-0.413227 -0.41322,-0.723133 -0.72314,-0.723133 -0.41322,0 -0.72314,0.309906 -0.72314,0.723133 0,0.309906 0.30992,0.723132 0.72314,0.723132 0.30992,0 0.72314,-0.413226 0.72314,-0.723132 m -2.99586,0.826452 c 0,-0.413226 -0.41322,-0.723159 -0.72314,-0.723159 -0.41322,0 -0.72313,0.309933 -0.72313,0.723159 0,0.309906 0.30991,0.723133 0.72313,0.723133 0.30992,0 0.72314,-0.413227 0.72314,-0.723133 m -0.20661,0 c 0,-0.309933 -0.30992,-0.516546 -0.51653,-0.516546 -0.30991,0 -0.51653,0.206613 -0.51653,0.516546 0,0.206613 0.20662,0.51652 0.51653,0.51652 0.20661,0 0.51653,-0.309907 0.51653,-0.51652 m 2.99586,-0.826452 c 0,-0.309933 -0.30992,-0.516547 -0.51653,-0.516547 -0.30992,0 -0.51653,0.206614 -0.51653,0.516547 0,0.206613 0.20661,0.516519 0.51653,0.516519 0.20661,0 0.51653,-0.309906 0.51653,-0.516519 m -0.82645,-2.995878 c 0,-0.309906 -0.30991,-0.516519 -0.51652,-0.516519 -0.30992,0 -0.51653,0.206613 -0.51653,0.516519 0,0.206614 0.20661,0.516546 0.51653,0.516546 0.20661,0 0.51652,-0.309932 0.51652,-0.516546 m -2.99585,0.826453 c 0,-0.309907 -0.30992,-0.51652 -0.51653,-0.51652 -0.30992,0 -0.51653,0.206613 -0.51653,0.51652 0,0.206613 0.20661,0.51652 0.51653,0.51652 0.20661,0 0.51653,-0.309907 0.51653,-0.51652 m -1.65289,0.51652 0.1033,-0.103294 m 0,0 0.20661,0.826453 m 0,0 0.10331,-0.206613 m 0,0 v 0.206613 m 0,0 -0.10331,0.103293 m 0,0 h -0.1033 m 0,0 -0.20661,-0.826452 m 2.78925,3.20249 V 78.0473 m 0,0 h -0.10331 m 0,0 v -0.206613 m 0,0 h -0.10331 m 0,0 v -0.103293 m 0,0 v -0.206613 m 0,0 h 0.10331 m 0,0 0.10331,0.103293 m 0,0 0.30991,-0.103293 m 0,0 v 0.206613 m 0,0 -0.1033,0.619839 m 0,0 -0.10331,0.103293 m 0,0 0.10331,-0.723132 m 0,0 h -0.20661 m 1.54958,0 0.1033,0.103293 0.10331,0.10332 m 0,0 h 0.20661 m 0,-0.10332 c 0.10331,0 0.10331,-0.206613 0.10331,-0.309906 m 0,0.103293 h -0.10331 m -0.10331,0.10332 c 0,0 0.10331,-0.10332 0,-0.10332 m -0.20661,0 c 0,0 0,0.10332 0.10331,0.10332 h 0.1033 m -0.20661,0 v -0.10332 l 0.10331,-0.103293 m 0,0 h 0.1033 m 0,0 -0.1033,-0.10332 m -0.20661,-0.103294 c 0,0 0,0.103294 0.1033,0.103294 h 0.10331 m -0.10331,-0.309907 c 0,0 -0.1033,0 -0.1033,0.10332 v 0.103293 m 0.1033,-0.103293 h 0.10331 0.1033 m 0,0 h 0.10331 m 0,0 -0.10331,-0.10332 -0.20661,-0.103293 m 0,0 -0.20661,0.206613 v 0.206587 m 0,-0.103294 c 0,0.103294 0.10331,0.206614 0.20661,0.206614 m -0.1033,0 v 0.103293 0.10332 m 1.13636,-4.648756 -0.51653,0.103293 m 0,0 v 0.10332 m 0,0 0.30992,-0.10332 m 0,0 -0.20661,0.413227 m 0.1033,0 c -0.1033,0.103319 0,0.206613 0,0.206613 0.10331,0.103293 0.20661,0.103293 0.30992,0.103293 0.10331,-0.103293 0.10331,-0.206587 0.10331,-0.309906 m 0,0.103319 h -0.10331 m -0.20661,-0.103319 c -0.10331,0.103319 -0.10331,0.103319 0,0.206613 h 0.1033 c 0.10331,0 0.10331,-0.103294 0.10331,-0.206613 m -0.20661,0.103319 0.20661,-0.516546 m 0,0 v -0.103293 m -2.78925,31.714782 c -0.30992,0 -0.61983,0.10332 -0.92975,0.20661 m 1.13636,-0.61983 c -0.51653,0 -1.03305,0.10332 -1.54958,0.30993 m -1.23967,1.13636 c -0.82644,1.13636 -0.82644,2.78923 0,3.92559 0.72314,1.23966 2.27272,1.8595 3.6157,1.54959 1.44627,-0.30993 2.58263,-1.44629 2.78924,-2.89256 m -5.16527,-3.71898 c -0.41322,0.3099 -0.82645,0.61984 -1.23967,1.13636 m 0.30992,-0.10332 c -0.92975,1.03306 -1.03305,2.58262 -0.30992,3.8223 0.72314,1.23965 2.16942,1.85949 3.51239,1.65288 1.44628,-0.30991 2.47933,-1.34297 2.78925,-2.78924 m 0,0.10329 h 0.1033 m -6.30163,-2.68591 0.20661,-0.10332 m 1.03305,-0.72314 -0.1033,-0.20661 m 1.54958,-0.3099 c -0.51653,0 -1.03305,0.20661 -1.44628,0.41322 m 1.44628,-0.51654 v 0.20661 m 2.99586,3.92559 h 0.51653 m -0.51653,-1.03303 v 1.03303 m 0.51653,-0.92971 -0.51653,-0.10332 m 0.51653,0 c -0.20661,-1.23966 -1.03306,-2.37602 -2.16942,-2.78924 m -1.13636,0.41322 1.13636,-0.30993 m -1.34297,-0.20661 0.20661,0.51654 m -1.54958,0.4132 -0.10331,-0.51652 m -1.03305,0.72314 1.13636,-0.20662 m 3.92561,2.16943 c 0,-0.30991 -0.10331,-0.61981 -0.20661,-0.92975 m -0.61984,1.23968 0.92976,-0.30993 m -0.92976,0.20661 c -0.61983,0.10332 -0.92974,0.72313 -0.82644,1.34295 m 0.41322,1.54958 -0.41322,-1.44626 m -0.41322,1.65288 c 0.30992,-0.1033 0.61983,-0.1033 0.82644,-0.20662 m -1.23966,-1.23965 0.41322,1.44627 m -0.41322,-1.54959 c -0.10331,-0.51652 -0.72314,-0.92975 -1.34297,-0.72313 m -1.44628,0.41322 1.44628,-0.41322 m -1.7562,-0.5165 c 0.10331,0.30988 0.10331,0.61982 0.20661,0.92972 m 1.34297,-1.23965 -1.44627,0.4132 m 1.44627,-0.4132 c 0.51653,-0.20661 0.92975,-0.82642 0.72314,-1.44626 m -0.30991,-1.34298 0.30991,1.44627 m 0.92975,-0.20661 -0.41322,-1.54959 m 0.30992,1.44629 c 0.20661,0.61984 0.82644,0.92975 1.44627,0.82646 m 0.92975,-0.20662 -0.92975,0.20662 m 0,-2.37604 c -0.51652,-0.30993 -1.03305,-0.41323 -1.54958,-0.30993 m 3.61569,3.09917 c -0.1033,-1.23966 -0.92974,-2.27272 -2.06611,-2.78924 m 2.06611,3.71898 c 0.10331,-0.3099 0.10331,-0.61981 0,-0.92974 m 0.10331,0.10332 h -0.20661 m -2.16942,-2.78927 0.20661,-0.10329 m -6.09502,2.27272 h -0.10331 m 5.06197,0.92974 c 0,-0.10329 -0.20661,-0.20661 -0.30991,-0.20661 -0.10331,0 -0.20661,0.10332 -0.20661,0.20661 0,0.10332 0.1033,0.20662 0.20661,0.20662 0.1033,0 0.30991,-0.1033 0.30991,-0.20662 m -1.44627,-1.13636 c 0,-0.3099 -0.41323,-0.61984 -0.72314,-0.61984 -0.41322,0 -0.72314,0.30994 -0.72314,0.61984 0,0.41323 0.30992,0.72314 0.72314,0.72314 0.30991,0 0.72314,-0.30991 0.72314,-0.72314 m 2.99586,-0.82645 c 0,-0.30991 -0.41323,-0.61981 -0.72314,-0.61981 -0.41322,0 -0.72314,0.3099 -0.72314,0.61981 0,0.41323 0.30992,0.72316 0.72314,0.72316 0.30991,0 0.72314,-0.30993 0.72314,-0.72316 m 0.82644,2.99585 c 0,-0.30991 -0.41322,-0.61984 -0.72314,-0.61984 -0.41322,0 -0.72314,0.30993 -0.72314,0.61984 0,0.41323 0.30992,0.72313 0.72314,0.72313 0.30992,0 0.72314,-0.3099 0.72314,-0.72313 m -2.99586,0.82645 c 0,-0.30993 -0.41322,-0.61984 -0.72314,-0.61984 -0.41322,0 -0.72313,0.30991 -0.72313,0.61984 0,0.41323 0.30991,0.72314 0.72313,0.72314 0.30992,0 0.72314,-0.30991 0.72314,-0.72314 m -0.20661,0 c 0,-0.20661 -0.30992,-0.41322 -0.51653,-0.41322 -0.30991,0 -0.51653,0.20661 -0.51653,0.41322 0,0.30991 0.20662,0.51652 0.51653,0.51652 0.20661,0 0.51653,-0.20661 0.51653,-0.51652 m 2.99586,-0.82645 c 0,-0.20661 -0.30992,-0.41323 -0.51653,-0.41323 -0.30992,0 -0.51653,0.20662 -0.51653,0.41323 0,0.30991 0.20661,0.51652 0.51653,0.51652 0.20661,0 0.51653,-0.20661 0.51653,-0.51652 m -0.82645,-2.99585 c 0,-0.20661 -0.30991,-0.41323 -0.51652,-0.41323 -0.30992,0 -0.51653,0.20662 -0.51653,0.41323 0,0.30993 0.20661,0.51655 0.51653,0.51655 0.20661,0 0.51652,-0.20662 0.51652,-0.51655 m -2.99585,0.82645 c 0,-0.20661 -0.30992,-0.41322 -0.51653,-0.41322 -0.30992,0 -0.51653,0.20661 -0.51653,0.41322 0,0.30994 0.20661,0.51652 0.51653,0.51652 0.20661,0 0.51653,-0.20658 0.51653,-0.51652 m -1.65289,0.51652 h 0.1033 m 0,0 0.20661,0.72316 m 0,0 0.10331,-0.10332 m 0,0 v 0.10332 m 0,0 -0.10331,0.1033 m 0,0 -0.1033,0.10331 m 0,0 -0.20661,-0.92977 m 2.78925,3.30579 v 0.20658 m 0,0 -0.10331,0.10332 m 0,0 v -0.3099 m 0,0 h -0.10331 m 0,0 v -0.10332 m 0,0 v -0.1033 m 0,0 h 0.10331 m 0,0 0.10331,0.1033 m 0,0 0.30991,-0.1033 m 0,0 v 0.1033 m 0,0 -0.1033,0.72313 m 0,0 h -0.10331 m 0,0 0.10331,-0.72313 m 0,0 -0.20661,0.10332 m 1.54958,0 0.1033,0.10329 h 0.10331 m 0,0 h 0.20661 m 0,0 c 0.10331,-0.10329 0.10331,-0.20661 0.10331,-0.30991 m 0,0.1033 h -0.10331 m -0.10331,0.10332 c 0,0 0.10331,-0.10332 0,-0.10332 m -0.20661,0 h 0.10331 c 0,0.10332 0,0.10332 0.1033,0 m -0.20661,0 v -0.1033 h 0.10331 m 0,0 h 0.1033 m 0,0 -0.1033,-0.10332 m -0.20661,-0.20661 c 0,0.10332 0,0.10332 0.1033,0.10332 0,0.10329 0,0.10329 0.10331,0 m -0.10331,-0.20661 h -0.1033 v 0.10329 m 0.1033,-0.10329 h 0.10331 l 0.1033,0.10329 m 0,0 0.10331,-0.10329 m 0,0 -0.10331,-0.10332 h -0.20661 m 0,0 -0.20661,0.10332 v 0.20661 m 0,0 c 0,0.10329 0.10331,0.10329 0.20661,0.10329 m -0.1033,0.10332 v 0.1033 0.10332 m 1.13636,-4.75205 -0.51653,0.10329 m 0,0 v 0.10332 m 0,0 h 0.30992 m 0,0 -0.20661,0.41323 m 0.1033,-0.10332 c -0.1033,0.10332 0,0.20661 0,0.30993 0.10331,0.10329 0.20661,0.10329 0.30992,0 0.10331,0 0.10331,-0.10332 0.10331,-0.20661 m 0,0 h -0.10331 m -0.20661,0 c -0.10331,0 -0.10331,0.10329 0,0.10329 0,0.10332 0.1033,0.10332 0.1033,0 0.10331,0 0.10331,-0.10329 0.10331,-0.10329 m -0.20661,0 0.20661,-0.51655 m 0,0 v -0.10329 m -2.78925,31.71475 c -0.30992,0.10332 -0.61983,0.10332 -0.92975,0.20662 m 1.13636,-0.61982 c -0.51653,0 -1.03305,0.20659 -1.54958,0.4132 m -1.23967,1.03307 c -0.82644,1.23968 -0.82644,2.78926 0,4.02892 0.72314,1.23967 2.27272,1.85951 3.6157,1.54961 1.44627,-0.30994 2.58263,-1.44629 2.78924,-2.89259 m -5.16527,-3.71901 c -0.41322,0.20662 -0.82645,0.61984 -1.23967,1.03307 m 0.30992,-0.10329 c -0.92975,1.13636 -1.03305,2.68594 -0.30992,3.92562 0.72314,1.23965 2.16942,1.85949 3.51239,1.54958 1.44628,-0.20661 2.47933,-1.34299 2.78925,-2.68597 m 0,0 h 0.1033 m -6.30163,-2.58262 0.20661,-0.10332 m 1.03305,-0.82645 -0.1033,-0.20662 m 1.54958,-0.20661 c -0.51653,0 -1.03305,0.10332 -1.44628,0.30993 m 1.44628,-0.51652 v 0.20659 m 2.99586,3.92562 h 0.51653 m -0.51653,-0.92974 v 0.92974 m 0.51653,-0.92974 h -0.51653 m 0.51653,0 c -0.20661,-1.34297 -1.03306,-2.37604 -2.16942,-2.78927 m -1.13636,0.30994 1.13636,-0.30994 m -1.34297,-0.20661 0.20661,0.51655 m -1.54958,0.41322 -0.10331,-0.51654 m -1.03305,0.82645 1.13636,-0.30991 m 3.92561,2.16943 c 0,-0.30993 -0.10331,-0.51655 -0.20661,-0.82645 m -0.61984,1.13635 0.92976,-0.20661 m -0.92976,0.10332 c -0.61983,0.20659 -0.92974,0.82643 -0.82644,1.44627 m 0.41322,1.44629 -0.41322,-1.44629 m -0.41322,1.6529 c 0.30992,0 0.61983,-0.10332 0.82644,-0.20661 m -1.23966,-1.23968 0.41322,1.54958 m -0.41322,-1.54958 c -0.10331,-0.61984 -0.72314,-0.92975 -1.34297,-0.82645 m -1.44628,0.51654 1.44628,-0.41322 m -1.7562,-0.51655 c 0.10331,0.30993 0.10331,0.61984 0.20661,0.82645 m 1.34297,-1.13636 -1.44627,0.30991 m 1.44627,-0.4132 c 0.51653,-0.10332 0.92975,-0.72316 0.72314,-1.343 m -0.30991,-1.44626 0.30991,1.44626 m 0.92975,-0.20661 -0.41322,-1.44627 m 0.30992,1.44627 c 0.20661,0.51655 0.82644,0.92977 1.44627,0.72316 m 0.92975,-0.20661 -0.92975,0.3099 m 0,-2.47933 c -0.51652,-0.20661 -1.03305,-0.30991 -1.54958,-0.30991 m 3.61569,3.20247 c -0.1033,-1.23968 -0.92974,-2.37604 -2.06611,-2.89256 m 2.06611,3.8223 c 0.10331,-0.3099 0.10331,-0.61981 0,-0.92974 m 0.10331,0 h -0.20661 m -2.16942,-2.78927 0.20661,-0.10329 m -6.09502,2.37604 h -0.10331 m 5.06197,0.82645 c 0,-0.10332 -0.20661,-0.20661 -0.30991,-0.20661 -0.10331,0 -0.20661,0.10329 -0.20661,0.20661 0,0.10329 0.1033,0.30991 0.20661,0.30991 0.1033,0 0.30991,-0.20662 0.30991,-0.30991 m -1.44627,-1.03306 c 0,-0.41323 -0.41323,-0.72314 -0.72314,-0.72314 -0.41322,0 -0.72314,0.30991 -0.72314,0.72314 0,0.3099 0.30992,0.72313 0.72314,0.72313 0.30991,0 0.72314,-0.41323 0.72314,-0.72313 m 2.99586,-0.82646 c 0,-0.41322 -0.41323,-0.72313 -0.72314,-0.72313 -0.41322,0 -0.72314,0.30991 -0.72314,0.72313 0,0.30991 0.30992,0.72314 0.72314,0.72314 0.30991,0 0.72314,-0.41323 0.72314,-0.72314 m 0.82644,2.99588 c 0,-0.41323 -0.41322,-0.72316 -0.72314,-0.72316 -0.41322,0 -0.72314,0.30993 -0.72314,0.72316 0,0.30991 0.30992,0.72313 0.72314,0.72313 0.30992,0 0.72314,-0.41322 0.72314,-0.72313 m -2.99586,0.82643 c 0,-0.4132 -0.41322,-0.72314 -0.72314,-0.72314 -0.41322,0 -0.72313,0.30994 -0.72313,0.72314 0,0.30993 0.30991,0.72316 0.72313,0.72316 0.30992,0 0.72314,-0.41323 0.72314,-0.72316 m -0.20661,0 c 0,-0.30991 -0.30992,-0.51652 -0.51653,-0.51652 -0.30991,0 -0.51653,0.20661 -0.51653,0.51652 0,0.20661 0.20662,0.51654 0.51653,0.51654 0.20661,0 0.51653,-0.30993 0.51653,-0.51654 m 2.99586,-0.82643 c 0,-0.30993 -0.30992,-0.51655 -0.51653,-0.51655 -0.30992,0 -0.51653,0.20662 -0.51653,0.51655 0,0.20661 0.20661,0.51652 0.51653,0.51652 0.20661,0 0.51653,-0.30991 0.51653,-0.51652 m -0.82645,-2.99588 c 0,-0.3099 -0.30991,-0.51652 -0.51652,-0.51652 -0.30992,0 -0.51653,0.20662 -0.51653,0.51652 0,0.20662 0.20661,0.51652 0.51653,0.51652 0.20661,0 0.51652,-0.3099 0.51652,-0.51652 m -2.99585,0.82646 c 0,-0.30994 -0.30992,-0.51655 -0.51653,-0.51655 -0.30992,0 -0.51653,0.20661 -0.51653,0.51655 0,0.20661 0.20661,0.51652 0.51653,0.51652 0.20661,0 0.51653,-0.30991 0.51653,-0.51652 m -1.65289,0.51652 h 0.1033 m 0,0 0.20661,0.72313 m 0,0 0.10331,-0.20659 m 0,0 v 0.20659 m 0,0 -0.10331,0.10332 m 0,0 h -0.1033 m 0,0 -0.20661,-0.82645 m 2.78925,3.20249 v 0.3099 m 0,0 h -0.10331 m 0,0 v -0.20661 m 0,0 h -0.10331 m 0,0 v -0.10329 m 0,0 v -0.20662 m 0,0 h 0.10331 m 0,0 0.10331,0.1033 m 0,0 0.30991,-0.1033 m 0,0 v 0.20662 m 0,0 -0.1033,0.61983 m 0,0 -0.10331,0.1033 m 0,0 0.10331,-0.72313 m 0,0 h -0.20661 m 1.54958,0 0.1033,0.10329 0.10331,0.10332 m 0,0 h 0.20661 m 0,-0.10332 c 0.10331,0 0.10331,-0.20661 0.10331,-0.30991 m 0,0.1033 h -0.10331 m -0.10331,0.10332 c 0,0 0.10331,0 0,-0.10332 m -0.20661,0 c 0,0 0,0.10332 0.10331,0.10332 h 0.1033 m -0.20661,0 v -0.10332 l 0.10331,-0.1033 m 0,0 h 0.1033 m 0,0 -0.1033,-0.10332 m -0.20661,-0.10329 c 0,0 0,0.10329 0.1033,0.10329 h 0.10331 m -0.10331,-0.3099 c 0,0 -0.1033,0 -0.1033,0.10329 v 0.10332 m 0.1033,-0.10332 h 0.10331 0.1033 m 0,0 h 0.10331 m 0,0 -0.10331,-0.10329 -0.20661,-0.10332 m 0,0 -0.20661,0.20661 v 0.20661 m 0,-0.10329 c 0,0.10329 0.10331,0.20661 0.20661,0.20661 m -0.1033,0 v 0.1033 0.10332 m 1.13636,-4.64876 -0.51653,0.10329 m 0,0 v 0.10332 m 0,0 0.30992,-0.10332 m 0,0 -0.20661,0.41323 m 0.1033,0 c -0.1033,0.10329 0,0.20661 0,0.20661 0.10331,0.1033 0.20661,0.1033 0.30992,0.1033 0.10331,-0.1033 0.10331,-0.20662 0.10331,-0.30991 m 0,0.10329 h -0.10331 m -0.20661,-0.10329 c -0.10331,0.10329 -0.10331,0.10329 0,0.20661 h 0.1033 c 0.10331,0 0.10331,-0.10332 0.10331,-0.20661 m -0.20661,0.10329 0.20661,-0.51652 m 0,0 v -0.10329 M 130.00996,71.952279 c -0.30991,0.103294 -0.61984,0.103294 -0.82645,0.206587 m 1.03306,-0.619813 c -0.51652,0 -1.03306,0.206613 -1.44629,0.413226 m -1.23965,1.033039 c -0.82643,1.239679 -0.92972,2.789264 -0.10332,4.028943 0.82645,1.239652 2.27274,1.859492 3.71901,1.549585 1.44629,-0.309933 2.47936,-1.446292 2.78926,-2.892584 m -5.1653,-3.718983 c -0.51652,0.206587 -0.92974,0.619813 -1.23965,1.033039 m 0.30991,-0.103293 c -0.92972,1.136359 -1.03304,2.685944 -0.30991,3.925623 0.61984,1.239652 2.0661,1.859492 3.5124,1.549585 1.34297,-0.206613 2.47933,-1.342972 2.68594,-2.685971 m 0,0 h 0.10329 m -6.30163,-2.582624 0.20661,-0.10332 m 1.03304,-0.826452 v -0.206587 m 1.54959,-0.206613 c -0.51652,0 -1.03304,0.103293 -1.54959,0.309907 m 1.44629,-0.51652 0.1033,0.206613 m 2.89258,3.925596 h 0.51652 m -0.41323,-0.929745 -0.10329,0.929745 m 0.51652,-0.929745 h -0.41323 m 0.41323,0 c -0.10329,-1.342972 -0.92975,-2.376038 -2.16942,-2.789238 m -1.13636,0.309907 1.13636,-0.309907 m -1.23968,-0.206613 0.10332,0.51652 m -1.54959,0.413226 -0.10332,-0.516546 m -1.03304,0.826452 1.13636,-0.309906 m 4.02892,2.169424 c 0,-0.309932 -0.1033,-0.516546 -0.20662,-0.826452 m -0.72313,1.136359 0.92975,-0.206613 m -0.92975,0.10332 c -0.61984,0.206613 -0.92974,0.826426 -0.82645,1.446265 m 0.41323,1.446292 -0.30991,-1.446292 m -0.51655,1.652905 c 0.30994,0 0.61984,-0.10332 0.92978,-0.206613 m -1.343,-1.239679 0.41322,1.549585 m -0.41322,-1.549585 c -0.1033,-0.619839 -0.72314,-0.929746 -1.34298,-0.826452 m -1.44626,0.516546 1.44626,-0.413227 m -1.65287,-0.516519 c 0,0.309906 0.10329,0.619813 0.20661,0.826426 m 1.23965,-1.136359 -1.44626,0.309933 m 1.44626,-0.413226 c 0.61984,-0.10332 0.92977,-0.72316 0.82645,-1.342973 m -0.41322,-1.446291 0.41322,1.446291 m 0.82646,-0.206613 -0.41323,-1.446291 m 0.41323,1.446291 c 0.10329,0.51652 0.72313,0.929746 1.34297,0.723133 m 0.92974,-0.206613 -0.92974,0.309906 m 0.10332,-2.479331 c -0.51655,-0.206613 -1.03307,-0.309906 -1.65291,-0.309906 m 3.71901,3.202464 c -0.10332,-1.239653 -0.92974,-2.376038 -2.0661,-2.892558 m 2.0661,3.822303 v -0.929745 m 0,0 h -0.20661 m -2.16942,-2.789238 0.30993,-0.10332 m 2.68594,0.929746 c 0,0 0.1033,0 0,0 m -3.92562,2.272745 c 0,-0.10332 -0.10332,-0.206614 -0.20661,-0.206614 -0.10332,0 -0.20662,0.103294 -0.20662,0.206614 0,0.103293 0.1033,0.309906 0.20662,0.309906 0.10329,0 0.20661,-0.206613 0.20661,-0.309906 m -1.44629,-1.033066 c 0,-0.413226 -0.30991,-0.723133 -0.72314,-0.723133 -0.3099,0 -0.61983,0.309907 -0.61983,0.723133 0,0.309906 0.30993,0.723133 0.61983,0.723133 0.41323,0 0.72314,-0.413227 0.72314,-0.723133 m 2.99587,-0.826453 c 0,-0.413226 -0.3099,-0.723132 -0.72313,-0.723132 -0.30993,0 -0.61984,0.309906 -0.61984,0.723132 0,0.309933 0.30991,0.723133 0.61984,0.723133 0.41323,0 0.72313,-0.4132 0.72313,-0.723133 m 0.82646,2.995878 c 0,-0.413227 -0.41323,-0.723133 -0.72316,-0.723133 -0.4132,0 -0.72313,0.309906 -0.72313,0.723133 0,0.309906 0.30993,0.723132 0.72313,0.723132 0.30993,0 0.72316,-0.413226 0.72316,-0.723132 m -2.99588,0.826452 c 0,-0.413226 -0.41323,-0.723159 -0.72313,-0.723159 -0.41323,0 -0.72316,0.309933 -0.72316,0.723159 0,0.309906 0.30993,0.723133 0.72316,0.723133 0.3099,0 0.72313,-0.413227 0.72313,-0.723133 m -0.20661,0 c 0,-0.309933 -0.30991,-0.516546 -0.51652,-0.516546 -0.30994,0 -0.51655,0.206613 -0.51655,0.516546 0,0.206613 0.20661,0.51652 0.51655,0.51652 0.20661,0 0.51652,-0.309907 0.51652,-0.51652 m 2.99587,-0.826452 c 0,-0.309933 -0.30993,-0.516547 -0.51654,-0.516547 -0.30991,0 -0.51652,0.206614 -0.51652,0.516547 0,0.206613 0.20661,0.516519 0.51652,0.516519 0.20661,0 0.51654,-0.309906 0.51654,-0.516519 m -0.82645,-2.995878 c 0,-0.309906 -0.20661,-0.516519 -0.51652,-0.516519 -0.20661,0 -0.41322,0.206613 -0.41322,0.516519 0,0.206614 0.20661,0.516546 0.41322,0.516546 0.30991,0 0.51652,-0.309932 0.51652,-0.516546 m -2.99588,0.826453 c 0,-0.309907 -0.20661,-0.51652 -0.51652,-0.51652 -0.20661,0 -0.41322,0.206613 -0.41322,0.51652 0,0.206613 0.20661,0.51652 0.41322,0.51652 0.30991,0 0.51652,-0.309907 0.51652,-0.51652 m -1.65287,0.51652 0.10329,-0.103294 m 0,0 0.20661,0.826453 m 0,0 0.10332,-0.206613 m 0,0 v 0.206613 m 0,0 v 0.103293 m 0,0 h -0.20661 m 0,0 -0.20661,-0.826452 m 2.78926,3.20249 0.10329,0.309906 m 0,0 h -0.20661 m 0,0 v -0.206613 m 0,0 h -0.10329 m 0,0 v -0.103293 m 0,0 h 0.10329 m 0,0 -0.10329,-0.206613 m 0,0 h 0.10329 m 0,0 0.10332,0.103293 m 0,0 0.30991,-0.103293 m 0,0 v 0.206613 m 0,0 -0.10332,0.619839 m 0,0 -0.1033,0.103293 m 0,0 0.1033,-0.723132 m 0,0 h -0.20659 m 1.54959,0 0.10329,0.103293 0.20661,0.10332 m 0,0 h 0.10329 m 0,-0.10332 c 0.10332,0 0.10332,-0.206613 0.10332,-0.309906 m 0,0.103293 h -0.10332 m -0.10329,0.10332 c 0.10329,0 0.10329,-0.10332 0.10329,-0.10332 m -0.20658,0 v 0.10332 h 0.10329 m -0.20661,0 v -0.10332 l 0.10332,-0.103293 m 0,0 h 0.10329 m 0,0 -0.10329,-0.10332 m -0.10332,-0.103294 v 0.103294 h 0.10332 m -0.10332,-0.309907 v 0.10332 c -0.10329,0 -0.10329,0 0,0.103293 m 0,-0.103293 h 0.10332 0.10329 m 0,0 h 0.10329 m 0,0 -0.10329,-0.10332 -0.20661,-0.103293 m 0,0 -0.20661,0.206613 v 0.206587 m 0,-0.103294 c 0,0.103294 0.10332,0.206614 0.20661,0.206614 m 0,0 -0.10329,0.103293 v 0.10332 m 1.13635,-4.648756 -0.51654,0.103293 m 0,0 v 0.10332 m 0,0 0.30993,-0.10332 m 0,0 -0.10332,0.413227 m 0,0 c -0.10329,0.103319 0,0.206613 0,0.206613 0.10332,0.103293 0.20661,0.103293 0.30993,0.103293 0.1033,-0.103293 0.1033,-0.206587 0.1033,-0.309906 m 0,0.103319 h -0.1033 m -0.20661,-0.103319 c -0.10332,0.103319 -0.10332,0.103319 0,0.206613 h 0.10329 c 0.10332,0 0.10332,-0.103294 0.10332,-0.206613 m -0.20661,0.103319 0.20661,-0.516546 m 0,0 V 73.088638 M 33.935837,142.61323 c 0,-0.30991 -0.103293,-0.4132 -0.413226,-0.4132 -0.206587,0 -0.4132,0.10329 -0.4132,0.4132 0,0.20661 0.206613,0.41322 0.4132,0.41322 0.309933,0 0.413226,-0.20661 0.413226,-0.41322 m -0.206613,0 c 0,-0.1033 -0.103293,-0.20659 -0.206613,-0.20659 -0.103293,0 -0.206587,0.10329 -0.206587,0.20659 0,0.10332 0.103294,0.20661 0.206587,0.20661 0.10332,0 0.206613,-0.10329 0.206613,-0.20661 m -0.619813,-2.99585 c 0,-0.30994 -0.10332,-0.41323 -0.4132,-0.41323 -0.206613,0 -0.413226,0.10329 -0.413226,0.41323 0,0.20661 0.206613,0.41322 0.413226,0.41322 0.30988,0 0.4132,-0.20661 0.4132,-0.41322 m -0.206587,0 c 0,-0.10332 -0.103319,-0.20662 -0.206613,-0.20662 -0.10332,0 -0.206613,0.1033 -0.206613,0.20662 0,0.10329 0.103293,0.20661 0.206613,0.20661 0.103294,0 0.206613,-0.10332 0.206613,-0.20661 m 4.02889,2.16942 c 0,-0.20661 -0.103293,-0.41323 -0.413226,-0.41323 -0.206613,0 -0.413226,0.20662 -0.413226,0.41323 0,0.30991 0.206613,0.51652 0.413226,0.51652 0.309933,0 0.413226,-0.20661 0.413226,-0.51652 m -0.206613,0 c 0,-0.10332 -0.103293,-0.10332 -0.206613,-0.10332 -0.103293,0 -0.206613,0 -0.206613,0.10332 0,0.10329 0.10332,0.20661 0.206613,0.20661 0.10332,0 0.206613,-0.10332 0.206613,-0.20661 m -1.652878,-1.13636 c 0,-0.20661 -0.206614,-0.41323 -0.413227,-0.41323 -0.309933,0 -0.516546,0.20662 -0.516546,0.41323 0,0.30991 0.206613,0.51652 0.516546,0.51652 0.206613,0 0.413227,-0.20661 0.413227,-0.51652 m -0.309933,0 c 0,-0.10332 0,-0.10332 -0.103294,-0.10332 -0.10332,0 -0.206613,0 -0.206613,0.10332 0,0.10329 0.103293,0.20659 0.206613,0.20659 0.103294,0 0.103294,-0.1033 0.103294,-0.20659 m 1.446291,-1.85952 c 0,-0.3099 -0.206613,-0.41322 -0.413226,-0.41322 -0.309933,0 -0.516546,0.10332 -0.516546,0.41322 0,0.20662 0.206613,0.41323 0.516546,0.41323 0.206613,0 0.413226,-0.20661 0.413226,-0.41323 m -0.309932,0 c 0,-0.10329 0,-0.20661 -0.103294,-0.20661 -0.10332,0 -0.206613,0.10332 -0.206613,0.20661 0,0.10332 0.103293,0.20662 0.206613,0.20662 0.103294,0 0.103294,-0.1033 0.103294,-0.20662 m 2.892557,1.85952 c 0,-2.27274 -1.859492,-4.13223 -4.13221,-4.13223 -2.376011,0 -4.235529,1.85949 -4.235529,4.13223 0,2.37601 1.859518,4.23553 4.235529,4.23553 2.272718,0 4.13221,-1.85952 4.13221,-4.23553 m -0.51652,0 c 0,-1.96281 -1.652878,-3.61572 -3.61569,-3.61572 -2.066105,0 -3.718983,1.65291 -3.718983,3.61572 0,2.06611 1.652878,3.71898 3.718983,3.71898 1.962812,0 3.61569,-1.65287 3.61569,-3.71898 m -0.516519,-0.20661 0.516519,-0.10332 m -0.723132,-1.03307 c -0.309933,0.10332 -0.516547,0.41323 -0.413227,0.72316 0.103294,0.20661 0.413227,0.41323 0.723133,0.30991 m -0.413226,-0.92975 0.516546,-0.10332 m 219.73078,-34.50402 c -0.30991,0 -0.61984,0.10332 -0.92975,0.20661 m 1.13636,-0.61983 c -0.51652,0 -1.03306,0.10332 -1.54958,0.30993 m -1.23968,1.13636 c -0.82645,1.13636 -0.82645,2.78923 0,3.92559 0.72313,1.23966 2.27274,1.8595 3.61571,1.54959 1.44626,-0.30993 2.58262,-1.44629 2.78923,-2.89256 m -5.16526,-3.71898 c -0.41323,0.3099 -0.82645,0.61984 -1.23968,1.13636 m 0.30994,-0.10332 c -0.92977,1.03306 -1.03307,2.58262 -0.30994,3.8223 0.72313,1.23965 2.16942,1.85949 3.51239,1.65288 1.44629,-0.30991 2.47933,-1.34297 2.78926,-2.78924 m -0.10332,0.10329 h 0.20661 m -6.40494,-2.68591 0.30994,-0.10332 m 0.92974,-0.72314 v -0.20661 m 1.54958,-0.3099 c -0.51652,0 -1.03306,0.20661 -1.44629,0.41322 m 1.34297,-0.51654 0.10332,0.20661 m 2.89255,3.92559 h 0.51652 m -0.4132,-1.03303 -0.10332,1.03303 m 0.51652,-0.92971 -0.4132,-0.10332 m 0.51652,0 c -0.20662,-1.23966 -1.03307,-2.37602 -2.16942,-2.78924 m -1.23968,0.41322 1.13639,-0.30993 m -1.23968,-0.20661 0.10329,0.51654 m -1.44626,0.4132 -0.20661,-0.51652 m -0.92974,0.72314 1.13635,-0.20662 m 3.92561,2.16943 c 0,-0.30991 -0.10332,-0.61981 -0.20661,-0.92975 m -0.72316,1.23968 0.92977,-0.30993 m -0.82645,0.20661 c -0.61983,0.10332 -0.92974,0.72313 -0.82645,1.34295 m 0.41323,1.54958 -0.41323,-1.44626 m -0.41322,1.65288 c 0.30993,-0.1033 0.61984,-0.1033 0.82645,-0.20662 m -1.34297,-1.23965 0.41323,1.44627 m -0.30994,-1.54959 c -0.10329,-0.51652 -0.72313,-0.92975 -1.34297,-0.72313 m -1.54958,0.41322 1.44629,-0.41322 m -1.6529,-0.5165 c 0.10332,0.30988 0.10332,0.61982 0.20661,0.92972 m 1.23968,-1.23965 -1.44629,0.4132 m 1.54958,-0.4132 c 0.51655,-0.20661 0.92977,-0.82642 0.72316,-1.44626 m -0.41323,-1.34298 0.41323,1.44627 m 0.82642,-0.20661 -0.41322,-1.54959 m 0.41322,1.44629 c 0.20662,0.61984 0.82645,0.92975 1.44629,0.82646 m 0.82645,-0.20662 -0.92977,0.20662 m 0.10332,-2.37604 c -0.51652,-0.30993 -1.03306,-0.41323 -1.54958,-0.30993 m 3.61568,3.09917 c -0.10329,-1.23966 -0.92974,-2.27272 -2.0661,-2.78924 m 2.0661,3.71898 c 0.10332,-0.3099 0.10332,-0.61981 0,-0.92974 m 0,0.10332 h -0.20661 m -2.16939,-2.78927 0.3099,-0.10329 m -1.23967,3.20246 c 0,-0.10329 -0.1033,-0.20661 -0.20662,-0.20661 -0.10329,0 -0.20661,0.10332 -0.20661,0.20661 0,0.10332 0.10332,0.20662 0.20661,0.20662 0.10332,0 0.20662,-0.1033 0.20662,-0.20662 m -1.44627,-1.13636 c 0,-0.3099 -0.30993,-0.61984 -0.61983,-0.61984 -0.41323,0 -0.72313,0.30994 -0.72313,0.61984 0,0.41323 0.3099,0.72314 0.72313,0.72314 0.3099,0 0.61983,-0.30991 0.61983,-0.72314 m 2.99585,-0.82645 c 0,-0.30991 -0.30991,-0.61981 -0.61981,-0.61981 -0.41323,0 -0.72316,0.3099 -0.72316,0.61981 0,0.41323 0.30993,0.72316 0.72316,0.72316 0.3099,0 0.61981,-0.30993 0.61981,-0.72316 m 0.82645,2.99585 c 0,-0.30991 -0.30991,-0.61984 -0.61984,-0.61984 -0.41323,0 -0.72313,0.30993 -0.72313,0.61984 0,0.41323 0.3099,0.72313 0.72313,0.72313 0.30993,0 0.61984,-0.3099 0.61984,-0.72313 m -2.99587,0.82645 c 0,-0.30993 -0.30991,-0.61984 -0.61981,-0.61984 -0.41323,0 -0.72316,0.30991 -0.72316,0.61984 0,0.41323 0.30993,0.72314 0.72316,0.72314 0.3099,0 0.61981,-0.30991 0.61981,-0.72314 m -0.20659,0 c 0,-0.20661 -0.20661,-0.41322 -0.41322,-0.41322 -0.30994,0 -0.51655,0.20661 -0.51655,0.41322 0,0.30991 0.20661,0.51652 0.51655,0.51652 0.20661,0 0.41322,-0.20661 0.41322,-0.51652 m 2.99584,-0.82645 c 0,-0.20661 -0.20661,-0.41323 -0.41322,-0.41323 -0.30991,0 -0.51652,0.20662 -0.51652,0.41323 0,0.30991 0.20661,0.51652 0.51652,0.51652 0.20661,0 0.41322,-0.20661 0.41322,-0.51652 m -0.82645,-2.99585 c 0,-0.20661 -0.20661,-0.41323 -0.41319,-0.41323 -0.30994,0 -0.51655,0.20662 -0.51655,0.41323 0,0.30993 0.20661,0.51655 0.51655,0.51655 0.20658,0 0.41319,-0.20662 0.41319,-0.51655 m -2.99584,0.82645 c 0,-0.20661 -0.20661,-0.41322 -0.41322,-0.41322 -0.30994,0 -0.51652,0.20661 -0.51652,0.41322 0,0.30994 0.20658,0.51652 0.51652,0.51652 0.20661,0 0.41322,-0.20658 0.41322,-0.51652 m -1.6529,0.51652 h 0.10332 m 0,0 0.20661,0.72316 m 0,0 0.1033,-0.10332 m 0,0 0.10332,0.10332 m 0,0 -0.10332,0.1033 m 0,0 -0.1033,0.10331 m 0,0 -0.30993,-0.92977 m 2.78926,3.30579 0.10329,0.20658 m 0,0 -0.10329,0.10332 m 0,0 -0.10332,-0.3099 m 0,0 h -0.1033 m 0,0 v -0.10332 m 0,0 h 0.1033 m 0,0 -0.1033,-0.1033 m 0,0 h 0.20662 m 0,0 v 0.1033 m 0,0 0.3099,-0.1033 m 0,0 0.10332,0.1033 m 0,0 -0.20661,0.72313 m 0,0 h -0.10332 m 0,0 0.10332,-0.72313 m 0,0 -0.20661,0.10332 m 1.54958,0 0.10329,0.10329 h 0.20661 m 0,0 h 0.10332 m 0.1033,0 c 0.10332,-0.10329 0.10332,-0.20661 0.10332,-0.30991 m -0.10332,0.1033 h -0.1033 m 0,0.10332 c 0,0 0.1033,-0.10332 0,-0.10332 m -0.20661,0 h 0.10329 c 0,0.10332 0,0.10332 0.10332,0 m -0.30993,0 0.10332,-0.1033 m 0,0 h 0.10329 m 0,0 v -0.10332 m 0,0 h -0.10329 m -0.10332,-0.20661 c 0,0.10332 0,0.10332 0.10332,0.10332 0,0.10329 0,0.10329 0.10329,0 m -0.10329,-0.20661 h -0.10332 v 0.10329 m 0,-0.10329 h 0.10332 l 0.10329,0.10329 m 0,0 0.10332,-0.10329 m 0,0 -0.10332,-0.10332 h -0.20661 m 0,0 -0.20658,0.10332 v 0.20661 m 0.10329,0 c 0,0.10329 0,0.10329 0.10329,0.10329 m 0,0.10332 -0.10329,0.1033 v 0.10332 m 1.13635,-4.75205 -0.51651,0.10329 m 0,0 v 0.10332 m 0,0 h 0.41322 m 0,0 -0.20661,0.41323 m 0.10329,-0.10332 c -0.10329,0.10332 0,0.20661 0,0.30993 0.10332,0.10329 0.20661,0.10329 0.30993,0 0.1033,0 0.1033,-0.10332 0.1033,-0.20661 m -0.1033,0 h -0.10332 m -0.10329,0 c -0.10332,0 -0.10332,0.10329 0,0.10329 0,0.10332 0.10329,0.10332 0.10329,0 0.10332,0 0.10332,-0.10329 0.10332,-0.10329 m -0.30993,0 0.20661,-0.51655 m 0,0 v -0.10329 m -2.68593,31.71475 c -0.30991,0.10332 -0.61984,0.10332 -0.92975,0.20662 m 1.13636,-0.61982 c -0.51652,0 -1.03306,0.20659 -1.54958,0.4132 m -1.23968,1.03307 c -0.82645,1.23968 -0.82645,2.78926 0,4.02892 0.72313,1.23967 2.27274,1.85951 3.61571,1.54961 1.44626,-0.30994 2.58262,-1.44629 2.78923,-2.89259 m -5.16526,-3.71901 c -0.41323,0.20662 -0.82645,0.61984 -1.23968,1.03307 m 0.30994,-0.10329 c -0.92977,1.13636 -1.03307,2.68594 -0.30994,3.92562 0.72313,1.23965 2.16942,1.85949 3.51239,1.54958 1.44629,-0.20661 2.47933,-1.34299 2.78926,-2.68597 m -0.10332,0 h 0.20661 m -6.40494,-2.58262 0.30994,-0.10332 m 0.92974,-0.82645 v -0.20662 m 1.54958,-0.20661 c -0.51652,0 -1.03306,0.10332 -1.44629,0.30993 m 1.34297,-0.51652 0.10332,0.20659 m 2.89255,3.92562 h 0.51652 m -0.4132,-0.92974 -0.10332,0.92974 m 0.51652,-0.92974 h -0.4132 m 0.51652,0 c -0.20662,-1.34297 -1.03307,-2.37604 -2.16942,-2.78927 m -1.23968,0.30994 1.13639,-0.30994 m -1.23968,-0.20661 0.10329,0.51655 m -1.44626,0.41322 -0.20661,-0.51654 m -0.92974,0.82645 1.13635,-0.30991 m 3.92561,2.16943 c 0,-0.30993 -0.10332,-0.51655 -0.20661,-0.82645 m -0.72316,1.13635 0.92977,-0.20661 m -0.82645,0.10332 c -0.61983,0.20659 -0.92974,0.82643 -0.82645,1.44627 m 0.41323,1.44629 -0.41323,-1.44629 m -0.41322,1.6529 c 0.30993,0 0.61984,-0.10332 0.82645,-0.20661 m -1.34297,-1.23968 0.41323,1.54958 m -0.30994,-1.54958 c -0.10329,-0.61984 -0.72313,-0.92975 -1.34297,-0.82645 m -1.54958,0.51654 1.44629,-0.41322 m -1.6529,-0.51655 c 0.10332,0.30993 0.10332,0.61984 0.20661,0.82645 m 1.23968,-1.13636 -1.44629,0.30991 m 1.54958,-0.4132 c 0.51655,-0.10332 0.92977,-0.72316 0.72316,-1.343 m -0.41323,-1.44626 0.41323,1.44626 m 0.82642,-0.20661 -0.41322,-1.44627 m 0.41322,1.44627 c 0.20662,0.51655 0.82645,0.92977 1.44629,0.72316 m 0.82645,-0.20661 -0.92977,0.3099 m 0.10332,-2.47933 c -0.51652,-0.20661 -1.03306,-0.30991 -1.54958,-0.30991 m 3.61568,3.20247 c -0.10329,-1.23968 -0.92974,-2.37604 -2.0661,-2.89256 m 2.0661,3.8223 c 0.10332,-0.3099 0.10332,-0.61981 0,-0.92974 m 0,0 h -0.20661 m -2.16939,-2.78927 0.3099,-0.10329 m -1.23967,3.20249 c 0,-0.10332 -0.1033,-0.20661 -0.20662,-0.20661 -0.10329,0 -0.20661,0.10329 -0.20661,0.20661 0,0.10329 0.10332,0.30991 0.20661,0.30991 0.10332,0 0.20662,-0.20662 0.20662,-0.30991 m -1.44627,-1.03306 c 0,-0.41323 -0.30993,-0.72314 -0.61983,-0.72314 -0.41323,0 -0.72313,0.30991 -0.72313,0.72314 0,0.3099 0.3099,0.72313 0.72313,0.72313 0.3099,0 0.61983,-0.41323 0.61983,-0.72313 m 2.99585,-0.82646 c 0,-0.41322 -0.30991,-0.72313 -0.61981,-0.72313 -0.41323,0 -0.72316,0.30991 -0.72316,0.72313 0,0.30991 0.30993,0.72314 0.72316,0.72314 0.3099,0 0.61981,-0.41323 0.61981,-0.72314 m 0.82645,2.99588 c 0,-0.41323 -0.30991,-0.72316 -0.61984,-0.72316 -0.41323,0 -0.72313,0.30993 -0.72313,0.72316 0,0.30991 0.3099,0.72313 0.72313,0.72313 0.30993,0 0.61984,-0.41322 0.61984,-0.72313 m -2.99587,0.82643 c 0,-0.4132 -0.30991,-0.72314 -0.61981,-0.72314 -0.41323,0 -0.72316,0.30994 -0.72316,0.72314 0,0.30993 0.30993,0.72316 0.72316,0.72316 0.3099,0 0.61981,-0.41323 0.61981,-0.72316 m -0.20659,0 c 0,-0.30991 -0.20661,-0.51652 -0.41322,-0.51652 -0.30994,0 -0.51655,0.20661 -0.51655,0.51652 0,0.20661 0.20661,0.51654 0.51655,0.51654 0.20661,0 0.41322,-0.30993 0.41322,-0.51654 m 2.99584,-0.82643 c 0,-0.30993 -0.20661,-0.51655 -0.41322,-0.51655 -0.30991,0 -0.51652,0.20662 -0.51652,0.51655 0,0.20661 0.20661,0.51652 0.51652,0.51652 0.20661,0 0.41322,-0.30991 0.41322,-0.51652 m -0.82645,-2.99588 c 0,-0.3099 -0.20661,-0.51652 -0.41319,-0.51652 -0.30994,0 -0.51655,0.20662 -0.51655,0.51652 0,0.20662 0.20661,0.51652 0.51655,0.51652 0.20658,0 0.41319,-0.3099 0.41319,-0.51652 m -2.99584,0.82646 c 0,-0.30994 -0.20661,-0.51655 -0.41322,-0.51655 -0.30994,0 -0.51652,0.20661 -0.51652,0.51655 0,0.20661 0.20658,0.51652 0.51652,0.51652 0.20661,0 0.41322,-0.30991 0.41322,-0.51652 m -1.6529,0.51652 h 0.10332 m 0,0 0.20661,0.72313 m 0,0 0.1033,-0.20659 m 0,0 0.10332,0.20659 m 0,0 -0.10332,0.10332 m 0,0 h -0.1033 m 0,0 -0.30993,-0.82645 m 2.78926,3.20249 0.10329,0.3099 m 0,0 h -0.10329 m 0,0 -0.10332,-0.20661 m 0,0 h -0.1033 m 0,0 v -0.10329 m 0,0 h 0.1033 m 0,0 -0.1033,-0.20662 m 0,0 h 0.20662 m 0,0 v 0.1033 m 0,0 0.3099,-0.1033 m 0,0 0.10332,0.20662 m 0,0 -0.20661,0.61983 m 0,0 -0.10332,0.1033 m 0,0 0.10332,-0.72313 m 0,0 h -0.20661 m 1.54958,0 0.10329,0.10329 0.20661,0.10332 m 0,0 h 0.10332 m 0.1033,-0.10332 c 0.10332,0 0.10332,-0.20661 0.10332,-0.30991 m -0.10332,0.1033 h -0.1033 m 0,0.10332 c 0,0 0.1033,0 0,-0.10332 m -0.20661,0 c 0,0 0,0.10332 0.10329,0.10332 h 0.10332 m -0.30993,0 0.10332,-0.10332 v -0.1033 m 0,0 h 0.10329 m 0,0 v -0.10332 m 0,0 h -0.10329 m -0.10332,-0.10329 c 0,0 0,0.10329 0.10332,0.10329 h 0.10329 m -0.10329,-0.3099 c 0,0 -0.10332,0 -0.10332,0.10329 v 0.10332 m 0,-0.10332 h 0.10332 0.10329 m 0,0 h 0.10332 m 0,0 -0.10332,-0.10329 -0.20661,-0.10332 m 0,0 -0.20658,0.20661 v 0.20661 m 0.10329,-0.10329 c 0,0.10329 0,0.20661 0.10329,0.20661 m 0,0 -0.10329,0.1033 v 0.10332 m 1.13635,-4.64876 -0.51651,0.10329 m 0,0 v 0.10332 m 0,0 0.41322,-0.10332 m 0,0 -0.20661,0.41323 m 0.10329,0 c -0.10329,0.10329 0,0.20661 0,0.20661 0.10332,0.1033 0.20661,0.1033 0.30993,0.1033 0.1033,-0.1033 0.1033,-0.20662 0.1033,-0.30991 m -0.1033,0.10329 h -0.10332 m -0.10329,-0.10329 c -0.10332,0.10329 -0.10332,0.10329 0,0.20661 h 0.10329 c 0.10332,0 0.10332,-0.10332 0.10332,-0.20661 m -0.30993,0.10329 0.20661,-0.51652 m 0,0 v -0.10329 m -2.68593,-66.735351 c -0.30991,0.103294 -0.61984,0.103294 -0.92975,0.206587 m 1.13636,-0.619813 c -0.51652,0 -1.03306,0.206613 -1.54958,0.413226 m -1.23968,1.033039 c -0.82645,1.239679 -0.82645,2.789264 0,4.028943 0.72313,1.239652 2.27274,1.859492 3.61571,1.549585 1.44626,-0.309933 2.58262,-1.446292 2.78923,-2.892584 m -5.16526,-3.718983 c -0.41323,0.206587 -0.82645,0.619813 -1.23968,1.033039 m 0.30994,-0.103293 c -0.92977,1.136359 -1.03307,2.685944 -0.30994,3.925623 0.72313,1.239652 2.16942,1.859492 3.51239,1.549585 1.44629,-0.206613 2.47933,-1.342972 2.78926,-2.685971 m -0.10332,0 h 0.20661 m -6.40494,-2.582624 0.30994,-0.10332 m 0.92974,-0.826452 v -0.206587 m 1.54958,-0.206613 c -0.51652,0 -1.03306,0.103293 -1.44629,0.309907 m 1.34297,-0.51652 0.10332,0.206613 m 2.89255,3.925596 h 0.51652 m -0.4132,-0.929745 -0.10332,0.929745 m 0.51652,-0.929745 h -0.4132 m 0.51652,0 c -0.20662,-1.342972 -1.03307,-2.376038 -2.16942,-2.789238 m -1.23968,0.309907 1.13639,-0.309907 m -1.23968,-0.206613 0.10329,0.51652 m -1.44626,0.413226 -0.20661,-0.516546 m -0.92974,0.826452 1.13635,-0.309906 m 3.92561,2.169424 c 0,-0.309932 -0.10332,-0.516546 -0.20661,-0.826452 m -0.72316,1.136359 0.92977,-0.206613 m -0.82645,0.10332 c -0.61983,0.206613 -0.92974,0.826426 -0.82645,1.446265 m 0.41323,1.446292 -0.41323,-1.446292 m -0.41322,1.652905 c 0.30993,0 0.61984,-0.10332 0.82645,-0.206613 m -1.34297,-1.239679 0.41323,1.549585 m -0.30994,-1.549585 c -0.10329,-0.619839 -0.72313,-0.929746 -1.34297,-0.826452 m -1.54958,0.516546 1.44629,-0.413227 m -1.6529,-0.516519 c 0.10332,0.309906 0.10332,0.619813 0.20661,0.826426 m 1.23968,-1.136359 -1.44629,0.309933 m 1.54958,-0.413226 c 0.51655,-0.10332 0.92977,-0.72316 0.72316,-1.342973 m -0.41323,-1.446291 0.41323,1.446291 m 0.82642,-0.206613 -0.41322,-1.446291 m 0.41322,1.446291 c 0.20662,0.51652 0.82645,0.929746 1.44629,0.723133 m 0.82645,-0.206613 -0.92977,0.309906 m 0.10332,-2.479331 c -0.51652,-0.206613 -1.03306,-0.309906 -1.54958,-0.309906 m 3.61568,3.202464 c -0.10329,-1.239653 -0.92974,-2.376038 -2.0661,-2.892558 m 2.0661,3.822303 c 0.10332,-0.309906 0.10332,-0.619812 0,-0.929745 m 0,0 h -0.20661 m -2.16939,-2.789238 0.3099,-0.10332 m -1.23967,3.202491 c 0,-0.10332 -0.1033,-0.206614 -0.20662,-0.206614 -0.10329,0 -0.20661,0.103294 -0.20661,0.206614 0,0.103293 0.10332,0.309906 0.20661,0.309906 0.10332,0 0.20662,-0.206613 0.20662,-0.309906 m -1.44627,-1.033066 c 0,-0.413226 -0.30993,-0.723133 -0.61983,-0.723133 -0.41323,0 -0.72313,0.309907 -0.72313,0.723133 0,0.309906 0.3099,0.723133 0.72313,0.723133 0.3099,0 0.61983,-0.413227 0.61983,-0.723133 m 2.99585,-0.826453 c 0,-0.413226 -0.30991,-0.723132 -0.61981,-0.723132 -0.41323,0 -0.72316,0.309906 -0.72316,0.723132 0,0.309933 0.30993,0.723133 0.72316,0.723133 0.3099,0 0.61981,-0.4132 0.61981,-0.723133 m 0.82645,2.995878 c 0,-0.413227 -0.30991,-0.723133 -0.61984,-0.723133 -0.41323,0 -0.72313,0.309906 -0.72313,0.723133 0,0.309906 0.3099,0.723132 0.72313,0.723132 0.30993,0 0.61984,-0.413226 0.61984,-0.723132 m -2.99587,0.826452 c 0,-0.413226 -0.30991,-0.723159 -0.61981,-0.723159 -0.41323,0 -0.72316,0.309933 -0.72316,0.723159 0,0.309906 0.30993,0.723133 0.72316,0.723133 0.3099,0 0.61981,-0.413227 0.61981,-0.723133 m -0.20659,0 c 0,-0.309933 -0.20661,-0.516546 -0.41322,-0.516546 -0.30994,0 -0.51655,0.206613 -0.51655,0.516546 0,0.206613 0.20661,0.51652 0.51655,0.51652 0.20661,0 0.41322,-0.309907 0.41322,-0.51652 m 2.99584,-0.826452 c 0,-0.309933 -0.20661,-0.516547 -0.41322,-0.516547 -0.30991,0 -0.51652,0.206614 -0.51652,0.516547 0,0.206613 0.20661,0.516519 0.51652,0.516519 0.20661,0 0.41322,-0.309906 0.41322,-0.516519 m -0.82645,-2.995878 c 0,-0.309906 -0.20661,-0.516519 -0.41319,-0.516519 -0.30994,0 -0.51655,0.206613 -0.51655,0.516519 0,0.206614 0.20661,0.516546 0.51655,0.516546 0.20658,0 0.41319,-0.309932 0.41319,-0.516546 m -2.99584,0.826453 c 0,-0.309907 -0.20661,-0.51652 -0.41322,-0.51652 -0.30994,0 -0.51652,0.206613 -0.51652,0.51652 0,0.206613 0.20658,0.51652 0.51652,0.51652 0.20661,0 0.41322,-0.309907 0.41322,-0.51652 m -1.6529,0.51652 0.10332,-0.103294 m 0,0 0.20661,0.826453 m 0,0 0.1033,-0.206613 m 0,0 0.10332,0.206613 m 0,0 -0.10332,0.103293 m 0,0 h -0.1033 m 0,0 -0.30993,-0.826452 m 2.78926,3.20249 0.10329,0.309906 m 0,0 h -0.10329 m 0,0 -0.10332,-0.206613 m 0,0 h -0.1033 m 0,0 v -0.103293 m 0,0 h 0.1033 m 0,0 -0.1033,-0.206613 m 0,0 h 0.20662 m 0,0 v 0.103293 m 0,0 0.3099,-0.103293 m 0,0 0.10332,0.206613 m 0,0 -0.20661,0.619839 m 0,0 -0.10332,0.103293 m 0,0 0.10332,-0.723132 m 0,0 h -0.20661 m 1.54958,0 0.10329,0.103293 0.20661,0.10332 m 0,0 h 0.10332 m 0.1033,-0.10332 c 0.10332,0 0.10332,-0.206613 0.10332,-0.309906 m -0.10332,0.103293 h -0.1033 m 0,0.10332 c 0,0 0.1033,-0.10332 0,-0.10332 m -0.20661,0 c 0,0 0,0.10332 0.10329,0.10332 h 0.10332 m -0.30993,0 0.10332,-0.10332 v -0.103293 m 0,0 h 0.10329 m 0,0 v -0.10332 m 0,0 h -0.10329 m -0.10332,-0.103294 c 0,0 0,0.103294 0.10332,0.103294 h 0.10329 m -0.10329,-0.309907 c 0,0 -0.10332,0 -0.10332,0.10332 v 0.103293 m 0,-0.103293 h 0.10332 0.10329 m 0,0 h 0.10332 m 0,0 -0.10332,-0.10332 -0.20661,-0.103293 m 0,0 -0.20658,0.206613 v 0.206587 m 0.10329,-0.103294 c 0,0.103294 0,0.206614 0.10329,0.206614 m 0,0 -0.10329,0.103293 v 0.10332 m 1.13635,-4.648756 -0.51651,0.103293 m 0,0 v 0.10332 m 0,0 0.41322,-0.10332 m 0,0 -0.20661,0.413227 m 0.10329,0 c -0.10329,0.103319 0,0.206613 0,0.206613 0.10332,0.103293 0.20661,0.103293 0.30993,0.103293 0.1033,-0.103293 0.1033,-0.206587 0.1033,-0.309906 m -0.1033,0.103319 h -0.10332 m -0.10329,-0.103319 c -0.10332,0.103319 -0.10332,0.103319 0,0.206613 h 0.10329 c 0.10332,0 0.10332,-0.103294 0.10332,-0.206613 m -0.30993,0.103319 0.20661,-0.516546 m 0,0 V 73.088638 M 257.69556,39.20443 c -0.30991,0 -0.61984,0.10332 -0.92975,0.206613 m 1.13636,-0.619839 c -0.51652,0 -1.03306,0.10332 -1.54958,0.309933 m -1.23968,1.136359 c -0.82645,1.136359 -0.82645,2.789237 0,3.925596 0.72313,1.239679 2.27274,1.859492 3.61571,1.549585 1.44626,-0.309906 2.58262,-1.446292 2.78923,-2.892557 m -5.16526,-3.718983 c -0.41323,0.309906 -0.82645,0.619839 -1.23968,1.136359 m 0.30994,-0.103294 c -0.92977,1.033039 -1.03307,2.582598 -0.30994,3.822277 0.72313,1.239679 2.16942,1.859492 3.51239,1.652905 1.44629,-0.309933 2.47933,-1.342999 2.78926,-2.789264 m -0.10332,0.103293 h 0.20661 m -6.40494,-2.685917 0.30994,-0.103294 m 0.92974,-0.723159 V 39.20443 m 1.54958,-0.309906 c -0.51652,0 -1.03306,0.206613 -1.44629,0.413226 m 1.34297,-0.516546 0.10332,0.206613 m 2.89255,3.822303 0.51652,0.103293 m -0.4132,-1.033012 -0.10332,0.929719 m 0.51652,-0.826426 -0.4132,-0.103293 m 0.51652,0 c -0.20662,-1.239679 -1.03307,-2.376038 -2.16942,-2.789264 m -1.23968,0.413226 1.13639,-0.309933 m -1.23968,-0.206613 0.10329,0.516546 m -1.44626,0.309906 -0.20661,-0.413226 m -0.92974,0.723159 1.13635,-0.309933 m 3.92561,2.272745 c 0,-0.309933 -0.10332,-0.61984 -0.20661,-0.929773 m -0.72316,1.239653 0.92977,-0.30988 m -0.82645,0.206586 c -0.61983,0.103294 -0.92974,0.723133 -0.82645,1.342972 m 0.41323,1.549586 -0.41323,-1.446292 m -0.41322,1.652905 c 0.30993,-0.10332 0.61984,-0.10332 0.82645,-0.206613 m -1.34297,-1.239679 0.41323,1.446292 m -0.30994,-1.549585 c -0.10329,-0.516546 -0.72313,-0.929773 -1.34297,-0.72316 m -1.54958,0.413227 1.44629,-0.413227 m -1.6529,-0.516519 c 0.10332,0.309906 0.10332,0.619839 0.20661,0.929746 m 1.23968,-1.239653 -1.44629,0.4132 m 1.54958,-0.4132 c 0.51655,-0.206586 0.92977,-0.826426 0.72316,-1.446265 m -0.41323,-1.342972 0.41323,1.446265 m 0.82642,-0.206613 -0.41322,-1.549585 m 0.41322,1.446292 c 0.20662,0.619839 0.82645,0.929746 1.44629,0.826452 m 0.82645,-0.206613 -0.92977,0.206613 m 0.10332,-2.376037 c -0.51652,-0.309933 -1.03306,-0.413227 -1.54958,-0.309933 m 3.61568,3.099197 c -0.10329,-1.239679 -0.92974,-2.272745 -2.0661,-2.789264 m 2.0661,3.718983 c 0.10332,-0.309933 0.10332,-0.619813 0,-0.929719 m 0,0.103293 h -0.20661 m -2.16939,-2.789264 0.3099,-0.103293 m -1.23967,3.202463 c 0,-0.103293 -0.1033,-0.206586 -0.20662,-0.206586 -0.10329,0 -0.20661,0.103293 -0.20661,0.206586 0,0.103294 0.10332,0.206587 0.20661,0.206587 0.10332,0 0.20662,-0.103293 0.20662,-0.206587 m -1.44627,-1.136359 c 0,-0.309906 -0.30993,-0.619839 -0.61983,-0.619839 -0.41323,0 -0.72313,0.309933 -0.72313,0.619839 0,0.413227 0.3099,0.72316 0.72313,0.72316 0.3099,0 0.61983,-0.309933 0.61983,-0.72316 m 2.99585,-0.826426 c 0,-0.309933 -0.30991,-0.619839 -0.61981,-0.619839 -0.41323,0 -0.72316,0.309906 -0.72316,0.619839 0,0.4132 0.30993,0.723133 0.72316,0.723133 0.3099,0 0.61981,-0.309933 0.61981,-0.723133 m 0.82645,2.995825 c 0,-0.309907 -0.30991,-0.61984 -0.61984,-0.61984 -0.41323,0 -0.72313,0.309933 -0.72313,0.61984 0,0.413226 0.3099,0.723132 0.72313,0.723132 0.30993,0 0.61984,-0.309906 0.61984,-0.723132 m -2.99587,0.826452 c 0,-0.309906 -0.30991,-0.619839 -0.61981,-0.619839 -0.41323,0 -0.72316,0.309933 -0.72316,0.619839 0,0.413226 0.30993,0.723133 0.72316,0.723133 0.3099,0 0.61981,-0.309907 0.61981,-0.723133 m -0.20659,0 c 0,-0.206613 -0.20661,-0.413226 -0.41322,-0.413226 -0.30994,0 -0.51655,0.206613 -0.51655,0.413226 0,0.309906 0.20661,0.51652 0.51655,0.51652 0.20661,0 0.41322,-0.206614 0.41322,-0.51652 m 2.99584,-0.826452 c 0,-0.206614 -0.20661,-0.413227 -0.41322,-0.413227 -0.30991,0 -0.51652,0.206613 -0.51652,0.413227 0,0.309932 0.20661,0.516546 0.51652,0.516546 0.20661,0 0.41322,-0.206614 0.41322,-0.516546 m -0.82645,-2.995825 c 0,-0.206613 -0.20661,-0.413226 -0.41319,-0.413226 -0.30994,0 -0.51655,0.206613 -0.51655,0.413226 0,0.309907 0.20661,0.51652 0.51655,0.51652 0.20658,0 0.41319,-0.206613 0.41319,-0.51652 m -2.99584,0.826426 c 0,-0.206613 -0.20661,-0.413226 -0.41322,-0.413226 -0.30994,0 -0.51652,0.206613 -0.51652,0.413226 0,0.309933 0.20658,0.516546 0.51652,0.516546 0.20661,0 0.41322,-0.206613 0.41322,-0.516546 m -1.6529,0.516546 h 0.10332 m 0,0 0.20661,0.723107 m 0,0 0.1033,-0.103294 m 0,0 0.10332,0.103294 m 0,0 -0.10332,0.103293 m 0,0 -0.1033,0.10332 m 0,0 -0.30993,-0.92972 m 2.78926,3.305758 0.10329,0.206613 m 0,0 -0.10329,0.103293 m 0,0 -0.10332,-0.309906 m 0,0 h -0.1033 m 0,0 v -0.10332 m 0,0 h 0.1033 m 0,0 -0.1033,-0.103294 m 0,0 h 0.20662 m 0,0 v 0.103294 m 0,0 0.3099,-0.103294 m 0,0 0.10332,0.103294 m 0,0 -0.20661,0.723159 m 0,0 h -0.10332 m 0,0 0.10332,-0.723159 m 0,0 -0.20661,0.10332 m 1.54958,0 0.10329,0.103293 h 0.20661 m 0,0 h 0.10332 m 0.1033,0 c 0.10332,-0.103293 0.10332,-0.206613 0.10332,-0.309907 m -0.10332,0.103294 h -0.1033 m 0,0 c 0,0 0.1033,0 0,-0.103294 m -0.20661,0.103294 h 0.10329 c 0,0.10332 0,0.10332 0.10332,0 m -0.30993,0 0.10332,-0.103294 m 0,0 h 0.10329 m 0,0 v -0.103319 m 0,0 h -0.10329 m -0.10332,-0.206614 c 0,0 0,0.10332 0.10332,0.10332 h 0.10329 m -0.10329,-0.206613 h -0.10332 v 0.103293 m 0,-0.103293 h 0.10332 l 0.10329,0.103293 m 0,0 0.10332,-0.103293 m 0,0 -0.10332,-0.10332 h -0.20661 m 0,0 -0.20658,0.10332 v 0.206613 m 0.10329,0 c 0,0.103294 0,0.103294 0.10329,0.103294 m 0,0.103319 -0.10329,0.103294 v 0.10332 m 1.13635,-4.752049 -0.51651,0.103319 m 0,0 v 0.103294 m 0,0 h 0.41322 m 0,0 -0.20661,0.413226 m 0.10329,-0.10332 c -0.10329,0.10332 0,0.206613 0,0.309933 0.10332,0.103293 0.20661,0.103293 0.30993,0 0.1033,0 0.1033,-0.10332 0.1033,-0.206613 m -0.1033,0 h -0.10332 m -0.10329,0 c -0.10332,0 -0.10332,0.103293 0,0.103293 0,0.10332 0.10329,0.10332 0.10329,0 0.10332,0 0.10332,-0.103293 0.10332,-0.103293 m -0.30993,0 0.20661,-0.51652 m 0,0 v -0.103319 m -34.60732,97.313744 c -0.30993,0.10332 -0.61984,0.10332 -0.92977,0.20662 m 1.13636,-0.61982 c -0.51652,0 -1.03304,0.20659 -1.54958,0.4132 m -1.23965,1.03307 c -0.82645,1.23968 -0.82645,2.78926 0,4.02892 0.72313,1.23967 2.27271,1.85951 3.61568,1.54961 1.44628,-0.30994 2.58264,-1.44629 2.78925,-2.89259 m -5.16528,-3.71901 c -0.4132,0.20662 -0.82643,0.61984 -1.23965,1.03307 m 0.3099,-0.10329 c -0.92974,1.13636 -1.03306,2.68594 -0.3099,3.92562 0.72313,1.23965 2.16942,1.85949 3.51238,1.54958 1.44627,-0.20661 2.47933,-1.34299 2.78923,-2.68597 m -0.10329,0 h 0.20661 m -6.40493,-2.58262 0.3099,-0.10332 m 0.92975,-0.82645 v -0.20662 m 1.54958,-0.20661 c -0.51652,0 -1.03304,0.10332 -1.44626,0.30993 m 1.34296,-0.51652 0.1033,0.20659 m 2.99587,3.92562 h 0.41322 m -0.41322,-0.92974 v 0.92974 m 0.41322,-0.92974 h -0.41322 m 0.51651,0 c -0.20658,-1.34297 -1.03303,-2.37604 -2.16939,-2.78927 m -1.23967,0.30994 1.13635,-0.30994 m -1.23967,-0.20661 0.10332,0.51655 m -1.44629,0.41322 -0.20661,-0.51654 m -0.92975,0.82645 1.13636,-0.30991 m 3.92561,2.16943 c 0,-0.30993 -0.10329,-0.51655 -0.20661,-0.82645 m -0.72313,1.13635 0.92974,-0.20661 m -0.82645,0.10332 c -0.61981,0.20659 -0.92974,0.82643 -0.82642,1.44627 m 0.41322,1.44629 -0.41322,-1.44629 m -0.41323,1.6529 c 0.30991,0 0.61984,-0.10332 0.82645,-0.20661 m -1.23967,-1.23968 0.3099,1.54958 m -0.3099,-1.54958 c -0.10332,-0.61984 -0.72313,-0.92975 -1.34297,-0.82645 m -1.54958,0.51654 1.44626,-0.41322 m -1.65287,-0.51655 c 0.10329,0.30993 0.10329,0.61984 0.20661,0.82645 m 1.23965,-1.13636 -1.44626,0.30991 m 1.54958,-0.4132 c 0.51651,-0.10332 0.92974,-0.72316 0.72313,-1.343 m -0.41323,-1.44626 0.41323,1.44626 m 0.82645,-0.20661 -0.41323,-1.44627 m 0.41323,1.44627 c 0.20661,0.51655 0.82645,0.92977 1.44628,0.72316 m 0.82643,-0.20661 -0.92975,0.3099 m 0.10332,-2.47933 c -0.51654,-0.20661 -1.03306,-0.30991 -1.5496,-0.30991 m 3.6157,3.20247 c -0.10332,-1.23968 -0.92974,-2.37604 -2.0661,-2.89256 m 2.0661,3.8223 c 0.1033,-0.3099 0.1033,-0.61981 0,-0.92974 m 0,0 h -0.20661 m -2.16942,-2.78927 0.30993,-0.10329 m -1.23967,3.20249 c 0,-0.10332 -0.10332,-0.20661 -0.20661,-0.20661 -0.10332,0 -0.20662,0.10329 -0.20662,0.20661 0,0.10329 0.1033,0.30991 0.20662,0.30991 0.10329,0 0.20661,-0.20662 0.20661,-0.30991 m -1.44629,-1.03306 c 0,-0.41323 -0.3099,-0.72314 -0.61984,-0.72314 -0.41319,0 -0.72313,0.30991 -0.72313,0.72314 0,0.3099 0.30994,0.72313 0.72313,0.72313 0.30994,0 0.61984,-0.41323 0.61984,-0.72313 m 2.99587,-0.82646 c 0,-0.41322 -0.30991,-0.72313 -0.61984,-0.72313 -0.41322,0 -0.72313,0.30991 -0.72313,0.72313 0,0.30991 0.30991,0.72314 0.72313,0.72314 0.30993,0 0.61984,-0.41323 0.61984,-0.72314 m 0.82645,2.99588 c 0,-0.41323 -0.30993,-0.72316 -0.61984,-0.72316 -0.41322,0 -0.72313,0.30993 -0.72313,0.72316 0,0.30991 0.30991,0.72313 0.72313,0.72313 0.30991,0 0.61984,-0.41322 0.61984,-0.72313 m -2.99587,0.82643 c 0,-0.4132 -0.3099,-0.72314 -0.61984,-0.72314 -0.41322,0 -0.72313,0.30994 -0.72313,0.72314 0,0.30993 0.30991,0.72316 0.72313,0.72316 0.30994,0 0.61984,-0.41323 0.61984,-0.72316 m -0.20661,0 c 0,-0.30991 -0.20661,-0.51652 -0.41323,-0.51652 -0.3099,0 -0.51651,0.20661 -0.51651,0.51652 0,0.20661 0.20661,0.51654 0.51651,0.51654 0.20662,0 0.41323,-0.30993 0.41323,-0.51654 m 2.99587,-0.82643 c 0,-0.30993 -0.20662,-0.51655 -0.41323,-0.51655 -0.30993,0 -0.51652,0.20662 -0.51652,0.51655 0,0.20661 0.20659,0.51652 0.51652,0.51652 0.20661,0 0.41323,-0.30991 0.41323,-0.51652 m -0.82645,-2.99588 c 0,-0.3099 -0.20662,-0.51652 -0.41323,-0.51652 -0.3099,0 -0.51652,0.20662 -0.51652,0.51652 0,0.20662 0.20662,0.51652 0.51652,0.51652 0.20661,0 0.41323,-0.3099 0.41323,-0.51652 m -2.99587,0.82646 c 0,-0.30994 -0.20661,-0.51655 -0.41323,-0.51655 -0.3099,0 -0.51651,0.20661 -0.51651,0.51655 0,0.20661 0.20661,0.51652 0.51651,0.51652 0.20662,0 0.41323,-0.30991 0.41323,-0.51652 m -1.65287,0.51652 h 0.20661 m 0,0 0.10329,0.72313 m 0,0 0.10332,-0.20659 m 0,0 0.10329,0.20659 m 0,0 -0.10329,0.10332 m 0,0 h -0.10332 m 0,0 -0.3099,-0.82645 m 2.78925,3.20249 0.10329,0.3099 m 0,0 h -0.10329 m 0,0 -0.10332,-0.20661 m 0,0 h -0.10329 m 0,0 v -0.10329 m 0,0 h 0.10329 m 0,0 -0.10329,-0.20662 m 0,0 h 0.20661 m 0,0 v 0.1033 m 0,0 0.30991,-0.1033 m 0,0 0.10329,0.20662 m 0,0 -0.10329,0.61983 m 0,0 -0.20662,0.1033 m 0,0 0.1033,-0.72313 m 0,0 h -0.20659 m 1.54958,0 0.10329,0.10329 0.20662,0.10332 m 0,0 h 0.10329 m 0.10332,-0.10332 c 0.10329,0 0.10329,-0.20661 0.10329,-0.30991 m -0.10329,0.1033 h -0.10332 m 0,0.10332 c 0,0 0.10332,0 0,-0.10332 m -0.20659,0 c 0,0 0,0.10332 0.1033,0.10332 h 0.10329 m -0.20659,0 v -0.10332 l 0.1033,-0.1033 m 0,0 v -0.10332 m 0,0 h -0.1033 m -0.10332,-0.10329 c 0,0 0,0.10329 0.10332,0.10329 h 0.1033 m -0.1033,-0.3099 c 0,0 -0.10332,0 -0.10332,0.10329 v 0.10332 m 0,-0.10332 h 0.10332 0.1033 m 0,0 h 0.10329 m 0,0 -0.10329,-0.10329 -0.20662,-0.10332 m 0,0 -0.10329,0.20661 -0.10332,0.20661 m 0.10332,-0.10329 c 0,0.10329 0,0.20661 0.10329,0.20661 m 0,0 -0.10329,0.1033 v 0.10332 m 1.13636,-4.64876 -0.51655,0.10329 m 0,0 0.10332,0.10332 m 0,0 0.30991,-0.10332 m 0,0 -0.20661,0.41323 m 0.10331,0 c -0.10331,0.10329 0,0.20661 0,0.20661 0.1033,0.1033 0.20662,0.1033 0.30991,0.1033 0.10332,-0.1033 0.10332,-0.20662 0.10332,-0.30991 m 0,0.10329 h -0.20661 m -0.10332,-0.10329 c -0.1033,0.10329 -0.1033,0.10329 0,0.20661 h 0.10332 c 0.10329,0 0.10329,-0.10332 0.10329,-0.20661 m -0.30991,0.10329 0.20662,-0.51652 m 0,0 v -0.10329 m -2.68594,-33.88421 c -0.30993,0 -0.61984,0.10332 -0.92977,0.20661 m 1.13636,-0.61983 c -0.51652,0 -1.03304,0.10332 -1.54958,0.30993 m -1.23965,1.13636 c -0.82645,1.13636 -0.82645,2.78923 0,3.92559 0.72313,1.23966 2.27271,1.8595 3.61568,1.54959 1.44628,-0.30993 2.58264,-1.44629 2.78925,-2.89256 m -5.16528,-3.71898 c -0.4132,0.3099 -0.82643,0.61984 -1.23965,1.13636 m 0.3099,-0.10332 c -0.92974,1.03306 -1.03306,2.58262 -0.3099,3.8223 0.72313,1.23965 2.16942,1.85949 3.51238,1.65288 1.44627,-0.30991 2.47933,-1.34297 2.78923,-2.78924 m -0.10329,0.10329 h 0.20661 m -6.40493,-2.68591 0.3099,-0.10332 m 0.92975,-0.72314 v -0.20661 m 1.54958,-0.3099 c -0.51652,0 -1.03304,0.20661 -1.44626,0.41322 m 1.34296,-0.51654 0.1033,0.20661 m 2.99587,3.92559 h 0.41322 m -0.41322,-1.03303 v 1.03303 m 0.41322,-0.92971 -0.41322,-0.10332 m 0.51651,0 c -0.20658,-1.23966 -1.03303,-2.37602 -2.16939,-2.78924 m -1.23967,0.41322 1.13635,-0.30993 m -1.23967,-0.20661 0.10332,0.51654 m -1.44629,0.4132 -0.20661,-0.51652 m -0.92975,0.72314 1.13636,-0.20662 m 3.92561,2.16943 c 0,-0.30991 -0.10329,-0.61981 -0.20661,-0.92975 m -0.72313,1.23968 0.92974,-0.30993 m -0.82645,0.20661 c -0.61981,0.10332 -0.92974,0.72313 -0.82642,1.34295 m 0.41322,1.54958 -0.41322,-1.44626 m -0.41323,1.65288 c 0.30991,-0.1033 0.61984,-0.1033 0.82645,-0.20662 m -1.23967,-1.23965 0.3099,1.44627 m -0.3099,-1.54959 c -0.10332,-0.51652 -0.72313,-0.92975 -1.34297,-0.72313 m -1.54958,0.41322 1.44626,-0.41322 m -1.65287,-0.5165 c 0.10329,0.30988 0.10329,0.61982 0.20661,0.92972 m 1.23965,-1.23965 -1.44626,0.4132 m 1.54958,-0.4132 c 0.51651,-0.20661 0.92974,-0.82642 0.72313,-1.44626 m -0.41323,-1.34298 0.41323,1.44627 m 0.82645,-0.20661 -0.41323,-1.54959 m 0.41323,1.44629 c 0.20661,0.61984 0.82645,0.92975 1.44628,0.82646 m 0.82643,-0.20662 -0.92975,0.20662 m 0.10332,-2.37604 c -0.51654,-0.30993 -1.03306,-0.41323 -1.5496,-0.30993 m 3.6157,3.09917 c -0.10332,-1.23966 -0.92974,-2.27272 -2.0661,-2.78924 m 2.0661,3.71898 c 0.1033,-0.3099 0.1033,-0.61981 0,-0.92974 m 0,0.10332 h -0.20661 m -2.16942,-2.78927 0.30993,-0.10329 m -1.23967,3.20246 c 0,-0.10329 -0.10332,-0.20661 -0.20661,-0.20661 -0.10332,0 -0.20662,0.10332 -0.20662,0.20661 0,0.10332 0.1033,0.20662 0.20662,0.20662 0.10329,0 0.20661,-0.1033 0.20661,-0.20662 m -1.44629,-1.13636 c 0,-0.3099 -0.3099,-0.61984 -0.61984,-0.61984 -0.41319,0 -0.72313,0.30994 -0.72313,0.61984 0,0.41323 0.30994,0.72314 0.72313,0.72314 0.30994,0 0.61984,-0.30991 0.61984,-0.72314 m 2.99587,-0.82645 c 0,-0.30991 -0.30991,-0.61981 -0.61984,-0.61981 -0.41322,0 -0.72313,0.3099 -0.72313,0.61981 0,0.41323 0.30991,0.72316 0.72313,0.72316 0.30993,0 0.61984,-0.30993 0.61984,-0.72316 m 0.82645,2.99585 c 0,-0.30991 -0.30993,-0.61984 -0.61984,-0.61984 -0.41322,0 -0.72313,0.30993 -0.72313,0.61984 0,0.41323 0.30991,0.72313 0.72313,0.72313 0.30991,0 0.61984,-0.3099 0.61984,-0.72313 m -2.99587,0.82645 c 0,-0.30993 -0.3099,-0.61984 -0.61984,-0.61984 -0.41322,0 -0.72313,0.30991 -0.72313,0.61984 0,0.41323 0.30991,0.72314 0.72313,0.72314 0.30994,0 0.61984,-0.30991 0.61984,-0.72314 m -0.20661,0 c 0,-0.20661 -0.20661,-0.41322 -0.41323,-0.41322 -0.3099,0 -0.51651,0.20661 -0.51651,0.41322 0,0.30991 0.20661,0.51652 0.51651,0.51652 0.20662,0 0.41323,-0.20661 0.41323,-0.51652 m 2.99587,-0.82645 c 0,-0.20661 -0.20662,-0.41323 -0.41323,-0.41323 -0.30993,0 -0.51652,0.20662 -0.51652,0.41323 0,0.30991 0.20659,0.51652 0.51652,0.51652 0.20661,0 0.41323,-0.20661 0.41323,-0.51652 m -0.82645,-2.99585 c 0,-0.20661 -0.20662,-0.41323 -0.41323,-0.41323 -0.3099,0 -0.51652,0.20662 -0.51652,0.41323 0,0.30993 0.20662,0.51655 0.51652,0.51655 0.20661,0 0.41323,-0.20662 0.41323,-0.51655 m -2.99587,0.82645 c 0,-0.20661 -0.20661,-0.41322 -0.41323,-0.41322 -0.3099,0 -0.51651,0.20661 -0.51651,0.41322 0,0.30994 0.20661,0.51652 0.51651,0.51652 0.20662,0 0.41323,-0.20658 0.41323,-0.51652 m -1.65287,0.51652 h 0.20661 m 0,0 0.10329,0.72316 m 0,0 0.10332,-0.10332 m 0,0 0.10329,0.10332 m 0,0 -0.10329,0.1033 m 0,0 -0.10332,0.10331 m 0,0 -0.3099,-0.92977 m 2.78925,3.30579 0.10329,0.20658 m 0,0 -0.10329,0.10332 m 0,0 -0.10332,-0.3099 m 0,0 h -0.10329 m 0,0 v -0.10332 m 0,0 h 0.10329 m 0,0 -0.10329,-0.1033 m 0,0 h 0.20661 m 0,0 v 0.1033 m 0,0 0.30991,-0.1033 m 0,0 0.10329,0.1033 m 0,0 -0.10329,0.72313 m 0,0 h -0.20662 m 0,0 0.1033,-0.72313 m 0,0 -0.20659,0.10332 m 1.54958,0 0.10329,0.10329 h 0.20662 m 0,0 h 0.10329 m 0.10332,0 c 0.10329,-0.10329 0.10329,-0.20661 0.10329,-0.30991 m -0.10329,0.1033 h -0.10332 m 0,0.10332 c 0,0 0.10332,-0.10332 0,-0.10332 m -0.20659,0 h 0.1033 c 0,0.10332 0,0.10332 0.10329,0 m -0.20659,0 v -0.1033 h 0.1033 m 0,0 v -0.10332 m 0,0 h -0.1033 m -0.10332,-0.20661 c 0,0.10332 0,0.10332 0.10332,0.10332 0,0.10329 0,0.10329 0.1033,0 m -0.1033,-0.20661 h -0.10332 v 0.10329 m 0,-0.10329 h 0.10332 l 0.1033,0.10329 m 0,0 0.10329,-0.10329 m 0,0 -0.10329,-0.10332 h -0.20662 m 0,0 -0.10329,0.10332 -0.10332,0.20661 m 0.10332,0 c 0,0.10329 0,0.10329 0.10329,0.10329 m 0,0.10332 -0.10329,0.1033 v 0.10332 m 1.13636,-4.75205 -0.51655,0.10329 m 0,0 0.10332,0.10332 m 0,0 h 0.30991 m 0,0 -0.20661,0.41323 m 0.10331,-0.10332 c -0.10331,0.10332 0,0.20661 0,0.30993 0.1033,0.10329 0.20662,0.10329 0.30991,0 0.10332,0 0.10332,-0.10332 0.10332,-0.20661 m 0,0 h -0.20661 m -0.10332,0 c -0.1033,0 -0.1033,0.10329 0,0.10329 0,0.10332 0.10332,0.10332 0.10332,0 0.10329,0 0.10329,-0.10329 0.10329,-0.10329 m -0.30991,0 0.20662,-0.51655 m 0,0 v -0.10329 m -2.68594,-33.884211 c -0.30993,0.103294 -0.61984,0.103294 -0.92977,0.206587 m 1.13636,-0.619813 c -0.51652,0 -1.03304,0.206613 -1.54958,0.413226 m -1.23965,1.033039 c -0.82645,1.239679 -0.82645,2.789264 0,4.028943 0.72313,1.239652 2.27271,1.859492 3.61568,1.549585 1.44628,-0.309933 2.58264,-1.446292 2.78925,-2.892584 m -5.16528,-3.718983 c -0.4132,0.206587 -0.82643,0.619813 -1.23965,1.033039 m 0.3099,-0.103293 c -0.92974,1.136359 -1.03306,2.685944 -0.3099,3.925623 0.72313,1.239652 2.16942,1.859492 3.51238,1.549585 1.44627,-0.206613 2.47933,-1.342972 2.78923,-2.685971 m -0.10329,0 h 0.20661 m -6.40493,-2.582624 0.3099,-0.10332 m 0.92975,-0.826452 v -0.206587 m 1.54958,-0.206613 c -0.51652,0 -1.03304,0.103293 -1.44626,0.309907 m 1.34296,-0.51652 0.1033,0.206613 m 2.99587,3.925596 h 0.41322 m -0.41322,-0.929745 v 0.929745 m 0.41322,-0.929745 h -0.41322 m 0.51651,0 c -0.20658,-1.342972 -1.03303,-2.376038 -2.16939,-2.789238 m -1.23967,0.309907 1.13635,-0.309907 m -1.23967,-0.206613 0.10332,0.51652 m -1.44629,0.413226 -0.20661,-0.516546 m -0.92975,0.826452 1.13636,-0.309906 m 3.92561,2.169424 c 0,-0.309932 -0.10329,-0.516546 -0.20661,-0.826452 m -0.72313,1.136359 0.92974,-0.206613 m -0.82645,0.10332 c -0.61981,0.206613 -0.92974,0.826426 -0.82642,1.446265 m 0.41322,1.446292 -0.41322,-1.446292 m -0.41323,1.652905 c 0.30991,0 0.61984,-0.10332 0.82645,-0.206613 m -1.23967,-1.239679 0.3099,1.549585 m -0.3099,-1.549585 c -0.10332,-0.619839 -0.72313,-0.929746 -1.34297,-0.826452 m -1.54958,0.516546 1.44626,-0.413227 m -1.65287,-0.516519 c 0.10329,0.309906 0.10329,0.619813 0.20661,0.826426 m 1.23965,-1.136359 -1.44626,0.309933 m 1.54958,-0.413226 c 0.51651,-0.10332 0.92974,-0.72316 0.72313,-1.342973 m -0.41323,-1.446291 0.41323,1.446291 m 0.82645,-0.206613 -0.41323,-1.446291 m 0.41323,1.446291 c 0.20661,0.51652 0.82645,0.929746 1.44628,0.723133 m 0.82643,-0.206613 -0.92975,0.309906 m 0.10332,-2.479331 c -0.51654,-0.206613 -1.03306,-0.309906 -1.5496,-0.309906 m 3.6157,3.202464 c -0.10332,-1.239653 -0.92974,-2.376038 -2.0661,-2.892558 m 2.0661,3.822303 c 0.1033,-0.309906 0.1033,-0.619812 0,-0.929745 m 0,0 h -0.20661 m -2.16942,-2.789238 0.30993,-0.10332 m -1.23967,3.202491 c 0,-0.10332 -0.10332,-0.206614 -0.20661,-0.206614 -0.10332,0 -0.20662,0.103294 -0.20662,0.206614 0,0.103293 0.1033,0.309906 0.20662,0.309906 0.10329,0 0.20661,-0.206613 0.20661,-0.309906 m -1.44629,-1.033066 c 0,-0.413226 -0.3099,-0.723133 -0.61984,-0.723133 -0.41319,0 -0.72313,0.309907 -0.72313,0.723133 0,0.309906 0.30994,0.723133 0.72313,0.723133 0.30994,0 0.61984,-0.413227 0.61984,-0.723133 m 2.99587,-0.826453 c 0,-0.413226 -0.30991,-0.723132 -0.61984,-0.723132 -0.41322,0 -0.72313,0.309906 -0.72313,0.723132 0,0.309933 0.30991,0.723133 0.72313,0.723133 0.30993,0 0.61984,-0.4132 0.61984,-0.723133 m 0.82645,2.995878 c 0,-0.413227 -0.30993,-0.723133 -0.61984,-0.723133 -0.41322,0 -0.72313,0.309906 -0.72313,0.723133 0,0.309906 0.30991,0.723132 0.72313,0.723132 0.30991,0 0.61984,-0.413226 0.61984,-0.723132 m -2.99587,0.826452 c 0,-0.413226 -0.3099,-0.723159 -0.61984,-0.723159 -0.41322,0 -0.72313,0.309933 -0.72313,0.723159 0,0.309906 0.30991,0.723133 0.72313,0.723133 0.30994,0 0.61984,-0.413227 0.61984,-0.723133 m -0.20661,0 c 0,-0.309933 -0.20661,-0.516546 -0.41323,-0.516546 -0.3099,0 -0.51651,0.206613 -0.51651,0.516546 0,0.206613 0.20661,0.51652 0.51651,0.51652 0.20662,0 0.41323,-0.309907 0.41323,-0.51652 m 2.99587,-0.826452 c 0,-0.309933 -0.20662,-0.516547 -0.41323,-0.516547 -0.30993,0 -0.51652,0.206614 -0.51652,0.516547 0,0.206613 0.20659,0.516519 0.51652,0.516519 0.20661,0 0.41323,-0.309906 0.41323,-0.516519 m -0.82645,-2.995878 c 0,-0.309906 -0.20662,-0.516519 -0.41323,-0.516519 -0.3099,0 -0.51652,0.206613 -0.51652,0.516519 0,0.206614 0.20662,0.516546 0.51652,0.516546 0.20661,0 0.41323,-0.309932 0.41323,-0.516546 m -2.99587,0.826453 c 0,-0.309907 -0.20661,-0.51652 -0.41323,-0.51652 -0.3099,0 -0.51651,0.206613 -0.51651,0.51652 0,0.206613 0.20661,0.51652 0.51651,0.51652 0.20662,0 0.41323,-0.309907 0.41323,-0.51652 m -1.65287,0.51652 0.20661,-0.103294 m 0,0 0.10329,0.826453 m 0,0 0.10332,-0.206613 m 0,0 0.10329,0.206613 m 0,0 -0.10329,0.103293 m 0,0 h -0.10332 m 0,0 -0.3099,-0.826452 m 2.78925,3.20249 0.10329,0.309906 m 0,0 h -0.10329 m 0,0 -0.10332,-0.206613 m 0,0 h -0.10329 m 0,0 v -0.103293 m 0,0 h 0.10329 m 0,0 -0.10329,-0.206613 m 0,0 h 0.20661 m 0,0 v 0.103293 m 0,0 0.30991,-0.103293 m 0,0 0.10329,0.206613 m 0,0 -0.10329,0.619839 m 0,0 -0.20662,0.103293 m 0,0 0.1033,-0.723132 m 0,0 h -0.20659 m 1.54958,0 0.10329,0.103293 0.20662,0.10332 m 0,0 h 0.10329 m 0.10332,-0.10332 c 0.10329,0 0.10329,-0.206613 0.10329,-0.309906 m -0.10329,0.103293 h -0.10332 m 0,0.10332 c 0,0 0.10332,-0.10332 0,-0.10332 m -0.20659,0 c 0,0 0,0.10332 0.1033,0.10332 h 0.10329 m -0.20659,0 v -0.10332 l 0.1033,-0.103293 m 0,0 v -0.10332 m 0,0 h -0.1033 m -0.10332,-0.103294 c 0,0 0,0.103294 0.10332,0.103294 h 0.1033 m -0.1033,-0.309907 c 0,0 -0.10332,0 -0.10332,0.10332 v 0.103293 m 0,-0.103293 h 0.10332 0.1033 m 0,0 h 0.10329 m 0,0 -0.10329,-0.10332 -0.20662,-0.103293 m 0,0 -0.10329,0.206613 -0.10332,0.206587 m 0.10332,-0.103294 c 0,0.103294 0,0.206614 0.10329,0.206614 m 0,0 -0.10329,0.103293 v 0.10332 m 1.13636,-4.648756 -0.51655,0.103293 m 0,0 0.10332,0.10332 m 0,0 0.30991,-0.10332 m 0,0 -0.20661,0.413227 m 0.10331,0 c -0.10331,0.103319 0,0.206613 0,0.206613 0.1033,0.103293 0.20662,0.103293 0.30991,0.103293 0.10332,-0.103293 0.10332,-0.206587 0.10332,-0.309906 m 0,0.103319 h -0.20661 m -0.10332,-0.103319 c -0.1033,0.103319 -0.1033,0.103319 0,0.206613 h 0.10332 c 0.10329,0 0.10329,-0.103294 0.10329,-0.206613 m -0.30991,0.103319 0.20662,-0.516546 m 0,0 V 73.088638 M 225.77417,39.20443 c -0.30993,0 -0.61984,0.10332 -0.92977,0.206613 m 1.13636,-0.619839 c -0.51652,0 -1.03304,0.10332 -1.54958,0.309933 m -1.23965,1.136359 c -0.82645,1.136359 -0.82645,2.789237 0,3.925596 0.72313,1.239679 2.27271,1.859492 3.61568,1.549585 1.44628,-0.309906 2.58264,-1.446292 2.78925,-2.892557 m -5.16528,-3.718983 c -0.4132,0.309906 -0.82643,0.619839 -1.23965,1.136359 m 0.3099,-0.103294 c -0.92974,1.033039 -1.03306,2.582598 -0.3099,3.822277 0.72313,1.239679 2.16942,1.859492 3.51238,1.652905 1.44627,-0.309933 2.47933,-1.342999 2.78923,-2.789264 m -0.10329,0.103293 h 0.20661 m -6.40493,-2.685917 0.3099,-0.103294 m 0.92975,-0.723159 V 39.20443 m 1.54958,-0.309906 c -0.51652,0 -1.03304,0.206613 -1.44626,0.413226 m 1.34296,-0.516546 0.1033,0.206613 m 2.99587,3.822303 0.41322,0.103293 m -0.41322,-1.033012 v 0.929719 m 0.41322,-0.826426 -0.41322,-0.103293 m 0.51651,0 c -0.20658,-1.239679 -1.03303,-2.376038 -2.16939,-2.789264 m -1.23967,0.413226 1.13635,-0.309933 m -1.23967,-0.206613 0.10332,0.516546 m -1.44629,0.309906 -0.20661,-0.413226 m -0.92975,0.723159 1.13636,-0.309933 m 3.92561,2.272745 c 0,-0.309933 -0.10329,-0.61984 -0.20661,-0.929773 m -0.72313,1.239653 0.92974,-0.30988 m -0.82645,0.206586 c -0.61981,0.103294 -0.92974,0.723133 -0.82642,1.342972 m 0.41322,1.549586 -0.41322,-1.446292 m -0.41323,1.652905 c 0.30991,-0.10332 0.61984,-0.10332 0.82645,-0.206613 m -1.23967,-1.239679 0.3099,1.446292 m -0.3099,-1.549585 c -0.10332,-0.516546 -0.72313,-0.929773 -1.34297,-0.72316 m -1.54958,0.413227 1.44626,-0.413227 m -1.65287,-0.516519 c 0.10329,0.309906 0.10329,0.619839 0.20661,0.929746 m 1.23965,-1.239653 -1.44626,0.4132 m 1.54958,-0.4132 c 0.51651,-0.206586 0.92974,-0.826426 0.72313,-1.446265 m -0.41323,-1.342972 0.41323,1.446265 m 0.82645,-0.206613 -0.41323,-1.549585 m 0.41323,1.446292 c 0.20661,0.619839 0.82645,0.929746 1.44628,0.826452 m 0.82643,-0.206613 -0.92975,0.206613 m 0.10332,-2.376037 c -0.51654,-0.309933 -1.03306,-0.413227 -1.5496,-0.309933 m 3.6157,3.099197 c -0.10332,-1.239679 -0.92974,-2.272745 -2.0661,-2.789264 m 2.0661,3.718983 c 0.1033,-0.309933 0.1033,-0.619813 0,-0.929719 m 0,0.103293 h -0.20661 m -2.16942,-2.789264 0.30993,-0.103293 m -1.23967,3.202463 c 0,-0.103293 -0.10332,-0.206586 -0.20661,-0.206586 -0.10332,0 -0.20662,0.103293 -0.20662,0.206586 0,0.103294 0.1033,0.206587 0.20662,0.206587 0.10329,0 0.20661,-0.103293 0.20661,-0.206587 m -1.44629,-1.136359 c 0,-0.309906 -0.3099,-0.619839 -0.61984,-0.619839 -0.41319,0 -0.72313,0.309933 -0.72313,0.619839 0,0.413227 0.30994,0.72316 0.72313,0.72316 0.30994,0 0.61984,-0.309933 0.61984,-0.72316 m 2.99587,-0.826426 c 0,-0.309933 -0.30991,-0.619839 -0.61984,-0.619839 -0.41322,0 -0.72313,0.309906 -0.72313,0.619839 0,0.4132 0.30991,0.723133 0.72313,0.723133 0.30993,0 0.61984,-0.309933 0.61984,-0.723133 m 0.82645,2.995825 c 0,-0.309907 -0.30993,-0.61984 -0.61984,-0.61984 -0.41322,0 -0.72313,0.309933 -0.72313,0.61984 0,0.413226 0.30991,0.723132 0.72313,0.723132 0.30991,0 0.61984,-0.309906 0.61984,-0.723132 m -2.99587,0.826452 c 0,-0.309906 -0.3099,-0.619839 -0.61984,-0.619839 -0.41322,0 -0.72313,0.309933 -0.72313,0.619839 0,0.413226 0.30991,0.723133 0.72313,0.723133 0.30994,0 0.61984,-0.309907 0.61984,-0.723133 m -0.20661,0 c 0,-0.206613 -0.20661,-0.413226 -0.41323,-0.413226 -0.3099,0 -0.51651,0.206613 -0.51651,0.413226 0,0.309906 0.20661,0.51652 0.51651,0.51652 0.20662,0 0.41323,-0.206614 0.41323,-0.51652 m 2.99587,-0.826452 c 0,-0.206614 -0.20662,-0.413227 -0.41323,-0.413227 -0.30993,0 -0.51652,0.206613 -0.51652,0.413227 0,0.309932 0.20659,0.516546 0.51652,0.516546 0.20661,0 0.41323,-0.206614 0.41323,-0.516546 m -0.82645,-2.995825 c 0,-0.206613 -0.20662,-0.413226 -0.41323,-0.413226 -0.3099,0 -0.51652,0.206613 -0.51652,0.413226 0,0.309907 0.20662,0.51652 0.51652,0.51652 0.20661,0 0.41323,-0.206613 0.41323,-0.51652 m -2.99587,0.826426 c 0,-0.206613 -0.20661,-0.413226 -0.41323,-0.413226 -0.3099,0 -0.51651,0.206613 -0.51651,0.413226 0,0.309933 0.20661,0.516546 0.51651,0.516546 0.20662,0 0.41323,-0.206613 0.41323,-0.516546 m -1.65287,0.516546 h 0.20661 m 0,0 0.10329,0.723107 m 0,0 0.10332,-0.103294 m 0,0 0.10329,0.103294 m 0,0 -0.10329,0.103293 m 0,0 -0.10332,0.10332 m 0,0 -0.3099,-0.92972 m 2.78925,3.305758 0.10329,0.206613 m 0,0 -0.10329,0.103293 m 0,0 -0.10332,-0.309906 m 0,0 h -0.10329 m 0,0 v -0.10332 m 0,0 h 0.10329 m 0,0 -0.10329,-0.103294 m 0,0 h 0.20661 m 0,0 v 0.103294 m 0,0 0.30991,-0.103294 m 0,0 0.10329,0.103294 m 0,0 -0.10329,0.723159 m 0,0 h -0.20662 m 0,0 0.1033,-0.723159 m 0,0 -0.20659,0.10332 m 1.54958,0 0.10329,0.103293 h 0.20662 m 0,0 h 0.10329 m 0.10332,0 c 0.10329,-0.103293 0.10329,-0.206613 0.10329,-0.309907 m -0.10329,0.103294 h -0.10332 m 0,0 c 0,0 0.10332,0 0,-0.103294 m -0.20659,0.103294 h 0.1033 c 0,0.10332 0,0.10332 0.10329,0 m -0.20659,0 v -0.103294 h 0.1033 m 0,0 v -0.103319 m 0,0 h -0.1033 m -0.10332,-0.206614 c 0,0 0,0.10332 0.10332,0.10332 h 0.1033 m -0.1033,-0.206613 h -0.10332 v 0.103293 m 0,-0.103293 h 0.10332 l 0.1033,0.103293 m 0,0 0.10329,-0.103293 m 0,0 -0.10329,-0.10332 h -0.20662 m 0,0 -0.10329,0.10332 -0.10332,0.206613 m 0.10332,0 c 0,0.103294 0,0.103294 0.10329,0.103294 m 0,0.103319 -0.10329,0.103294 v 0.10332 m 1.13636,-4.752049 -0.51655,0.103319 m 0,0 0.10332,0.103294 m 0,0 h 0.30991 m 0,0 -0.20661,0.413226 m 0.10331,-0.10332 c -0.10331,0.10332 0,0.206613 0,0.309933 0.1033,0.103293 0.20662,0.103293 0.30991,0 0.10332,0 0.10332,-0.10332 0.10332,-0.206613 m 0,0 h -0.20661 m -0.10332,0 c -0.1033,0 -0.1033,0.103293 0,0.103293 0,0.10332 0.10332,0.10332 0.10332,0 0.10329,0 0.10329,-0.103293 0.10329,-0.103293 m -0.30991,0 0.20662,-0.51652 m 0,0 V 40.237496 M 11.518565,104.3902 H 9.3491401 m 2.1694249,2.89255 H 9.142527 m 2.376038,-0.61981 H 9.3491401 M 2.0144669,105.73317 H 0.3615619 M 11.518565,104.80342 H 9.4524599 m 1.6528781,-5.268593 v -7.23138 M 276.80708,10.69211 V 8.5227121 m 2.16941,2.1693979 h -2.16941 m -253.718286,0 V 8.5227121 M 278.97649,158.72889 h -2.16941 m 0,2.16943 v -2.16943 m -253.718286,2.16943 v -2.16943 M 277.2203,167.19992 H 218.54279 M 12.654924,151.1876 H 12.44831 M 22.572274,2.221078 H 79.080368 M 287.13762,151.1876 h 0.30994 M 287.13762,18.233423 h 0.30994 M 0.05165544,99.534827 V 25.25819 m 0,80.99152 v -0.10332 m 0,7.64461 v -0.20661 M 12.654924,18.233423 H 12.44831 M 13.06815,151.1876 h -0.413226 m 274.586016,0 h -0.41322 m 0,-133.057497 c 0.10329,0 0.20661,0.10332 0.41322,0.10332 m -274.586016,0 c 0.206613,0 0.309933,-0.10332 0.413226,-0.10332 m -1.549585,0.516546 h -0.413227 m 0.826453,-0.413226 h -0.826453 m 0,0.413226 H 7.0764222 m 4.0289158,0 v -0.413226 m 0,132.540957 v -31.71481 m 0,32.12803 h 0.826453 m -0.413226,-0.41322 H 11.105338 M 0.46488169,119.05957 v 24.99995 M 11.105338,151.1876 H 7.0764222 m 4.0289158,0 v -0.41322 m 277.581862,0 h 4.13223 M 288.6872,18.233423 h 4.13223 m -4.13223,0.413226 v 58.470905 m -0.82645,74.070046 h 0.82645 m 0,-0.41322 h -0.41322 m 0.41322,0.41322 v -0.41322 M 288.27398,18.646649 h 0.41322 m 0,-0.413226 h -0.82645 m 0.82645,0.413226 V 18.233423 M 0.05165544,106.86955 v -0.20661 M 11.518565,106.24971 H 9.4524599 m 2.0661051,-0.92974 H 9.5557532 m 1.9628118,0.4132 H 9.5557532 m -9.50409776,-0.72314 v -0.20661 m 1.96281146,0.51655 h -1.652905 m -0.30990646,-2.16943 v -0.20661 m 11.46690956,0 H 8.8326205 m -6.0950209,0 H 0.05165544 m 0,0 v -0.41323 m 11.46690956,0 H 8.7293008 m -5.8883814,0 H 0.05165544 m 0,0 v -0.20661 M 11.518565,102.01416 H 8.6260074 m -5.5784749,0 H 0.3615619 m -0.30990646,-0.82643 v -0.20661 M 11.518565,101.60096 H 8.4193943 m -5.2685685,0 H 0.3615619 M 11.518565,100.98112 H 8.316101 m -4.9586621,0 H 0.05165544 m 0,0 v -0.30993 m 11.46690956,0 H 8.2127812 m -4.7520489,0 H 0.05165544 m 0,0 v -0.20662 M 11.518565,100.36128 H 8.1094878 m -4.5454357,0 H 0.15494878 m -0.10329334,17.76854 v -0.20661 M 11.518565,118.33644 H 0.15494878 M 11.518565,117.92321 H 0.05165544 m 0,0 v -0.30988 m 11.46690956,0 H 0.05165544 m 0,0 v -0.20661 m 0,-4.8554 v -0.20659 m 11.46690956,0 H 0.05165544 m 0,0 v -0.41322 m 11.46690956,0 H 0.05165544 m 0,0 V 111.7249 M 11.518565,111.41496 H 0.3615619 m -0.30990646,-0.82642 v -0.20662 M 11.518565,111.00174 H 0.3615619 M 11.518565,110.38192 H 0.05165544 m 0,0 v -0.30993 m 11.46690956,0 H 0.05165544 m 0,0 v -0.20661 M 11.518565,109.45215 H 0.3615619 M 0.05165544,108.72902 V 108.5224 M 11.518565,109.14224 H 7.0764222 m -2.6859176,0 H 0.3615619 M 11.518565,108.5224 H 8.1094878 m -4.6487555,0 H 0.05165544 m 0,0 v -0.30988 M 11.518565,99.534827 H 7.7995549 m -4.0288897,0 H 0.05165544 M 11.518565,119.05957 H 0.05165544 m 4.95866206,-5.06196 c -0.3099065,0.30994 -0.4131998,0.82646 -0.2066132,1.23968 0.1032934,0.41323 0.5165196,0.72313 1.0330392,0.72313 0.4132262,-0.10329 0.8264525,-0.3099 1.0330656,-0.72313 0.1032933,-0.41322 0,-0.92974 -0.3099064,-1.23968 m 0.2066131,1.65291 -0.3099329,0.20661 -0.1032934,0.10329 -0.1033198,0.10332 m -6.19831426,1.34298 0.30990646,-0.41323 m -0.30990646,-0.72316 v 1.13639 m 0,-4.8554 v 1.03307 m 0.30990646,-0.72314 -0.30990646,-0.30993 m 0,1.03307 0.30990646,-0.30991 m -0.30990646,-8.26445 v 1.13636 m 0.30990646,-0.82642 -0.30990646,-0.30994 m 0.41322625,0.72314 c 0.10329333,-0.1033 0.10329333,-0.30991 0,-0.4132 m -0.41322625,0.82642 0.30990646,-0.41322 m -0.30990646,12.39665 v 0.92975 m 0.10329334,-0.72313 -0.10329334,-0.20662 m 0,0.82646 c 0.20661313,0 0.30990646,-0.20662 0.30990646,-0.30994 0,-0.10329 0,-0.3099 -0.10329333,-0.41322 m -0.20661313,-7.64458 v 1.13636 m 0.30990646,-0.72316 -0.30990646,-0.4132 m 0.41322625,0.72313 c 0.10329333,-0.10332 0.10329333,-0.30993 0,-0.41323 m -0.41322625,0.82646 0.30990646,-0.30994 m -0.30990646,-2.68594 v 1.13636 m 0.30990646,-0.72314 -0.30990646,-0.41322 m 0.41322625,0.72313 c 0.10329333,-0.10329 0.10329333,-0.30991 0,-0.41323 m -0.41322625,0.82646 0.30990646,-0.41323 m -0.30990646,-2.5826 v 1.13636 m 0.30990646,-0.72316 -0.30990646,-0.4132 m 0,-3.71901 v 1.03304 m 0.30990646,-0.72313 -0.30990646,-0.30991 m 0,-1.96281 v 1.13636 m 0.30990646,-0.72313 -0.30990646,-0.41323 m 0.41322625,0.72313 c 0.10329333,-0.10329 0.10329333,-0.3099 0,-0.41322 m -0.41322625,0.82645 0.30990646,-0.30993 M 0.05165544,99.534827 v 0.929743 m 0.20661313,-0.20661 c 0.10329333,-0.10329 0.10329333,-0.309907 0.10329333,-0.4132 0,-0.10332 -0.10329333,-0.309933 -0.30990646,-0.309933 m 0,0.929743 0.10329334,-0.10329 M 276.80708,10.69211 H 23.088794 M 276.80708,158.72889 V 10.69211 M 23.088794,158.72889 H 276.80708 M 6.5599027,113.99761 c 0.1032933,0.10332 0.2066131,0.10332 0.3099064,0.10332 m -0.3099064,-0.10332 c 0,-0.10329 -0.1033198,-0.10329 -0.2066132,-0.20661 m 0.1032934,2.78926 c -0.1032934,-0.20661 -0.1032934,-0.30993 -0.1032934,-0.51652 m 5.1652755,0 H 6.2499697 m 0.1033198,0.61982 -0.1033198,0.10332 H 6.1466764 5.7334502 5.4235173 5.2169041 l -0.1032933,-0.10332 m 6.4049542,0 H 6.3532895 m 5.1652755,0.30993 H 0.3615619 m 0.10331979,0 c 0.10329333,-0.10332 0.10329333,-0.30993 0,-0.41323 m -0.41322625,-0.30993 v -0.20659 m 5.26856846,0 c -0.1033198,0.20659 -0.1033198,0.30991 -0.1033198,0.51652 m -0.1032933,0.1033 H 0.3615619 m 0,0 -0.30990646,-0.41323 m 0,-0.20659 v -0.41322 m 5.16524866,0.41322 v -0.10332 l -0.2065866,-0.10329 -0.2066132,-0.20661 m 0.4131998,0.41322 H 0.05165544 m 4.75204886,-0.41322 -0.826426,-0.51655 m 0.826426,0.51655 H 0.05165544 m 0,0 v -0.10332 m 6.71486036,-1.34297 0.826426,0.51652 m 3.9256232,-0.51652 H 6.7665158 m -2.6859442,0.51652 c -0.1032933,0 -0.1032933,0.10332 -0.1032933,0.20661 0,0 0,0.10332 0.1032933,0.10332 m -0.1032933,0.10329 H 0.3615619 m 11.1570031,0.51655 H 6.7665158 m 0.826426,-0.51655 -0.826426,0.51655 m -6.71486036,-1.23968 v -0.20661 m 3.92562286,0.51652 0.826426,-0.51652 m -0.826426,0.51652 H 0.3615619 m 11.1570031,0.41322 H 7.5929418 m 0,-0.10329 c 0.1033198,0 0.1033198,-0.10332 0.1033198,-0.10332 0,-0.10329 0,-0.20661 -0.1033198,-0.20661 m 3.9256232,0 H 7.5929418 M 0.05165544,114.20423 V 113.791 m 5.26856846,0 H 0.05165544 m 5.16524866,0 c 0,0.10332 -0.1032933,0.10332 -0.2065866,0.20661 m -0.2066132,0.10332 c 0.1032934,0 0.2066132,0 0.3099065,-0.10332 m -0.3099065,0.20662 H 0.05165544 M 11.518565,113.791 H 6.2499697 m 5.2685953,-0.92975 H 0.3615619 m 11.1570031,0.41323 H 6.3532895 m -1.2396787,0 H 0.3615619 m 0.10331979,-0.10332 c 0.10329333,-0.10329 0.10329333,-0.30991 0,-0.41323 M 23.088794,10.69211 v 148.03678 m 0,0 H 20.919369 M 23.088794,10.69211 h -2.169425 m -9.400804,96.90058 H 8.9359139 m 2.5826511,0.61983 H 8.5227141 m -5.4751816,0 H 0.05165544 m 0,0 v -0.20661 m 0,0 0.30990646,-0.41322 m 2.0661312,-0.30994 H 0.3615619 m 2.2727443,0.30994 H 0.3615619 m 0.10331979,0 c 0.10329333,-0.10332 0.10329333,-0.30994 0,-0.41323 M 0.05165544,104.3902 v -0.20662 m 0,0 0.30990646,-0.3099 M 11.518565,103.46045 H 9.0392337 m -6.5082472,0 H 0.3615619 m 11.1570031,0.41323 H 9.142527 m -6.7148339,0 H 0.3615619 m 0.10331979,-0.10332 c 0.10329333,-0.1033 0.10329333,-0.30991 0,-0.4132 m 1.65287851,1.44626 H 0.05165544 m 0,0 v -0.41322 m 2.16942456,0 H 0.05165544 m 2.06610476,2.27274 H 0.05165544 m 0,0 v -0.41323 m 2.06610476,0 H 0.05165544 m 5.06195536,7.02477 0.2066131,-0.10332 0.1032934,-0.10329 h 0.3099329 0.4132262 l 0.1032933,0.10329 0.1033198,0.10332 m 0,0.51652 c 0.1032934,-0.20661 0.1032934,-0.41323 0.1032934,-0.61984 m -0.2066132,0.61984 0.1033198,0.10332 m 0,-0.10332 c -0.3099329,-0.10329 -0.7231591,-0.10329 -1.1363854,0 m 0,0.10332 0.1033198,-0.10332 m -0.1033198,-0.61984 c 0,0.20661 0,0.41323 0.1033198,0.61984 m -5.26856846,0.61984 v 1.13636 m 0.30990646,-0.82645 -0.30990646,-0.30991 m 0.41322625,0.72313 c 0.10329333,-0.10329 0.10329333,-0.3099 0,-0.41322 M 0.05165544,115.5472 0.3615619,115.13397 M 39.307752,75.05145 c 0,-2.582651 -2.066131,-4.648756 -4.648756,-4.648756 -2.582624,0 -4.752049,2.066105 -4.752049,4.648756 0,2.582624 2.169425,4.752048 4.752049,4.752048 2.582625,0 4.648756,-2.169424 4.648756,-4.752048 m 0.619839,0 c 0,-2.892584 -2.376037,-5.268569 -5.268595,-5.268569 -2.99585,0 -5.371888,2.375985 -5.371888,5.268569 0,2.99585 2.376038,5.371861 5.371888,5.371861 2.892558,0 5.268595,-2.376011 5.268595,-5.371861 m -0.516546,0 c 0,-2.685971 -2.066105,-4.752049 -4.752049,-4.752049 -2.685944,0 -4.855342,2.066078 -4.855342,4.752049 0,2.685944 2.169398,4.855368 4.855342,4.855368 2.685944,0 4.752049,-2.169424 4.752049,-4.855368 m -1.136359,0 c 0,-1.962812 -1.652878,-3.615717 -3.61569,-3.615717 -2.066105,0 -3.718983,1.652905 -3.718983,3.615717 0,2.066104 1.652878,3.719009 3.718983,3.719009 1.962812,0 3.61569,-1.652905 3.61569,-3.719009 m 1.033066,32.85114 c 0,-2.58262 -2.066131,-4.64875 -4.648756,-4.64875 -2.582624,0 -4.752049,2.06613 -4.752049,4.64875 0,2.58263 2.169425,4.64873 4.752049,4.64873 2.582625,0 4.648756,-2.0661 4.648756,-4.64873 m 0.619839,0 c 0,-2.99585 -2.376037,-5.26859 -5.268595,-5.26859 -2.99585,0 -5.371888,2.27274 -5.371888,5.26859 0,2.89253 2.376038,5.26857 5.371888,5.26857 2.892558,0 5.268595,-2.37604 5.268595,-5.26857 m -0.516546,0 c 0,-2.68594 -2.066105,-4.85537 -4.752049,-4.85537 -2.685944,0 -4.855342,2.16943 -4.855342,4.85537 0,2.68595 2.169398,4.85534 4.855342,4.85534 2.685944,0 4.752049,-2.16939 4.752049,-4.85534 m -1.136359,0 c 0,-2.0661 -1.652878,-3.71901 -3.61569,-3.71901 -2.066105,0 -3.718983,1.65291 -3.718983,3.71901 0,1.96279 1.652878,3.71899 3.718983,3.71899 1.962812,0 3.61569,-1.7562 3.61569,-3.71899 m 31.921423,0 c 0,-2.0661 -1.652905,-3.71901 -3.615716,-3.71901 -2.066105,0 -3.71901,1.65291 -3.71901,3.71901 0,1.96279 1.652905,3.71899 3.71901,3.71899 1.962811,0 3.615716,-1.7562 3.615716,-3.71899 m 1.033013,0 c 0,-2.58262 -2.066078,-4.64875 -4.648729,-4.64875 -2.582651,0 -4.752075,2.06613 -4.752075,4.64875 0,2.58263 2.169424,4.64873 4.752075,4.64873 2.582651,0 4.648729,-2.0661 4.648729,-4.64873 m 0.619839,0 c 0,-2.99585 -2.376011,-5.26859 -5.268568,-5.26859 -2.995877,0 -5.371888,2.27274 -5.371888,5.26859 0,2.89253 2.376011,5.26857 5.371888,5.26857 2.892557,0 5.268568,-2.37604 5.268568,-5.26857 m -0.516519,0 c 0,-2.68594 -2.066105,-4.85537 -4.752049,-4.85537 -2.685944,0 -4.855369,2.16943 -4.855369,4.85537 0,2.68595 2.169425,4.85534 4.855369,4.85534 2.685944,0 4.752049,-2.16939 4.752049,-4.85534 m -1.136333,32.74785 c 0,-1.96281 -1.652905,-3.61572 -3.615716,-3.61572 -2.066105,0 -3.71901,1.65291 -3.71901,3.61572 0,2.06611 1.652905,3.71898 3.71901,3.71898 1.962811,0 3.615716,-1.65287 3.615716,-3.71898 m 1.033013,0 c 0,-2.58265 -2.066078,-4.64875 -4.648729,-4.64875 -2.582651,0 -4.752075,2.0661 -4.752075,4.64875 0,2.58263 2.169424,4.75205 4.752075,4.75205 2.582651,0 4.648729,-2.16942 4.648729,-4.75205 m 0.619839,0 c 0,-2.89258 -2.376011,-5.26857 -5.268568,-5.26857 -2.995877,0 -5.371888,2.37599 -5.371888,5.26857 0,2.99585 2.376011,5.37186 5.371888,5.37186 2.892557,0 5.268568,-2.37601 5.268568,-5.37186 m -0.516519,0 c 0,-2.68597 -2.066105,-4.75205 -4.752049,-4.75205 -2.685944,0 -4.855369,2.06608 -4.855369,4.75205 0,2.68595 2.169425,4.85537 4.855369,4.85537 2.685944,0 4.752049,-2.16942 4.752049,-4.85537 M 103.15055,42.3036 c 0,-2.582624 -2.06614,-4.648755 -4.64876,-4.648755 -2.582625,0 -4.648756,2.066131 -4.648756,4.648755 0,2.582625 2.066131,4.648756 4.648756,4.648756 2.58262,0 4.64876,-2.066131 4.64876,-4.648756 m 0.61983,0 c 0,-2.99585 -2.37603,-5.268595 -5.26859,-5.268595 -2.995851,0 -5.268595,2.272745 -5.268595,5.268595 0,2.892558 2.272744,5.268569 5.268595,5.268569 2.89256,0 5.26859,-2.376011 5.26859,-5.268569 m -0.41322,0 c 0,-2.685944 -2.16943,-4.855368 -4.85537,-4.855368 -2.685945,0 -4.855369,2.169424 -4.855369,4.855368 0,2.685945 2.169424,4.855369 4.855369,4.855369 2.68594,0 4.85537,-2.169424 4.85537,-4.855369 m -0.20661,32.74785 c 0,-2.582651 -2.06614,-4.648756 -4.64876,-4.648756 -2.582625,0 -4.648756,2.066105 -4.648756,4.648756 0,2.582624 2.066131,4.752048 4.648756,4.752048 2.58262,0 4.64876,-2.169424 4.64876,-4.752048 m 0.61983,0 c 0,-2.892584 -2.37603,-5.268569 -5.26859,-5.268569 -2.995851,0 -5.268595,2.375985 -5.268595,5.268569 0,2.99585 2.272744,5.371861 5.268595,5.371861 2.89256,0 5.26859,-2.376011 5.26859,-5.371861 m -0.41322,0 c 0,-2.685971 -2.16943,-4.752049 -4.85537,-4.752049 -2.685945,0 -4.855369,2.066078 -4.855369,4.752049 0,2.685944 2.169424,4.855368 4.855369,4.855368 2.68594,0 4.85537,-2.169424 4.85537,-4.855368 m -0.20661,32.85114 c 0,-2.58262 -2.06614,-4.64875 -4.64876,-4.64875 -2.582625,0 -4.648756,2.06613 -4.648756,4.64875 0,2.58263 2.066131,4.64873 4.648756,4.64873 2.58262,0 4.64876,-2.0661 4.64876,-4.64873 m 0.61983,0 c 0,-2.99585 -2.37603,-5.26859 -5.26859,-5.26859 -2.995851,0 -5.268595,2.27274 -5.268595,5.26859 0,2.89253 2.272744,5.26857 5.268595,5.26857 2.89256,0 5.26859,-2.37604 5.26859,-5.26857 m -0.41322,0 c 0,-2.68594 -2.16943,-4.85537 -4.85537,-4.85537 -2.685945,0 -4.855369,2.16943 -4.855369,4.85537 0,2.68595 2.169424,4.85534 4.855369,4.85534 2.68594,0 4.85537,-2.16939 4.85537,-4.85534 m -0.20661,32.74785 c 0,-2.58265 -2.06614,-4.64875 -4.64876,-4.64875 -2.582625,0 -4.648756,2.0661 -4.648756,4.64875 0,2.58263 2.066131,4.75205 4.648756,4.75205 2.58262,0 4.64876,-2.16942 4.64876,-4.75205 m 0.61983,0 c 0,-2.89258 -2.37603,-5.26857 -5.26859,-5.26857 -2.995851,0 -5.268595,2.37599 -5.268595,5.26857 0,2.99585 2.272744,5.37186 5.268595,5.37186 2.89256,0 5.26859,-2.37601 5.26859,-5.37186 m -0.41322,0 c 0,-2.68597 -2.16943,-4.75205 -4.85537,-4.75205 -2.685945,0 -4.855369,2.06608 -4.855369,4.75205 0,2.68595 2.169424,4.85537 4.855369,4.85537 2.68594,0 4.85537,-2.16942 4.85537,-4.85537 M 135.07194,42.3036 c 0,-2.582624 -2.0661,-4.648755 -4.64875,-4.648755 -2.58265,0 -4.64873,2.066131 -4.64873,4.648755 0,2.582625 2.06608,4.648756 4.64873,4.648756 2.58265,0 4.64875,-2.066131 4.64875,-4.648756 m 0.61984,0 c 0,-2.99585 -2.37604,-5.268595 -5.26859,-5.268595 -2.99588,0 -5.26857,2.272745 -5.26857,5.268595 0,2.892558 2.27269,5.268569 5.26857,5.268569 2.89255,0 5.26859,-2.376011 5.26859,-5.268569 m -0.41323,0 c 0,-2.685944 -2.16942,-4.855368 -4.85536,-4.855368 -2.68595,0 -4.85535,2.169424 -4.85535,4.855368 0,2.685945 2.1694,4.855369 4.85535,4.855369 2.68594,0 4.85536,-2.169424 4.85536,-4.855369 m -0.20661,32.74785 c 0,-2.582651 -2.0661,-4.648756 -4.64875,-4.648756 -2.58265,0 -4.64873,2.066105 -4.64873,4.648756 0,2.582624 2.06608,4.752048 4.64873,4.752048 2.58265,0 4.64875,-2.169424 4.64875,-4.752048 m 0.61984,0 c 0,-2.892584 -2.37604,-5.268569 -5.26859,-5.268569 -2.99588,0 -5.26857,2.375985 -5.26857,5.268569 0,2.99585 2.27269,5.371861 5.26857,5.371861 2.89255,0 5.26859,-2.376011 5.26859,-5.371861 m -0.41323,0 c 0,-2.685971 -2.16942,-4.752049 -4.85536,-4.752049 -2.68595,0 -4.85535,2.066078 -4.85535,4.752049 0,2.685944 2.1694,4.855368 4.85535,4.855368 2.68594,0 4.85536,-2.169424 4.85536,-4.855368 m -0.20661,32.85114 c 0,-2.58262 -2.0661,-4.64875 -4.64875,-4.64875 -2.58265,0 -4.64873,2.06613 -4.64873,4.64875 0,2.58263 2.06608,4.64873 4.64873,4.64873 2.58265,0 4.64875,-2.0661 4.64875,-4.64873 m 0.61984,0 c 0,-2.99585 -2.37604,-5.26859 -5.26859,-5.26859 -2.99588,0 -5.26857,2.27274 -5.26857,5.26859 0,2.89253 2.27269,5.26857 5.26857,5.26857 2.89255,0 5.26859,-2.37604 5.26859,-5.26857 m -0.41323,0 c 0,-2.68594 -2.16942,-4.85537 -4.85536,-4.85537 -2.68595,0 -4.85535,2.16943 -4.85535,4.85537 0,2.68595 2.1694,4.85534 4.85535,4.85534 2.68594,0 4.85536,-2.16939 4.85536,-4.85534 m -0.20661,32.74785 c 0,-2.58265 -2.0661,-4.64875 -4.64875,-4.64875 -2.58265,0 -4.64873,2.0661 -4.64873,4.64875 0,2.58263 2.06608,4.75205 4.64873,4.75205 2.58265,0 4.64875,-2.16942 4.64875,-4.75205 m 0.61984,0 c 0,-2.89258 -2.37604,-5.26857 -5.26859,-5.26857 -2.99588,0 -5.26857,2.37599 -5.26857,5.26857 0,2.99585 2.27269,5.37186 5.26857,5.37186 2.89255,0 5.26859,-2.37601 5.26859,-5.37186 m -0.41323,0 c 0,-2.68597 -2.16942,-4.75205 -4.85536,-4.75205 -2.68595,0 -4.85535,2.06608 -4.85535,4.75205 0,2.68595 2.1694,4.85537 4.85535,4.85537 2.68594,0 4.85536,-2.16942 4.85536,-4.85537 M 166.99334,42.3036 c 0,-2.582624 -2.16943,-4.648755 -4.75205,-4.648755 -2.58265,0 -4.64876,2.066131 -4.64876,4.648755 0,2.582625 2.06611,4.648756 4.64876,4.648756 2.58262,0 4.75205,-2.066131 4.75205,-4.648756 m 0.61981,0 c 0,-2.99585 -2.37601,-5.268595 -5.37186,-5.268595 -2.89256,0 -5.2686,2.272745 -5.2686,5.268595 0,2.892558 2.37604,5.268569 5.2686,5.268569 2.99585,0 5.37186,-2.376011 5.37186,-5.268569 m -0.51652,0 c 0,-2.685944 -2.16942,-4.855368 -4.85534,-4.855368 -2.68594,0 -4.75208,2.169424 -4.75208,4.855368 0,2.685945 2.06614,4.855369 4.75208,4.855369 2.68592,0 4.85534,-2.169424 4.85534,-4.855369 m -0.10329,32.74785 c 0,-2.582651 -2.16943,-4.648756 -4.75205,-4.648756 -2.58265,0 -4.64876,2.066105 -4.64876,4.648756 0,2.582624 2.06611,4.752048 4.64876,4.752048 2.58262,0 4.75205,-2.169424 4.75205,-4.752048 m 0.61981,0 c 0,-2.892584 -2.37601,-5.268569 -5.37186,-5.268569 -2.89256,0 -5.2686,2.375985 -5.2686,5.268569 0,2.99585 2.37604,5.371861 5.2686,5.371861 2.99585,0 5.37186,-2.376011 5.37186,-5.371861 m -0.51652,0 c 0,-2.685971 -2.16942,-4.752049 -4.85534,-4.752049 -2.68594,0 -4.75208,2.066078 -4.75208,4.752049 0,2.685944 2.06614,4.855368 4.75208,4.855368 2.68592,0 4.85534,-2.169424 4.85534,-4.855368 m -0.10329,32.85114 c 0,-2.58262 -2.16943,-4.64875 -4.75205,-4.64875 -2.58265,0 -4.64876,2.06613 -4.64876,4.64875 0,2.58263 2.06611,4.64873 4.64876,4.64873 2.58262,0 4.75205,-2.0661 4.75205,-4.64873 m 0.61981,0 c 0,-2.99585 -2.37601,-5.26859 -5.37186,-5.26859 -2.89256,0 -5.2686,2.27274 -5.2686,5.26859 0,2.89253 2.37604,5.26857 5.2686,5.26857 2.99585,0 5.37186,-2.37604 5.37186,-5.26857 m -0.51652,0 c 0,-2.68594 -2.16942,-4.85537 -4.85534,-4.85537 -2.68594,0 -4.75208,2.16943 -4.75208,4.85537 0,2.68595 2.06614,4.85534 4.75208,4.85534 2.68592,0 4.85534,-2.16939 4.85534,-4.85534 m -0.10329,32.74785 c 0,-2.58265 -2.16943,-4.64875 -4.75205,-4.64875 -2.58265,0 -4.64876,2.0661 -4.64876,4.64875 0,2.58263 2.06611,4.75205 4.64876,4.75205 2.58262,0 4.75205,-2.16942 4.75205,-4.75205 m 0.61981,0 c 0,-2.89258 -2.37601,-5.26857 -5.37186,-5.26857 -2.89256,0 -5.2686,2.37599 -5.2686,5.26857 0,2.99585 2.37604,5.37186 5.2686,5.37186 2.99585,0 5.37186,-2.37601 5.37186,-5.37186 m -0.51652,0 c 0,-2.68597 -2.16942,-4.75205 -4.85534,-4.75205 -2.68594,0 -4.75208,2.06608 -4.75208,4.75205 0,2.68595 2.06614,4.85537 4.75208,4.85537 2.68592,0 4.85534,-2.16942 4.85534,-4.85537 m 31.8181,-98.34684 c 0,-2.582624 -2.16941,-4.648755 -4.75205,-4.648755 -2.58264,0 -4.64875,2.066131 -4.64875,4.648755 0,2.582625 2.06611,4.648756 4.64875,4.648756 2.58264,0 4.75205,-2.066131 4.75205,-4.648756 m 0.61983,0 c 0,-2.99585 -2.37603,-5.268595 -5.37188,-5.268595 -2.89256,0 -5.26858,2.272745 -5.26858,5.268595 0,2.892558 2.37602,5.268569 5.26858,5.268569 2.99585,0 5.37188,-2.376011 5.37188,-5.268569 m -0.51652,0 c 0,-2.685944 -2.16942,-4.855368 -4.85536,-4.855368 -2.68595,0 -4.75206,2.169424 -4.75206,4.855368 0,2.685945 2.06611,4.855369 4.75206,4.855369 2.68594,0 4.85536,-2.169424 4.85536,-4.855369 m -0.10331,32.74785 c 0,-2.582651 -2.16941,-4.648756 -4.75205,-4.648756 -2.58264,0 -4.64875,2.066105 -4.64875,4.648756 0,2.582624 2.06611,4.752048 4.64875,4.752048 2.58264,0 4.75205,-2.169424 4.75205,-4.752048 m 0.61983,0 c 0,-2.892584 -2.37603,-5.268569 -5.37188,-5.268569 -2.89256,0 -5.26858,2.375985 -5.26858,5.268569 0,2.99585 2.37602,5.371861 5.26858,5.371861 2.99585,0 5.37188,-2.376011 5.37188,-5.371861 m -0.51652,0 c 0,-2.685971 -2.16942,-4.752049 -4.85536,-4.752049 -2.68595,0 -4.75206,2.066078 -4.75206,4.752049 0,2.685944 2.06611,4.855368 4.75206,4.855368 2.68594,0 4.85536,-2.169424 4.85536,-4.855368 m -0.10331,32.85114 c 0,-2.58262 -2.16941,-4.64875 -4.75205,-4.64875 -2.58264,0 -4.64875,2.06613 -4.64875,4.64875 0,2.58263 2.06611,4.64873 4.64875,4.64873 2.58264,0 4.75205,-2.0661 4.75205,-4.64873 m 0.61983,0 c 0,-2.99585 -2.37603,-5.26859 -5.37188,-5.26859 -2.89256,0 -5.26858,2.27274 -5.26858,5.26859 0,2.89253 2.37602,5.26857 5.26858,5.26857 2.99585,0 5.37188,-2.37604 5.37188,-5.26857 m -0.51652,0 c 0,-2.68594 -2.16942,-4.85537 -4.85536,-4.85537 -2.68595,0 -4.75206,2.16943 -4.75206,4.85537 0,2.68595 2.06611,4.85534 4.75206,4.85534 2.68594,0 4.85536,-2.16939 4.85536,-4.85534 m -0.10331,32.74785 c 0,-2.58265 -2.16941,-4.64875 -4.75205,-4.64875 -2.58264,0 -4.64875,2.0661 -4.64875,4.64875 0,2.58263 2.06611,4.75205 4.64875,4.75205 2.58264,0 4.75205,-2.16942 4.75205,-4.75205 m 0.61983,0 c 0,-2.89258 -2.37603,-5.26857 -5.37188,-5.26857 -2.89256,0 -5.26858,2.37599 -5.26858,5.26857 0,2.99585 2.37602,5.37186 5.26858,5.37186 2.99585,0 5.37188,-2.37601 5.37188,-5.37186 m -0.51652,0 c 0,-2.68597 -2.16942,-4.75205 -4.85536,-4.75205 -2.68595,0 -4.75206,2.06608 -4.75206,4.75205 0,2.68595 2.06611,4.85537 4.75206,4.85537 2.68594,0 4.85536,-2.16942 4.85536,-4.85537 M 230.73282,42.3036 c 0,-2.582624 -2.0661,-4.648755 -4.64874,-4.648755 -2.58265,0 -4.64874,2.066131 -4.64874,4.648755 0,2.582625 2.06609,4.648756 4.64874,4.648756 2.58264,0 4.64874,-2.066131 4.64874,-4.648756 m 0.61984,0 c 0,-2.99585 -2.27271,-5.268595 -5.26858,-5.268595 -2.89255,0 -5.26858,2.272745 -5.26858,5.268595 0,2.892558 2.37603,5.268569 5.26858,5.268569 2.99587,0 5.26858,-2.376011 5.26858,-5.268569 m -0.41323,0 c 0,-2.685944 -2.16942,-4.855368 -4.85535,-4.855368 -2.68594,0 -4.85536,2.169424 -4.85536,4.855368 0,2.685945 2.16942,4.855369 4.85536,4.855369 2.68593,0 4.85535,-2.169424 4.85535,-4.855369 m -0.20661,32.74785 c 0,-2.582651 -2.0661,-4.648756 -4.64874,-4.648756 -2.58265,0 -4.64874,2.066105 -4.64874,4.648756 0,2.582624 2.06609,4.752048 4.64874,4.752048 2.58264,0 4.64874,-2.169424 4.64874,-4.752048 m 0.61984,0 c 0,-2.892584 -2.27271,-5.268569 -5.26858,-5.268569 -2.89255,0 -5.26858,2.375985 -5.26858,5.268569 0,2.99585 2.37603,5.371861 5.26858,5.371861 2.99587,0 5.26858,-2.376011 5.26858,-5.371861 m -0.41323,0 c 0,-2.685971 -2.16942,-4.752049 -4.85535,-4.752049 -2.68594,0 -4.85536,2.066078 -4.85536,4.752049 0,2.685944 2.16942,4.855368 4.85536,4.855368 2.68593,0 4.85535,-2.169424 4.85535,-4.855368 m -0.20661,32.85114 c 0,-2.58262 -2.0661,-4.64875 -4.64874,-4.64875 -2.58265,0 -4.64874,2.06613 -4.64874,4.64875 0,2.58263 2.06609,4.64873 4.64874,4.64873 2.58264,0 4.64874,-2.0661 4.64874,-4.64873 m 0.61984,0 c 0,-2.99585 -2.27271,-5.26859 -5.26858,-5.26859 -2.89255,0 -5.26858,2.27274 -5.26858,5.26859 0,2.89253 2.37603,5.26857 5.26858,5.26857 2.99587,0 5.26858,-2.37604 5.26858,-5.26857 m -0.41323,0 c 0,-2.68594 -2.16942,-4.85537 -4.85535,-4.85537 -2.68594,0 -4.85536,2.16943 -4.85536,4.85537 0,2.68595 2.16942,4.85534 4.85536,4.85534 2.68593,0 4.85535,-2.16939 4.85535,-4.85534 m -0.20661,32.74785 c 0,-2.58265 -2.0661,-4.64875 -4.64874,-4.64875 -2.58265,0 -4.64874,2.0661 -4.64874,4.64875 0,2.58263 2.06609,4.75205 4.64874,4.75205 2.58264,0 4.64874,-2.16942 4.64874,-4.75205 m 0.61984,0 c 0,-2.89258 -2.27271,-5.26857 -5.26858,-5.26857 -2.89255,0 -5.26858,2.37599 -5.26858,5.26857 0,2.99585 2.37603,5.37186 5.26858,5.37186 2.99587,0 5.26858,-2.37601 5.26858,-5.37186 m -0.41323,0 c 0,-2.68597 -2.16942,-4.75205 -4.85535,-4.75205 -2.68594,0 -4.85536,2.06608 -4.85536,4.75205 0,2.68595 2.16942,4.85537 4.85536,4.85537 2.68593,0 4.85535,-2.16942 4.85535,-4.85537 M 262.65424,42.3036 c 0,-2.582624 -2.06613,-4.648755 -4.64878,-4.648755 -2.58261,0 -4.64874,2.066131 -4.64874,4.648755 0,2.582625 2.06613,4.648756 4.64874,4.648756 2.58265,0 4.64878,-2.066131 4.64878,-4.648756 m 0.61981,0 c 0,-2.99585 -2.27272,-5.268595 -5.26859,-5.268595 -2.89255,0 -5.26858,2.272745 -5.26858,5.268595 0,2.892558 2.37603,5.268569 5.26858,5.268569 2.99587,0 5.26859,-2.376011 5.26859,-5.268569 m -0.41323,0 c 0,-2.685944 -2.16939,-4.855368 -4.85536,-4.855368 -2.68593,0 -4.85535,2.169424 -4.85535,4.855368 0,2.685945 2.16942,4.855369 4.85535,4.855369 2.68597,0 4.85536,-2.169424 4.85536,-4.855369 m -0.20658,32.74785 c 0,-2.582651 -2.06613,-4.648756 -4.64878,-4.648756 -2.58261,0 -4.64874,2.066105 -4.64874,4.648756 0,2.582624 2.06613,4.752048 4.64874,4.752048 2.58265,0 4.64878,-2.169424 4.64878,-4.752048 m 0.61981,0 c 0,-2.892584 -2.27272,-5.268569 -5.26859,-5.268569 -2.89255,0 -5.26858,2.375985 -5.26858,5.268569 0,2.99585 2.37603,5.371861 5.26858,5.371861 2.99587,0 5.26859,-2.376011 5.26859,-5.371861 m -0.41323,0 c 0,-2.685971 -2.16939,-4.752049 -4.85536,-4.752049 -2.68593,0 -4.85535,2.066078 -4.85535,4.752049 0,2.685944 2.16942,4.855368 4.85535,4.855368 2.68597,0 4.85536,-2.169424 4.85536,-4.855368 m -0.20658,32.85114 c 0,-2.58262 -2.06613,-4.64875 -4.64878,-4.64875 -2.58261,0 -4.64874,2.06613 -4.64874,4.64875 0,2.58263 2.06613,4.64873 4.64874,4.64873 2.58265,0 4.64878,-2.0661 4.64878,-4.64873 m 0.61981,0 c 0,-2.99585 -2.27272,-5.26859 -5.26859,-5.26859 -2.89255,0 -5.26858,2.27274 -5.26858,5.26859 0,2.89253 2.37603,5.26857 5.26858,5.26857 2.99587,0 5.26859,-2.37604 5.26859,-5.26857 m -0.41323,0 c 0,-2.68594 -2.16939,-4.85537 -4.85536,-4.85537 -2.68593,0 -4.85535,2.16943 -4.85535,4.85537 0,2.68595 2.16942,4.85534 4.85535,4.85534 2.68597,0 4.85536,-2.16939 4.85536,-4.85534 m -0.20658,32.74785 c 0,-2.58265 -2.06613,-4.64875 -4.64878,-4.64875 -2.58261,0 -4.64874,2.0661 -4.64874,4.64875 0,2.58263 2.06613,4.75205 4.64874,4.75205 2.58265,0 4.64878,-2.16942 4.64878,-4.75205 m 0.61981,0 c 0,-2.89258 -2.27272,-5.26857 -5.26859,-5.26857 -2.89255,0 -5.26858,2.37599 -5.26858,5.26857 0,2.99585 2.37603,5.37186 5.26858,5.37186 2.99587,0 5.26859,-2.37601 5.26859,-5.37186 m -0.41323,0 c 0,-2.68597 -2.16939,-4.75205 -4.85536,-4.75205 -2.68593,0 -4.85535,2.06608 -4.85535,4.75205 0,2.68595 2.16942,4.85537 4.85535,4.85537 2.68597,0 4.85536,-2.16942 4.85536,-4.85537 m -224.069614,0 c 0,-2.27274 -1.859492,-4.13223 -4.13221,-4.13223 -2.376011,0 -4.235529,1.85949 -4.235529,4.13223 0,2.37601 1.859518,4.23553 4.235529,4.23553 2.272718,0 4.13221,-1.85952 4.13221,-4.23553 m 1.136385,0 c 0,-2.89258 -2.376037,-5.26857 -5.268595,-5.26857 -2.99585,0 -5.371888,2.37599 -5.371888,5.26857 0,2.99585 2.376038,5.37186 5.371888,5.37186 2.892558,0 5.268595,-2.37601 5.268595,-5.37186 m -0.413226,0 c 0,-2.68597 -2.169425,-4.85537 -4.855369,-4.85537 -2.685944,0 -4.958662,2.1694 -4.958662,4.85537 0,2.68595 2.272718,4.95866 4.958662,4.95866 2.685944,0 4.855369,-2.27271 4.855369,-4.95866 M 23.088794,3.4607303 H 79.8035 m 71.90063,0 h 58.88411 m 73.45022,7.1280867 c 0,-3.925623 -3.20248,-7.1280867 -7.23138,-7.1280867 m 7.12806,7.2313797 v 4.028916 m 0,64.669246 v 0.309933 m -7.12806,86.156745 c 4.0289,0 7.23138,-3.20244 7.23138,-7.23138 m -7.23138,7.23138 H 217.71634 M 15.857387,158.62557 c 0,4.02894 3.305784,7.23138 7.231407,7.23138 m -7.231407,-7.12806 V 89.720796 M 23.088794,3.4607303 c -3.925623,0 -7.231407,3.2024637 -7.231407,7.1280867 M 276.80708,8.5227121 V 3.4607303 M 149.94793,8.5227121 h 126.85915 m 2.16941,2.1693979 h 4.95865 m -4.95865,-0.103293 c 0,-1.1363591 -0.92974,-2.0661049 -2.16941,-2.0661049 m 2.16941,150.2061779 h 4.95865 M 278.97649,10.69211 v 148.03678 m -2.16941,2.16943 v 4.95863 m 0,-5.06195 c 1.23967,0 2.16941,-0.92975 2.16941,-2.16943 m -255.887696,2.27275 v 4.95863 M 276.80708,160.89832 H 23.088794 m -2.169425,-2.16943 h -5.061982 m 5.061982,-0.10332 c 0,1.23968 1.033066,2.16943 2.169425,2.16943 M 20.919369,10.69211 h -5.061982 m 5.061982,148.03678 V 10.69211 M 23.088794,8.5227121 V 3.4607303 m 0,5.0619818 c -1.136359,0 -2.169425,0.9297458 -2.169425,2.0661049 M 23.088794,8.5227121 H 149.94793 m 0,0 V 3.56405 m 26.6528,161.98299 0.10332,-0.10332 h 0.20661 l 0.30991,-0.10329 h 0.51655 l 0.61981,-0.10329 0.72316,-0.10332 h 0.82642 l 0.92978,-0.10329 h 1.03303 l 1.13639,-0.10332 h 1.23964 l 1.34297,-0.1033 h 2.68595 2.78924 2.89256 2.68594 l 1.23966,0.1033 h 1.23967 l 1.13636,0.10332 h 1.03306 l 1.03305,0.10329 h 0.82644 l 0.72314,0.10332 0.61984,0.10329 h 0.51652 l 0.30992,0.10329 h 0.20661 l 0.1033,0.10332 h -0.1033 l -0.20661,0.1033 h -0.30992 -0.51652 l -0.61984,0.10332 h -0.72314 -0.82644 -0.92975 l -1.13636,0.10329 h -1.13636 -1.13636 -1.34297 -2.68594 -2.78925 -2.89255 -2.68595 -1.34297 -1.13635 -1.23968 l -1.03303,-0.10329 h -0.92978 -0.82642 -0.72316 l -0.61981,-0.10332 h -0.51655 -0.30991 l -0.20661,-0.1033 h -0.10332 m 33.26438,1.65288 h -57.43785 m 66.11553,0 -1.343,1.03307 m 2.27274,-1.03307 -0.72313,0.72316 -0.51655,0.41323 -0.51651,0.51652 m -7.1281,-2.99588 h -58.88411 m 64.97914,0 h 1.13636 m -1.23965,0 h -4.85536 m -1.03306,0 h 1.13636 m 5.88842,0 -0.41323,0.51655 -0.61984,0.41322 m -0.10329,-0.92977 -0.30993,0.30993 m -72.52044,1.03304 H 87.75804 m 64.66922,0 -1.34297,1.03307 m 2.27271,-1.03307 -0.72313,0.72316 -0.51652,0.41323 -0.51654,0.51652 m -7.02477,-2.99588 H 86.931587 m 63.636183,0 h 1.13636 m -1.13636,0 h -4.85534 m -1.13639,0 h 1.13639 m 5.9917,0 -0.51652,0.51655 -0.61984,0.41322 m 0,-0.92977 -0.41323,0.30993 m -71.074172,1.03304 H 22.572274 m 65.185766,0 -1.342999,1.03307 m 2.272744,-1.03307 -0.723159,0.72316 -0.516519,0.41323 -0.61984,0.51652 M 79.8035,165.85695 H 23.088794 m 62.706434,0 h 1.136359 m -1.136359,0 h -4.855395 m -1.136333,0 h 1.136333 m 5.991754,0 -0.413226,0.51655 -0.61984,0.41322 m -0.103293,-0.92977 -0.309933,0.30993 M 283.93514,89.720796 v 0.309933 m 0,64.669271 v 4.02889 m 0,-77.685739 v -1.446266 m 0,1.549559 v 7.128113 m 0.10332,1.446239 v -1.549559 m 3.20248,-5.475208 v 4.028943 m 0,0 -0.30993,0.516519 -0.41322,0.516547 -0.72314,0.723132 -0.61983,0.51652 -0.20662,0.206613 -0.41322,0.206587 -0.20661,0.103319 -0.1033,0.103294 -0.30993,0.103293 m 2.06613,-3.40905 -0.41323,0.516519 -0.41322,0.413226 -0.51652,0.516547 -0.30993,0.206586 -0.1033,0.10332 -0.30993,0.206613 m 2.06613,-5.165302 h 0.10329 l 0.20661,-0.103293 0.30993,-0.10332 0.61984,-0.206613 m -3.3058,-2.995824 0.30993,0.103293 0.1033,0.10332 0.20661,0.103267 0.41322,0.206613 0.20662,0.10332 0.61983,0.619813 0.72314,0.723159 0.41322,0.51652 0.30993,0.516519 m -3.3058,-1.549585 0.30993,0.10332 0.1033,0.103293 0.30993,0.309933 0.51652,0.51652 0.41322,0.413226 0.41323,0.516519 m 0,0 v 3.202491 m 0,0 0.3099,0.103293 0.30993,0.10332 0.61984,0.206613 m 1.44626,5.578475 v 58.470933 m 0.82645,-69.627936 c 0.61984,-0.51652 0.92975,-1.342946 0.82645,-2.066078 m -2.06612,-2.376038 h 0.10332 l 0.10329,0.10332 0.20661,0.309906 m -0.41322,2.582651 1.23967,1.446239 m -0.82645,-4.02889 0.82645,0.929746 0.82645,1.033066 m 0,11.156976 -0.82645,1.136359 -0.82645,0.929746 m 0.82645,-4.13221 -1.23967,1.549559 m 0.41322,2.582651 -0.20661,0.309933 -0.10329,0.103293 h -0.10332 m 1.23967,-11.570229 v 7.024793 m 0.82645,2.066105 c 0.1033,-0.723133 -0.20661,-1.549559 -0.82645,-2.066105 M 218.54279,2.221078 h 58.67751 m -67.35519,0 1.34297,-1.0330656 m -2.37602,1.0330656 0.82644,-0.7231327 0.51652,-0.4132263 0.51654,-0.51654601 m 7.02478,2.89255731 h 59.09074 m -64.97916,0 h -1.13636 m 1.03306,0.1033197 h 4.85536 m 1.23965,-0.1033197 h -1.13636 m -6.09503,0 0.51655,-0.4131998 0.61983,-0.4132263 m 0,0.9297458 0.4132,-0.3099064 M 152.42726,2.221078 h 57.43785 m -66.1155,0 1.34298,-1.0330656 m -2.27275,1.0330656 0.72316,-0.7231327 0.51652,-0.4132263 0.51652,-0.51654601 m 1.13639,2.89255731 h -1.13639 m 1.13639,0.1033197 h 4.2355 m 1.7562,-0.1033197 h -1.13636 M 149.94793,3.56405 h 0.61984 m -5.99173,-0.1033197 0.41323,-0.4131998 0.61984,-0.4132263 m 0.10332,0.9297458 0.30988,-0.3099064 M 87.75804,2.221078 h 55.99157 m -64.669242,0 1.342945,-1.0330656 M 78.047302,2.221078 78.873755,1.4979453 79.390274,1.084719 79.90682,0.56817299 M 86.931587,3.4607303 H 144.57604 M 80.939833,3.56405 h 4.855395 M 79.8035,3.4607303 80.32002,3.0475305 80.83654,2.6343042 m 6.095047,0.8264261 H 85.795228 M 80.939833,3.56405 81.353059,3.2541436 M 80.939833,3.4607303 H 79.8035 M 216.27005,166.16688 v 0.20662 h 0.10332 l 0.10329,0.20661 0.20661,0.20661 m -1.03306,0.4132 h -2.89255 m 2.37603,-0.61981 h -1.85949 m 2.37601,0.61981 -0.20661,-0.3099 -0.20659,-0.1033 -0.10332,-0.10332 v -0.10329 m 0,0 h 0.30991 l 0.30993,-0.10332 0.3099,-0.10329 0.20662,-0.20662 m 0.41322,0.61984 -0.51652,0.30991 -0.51654,0.10329 M 81.353059,3.2541436 81.146446,3.1508238 V 3.0475305 L 81.043153,2.8409173 80.83654,2.6343042 M 81.972899,2.221078 h 2.892557 m -2.376011,0.6198393 h 1.859491 m -2.376037,-0.6198393 0.206613,0.2066131 0.103319,0.2066131 v 0.1032934 l 0.206614,0.1033197 m 0,0 H 82.179512 L 81.869605,2.9442107 81.559672,3.0475305 81.353059,3.2541436 M 80.83654,2.6343042 81.353059,2.3243713 81.972899,2.221078 m 2.376037,0.6198393 V 2.6343042 H 84.45223 L 84.555549,2.4276911 84.865456,2.221078 m 1.033065,0.4132262 0.61984,0.4132263 0.413226,0.4131998 M 85.485295,3.2541436 85.795228,3.56405 m 0.103293,-0.9297458 -0.206613,0.2066131 -0.103293,0.2066132 h -0.10332 v 0.2066131 m 0,0 L 85.278682,3.0475305 84.968776,2.9442107 84.658843,2.8409173 h -0.309907 m 0.51652,-0.6198393 0.516546,0.1032933 0.516519,0.3099329 m 60.123789,0.6198394 -0.1033,-0.1033198 -0.10329,-0.1032933 -0.10329,-0.2066132 -0.10332,-0.2066131 m 1.03303,-0.4132262 h 2.89256 m -2.37604,0.6198393 h 1.96282 m -2.47934,-0.6198393 0.20662,0.2066131 0.10329,0.2066131 0.10332,0.1032934 0.10329,0.1033197 m 0,0 h -0.3099 l -0.30994,0.1032934 -0.3099,0.1033198 -0.20661,0.2066131 m -0.4132,-0.6198394 0.51649,-0.3099329 0.51654,-0.1032933 m 2.47934,0.6198393 V 2.6343042 h 0.10332 l 0.10329,-0.2066131 0.20661,-0.2066131 m 1.03307,0.4132262 0.61984,0.4132263 0.51652,0.4131998 m -1.54959,-0.2065867 0.41323,0.3099064 m 0,-0.9297458 -0.10332,0.2066131 -0.20662,0.2066132 -0.10329,0.2066131 m 0,0 -0.20661,-0.2066131 -0.30993,-0.1033198 -0.30991,-0.1032934 h -0.20661 m 0.41322,-0.6198393 0.51652,0.1032933 0.51655,0.3099329 m 61.57005,0.6198394 -0.20661,-0.1033198 V 3.0475305 l -0.10329,-0.2066132 -0.1033,-0.2066131 m 1.03304,-0.4132262 h 2.89255 m -2.37601,0.6198393 h 1.85949 m -2.37603,-0.6198393 0.20661,0.2066131 0.10332,0.2066131 v 0.1032934 l 0.20661,0.1033197 m 0,0 h -0.30993 l -0.3099,0.1032934 -0.30994,0.1033198 -0.20661,0.2066131 m -0.4132,-0.6198394 0.4132,-0.3099329 0.61984,-0.1032933 m 2.37603,0.6198393 V 2.6343042 h 0.10332 l 0.20659,-0.2066131 0.20661,-0.2066131 m 1.03306,0.4132262 0.61984,0.4132263 0.41323,0.4131998 m -1.44629,-0.2065867 0.30993,0.3099064 m 0.10329,-0.9297458 -0.20661,0.2066131 -0.10329,0.2066132 h -0.10332 v 0.2066131 m 0,0 -0.20662,-0.2066131 -0.3099,-0.1033198 -0.30993,-0.1032934 h -0.30991 m 0.51652,-0.6198393 0.51654,0.1032933 0.51652,0.3099329 M 82.489445,166.58011 82.282831,166.6834 v 0.10332 l -0.103319,0.1033 -0.206613,0.3099 m -1.136359,-0.4132 -0.51652,-0.41322 -0.51652,-0.51655 m 1.549559,0.30993 -0.413226,-0.30993 m -0.103293,0.92977 0.206613,-0.20661 0.103293,-0.20661 v -0.10332 l 0.206613,-0.1033 m 0,0 0.206613,0.20662 0.309933,0.10329 0.309907,0.10332 h 0.309933 m -0.516546,0.61981 -0.61984,-0.10329 -0.516519,-0.30991 m 4.648755,-0.61984 v 0.20662 h 0.10332 l 0.103293,0.20661 0.206613,0.20661 m -1.549585,-0.20661 h -1.859491 m 2.376011,0.61981 h -2.892557 m 2.892557,0 -0.206613,-0.3099 -0.206613,-0.1033 -0.103294,-0.10332 v -0.10329 m 0,0 h 0.309907 l 0.309933,-0.10332 0.309906,-0.10329 0.206613,-0.20662 m 0.413226,0.61984 -0.516519,0.30991 -0.516546,0.10329 m 62.293204,-0.61981 -0.10329,0.10329 -0.10332,0.10332 -0.10329,0.1033 -0.20662,0.3099 m -1.03303,-0.4132 -0.61984,-0.41322 -0.41323,-0.51655 m 1.44627,0.30993 -0.30988,-0.30993 m -0.10332,0.92977 0.10332,-0.20661 0.10329,-0.20661 0.10329,-0.10332 0.1033,-0.1033 m 0,0 0.20661,0.20662 0.3099,0.10329 0.30994,0.10332 h 0.3099 m -0.51652,0.61981 -0.51654,-0.10329 -0.51649,-0.30991 m 4.54543,-0.61984 0.10329,0.20662 0.20662,0.20661 0.10332,0.20661 m -1.44629,-0.20661 h -1.96282 m 2.37604,0.61981 h -2.89256 m 2.89256,0 -0.20661,-0.3099 -0.10329,-0.1033 -0.10332,-0.10332 v -0.10329 m 0,0 h 0.20661 l 0.30991,-0.10332 0.30993,-0.10329 0.20661,-0.20662 m 0.41323,0.61984 -0.51655,0.30991 -0.51652,0.10329 m 63.7395,-0.61981 -0.20661,0.10329 v 0.10332 l -0.10332,0.1033 -0.20661,0.3099 m -1.03304,-0.4132 -0.61983,-0.41322 -0.51655,-0.51655 m 1.54958,0.30993 -0.4132,-0.30993 m 0,0.92977 0.1033,-0.20661 0.10329,-0.20661 v -0.10332 l 0.20661,-0.1033 m 0,0 0.20661,0.20662 0.30994,0.10329 0.3099,0.10332 h 0.30993 m -0.51654,0.61981 -0.61984,-0.10329 -0.4132,-0.30991 m 5.47517,1.44627 0.20661,0.20661 0.10332,0.20662 0.1033,0.10331 0.10332,0.1033 m -1.65291,0.51652 h -3.719 m 5.37191,-0.51652 -0.41323,0.20661 -0.41322,0.20661 -0.41323,0.1033 h -0.41323 m -0.3099,-0.72313 h -3.09916 m 3.40906,0.72313 -0.10329,-0.1033 v -0.20661 l -0.10332,-0.20661 -0.10329,-0.20661 m 0,0 0.41322,-0.1033 h 0.30991 l 0.41323,-0.20661 0.3099,-0.10332 M 80.423313,1.1880124 C 80.32002,0.98139924 80.113407,0.67149279 79.90682,0.56817299 m 1.652852,-0.51651957 h 3.71901 m -5.371862,0.51651957 0.4132,-0.20661312 0.309907,-0.20661312 0.516519,-0.10329333 h 0.413226 m 0.309933,0.7231327 h 3.099171 m -3.409104,-0.7231327 v 0.10329333 l 0.10332,0.10331979 0.103293,0.20661312 0.10332,0.30990646 m 0,0 H 81.456379 L 81.043153,0.87810591 80.733246,1.084719 80.423313,1.1880124 m 4.545463,-0.41322628 0.103293,-0.20661313 0.10332,-0.30990645 V 0.15494675 l 0.103293,-0.10329333 m 1.549585,0.51651957 0.61984,0.51654601 0.516519,0.4132263 0.723159,0.7231327 M 85.278682,0.05165342 h 0.413226 l 0.413227,0.10329333 0.413226,0.20661312 0.309906,0.20661312 M 86.415041,1.1880124 87.75804,2.221078 M 86.828267,0.56817299 v 0.1033198 l -0.103293,0.10329333 -0.10332,0.20661312 -0.206613,0.20661316 m 0,0 L 86.105135,1.084719 85.691908,0.87810591 85.382002,0.77478612 H 84.968776 M 145.09259,1.1880124 c -0.10332,-0.20661316 -0.30994,-0.51651961 -0.41323,-0.61983941 m 1.54956,-0.51651957 h 3.71901 m -5.37189,0.51651957 0.41323,-0.20661312 0.41322,-0.20661312 0.41323,-0.10329333 h 0.4132 m 0.3099,0.7231327 h 3.09918 m -3.40908,-0.7231327 0.10329,0.10329333 v 0.10331979 l 0.10332,0.20661312 0.10329,0.30990646 m 0,0 h -0.41322 l -0.30988,0.10331979 -0.41323,0.20661309 -0.3099,0.1032934 M 149.638,0.77478612 149.84461,0.56817299 V 0.25826654 l 0.10332,-0.10331979 V 0.05165342 m 1.65288,0.51651957 0.51654,0.51654601 0.51652,0.4132263 0.72313,0.7231327 m -3.40907,-2.16942458 h 0.41322 l 0.41323,0.10329333 0.41323,0.20661312 0.4132,0.20661312 m -0.51652,0.61983941 1.34297,1.0330656 m -0.82645,-1.65290501 -0.1033,0.1033198 -0.10332,0.10329333 -0.10329,0.20661312 -0.20661,0.20661316 m 0,0 -0.30991,-0.1032934 -0.30993,-0.20661309 -0.41323,-0.10331979 H 149.638 m 61.57008,0.41322628 c -0.10329,-0.20661316 -0.30991,-0.51651961 -0.41323,-0.61983941 m 1.54958,-0.51651957 h 3.719 m -5.37187,0.51651957 0.41323,-0.20661312 0.3099,-0.20661312 0.51652,-0.10329333 h 0.41322 m 0.30994,0.7231327 h 3.09916 m -3.4091,-0.7231327 v 0.10329333 l 0.10332,0.10331979 0.1033,0.20661312 0.10332,0.30990646 m 0,0 h -0.41323 l -0.41322,0.10331979 -0.30991,0.20661309 -0.30993,0.1032934 m 4.54545,-0.41322628 0.10329,-0.20661313 0.10332,-0.30990645 V 0.15494675 l 0.10329,-0.10329333 m 1.65291,0.51651957 0.51651,0.51654601 0.51655,0.4132263 0.72313,0.7231327 m -3.4091,-2.16942458 h 0.41323 l 0.41323,0.10329333 0.41322,0.20661312 0.41323,0.20661312 m -0.51655,0.61983941 1.343,1.0330656 m -0.82645,-1.65290501 -0.10332,0.1033198 -0.1033,0.10329333 -0.10332,0.20661312 -0.20661,0.20661316 m 0,0 -0.3099,-0.1032934 -0.41323,-0.20661309 -0.30991,-0.10331979 h -0.41322 M 81.869605,168.64622 l -0.10332,0.3099 -0.103293,0.20661 -0.10332,0.10332 v 0.1033 m -1.652852,-0.51652 -0.516546,-0.51652 -0.516519,-0.41323 -0.826453,-0.72316 m 3.51237,2.16943 h -0.413226 l -0.516519,-0.1033 -0.309907,-0.20661 -0.4132,-0.20661 m 0.516493,-0.61984 -1.342945,-1.03307 m 0.826452,1.54961 c 0.206587,-0.10331 0.4132,-0.41322 0.516493,-0.61983 m 0,0.10329 0.309933,0.10332 0.309907,0.20661 h 0.413226 l 0.413226,0.1033 m 4.545436,-0.41323 0.206613,0.20661 0.10332,0.20662 0.103293,0.10331 v 0.1033 m -1.549585,0.51652 h -3.71901 m 5.268595,-0.51652 -0.309906,0.20661 -0.413226,0.20661 -0.413227,0.1033 h -0.413226 m -0.309906,-0.72313 h -3.099171 m 3.409077,0.72313 -0.103293,-0.1033 v -0.20661 l -0.10332,-0.20661 -0.103293,-0.20661 m 0,0 0.413226,-0.1033 h 0.309906 l 0.413227,-0.20661 0.309906,-0.10332 m 60.123779,0.41323 -0.10329,0.3099 -0.10332,0.20661 v 0.10332 l -0.10329,0.1033 m -1.65288,-0.51652 -0.51652,-0.51652 -0.51652,-0.41323 -0.72316,-0.72316 m 3.40908,2.16943 h -0.4132 l -0.41323,-0.1033 -0.41322,-0.20661 -0.41323,-0.20661 m 0.51655,-0.61984 -1.34298,-1.03307 m 0.92975,1.54961 c 0.10329,-0.10331 0.30991,-0.41322 0.41323,-0.61983 m 0,0.10329 0.3099,0.10332 0.41323,0.20661 h 0.30988 l 0.41322,0.1033 m 4.54547,-0.41323 0.20661,0.20661 0.10329,0.20662 0.10332,0.10331 0.1033,0.1033 m -1.65288,0.51652 h -3.71901 m 5.37189,-0.51652 -0.4132,0.20661 -0.41323,0.20661 -0.41323,0.1033 h -0.41322 m -0.30993,-0.72313 h -3.09918 m 3.40911,0.72313 v -0.1033 l -0.10332,-0.20661 v -0.20661 l -0.20661,-0.20661 m 0,0 0.41322,-0.1033 h 0.41323 l 0.30993,-0.20661 0.30991,-0.10332 m 61.57008,0.41323 -0.10332,0.3099 -0.1033,0.20661 -0.10332,0.10332 v 0.1033 m -1.65287,-0.51652 -0.51654,-0.51652 -0.51652,-0.41323 -0.82644,-0.72316 m 3.51237,2.16943 h -0.41322 l -0.51652,-0.1033 -0.3099,-0.20661 -0.41323,-0.20661 m 0.51652,-0.61984 -1.34297,-1.03307 m 0.92974,1.54961 c 0.10332,-0.10331 0.30994,-0.41322 0.41323,-0.61983 m 0,0.10329 0.30993,0.10332 0.30991,0.20661 h 0.41322 l 0.41323,0.1033 m 74.79319,-77.995652 0.82642,-0.929772 M 287.44756,151.1876 V 90.650568 m 0.82642,-0.516546 v 60.640358 m -0.41323,0.41322 c 0.30994,0 0.41323,-0.20661 0.41323,-0.51654 m -0.41323,0.51654 h -0.41319 m 0,-60.537032 0.51651,-0.413226 0.20662,-0.10332 h 0.10329 m 0,-10.433817 -0.82642,-0.929746 m 0,0 V 18.233423 m 0,0 h 0.41319 m 0.41323,0.413226 c 0,-0.309933 -0.10329,-0.413226 -0.41323,-0.413226 m 0.41323,0.413226 v 60.64033 m 0,0 h -0.10329 l -0.20662,-0.10332 -0.51651,-0.4132 M 15.857387,79.700205 V 10.69211 m 0.103294,77.479127 v 1.549559 m -0.103294,-1.446239 v -7.128113 m 0.103294,-1.549559 v 1.446266 m -3.409051,5.681821 v -4.028943 m 0,0 0.413227,-0.516519 0.309906,-0.51652 0.723133,-0.723159 0.619813,-0.619813 0.206613,-0.10332 0.413226,-0.206613 0.206613,-0.103267 0.206613,-0.10332 0.206613,-0.103293 m -1.962785,3.40905 0.4132,-0.516519 0.309907,-0.413226 0.619839,-0.51652 0.206613,-0.309933 0.206613,-0.103293 0.206613,-0.10332 m -1.962785,5.165302 -0.206613,0.103293 h -0.206613 l -0.309906,0.10332 -0.61984,0.206613 M 15.857387,89.720796 15.650774,89.617503 15.444161,89.514209 15.237548,89.41089 14.824322,89.204303 14.617709,88.99769 13.997896,88.48117 13.274763,87.758038 12.964857,87.241491 12.55163,86.724972 m 1.342972,-3.615717 h -0.206613 l -0.206613,-0.103293 -0.309906,-0.10332 -0.61984,-0.206613 m 1.342972,3.615717 v -3.202491 m 1.962785,5.165302 -0.206613,-0.206613 -0.206613,-0.10332 -0.206613,-0.206586 -0.619839,-0.516547 -0.309907,-0.413226 -0.4132,-0.516519 M 11.105338,77.117554 V 18.646649 m 0,73.656798 -1.5495848,-2.066105 m 0,-11.156976 0.7231588,-1.033066 0.826426,-0.929746 m 0,0 0.309933,-0.309906 0.103294,-0.10332 m -1.136359,4.442116 1.136359,-1.446239 m 0,10.020591 -1.136359,-1.549559 m 1.136359,4.545436 -0.103294,-0.103293 -0.309933,-0.309933 m -0.619839,-4.13221 c -0.6198128,0.516546 -0.9297458,1.342972 -0.826426,2.066105 m 0,-11.156976 c -0.1033198,0.723132 0.2066132,1.549558 0.826426,2.066078 m -0.103293,7.024793 v -7.024793 m 1.136359,8.574352 0.929745,0.929772 m 0,0 V 151.1876 m 0,0 h -0.516519 m -0.413226,-0.51654 c 0,0.30993 0.206613,0.51654 0.516546,0.51654 m -0.516546,-0.41322 V 90.134022 m 0,0 h 0.103319 l 0.206614,0.10332 0.619812,0.413226 m 0,-11.880109 -0.929745,0.929746 M 12.44831,18.233423 v 60.537036 m -0.929745,0.51652 v -60.64033 m 0.516546,-0.413226 c -0.309933,0 -0.516546,0.103293 -0.516546,0.413226 m 0.413226,-0.413226 h 0.516519 m 0,60.537036 -0.619812,0.4132 -0.206614,0.10332 H 11.518565 M 22.572274,2.221078 C 20.816076,1.3946255 18.853264,1.2913322 16.993746,2.0144649 15.237548,2.7375976 13.791309,4.1838894 13.06815,5.9400613 m 0,0.1032933 V 18.130103 m 0,133.160797 v 12.08675 m 0,-0.1033 c 0.723159,1.85947 2.169398,3.30576 3.925596,4.02889 1.859518,0.72314 3.82233,0.61984 5.578528,-0.20661 M 286.82772,18.130103 V 6.0433546 m 0,-0.1032933 C 286.10456,4.1838894 284.6583,2.7375976 282.9021,2.0144649 281.04259,1.2913322 279.07979,1.3946255 277.32359,2.221078 m 0,164.875552 c 1.7562,0.82645 3.719,0.92975 5.57851,0.20661 1.7562,-0.72313 3.20246,-2.16942 3.92562,-4.02889 m 0,0.1033 V 151.2909 m -257.953838,5.88841 v -0.20662 M 82.179512,17.097064 h -0.206613 m 0.206613,140.082246 -0.206613,-0.20662 M 82.902644,17.097064 h 0.206614 M 136.00169,157.17931 v -0.20662 m -53.099046,0.20662 0.206614,-0.20662 m 52.892432,0.72314 v -0.30991 m -8.57438,0.30991 h 8.57438 m -8.98758,0.20661 H 37.96478 m 0,0 h -0.413226 m 89.875756,0 h -0.4132 m -89.462556,0 h -5.061956 m 99.999692,0 h -5.06198 m -89.875756,-0.20661 v -0.30991 m -8.677672,0.30991 h 8.677672 m 89.462556,0 v -0.30991 m 0,0.30991 h 0.4132 m -89.875756,0 h 0.413226 m 0,0 h 89.04933 m 5.47518,0.20661 c 1.96281,0 3.61572,-0.10329 3.61572,-0.20661 m -107.127808,0 c 0,0.10332 1.549585,0.20661 3.512396,0.20661 m 5.165249,-0.20661 v 0.20661 m 0.309933,-0.20661 v 0.20661 m 89.04933,-0.20661 v 0.20661 m 0.4132,0 v -0.20661 M 82.902644,26.187936 V 157.17931 m 0,-131.404601 v 0.413227 m 0,-5.578475 v 5.165248 m -0.206613,-8.677645 h -0.4132 m 0.4132,8.677645 v -8.677645 m 0,9.090872 h -0.4132 m 0.4132,0 v -0.413227 m 0,131.301281 c 0,0.10332 0.10332,0.20661 0.206613,0.20661 m 44.111466,0.10332 H 82.902644 m -0.206613,-0.20661 V 26.187936 M 127.42731,157.17931 h 5.06198 m -5.47518,0 h 0.4132 m -44.524666,0 h 44.111466 m 0.4132,0.20661 v 0.30991 m 0,-0.30991 h -0.4132 m 8.98758,0 h -8.57438 M 82.902644,20.609461 c 0,-1.962812 -0.103293,-3.512397 -0.206613,-3.512397 M 136.10501,157.2826 c 0,-0.10329 -1.65291,-0.10329 -3.61572,-0.10329 M 82.902644,17.097064 v 3.512397 M 136.00169,157.17931 h -3.5124 m -5.06198,0.10329 v -0.10329 m -0.4132,0.20661 v -0.20661 m -44.111466,0.20661 v -0.20661 m -0.206613,0 h 0.206613 M 82.696031,26.187936 h 0.206613 m 0,-0.51652 H 82.696031 M 37.96478,157.17931 h 44.214732 m -44.627958,0 h 0.413226 m -5.475182,0 h 5.061956 m -8.677672,0.20661 v 0.30991 m 8.677672,-0.30991 h -8.677672 m 9.090898,0 v 0.30991 m 0,-0.30991 h -0.413226 m 44.627958,-0.10332 c 0.103319,0 0.206613,-0.10329 0.206613,-0.20661 M 82.282831,26.187936 V 157.17931 m -0.103319,0.20661 H 37.96478 M 82.179512,25.774709 v -5.165248 m 0,5.578475 v -0.413227 m 0,131.404601 V 26.187936 m 0.103319,-0.413227 h 0.4132 m -0.4132,0 v 0.413227 m 0,-9.090872 v 8.677645 M 32.489598,157.17931 c -1.962811,0 -3.512396,0 -3.512396,0.10329 M 82.282831,17.097064 c -0.103319,0 -0.103319,1.549585 -0.103319,3.512397 M 28.873882,157.17931 h 3.615716 M 82.179512,17.097064 v 3.512397 m 0.103319,5.061955 h -0.103319 m 0.103319,0.51652 h -0.103319 m 0.103319,130.991374 h -0.103319 m 0,0.20661 v -0.20661 m -44.214732,0.20661 v -0.20661 m -0.309933,0 v 0.10329 M 299.8442,25.25819 v 118.80133 m -7.02477,7.12808 H 288.6872 M 0.05165544,144.05952 V 119.05957 M 7.0764222,18.233423 H 11.105338 M 0.05165544,144.05952 h 0.41322625 m 6.61154051,6.71486 H 11.105338 M 0.46488169,144.05952 c 0,3.61569 2.99585061,6.61154 6.71483391,6.61154 m -7.12806016,-6.61154 c 0,3.92559 3.20249016,7.12808 7.12806016,7.12808 m -0.1032934,-0.41322 v 0.41322 M 0.46488169,25.25819 v 74.276637 m 0,-74.276637 H 0.05165544 M 7.1797156,18.130103 c -3.92557,0 -7.12806016,3.20249 -7.12806016,7.128087 M 7.1797156,18.646649 c -3.7189833,0 -6.71483391,2.892557 -6.71483391,6.611541 M 7.0764222,18.233423 v 0.413226 M 299.8442,25.25819 h -0.41322 m -6.61155,-6.611541 h -4.13223 m 10.74378,6.611541 c 0,-3.718984 -2.99587,-6.611541 -6.61155,-6.611541 m 7.12806,6.611541 c 0,-3.925597 -3.20245,-7.128087 -7.12806,-7.128087 m 0,0.516546 v -0.413226 m 6.61155,125.826097 V 25.25819 m 0,118.80133 h 0.41322 m -7.02477,6.61154 c 3.61568,0 6.61155,-2.99585 6.61155,-6.61154 m -6.61155,7.12808 c 3.92561,0 7.12806,-3.20249 7.12806,-7.12808 m -7.12806,7.12808 v -0.41322 M 291.68307,34.142448 c 0,1.446292 1.13636,2.685944 2.58264,2.685944 m 0.51652,0 h -0.51652 m -2.68596,-2.685944 V 28.87388 m 3.20248,7.954512 c 1.44629,0 2.68594,-1.239652 2.68594,-2.685944 m -3.20246,-7.954512 c -1.44628,0 -2.58264,1.136359 -2.58264,2.58265 m 5.7851,0.103294 v 5.268568 m -3.20246,-7.954512 h 0.51652 m 2.68594,2.58265 c 0,-1.446291 -1.23965,-2.58265 -2.68594,-2.58265 m 2.27271,2.58265 c 0,-1.136359 -1.03303,-2.169424 -2.27271,-2.169424 m 0,0 h -0.51652 m 2.78923,7.541286 V 28.87388 m -2.78923,-2.272718 c -1.13638,0 -2.16941,1.033065 -2.16941,2.169424 m 2.68593,7.541287 c 1.23968,0 2.27271,-1.033066 2.27271,-2.169425 M 292.0963,28.87388 v 5.268568 m 2.16941,2.272745 h 0.51652 m -2.68593,-2.272745 c 0,1.136359 1.03303,2.169425 2.16941,2.169425 m -2.68596,-2.169425 h 0.51655 m 2.16941,2.272745 v 0.413199 m -2.68596,-7.954512 h 0.51655 m 2.68593,7.541313 v 0.413199 m -0.51652,-10.640456 v 0.413226 m 2.78923,7.541286 h 0.41323 m -2.68594,-7.954512 v 0.413226 m 2.27271,2.272718 h 0.41323 m -3.20246,103.71873 c -1.44628,0 -2.58264,1.13636 -2.58264,2.58265 m -0.10332,5.37186 v -5.26857 m 2.68596,-2.68594 h 0.51652 m -3.09916,7.95451 c 0,1.44629 1.13636,2.68595 2.58264,2.68595 m 3.20246,-8.05781 c 0,-1.44629 -1.23965,-2.58265 -2.68594,-2.58265 m 0,10.64046 h -0.51652 m 3.20246,-7.95452 v 5.26857 m -2.68594,2.68595 c 1.44629,0 2.68594,-1.23966 2.68594,-2.68595 m -2.68594,2.16943 c 1.23968,0 2.27271,-1.03307 2.27271,-2.16943 m 0,0 v -5.26857 m -2.78923,7.54129 h 0.51652 m 2.27271,-7.64458 c 0,-1.13639 -1.03303,-2.16942 -2.27271,-2.16942 m -2.68593,7.54128 c 0,1.13636 1.03303,2.16943 2.16941,2.16943 m 0.51652,-9.71071 h -0.51652 m -2.16941,2.27271 v 5.26857 m 2.16941,-7.54128 c -1.13638,0 -2.16941,1.03303 -2.16941,2.16942 m 2.16941,-2.58265 v 0.41323 m -2.16941,2.27271 h -0.51655 m 3.20248,-2.68594 v 0.41323 m -2.68593,7.54128 h -0.51655 m 5.88842,-5.26857 h -0.41323 m -2.78923,7.54129 v 0.41323 m 3.20246,-2.68595 h -0.41323 m -2.27271,2.27272 v 0.41323 M 2.4276931,34.142448 c 0,1.446292 1.2396523,2.685944 2.6859177,2.685944 m 0.5165196,0 H 5.1136108 M 2.4276931,34.142448 V 28.87388 m 3.2024373,7.954512 c 1.4462918,0 2.6859706,-1.239652 2.6859706,-2.685944 M 5.1136108,26.187936 c -1.4462654,0 -2.6859177,1.136359 -2.6859177,2.58265 m 5.7850881,0.103294 v 5.268568 M 5.1136108,26.187936 h 0.5165196 m 2.6859706,2.58265 c 0,-1.446291 -1.2396788,-2.58265 -2.6859706,-2.58265 m 2.1694245,2.58265 c 0,-1.136359 -0.9297458,-2.169424 -2.1694245,-2.169424 m 0,0 H 5.1136108 m 2.6859441,7.541286 V 28.87388 M 5.1136108,26.601162 c -1.1363325,0 -2.1693981,1.033065 -2.1693981,2.169424 m 2.6859177,7.541287 c 1.2396787,0 2.1694245,-1.033066 2.1694245,-2.169425 M 2.8409194,28.87388 v 5.268568 m 2.2726914,2.272745 H 5.6301304 M 2.9442127,34.142448 c 0,1.136359 1.0330656,2.169425 2.1693981,2.169425 M 2.4276931,34.142448 h 0.4132263 m 2.2726914,2.272745 v 0.413199 M 2.4276931,28.87388 h 0.4132263 m 2.789211,7.541313 v 0.413199 M 5.1136108,26.187936 v 0.413226 m 2.6859441,7.541286 H 8.2127812 M 5.6301304,26.187936 v 0.413226 M 7.7995549,28.87388 H 8.2127812 M 5.1136108,132.59261 c -1.4462654,0 -2.6859177,1.13636 -2.6859177,2.58265 m 0,5.37186 v -5.26857 m 2.6859177,-2.68594 h 0.5165196 m -3.2024373,7.95451 c 0,1.44629 1.2396523,2.68595 2.6859177,2.68595 m 3.2024902,-8.05781 c 0,-1.44629 -1.2396788,-2.58265 -2.6859706,-2.58265 m 0,10.64046 H 5.1136108 m 3.0991704,-7.95452 v 5.26857 m -2.5826508,2.68595 c 1.4462918,0 2.6859706,-1.23966 2.6859706,-2.68595 m -2.6859706,2.16943 c 1.2396787,0 2.1694245,-1.03307 2.1694245,-2.16943 m 0,0 v -5.26857 m -2.6859441,7.54129 h 0.5165196 m 2.1694245,-7.64458 c 0,-1.13639 -0.9297458,-2.16942 -2.1694245,-2.16942 m -2.6859177,7.54128 c 0,1.13636 1.0330656,2.16943 2.1693981,2.16943 m 0.5165196,-9.71071 H 5.1136108 m -2.2726914,2.27271 v 5.26857 m 2.2726914,-7.54128 c -1.1363325,0 -2.1693981,1.03303 -2.1693981,2.16942 m 2.1693981,-2.58265 v 0.41323 m -2.2726914,2.27271 H 2.4276931 m 3.2024373,-2.68594 v 0.41323 m -2.789211,7.54128 H 2.4276931 m 5.7850881,-5.26857 H 7.7995549 m -2.6859441,7.54129 v 0.41323 m 3.0991704,-2.68595 H 7.7995549 m -2.1694245,2.27272 v 0.41323 M 290.3401,89.927409 V 79.390272 m -280.7843468,0 V 89.927409 M 33.212704,80.216698 c 2.376038,0.61984 4.855369,-0.4132 5.991728,-2.479304 1.239679,-2.066132 0.826453,-4.752076 -0.826426,-6.404954 -1.652905,-1.652879 -4.338849,-2.066105 -6.404954,-0.826426 -2.066105,1.136332 -3.09917,3.615663 -2.479331,5.991701 m 3.718983,36.466835 c 2.376038,0.61984 4.855369,-0.41323 5.991728,-2.47933 1.239679,-2.06611 0.826453,-4.64873 -0.826426,-6.30164 -1.652905,-1.7562 -4.338849,-2.0661 -6.404954,-0.92974 -2.066105,1.23968 -3.09917,3.71901 -2.479331,5.9917 m 35.64038,3.71901 c 2.376038,0.61984 4.855395,-0.41323 5.991728,-2.47933 1.239652,-2.06611 0.826452,-4.64873 -0.826426,-6.30164 -1.652905,-1.7562 -4.338849,-2.0661 -6.404954,-0.92974 -2.066131,1.23968 -3.099144,3.71901 -2.479331,5.9917 m 3.718983,36.57018 c 2.376038,0.61981 4.855395,-0.41323 5.991728,-2.47933 1.239652,-2.06614 0.826452,-4.75208 -0.826426,-6.40496 -1.652905,-1.65288 -4.338849,-2.0661 -6.404954,-0.82642 -2.066131,1.13633 -3.099144,3.61566 -2.479331,5.9917 M 97.055524,47.365582 c 2.376011,0.619813 4.855346,-0.413226 5.991706,-2.479357 1.23967,-2.066105 0.82645,-4.648729 -0.82646,-6.301608 -1.65288,-1.756225 -4.338793,-2.066131 -6.404925,-0.929772 -2.066104,1.239679 -3.09917,3.71901 -2.479331,5.991727 m 3.71901,36.570126 c 2.376011,0.61984 4.855346,-0.4132 5.991706,-2.479304 1.23967,-2.066132 0.82645,-4.752076 -0.82646,-6.404954 -1.65288,-1.652879 -4.338793,-2.066105 -6.404925,-0.826426 -2.066104,1.136332 -3.09917,3.615663 -2.479331,5.991701 m 3.71901,36.466835 c 2.376011,0.61984 4.855346,-0.41323 5.991706,-2.47933 1.23967,-2.06611 0.82645,-4.64873 -0.82646,-6.30164 -1.65288,-1.7562 -4.338793,-2.0661 -6.404925,-0.92974 -2.066104,1.23968 -3.09917,3.71901 -2.479331,5.9917 m 3.71901,36.57018 c 2.376011,0.61981 4.855346,-0.41323 5.991706,-2.47933 1.23967,-2.06614 0.82645,-4.75208 -0.82646,-6.40496 -1.65288,-1.65288 -4.338793,-2.0661 -6.404925,-0.82642 -2.066104,1.13633 -3.09917,3.61566 -2.479331,5.9917 M 128.97689,47.365582 c 2.37604,0.619813 4.85537,-0.413226 5.99176,-2.479357 1.23965,-2.066105 0.82642,-4.648729 -0.82645,-6.301608 -1.65291,-1.756225 -4.33885,-2.066131 -6.40496,-0.929772 -2.0661,1.239679 -3.09914,3.71901 -2.47933,5.991727 m 3.71898,36.570126 c 2.37604,0.61984 4.85537,-0.4132 5.99176,-2.479304 1.23965,-2.066132 0.82642,-4.752076 -0.82645,-6.404954 -1.65291,-1.652879 -4.33885,-2.066105 -6.40496,-0.826426 -2.0661,1.136332 -3.09914,3.615663 -2.47933,5.991701 m 3.71898,36.466835 c 2.37604,0.61984 4.85537,-0.41323 5.99176,-2.47933 1.23965,-2.06611 0.82642,-4.64873 -0.82645,-6.30164 -1.65291,-1.7562 -4.33885,-2.0661 -6.40496,-0.92974 -2.0661,1.23968 -3.09914,3.71901 -2.47933,5.9917 m 3.71898,36.57018 c 2.37604,0.61981 4.85537,-0.41323 5.99176,-2.47933 1.23965,-2.06614 0.82642,-4.75208 -0.82645,-6.40496 -1.65291,-1.65288 -4.33885,-2.0661 -6.40496,-0.82642 -2.0661,1.13633 -3.09914,3.61566 -2.47933,5.9917 m 35.64041,-94.731128 c 2.27272,0.619813 4.75202,-0.413226 5.9917,-2.479357 1.13636,-2.066105 0.82645,-4.648729 -0.92975,-6.301608 -1.65288,-1.756225 -4.2355,-2.066131 -6.30163,-0.929772 -2.06611,1.239679 -3.09917,3.71901 -2.47933,5.991727 m 3.71901,36.570126 c 2.27272,0.61984 4.75202,-0.4132 5.9917,-2.479304 1.13636,-2.066132 0.82645,-4.752076 -0.92975,-6.404954 -1.65288,-1.652879 -4.2355,-2.066105 -6.30163,-0.826426 -2.06611,1.136332 -3.09917,3.615663 -2.47933,5.991701 m 3.71901,36.466835 c 2.27272,0.61984 4.75202,-0.41323 5.9917,-2.47933 1.13636,-2.06611 0.82645,-4.64873 -0.92975,-6.30164 -1.65288,-1.7562 -4.2355,-2.0661 -6.30163,-0.92974 -2.06611,1.23968 -3.09917,3.71901 -2.47933,5.9917 m 3.71901,36.57018 c 2.27272,0.61981 4.75202,-0.41323 5.9917,-2.47933 1.13636,-2.06614 0.82645,-4.75208 -0.92975,-6.40496 -1.65288,-1.65288 -4.2355,-2.0661 -6.30163,-0.82642 -2.06611,1.13633 -3.09917,3.61566 -2.47933,5.9917 m 35.6404,-94.731128 c 2.27272,0.619813 4.75205,-0.413226 5.99172,-2.479357 1.13635,-2.066105 0.82644,-4.648729 -0.92976,-6.301608 -1.65288,-1.756225 -4.23552,-2.066131 -6.30163,-0.929772 -2.06611,1.239679 -3.09916,3.71901 -2.47933,5.991727 m 3.719,36.570126 c 2.27272,0.61984 4.75205,-0.4132 5.99172,-2.479304 1.13635,-2.066132 0.82644,-4.752076 -0.92976,-6.404954 -1.65288,-1.652879 -4.23552,-2.066105 -6.30163,-0.826426 -2.06611,1.136332 -3.09916,3.615663 -2.47933,5.991701 m 3.719,36.466835 c 2.27272,0.61984 4.75205,-0.41323 5.99172,-2.47933 1.13635,-2.06611 0.82644,-4.64873 -0.92976,-6.30164 -1.65288,-1.7562 -4.23552,-2.0661 -6.30163,-0.92974 -2.06611,1.23968 -3.09916,3.71901 -2.47933,5.9917 m 3.719,36.57018 c 2.27272,0.61981 4.75205,-0.41323 5.99172,-2.47933 1.13635,-2.06614 0.82644,-4.75208 -0.92976,-6.40496 -1.65288,-1.65288 -4.23552,-2.0661 -6.30163,-0.82642 -2.06611,1.13633 -3.09916,3.61566 -2.47933,5.9917 m 35.6404,-94.731128 c 2.27271,0.619813 4.75203,-0.413226 5.99171,-2.479357 1.13636,-2.066105 0.82645,-4.648729 -0.92974,-6.301608 -1.6529,-1.756225 -4.23552,-2.066131 -6.30165,-0.929772 -2.06609,1.239679 -3.09916,3.71901 -2.47932,5.991727 m 3.719,36.570126 c 2.27271,0.61984 4.75203,-0.4132 5.99171,-2.479304 1.13636,-2.066132 0.82645,-4.752076 -0.92974,-6.404954 -1.6529,-1.652879 -4.23552,-2.066105 -6.30165,-0.826426 -2.06609,1.136332 -3.09916,3.615663 -2.47932,5.991701 m 3.719,36.466835 c 2.27271,0.61984 4.75203,-0.41323 5.99171,-2.47933 1.13636,-2.06611 0.82645,-4.64873 -0.92974,-6.30164 -1.6529,-1.7562 -4.23552,-2.0661 -6.30165,-0.92974 -2.06609,1.23968 -3.09916,3.71901 -2.47932,5.9917 m 3.719,36.57018 c 2.27271,0.61981 4.75203,-0.41323 5.99171,-2.47933 1.13636,-2.06614 0.82645,-4.75208 -0.92974,-6.40496 -1.6529,-1.65288 -4.23552,-2.0661 -6.30165,-0.82642 -2.06609,1.13633 -3.09916,3.61566 -2.47932,5.9917 m 35.64038,-94.731128 c 2.27274,0.619813 4.75207,-0.413226 5.99175,-2.479357 1.13635,-2.066105 0.82642,-4.648729 -0.92977,-6.301608 -1.65288,-1.756225 -4.23553,-2.066131 -6.30162,-0.929772 -2.06613,1.239679 -3.09919,3.71901 -2.47935,5.991727 m 3.71899,36.570126 c 2.27274,0.61984 4.75207,-0.4132 5.99175,-2.479304 1.13635,-2.066132 0.82642,-4.752076 -0.92977,-6.404954 -1.65288,-1.652879 -4.23553,-2.066105 -6.30162,-0.826426 -2.06613,1.136332 -3.09919,3.615663 -2.47935,5.991701 m 3.71899,36.466835 c 2.27274,0.61984 4.75207,-0.41323 5.99175,-2.47933 1.13635,-2.06611 0.82642,-4.64873 -0.92977,-6.30164 -1.65288,-1.7562 -4.23553,-2.0661 -6.30162,-0.92974 -2.06613,1.23968 -3.09919,3.71901 -2.47935,5.9917 m 3.71899,36.57018 c 2.27274,0.61981 4.75207,-0.41323 5.99175,-2.47933 1.13635,-2.06614 0.82642,-4.75208 -0.92977,-6.40496 -1.65288,-1.65288 -4.23553,-2.0661 -6.30162,-0.82642 -2.06613,1.13633 -3.09919,3.61566 -2.47935,5.9917 M 33.419318,145.2992 c 2.066104,0.51652 4.235529,-0.30994 5.371888,-2.27275 1.033065,-1.85949 0.723159,-4.23553 -0.826426,-5.68182 -1.446292,-1.54956 -3.82233,-1.85946 -5.681795,-0.82642 -1.962811,1.13635 -2.789264,3.30578 -2.272744,5.37188 M 83.109258,12.448308 V 156.97269 m 0,0 H 275.67072 M 104.2869,42.3036 c 0,-3.202463 -2.58265,-5.785114 -5.78511,-5.785114 -3.202464,0 -5.785115,2.582651 -5.785115,5.785114 0,3.202464 2.582651,5.785115 5.785115,5.785115 3.20246,0 5.78511,-2.582651 5.78511,-5.785115 m -6.508243,-9.607391 c 0,-1.033065 -0.929746,-1.962811 -1.962812,-1.962811 -1.136358,0 -1.962811,0.929746 -1.962811,1.962811 0,1.136333 0.826453,2.066079 1.962811,2.066079 1.033066,0 1.962812,-0.929746 1.962812,-2.066079 M 136.2083,42.3036 c 0,-3.202463 -2.58262,-5.785114 -5.78511,-5.785114 -3.20249,0 -5.78509,2.582651 -5.78509,5.785114 0,3.202464 2.5826,5.785115 5.78509,5.785115 3.20249,0 5.78511,-2.582651 5.78511,-5.785115 m 31.81808,0 c 0,-3.202463 -2.58265,-5.785114 -5.78509,-5.785114 -3.20249,0 -5.68182,2.582651 -5.68182,5.785114 0,3.202464 2.47933,5.785115 5.68182,5.785115 3.20244,0 5.78509,-2.582651 5.78509,-5.785115 m 31.9214,0 c 0,-3.202463 -2.58263,-5.785114 -5.7851,-5.785114 -3.20247,0 -5.6818,2.582651 -5.6818,5.785114 0,3.202464 2.47933,5.785115 5.6818,5.785115 3.20247,0 5.7851,-2.582651 5.7851,-5.785115 m 31.9214,0 c 0,-3.202463 -2.58262,-5.785114 -5.7851,-5.785114 -3.20248,0 -5.7851,2.582651 -5.7851,5.785114 0,3.202464 2.58262,5.785115 5.7851,5.785115 3.20248,0 5.7851,-2.582651 5.7851,-5.785115 m 31.92141,0 c 0,-3.202463 -2.58265,-5.785114 -5.78513,-5.785114 -3.20245,0 -5.78509,2.582651 -5.78509,5.785114 0,3.202464 2.58264,5.785115 5.78509,5.785115 3.20248,0 5.78513,-2.582651 5.78513,-5.785115 M 104.2869,75.05145 c 0,-3.202491 -2.58265,-5.681795 -5.78511,-5.681795 -3.202464,0 -5.785115,2.479304 -5.785115,5.681795 0,3.202463 2.582651,5.785088 5.785115,5.785088 3.20246,0 5.78511,-2.582625 5.78511,-5.785088 m 31.9214,0 c 0,-3.202491 -2.58262,-5.681795 -5.78511,-5.681795 -3.20249,0 -5.78509,2.479304 -5.78509,5.681795 0,3.202463 2.5826,5.785088 5.78509,5.785088 3.20249,0 5.78511,-2.582625 5.78511,-5.785088 m 31.81808,0 c 0,-3.202491 -2.58265,-5.681795 -5.78509,-5.681795 -3.20249,0 -5.68182,2.479304 -5.68182,5.681795 0,3.202463 2.47933,5.785088 5.68182,5.785088 3.20244,0 5.78509,-2.582625 5.78509,-5.785088 m 31.9214,0 c 0,-3.202491 -2.58263,-5.681795 -5.7851,-5.681795 -3.20247,0 -5.6818,2.479304 -5.6818,5.681795 0,3.202463 2.47933,5.785088 5.6818,5.785088 3.20247,0 5.7851,-2.582625 5.7851,-5.785088 m 31.9214,0 c 0,-3.202491 -2.58262,-5.681795 -5.7851,-5.681795 -3.20248,0 -5.7851,2.479304 -5.7851,5.681795 0,3.202463 2.58262,5.785088 5.7851,5.785088 3.20248,0 5.7851,-2.582625 5.7851,-5.785088 m 31.92141,0 c 0,-3.202491 -2.58265,-5.681795 -5.78513,-5.681795 -3.20245,0 -5.78509,2.479304 -5.78509,5.681795 0,3.202463 2.58264,5.785088 5.78509,5.785088 3.20248,0 5.78513,-2.582625 5.78513,-5.785088 M 104.2869,107.90259 c 0,-3.20246 -2.58265,-5.78511 -5.78511,-5.78511 -3.202464,0 -5.785115,2.58265 -5.785115,5.78511 0,3.20247 2.582651,5.78512 5.785115,5.78512 3.20246,0 5.78511,-2.58265 5.78511,-5.78512 m 31.9214,0 c 0,-3.20246 -2.58262,-5.78511 -5.78511,-5.78511 -3.20249,0 -5.78509,2.58265 -5.78509,5.78511 0,3.20247 2.5826,5.78512 5.78509,5.78512 3.20249,0 5.78511,-2.58265 5.78511,-5.78512 m 31.81808,0 c 0,-3.20246 -2.58265,-5.78511 -5.78509,-5.78511 -3.20249,0 -5.68182,2.58265 -5.68182,5.78511 0,3.20247 2.47933,5.78512 5.68182,5.78512 3.20244,0 5.78509,-2.58265 5.78509,-5.78512 m 31.9214,0 c 0,-3.20246 -2.58263,-5.78511 -5.7851,-5.78511 -3.20247,0 -5.6818,2.58265 -5.6818,5.78511 0,3.20247 2.47933,5.78512 5.6818,5.78512 3.20247,0 5.7851,-2.58265 5.7851,-5.78512 m 31.9214,0 c 0,-3.20246 -2.58262,-5.78511 -5.7851,-5.78511 -3.20248,0 -5.7851,2.58265 -5.7851,5.78511 0,3.20247 2.58262,5.78512 5.7851,5.78512 3.20248,0 5.7851,-2.58265 5.7851,-5.78512 m 31.92141,0 c 0,-3.20246 -2.58265,-5.78511 -5.78513,-5.78511 -3.20245,0 -5.78509,2.58265 -5.78509,5.78511 0,3.20247 2.58264,5.78512 5.78509,5.78512 3.20248,0 5.78513,-2.58265 5.78513,-5.78512 M 104.2869,140.65044 c 0,-3.20249 -2.58265,-5.68179 -5.78511,-5.68179 -3.202464,0 -5.785115,2.4793 -5.785115,5.68179 0,3.20246 2.582651,5.78509 5.785115,5.78509 3.20246,0 5.78511,-2.58263 5.78511,-5.78509 m 31.9214,0 c 0,-3.20249 -2.58262,-5.68179 -5.78511,-5.68179 -3.20249,0 -5.78509,2.4793 -5.78509,5.68179 0,3.20246 2.5826,5.78509 5.78509,5.78509 3.20249,0 5.78511,-2.58263 5.78511,-5.78509 m 31.81808,0 c 0,-3.20249 -2.58265,-5.68179 -5.78509,-5.68179 -3.20249,0 -5.68182,2.4793 -5.68182,5.68179 0,3.20246 2.47933,5.78509 5.68182,5.78509 3.20244,0 5.78509,-2.58263 5.78509,-5.78509 m 31.9214,0 c 0,-3.20249 -2.58263,-5.68179 -5.7851,-5.68179 -3.20247,0 -5.6818,2.4793 -5.6818,5.68179 0,3.20246 2.47933,5.78509 5.6818,5.78509 3.20247,0 5.7851,-2.58263 5.7851,-5.78509 m 31.9214,0 c 0,-3.20249 -2.58262,-5.68179 -5.7851,-5.68179 -3.20248,0 -5.7851,2.4793 -5.7851,5.68179 0,3.20246 2.58262,5.78509 5.7851,5.78509 3.20248,0 5.7851,-2.58263 5.7851,-5.78509 m 31.92141,0 c 0,-3.20249 -2.58265,-5.68179 -5.78513,-5.68179 -3.20245,0 -5.78509,2.4793 -5.78509,5.68179 0,3.20246 2.58264,5.78509 5.78509,5.78509 3.20248,0 5.78513,-2.58263 5.78513,-5.78509 M 275.67072,12.448308 H 83.109258 m 193.491202,0.826453 c 0,-0.51652 -0.41322,-0.826453 -0.92974,-0.826453 m 0.82645,143.594642 V 13.378081 m -0.82645,143.594609 c 0.51652,0 0.92974,-0.41322 0.92974,-0.92974 M 97.778657,28.25404 c 0,-1.136359 -0.929746,-1.962811 -1.962812,-1.962811 -1.136358,0 -1.962811,0.826452 -1.962811,1.962811 0,1.033066 0.826453,1.962812 1.962811,1.962812 1.033066,0 1.962812,-0.929746 1.962812,-1.962812 m 0,-4.545435 c 0,-1.03304 -0.929746,-1.962785 -1.962812,-1.962785 -1.136358,0 -1.962811,0.929745 -1.962811,1.962785 0,1.136359 0.826453,2.066104 1.962811,2.066104 1.033066,0 1.962812,-0.929745 1.962812,-2.066104 m 0,-4.442143 c 0,-1.136359 -0.929746,-1.962785 -1.962812,-1.962785 -1.136358,0 -1.962811,0.826426 -1.962811,1.962785 0,1.033066 0.826453,1.962812 1.962811,1.962812 1.033066,0 1.962812,-0.929746 1.962812,-1.962812 m 31.921393,13.429747 c 0,-1.033065 -0.92977,-1.962811 -2.06613,-1.962811 -1.03301,0 -1.96278,0.929746 -1.96278,1.962811 0,1.136333 0.92977,2.066079 1.96278,2.066079 1.13636,0 2.06613,-0.929746 2.06613,-2.066079 m 0,-4.442169 c 0,-1.136359 -0.92977,-1.962811 -2.06613,-1.962811 -1.03301,0 -1.96278,0.826452 -1.96278,1.962811 0,1.033066 0.92977,1.962812 1.96278,1.962812 1.13636,0 2.06613,-0.929746 2.06613,-1.962812 m 31.9214,4.442169 c 0,-1.033065 -0.92975,-1.962811 -2.0661,-1.962811 -1.03307,0 -1.96282,0.929746 -1.96282,1.962811 0,1.136333 0.92975,2.066079 1.96282,2.066079 1.13635,0 2.0661,-0.929746 2.0661,-2.066079 m 0,-4.442169 c 0,-1.136359 -0.92975,-1.962811 -2.0661,-1.962811 -1.03307,0 -1.96282,0.826452 -1.96282,1.962811 0,1.033066 0.92975,1.962812 1.96282,1.962812 1.13635,0 2.0661,-0.929746 2.0661,-1.962812 m 31.92139,4.442169 c 0,-1.033065 -0.92975,-1.962811 -2.06611,-1.962811 -1.03305,0 -1.9628,0.929746 -1.9628,1.962811 0,1.136333 0.92975,2.066079 1.9628,2.066079 1.13636,0 2.06611,-0.929746 2.06611,-2.066079 m 0,-4.442169 c 0,-1.136359 -0.92975,-1.962811 -2.06611,-1.962811 -1.03305,0 -1.9628,0.826452 -1.9628,1.962811 0,1.033066 0.92975,1.962812 1.9628,1.962812 1.13636,0 2.06611,-0.929746 2.06611,-1.962812 m 31.81811,4.442169 c 0,-1.033065 -0.82645,-1.962811 -1.96281,-1.962811 -1.03306,0 -1.9628,0.929746 -1.9628,1.962811 0,1.136333 0.92974,2.066079 1.9628,2.066079 1.13636,0 1.96281,-0.929746 1.96281,-2.066079 m 0,-4.442169 c 0,-1.136359 -0.82645,-1.962811 -1.96281,-1.962811 -1.03306,0 -1.9628,0.826452 -1.9628,1.962811 0,1.033066 0.92974,1.962812 1.9628,1.962812 1.13636,0 1.96281,-0.929746 1.96281,-1.962812 m 31.92138,4.442169 c 0,-1.033065 -0.82645,-1.962811 -1.9628,-1.962811 -1.03307,0 -1.96281,0.929746 -1.96281,1.962811 0,1.136333 0.92974,2.066079 1.96281,2.066079 1.13635,0 1.9628,-0.929746 1.9628,-2.066079 m 0,-4.442169 c 0,-1.136359 -0.82645,-1.962811 -1.9628,-1.962811 -1.03307,0 -1.96281,0.826452 -1.96281,1.962811 0,1.033066 0.92974,1.962812 1.96281,1.962812 1.13635,0 1.9628,-0.929746 1.9628,-1.962812 M 129.70005,23.708605 c 0,-1.03304 -0.92977,-1.962785 -2.06613,-1.962785 -1.03301,0 -1.96278,0.929745 -1.96278,1.962785 0,1.136359 0.92977,2.066104 1.96278,2.066104 1.13636,0 2.06613,-0.929745 2.06613,-2.066104 m 0,-4.442143 c 0,-1.136359 -0.92977,-1.962785 -2.06613,-1.962785 -1.03301,0 -1.96278,0.826426 -1.96278,1.962785 0,1.033066 0.92977,1.962812 1.96278,1.962812 1.13636,0 2.06613,-0.929746 2.06613,-1.962812 m 31.9214,4.442143 c 0,-1.03304 -0.92975,-1.962785 -2.0661,-1.962785 -1.03307,0 -1.96282,0.929745 -1.96282,1.962785 0,1.136359 0.92975,2.066104 1.96282,2.066104 1.13635,0 2.0661,-0.929745 2.0661,-2.066104 m 0,-4.442143 c 0,-1.136359 -0.92975,-1.962785 -2.0661,-1.962785 -1.03307,0 -1.96282,0.826426 -1.96282,1.962785 0,1.033066 0.92975,1.962812 1.96282,1.962812 1.13635,0 2.0661,-0.929746 2.0661,-1.962812 m 31.92139,4.442143 c 0,-1.03304 -0.92975,-1.962785 -2.06611,-1.962785 -1.03305,0 -1.9628,0.929745 -1.9628,1.962785 0,1.136359 0.92975,2.066104 1.9628,2.066104 1.13636,0 2.06611,-0.929745 2.06611,-2.066104 m 0,-4.442143 c 0,-1.136359 -0.92975,-1.962785 -2.06611,-1.962785 -1.03305,0 -1.9628,0.826426 -1.9628,1.962785 0,1.033066 0.92975,1.962812 1.9628,1.962812 1.13636,0 2.06611,-0.929746 2.06611,-1.962812 m 31.81811,4.442143 c 0,-1.03304 -0.82645,-1.962785 -1.96281,-1.962785 -1.03306,0 -1.9628,0.929745 -1.9628,1.962785 0,1.136359 0.92974,2.066104 1.9628,2.066104 1.13636,0 1.96281,-0.929745 1.96281,-2.066104 m 0,-4.442143 c 0,-1.136359 -0.82645,-1.962785 -1.96281,-1.962785 -1.03306,0 -1.9628,0.826426 -1.9628,1.962785 0,1.033066 0.92974,1.962812 1.9628,1.962812 1.13636,0 1.96281,-0.929746 1.96281,-1.962812 m 31.92138,4.442143 c 0,-1.03304 -0.82645,-1.962785 -1.9628,-1.962785 -1.03307,0 -1.96281,0.929745 -1.96281,1.962785 0,1.136359 0.92974,2.066104 1.96281,2.066104 1.13635,0 1.9628,-0.929745 1.9628,-2.066104 m 0,-4.442143 c 0,-1.136359 -0.82645,-1.962785 -1.9628,-1.962785 -1.03307,0 -1.96281,0.826426 -1.96281,1.962785 0,1.033066 0.92974,1.962812 1.96281,1.962812 1.13635,0 1.9628,-0.929746 1.9628,-1.962812 m -96.07411,0 c 0,-0.929746 -0.72313,-1.549585 -1.65287,-1.549585 -0.82646,0 -1.54959,0.619839 -1.54959,1.549585 0,0.826453 0.72313,1.549612 1.54959,1.549612 0.92974,0 1.65287,-0.723159 1.65287,-1.549612 m -31.92139,13.429747 c 0,-0.826452 -0.72316,-1.549585 -1.65291,-1.549585 -0.82642,0 -1.54956,0.723133 -1.54956,1.549585 0,0.92972 0.72314,1.652852 1.54956,1.652852 0.92975,0 1.65291,-0.723132 1.65291,-1.652852 m 0,-4.442169 c 0,-0.929745 -0.72316,-1.549585 -1.65291,-1.549585 -0.82642,0 -1.54956,0.61984 -1.54956,1.549585 0,0.826453 0.72314,1.549586 1.54956,1.549586 0.92975,0 1.65291,-0.723133 1.65291,-1.549586 m 0,-4.545435 c 0,-0.826426 -0.72316,-1.549559 -1.65291,-1.549559 -0.82642,0 -1.54956,0.723133 -1.54956,1.549559 0,0.929745 0.72314,1.652878 1.54956,1.652878 0.92975,0 1.65291,-0.723133 1.65291,-1.652878 m 0,-4.442143 c 0,-0.929746 -0.72316,-1.549585 -1.65291,-1.549585 -0.82642,0 -1.54956,0.619839 -1.54956,1.549585 0,0.826453 0.72314,1.549612 1.54956,1.549612 0.92975,0 1.65291,-0.723159 1.65291,-1.549612 M 97.365431,32.696209 c 0,-0.826452 -0.723133,-1.549585 -1.549586,-1.549585 -0.929745,0 -1.549585,0.723133 -1.549585,1.549585 0,0.92972 0.61984,1.652852 1.549585,1.652852 0.826453,0 1.549586,-0.723132 1.549586,-1.652852 m 0,-4.442169 c 0,-0.929745 -0.723133,-1.549585 -1.549586,-1.549585 -0.929745,0 -1.549585,0.61984 -1.549585,1.549585 0,0.826453 0.61984,1.549586 1.549585,1.549586 0.826453,0 1.549586,-0.723133 1.549586,-1.549586 m 0,-4.545435 c 0,-0.826426 -0.723133,-1.549559 -1.549586,-1.549559 -0.929745,0 -1.549585,0.723133 -1.549585,1.549559 0,0.929745 0.61984,1.652878 1.549585,1.652878 0.826453,0 1.549586,-0.723133 1.549586,-1.652878 m -31.921397,8.987604 c 0,-0.826452 -0.723133,-1.549585 -1.549585,-1.549585 -0.929746,0 -1.652905,0.723133 -1.652905,1.549585 0,0.92972 0.723159,1.652852 1.652905,1.652852 0.826452,0 1.549585,-0.723132 1.549585,-1.652852 m 0,-4.442169 c 0,-0.929745 -0.723133,-1.549585 -1.549585,-1.549585 -0.929746,0 -1.652905,0.61984 -1.652905,1.549585 0,0.826453 0.723159,1.549586 1.652905,1.549586 0.826452,0 1.549585,-0.723133 1.549585,-1.549586 m 0,-4.545435 c 0,-0.826426 -0.723133,-1.549559 -1.549585,-1.549559 -0.929746,0 -1.652905,0.723133 -1.652905,1.549559 0,0.929745 0.723159,1.652878 1.652905,1.652878 0.826452,0 1.549585,-0.723133 1.549585,-1.652878 m 31.921397,-4.442143 c 0,-0.929746 -0.723133,-1.549585 -1.549586,-1.549585 -0.929745,0 -1.549585,0.619839 -1.549585,1.549585 0,0.826453 0.61984,1.549612 1.549585,1.549612 0.826453,0 1.549586,-0.723159 1.549586,-1.549612 M 45.919292,32.696209 c 0,-0.826452 -0.723132,-1.549585 -1.549585,-1.549585 -0.929746,0 -1.652905,0.723133 -1.652905,1.549585 0,0.92972 0.723159,1.652852 1.652905,1.652852 0.826453,0 1.549585,-0.723132 1.549585,-1.652852 m -5.371888,0 c 0,-0.826452 -0.723133,-1.549585 -1.549585,-1.549585 -0.929746,0 -1.652879,0.723133 -1.652879,1.549585 0,0.92972 0.723133,1.652852 1.652879,1.652852 0.826452,0 1.549585,-0.723132 1.549585,-1.652852 m 10.743777,0 c 0,-0.826452 -0.619813,-1.549585 -1.549586,-1.549585 -0.826426,0 -1.549585,0.723133 -1.549585,1.549585 0,0.92972 0.723159,1.652852 1.549585,1.652852 0.929773,0 1.549586,-0.723132 1.549586,-1.652852 M 193.12962,19.266462 c 0,-0.929746 -0.72313,-1.549585 -1.65289,-1.549585 -0.82644,0 -1.54958,0.619839 -1.54958,1.549585 0,0.826453 0.72314,1.549612 1.54958,1.549612 0.92976,0 1.65289,-0.723159 1.65289,-1.549612 m -31.9214,4.442143 c 0,-0.826426 -0.72313,-1.549559 -1.65287,-1.549559 -0.82646,0 -1.54959,0.723133 -1.54959,1.549559 0,0.929745 0.72313,1.652878 1.54959,1.652878 0.92974,0 1.65287,-0.723133 1.65287,-1.652878 m 0,4.545435 c 0,-0.929745 -0.72313,-1.549585 -1.65287,-1.549585 -0.82646,0 -1.54959,0.61984 -1.54959,1.549585 0,0.826453 0.72313,1.549586 1.54959,1.549586 0.92974,0 1.65287,-0.723133 1.65287,-1.549586 m 0,4.442169 c 0,-0.826452 -0.72313,-1.549585 -1.65287,-1.549585 -0.82646,0 -1.54959,0.723133 -1.54959,1.549585 0,0.92972 0.72313,1.652852 1.54959,1.652852 0.92974,0 1.65287,-0.723132 1.65287,-1.652852 m 31.9214,-8.987604 c 0,-0.826426 -0.72313,-1.549559 -1.65289,-1.549559 -0.82644,0 -1.54958,0.723133 -1.54958,1.549559 0,0.929745 0.72314,1.652878 1.54958,1.652878 0.92976,0 1.65289,-0.723133 1.65289,-1.652878 m 0,4.545435 c 0,-0.929745 -0.72313,-1.549585 -1.65289,-1.549585 -0.82644,0 -1.54958,0.61984 -1.54958,1.549585 0,0.826453 0.72314,1.549586 1.54958,1.549586 0.92976,0 1.65289,-0.723133 1.65289,-1.549586 m 0,4.442169 c 0,-0.826452 -0.72313,-1.549585 -1.65289,-1.549585 -0.82644,0 -1.54958,0.723133 -1.54958,1.549585 0,0.92972 0.72314,1.652852 1.54958,1.652852 0.92976,0 1.65289,-0.723132 1.65289,-1.652852 m 31.8181,-13.429747 c 0,-0.929746 -0.61984,-1.549585 -1.54958,-1.549585 -0.82645,0 -1.54958,0.619839 -1.54958,1.549585 0,0.826453 0.72313,1.549612 1.54958,1.549612 0.92974,0 1.54958,-0.723159 1.54958,-1.549612 m 31.92139,0 c 0,-0.929746 -0.61984,-1.549585 -1.54958,-1.549585 -0.82645,0 -1.54958,0.619839 -1.54958,1.549585 0,0.826453 0.72313,1.549612 1.54958,1.549612 0.92974,0 1.54958,-0.723159 1.54958,-1.549612 m -31.92139,4.442143 c 0,-0.826426 -0.61984,-1.549559 -1.54958,-1.549559 -0.82645,0 -1.54958,0.723133 -1.54958,1.549559 0,0.929745 0.72313,1.652878 1.54958,1.652878 0.92974,0 1.54958,-0.723133 1.54958,-1.652878 m 0,4.545435 c 0,-0.929745 -0.61984,-1.549585 -1.54958,-1.549585 -0.82645,0 -1.54958,0.61984 -1.54958,1.549585 0,0.826453 0.72313,1.549586 1.54958,1.549586 0.92974,0 1.54958,-0.723133 1.54958,-1.549586 m 0,4.442169 c 0,-0.826452 -0.61984,-1.549585 -1.54958,-1.549585 -0.82645,0 -1.54958,0.723133 -1.54958,1.549585 0,0.92972 0.72313,1.652852 1.54958,1.652852 0.92974,0 1.54958,-0.723132 1.54958,-1.652852 m 31.92139,-8.987604 c 0,-0.826426 -0.61984,-1.549559 -1.54958,-1.549559 -0.82645,0 -1.54958,0.723133 -1.54958,1.549559 0,0.929745 0.72313,1.652878 1.54958,1.652878 0.92974,0 1.54958,-0.723133 1.54958,-1.652878 m 0,4.545435 c 0,-0.929745 -0.61984,-1.549585 -1.54958,-1.549585 -0.82645,0 -1.54958,0.61984 -1.54958,1.549585 0,0.826453 0.72313,1.549586 1.54958,1.549586 0.92974,0 1.54958,-0.723133 1.54958,-1.549586 m 0,4.442169 c 0,-0.826452 -0.61984,-1.549585 -1.54958,-1.549585 -0.82645,0 -1.54958,0.723133 -1.54958,1.549585 0,0.92972 0.72313,1.652852 1.54958,1.652852 0.92974,0 1.54958,-0.723132 1.54958,-1.652852 M 102.53071,42.3036 c 0,-2.272718 -1.85952,-4.028916 -4.02892,-4.028916 -2.272718,0 -4.028917,1.756198 -4.028917,4.028916 0,2.169398 1.756199,4.028917 4.028917,4.028917 2.1694,0 4.02892,-1.859519 4.02892,-4.028917 M 8.6260074,93.336512 H 2.9442127 M 8.6260074,88.894396 H 2.9442127 m 5.2685685,9.814005 H 3.3574389 M 2.22108,104.3902 c -0.516546,1.54958 0.1032933,3.20249 1.3429721,4.1322 1.3429456,1.03307 3.0991439,1.03307 4.442116,0.10332 1.342972,-0.92974 1.8595181,-2.68594 1.342972,-4.23552 m 0,0.10332 -1.7561983,-5.785119 m -3.5123702,0 L 2.22108,104.3902 m 5.9917012,-5.681799 v -5.371889 m -4.8553423,0 v 5.371889 m 5.2685685,-5.371889 v -4.442116 m -5.6817947,0 v 4.442116 M 102.53071,75.05145 c 0,-2.169425 -1.85952,-3.925623 -4.02892,-3.925623 -2.272718,0 -4.028917,1.756198 -4.028917,3.925623 0,2.272717 1.756199,4.028916 4.028917,4.028916 2.1694,0 4.02892,-1.756199 4.02892,-4.028916 m 0,32.85114 c 0,-2.27272 -1.85952,-4.02891 -4.02892,-4.02891 -2.272718,0 -4.028917,1.75619 -4.028917,4.02891 0,2.1694 1.756199,4.02892 4.028917,4.02892 2.1694,0 4.02892,-1.85952 4.02892,-4.02892 m 0,32.74785 c 0,-2.16942 -1.85952,-3.92562 -4.02892,-3.92562 -2.272718,0 -4.028917,1.7562 -4.028917,3.92562 0,2.27272 1.756199,4.02892 4.028917,4.02892 2.1694,0 4.02892,-1.7562 4.02892,-4.02892 M 134.4521,42.3036 c 0,-2.272718 -1.85949,-4.028916 -4.02891,-4.028916 -2.27272,0 -4.02889,1.756198 -4.02889,4.028916 0,2.169398 1.75617,4.028917 4.02889,4.028917 2.16942,0 4.02891,-1.859519 4.02891,-4.028917 m 0,32.74785 c 0,-2.169425 -1.85949,-3.925623 -4.02891,-3.925623 -2.27272,0 -4.02889,1.756198 -4.02889,3.925623 0,2.272717 1.75617,4.028916 4.02889,4.028916 2.16942,0 4.02891,-1.756199 4.02891,-4.028916 m 0,32.85114 c 0,-2.27272 -1.85949,-4.02891 -4.02891,-4.02891 -2.27272,0 -4.02889,1.75619 -4.02889,4.02891 0,2.1694 1.75617,4.02892 4.02889,4.02892 2.16942,0 4.02891,-1.85952 4.02891,-4.02892 m 0,32.74785 c 0,-2.16942 -1.85949,-3.92562 -4.02891,-3.92562 -2.27272,0 -4.02889,1.7562 -4.02889,3.92562 0,2.27272 1.75617,4.02892 4.02889,4.02892 2.16942,0 4.02891,-1.7562 4.02891,-4.02892 M 166.27018,42.3036 c 0,-2.272718 -1.75617,-4.028916 -4.02889,-4.028916 -2.16942,0 -3.92562,1.756198 -3.92562,4.028916 0,2.169398 1.7562,4.028917 3.92562,4.028917 2.27272,0 4.02889,-1.859519 4.02889,-4.028917 m 0,32.74785 c 0,-2.169425 -1.75617,-3.925623 -4.02889,-3.925623 -2.16942,0 -3.92562,1.756198 -3.92562,3.925623 0,2.272717 1.7562,4.028916 3.92562,4.028916 2.27272,0 4.02889,-1.756199 4.02889,-4.028916 m 0,32.85114 c 0,-2.27272 -1.75617,-4.02891 -4.02889,-4.02891 -2.16942,0 -3.92562,1.75619 -3.92562,4.02891 0,2.1694 1.7562,4.02892 3.92562,4.02892 2.27272,0 4.02889,-1.85952 4.02889,-4.02892 m 0,32.74785 c 0,-2.16942 -1.75617,-3.92562 -4.02889,-3.92562 -2.16942,0 -3.92562,1.7562 -3.92562,3.92562 0,2.27272 1.7562,4.02892 3.92562,4.02892 2.27272,0 4.02889,-1.7562 4.02889,-4.02892 M 198.19159,42.3036 c 0,-2.272718 -1.75619,-4.028916 -4.02891,-4.028916 -2.16942,0 -3.92561,1.756198 -3.92561,4.028916 0,2.169398 1.75619,4.028917 3.92561,4.028917 2.27272,0 4.02891,-1.859519 4.02891,-4.028917 m 0,32.74785 c 0,-2.169425 -1.75619,-3.925623 -4.02891,-3.925623 -2.16942,0 -3.92561,1.756198 -3.92561,3.925623 0,2.272717 1.75619,4.028916 3.92561,4.028916 2.27272,0 4.02891,-1.756199 4.02891,-4.028916 m 0,32.85114 c 0,-2.27272 -1.75619,-4.02891 -4.02891,-4.02891 -2.16942,0 -3.92561,1.75619 -3.92561,4.02891 0,2.1694 1.75619,4.02892 3.92561,4.02892 2.27272,0 4.02891,-1.85952 4.02891,-4.02892 m 0,32.74785 c 0,-2.16942 -1.75619,-3.92562 -4.02891,-3.92562 -2.16942,0 -3.92561,1.7562 -3.92561,3.92562 0,2.27272 1.75619,4.02892 3.92561,4.02892 2.27272,0 4.02891,-1.7562 4.02891,-4.02892 M 230.11298,42.3036 c 0,-2.272718 -1.75619,-4.028916 -4.0289,-4.028916 -2.16942,0 -4.02891,1.756198 -4.02891,4.028916 0,2.169398 1.85949,4.028917 4.02891,4.028917 2.27271,0 4.0289,-1.859519 4.0289,-4.028917 m 0,32.74785 c 0,-2.169425 -1.75619,-3.925623 -4.0289,-3.925623 -2.16942,0 -4.02891,1.756198 -4.02891,3.925623 0,2.272717 1.85949,4.028916 4.02891,4.028916 2.27271,0 4.0289,-1.756199 4.0289,-4.028916 m 0,32.85114 c 0,-2.27272 -1.75619,-4.02891 -4.0289,-4.02891 -2.16942,0 -4.02891,1.75619 -4.02891,4.02891 0,2.1694 1.85949,4.02892 4.02891,4.02892 2.27271,0 4.0289,-1.85952 4.0289,-4.02892 m 0,32.74785 c 0,-2.16942 -1.75619,-3.92562 -4.0289,-3.92562 -2.16942,0 -4.02891,1.7562 -4.02891,3.92562 0,2.27272 1.85949,4.02892 4.02891,4.02892 2.27271,0 4.0289,-1.7562 4.0289,-4.02892 M 262.0344,42.3036 c 0,-2.272718 -1.7562,-4.028916 -4.02894,-4.028916 -2.16942,0 -4.0289,1.756198 -4.0289,4.028916 0,2.169398 1.85948,4.028917 4.0289,4.028917 2.27274,0 4.02894,-1.859519 4.02894,-4.028917 m 0,32.74785 c 0,-2.169425 -1.7562,-3.925623 -4.02894,-3.925623 -2.16942,0 -4.0289,1.756198 -4.0289,3.925623 0,2.272717 1.85948,4.028916 4.0289,4.028916 2.27274,0 4.02894,-1.756199 4.02894,-4.028916 m 0,32.85114 c 0,-2.27272 -1.7562,-4.02891 -4.02894,-4.02891 -2.16942,0 -4.0289,1.75619 -4.0289,4.02891 0,2.1694 1.85948,4.02892 4.0289,4.02892 2.27274,0 4.02894,-1.85952 4.02894,-4.02892 m 0,32.74785 c 0,-2.16942 -1.7562,-3.92562 -4.02894,-3.92562 -2.16942,0 -4.0289,1.7562 -4.0289,3.92562 0,2.27272 1.85948,4.02892 4.0289,4.02892 2.27274,0 4.02894,-1.7562 4.02894,-4.02892 M 9.3491401,105.52655 c 0,-1.96278 -1.5495852,-3.51239 -3.5123966,-3.51239 -1.962785,0 -3.6156635,1.54961 -3.6156635,3.51239 0,1.96282 1.6528785,3.61569 3.6156635,3.61569 1.9628114,0 3.5123966,-1.65287 3.5123966,-3.61569 m -0.4132262,0 c 0,-1.75619 -1.3429721,-3.09917 -3.0991704,-3.09917 -1.7561719,0 -3.2024373,1.34298 -3.2024373,3.09917 0,1.7562 1.4462654,3.20247 3.2024373,3.20247 1.7561983,0 3.0991704,-1.44627 3.0991704,-3.20247 m 0.2066131,0 c 0,-1.85949 -1.4462654,-3.30578 -3.3057835,-3.30578 -1.8594652,0 -3.4090504,1.44629 -3.4090504,3.30578 0,1.85952 1.5495852,3.40908 3.4090504,3.40908 1.8595181,0 3.3057835,-1.54956 3.3057835,-3.40908 m -2.2727179,-1.75619 v 1.23967 m -1.0330656,-1.54958 1.0330656,0.30991 m -1.7561983,0.72316 0.7231327,-1.03307 m -1.8594652,1.03307 h 1.1363325 m -1.4462654,1.03303 0.3099329,-1.03303 m 0.7231327,1.75619 -1.0330656,-0.72316 m 1.0330656,1.85952 v -1.13636 m 1.0330392,1.44627 -1.0330392,-0.30991 m 1.6528785,-0.61984 -0.6198393,0.92975 m 1.8594916,-1.03304 -1.2396523,0.10329 m 1.5495852,-1.13636 -0.3099329,1.03307 m -0.7231327,-1.65291 1.0330656,0.61984 m -1.4462918,-0.41322 0.4132262,-0.20662 m 0.5165196,0.82646 0.516546,-0.20662 m -0.6198393,0.61984 0.3099064,0.41323 m -1.4462654,-0.30993 0.2066131,0.41322 m -0.8264525,0.51652 0.2066132,0.41323 m -0.6198394,-0.61981 -0.4131998,0.3099 m 0.4131998,-1.44629 -0.4131998,0.30993 m -0.6198394,-0.82645 -0.4132262,0.10329 m 0.6198394,-0.61981 -0.3099065,-0.41322 m 1.446239,0.41322 -0.3099065,-0.41322 m 0.9297458,-0.51655 -0.2066131,-0.51652 m 0.6198394,0.61984 0.4132262,-0.30993 m -0.4132262,1.44629 0.9297458,0.61984 m 0,0 -0.1032933,0.41322 m 0,0 -1.136359,0.1033 m 0,0 -0.6198394,0.92974 m 0,0 -0.4132262,-0.20658 m 0,0 v -1.13639 m 0,0 -1.0330392,-0.51652 m 0,0 0.2066132,-0.51652 m 0,0 h 1.1363325 m 0,0 0.6198393,-0.92977 m 0,0 0.4132263,0.10332 m 0,0 v 1.13636 M 283.10872,15.547479 V 78.460526 M 282.9021,15.547479 v 62.913047 m 0.20662,-62.913047 h -0.20662 m 0,0 v -0.309933 -0.309907 -0.206613 h 0.1033 m 0,0 h 0.20661 m 0,0 -0.10329,0.206613 v 0.309907 0.309933 m 0.10329,63.842793 h -0.20661 m 0,0 -0.1033,-0.103293 v -0.206613 -0.206613 -0.413227 m 0,0 h 0.20662 m 0,0 v 0.413227 0.206613 l 0.10329,0.206613 v 0.103293 m 1.03306,0 h -1.03306 m 1.03306,0 v -0.929746 m 0,-63.7395 h -1.03306 m 1.03306,0.826453 v -0.826453 m 0,63.7395 V 15.547479 M 5.3202239,25.774709 v 11.46691 M 8.7293008,31.559824 H 2.0144669 m 289.1520631,0 h 6.71486 m -3.30577,-5.785115 v 11.46691 M 2.0144669,137.86118 h 6.7148339 m -3.4090769,5.78511 v -11.46691 m 292.5611661,5.6818 h -6.71486 m 3.40909,-5.6818 v 11.46691", + "fill": { + "paint": "transparent" + }, + "id": "path2-6", + "name": "path2-6", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.103" + }, + "type": "path" + }, + { + "d": "m 74.980437,74.580094 c 0,0.174758 -0.03873,0.342636 -0.122264,0.490723 -0.05852,0.109326 -0.135995,0.193702 -0.220371,0.264292 l -0.354674,0.284083 c -0.206613,0.161846 -0.316812,0.342636 -0.335756,0.549249 h 1.020154 v 0.328851 h -1.278414 c 0.01984,-0.48985 0.136022,-0.832485 0.355547,-1.019281 l 0.445056,-0.388276 c 0.167878,-0.135149 0.25138,-0.309034 0.25138,-0.509641 0,-0.15494 -0.03786,-0.284083 -0.109325,-0.374464 -0.07144,-0.09729 -0.160973,-0.142055 -0.284084,-0.142055 -0.239342,0 -0.368458,0.213492 -0.38137,0.645662 h -0.23159 c 0.0061,-0.632751 0.23159,-0.955569 0.67064,-0.955569 0.142901,0 0.272044,0.06456 0.38137,0.193702 0.129117,0.15494 0.193701,0.361553 0.193701,0.632724 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path3-1", + "name": "path3-1", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 74.973982,108.53532 c 0,0.24537 -0.06456,0.45196 -0.187669,0.60692 -0.122238,0.161 -0.284083,0.23935 -0.476938,0.23935 -0.167878,0 -0.31078,-0.0646 -0.420106,-0.20061 -0.136022,-0.15494 -0.199734,-0.3805 -0.199734,-0.6844 h 0.225558 c 0,0.17391 0.03273,0.30993 0.09729,0.41926 0.06371,0.1102 0.148061,0.16185 0.251381,0.16185 0.309906,0 0.45884,-0.18079 0.45884,-0.55529 0,-0.32279 -0.136022,-0.48379 -0.413226,-0.48379 h -0.110199 v -0.29096 c 0.161845,0 0.278077,-0.0259 0.335756,-0.0715 0.08438,-0.0637 0.129143,-0.19283 0.129143,-0.39341 0,-0.27808 -0.122264,-0.41323 -0.368459,-0.41323 -0.219524,0 -0.335756,0.1937 -0.341788,0.5742 H 73.7283 c 0.01217,-0.58023 0.206586,-0.87722 0.58711,-0.89101 0.174758,0 0.322818,0.0654 0.433017,0.20058 0.109326,0.14206 0.167005,0.32285 0.167005,0.5484 0,0.23932 -0.0835,0.42611 -0.238442,0.57505 0.103293,0.0775 0.180763,0.16184 0.225531,0.26429 0.04564,0.0973 0.07146,0.23241 0.07146,0.39426 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path4-4", + "name": "path4-4", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 75.006261,141.45107 h -0.277204 v 0.64566 h -0.226404 v -0.64566 H 73.6762 v -0.36158 l 0.871194,-1.73725 h 0.181663 v 1.77599 h 0.277204 z m -0.503608,-0.32284 v -1.22674 l -0.606928,1.22674 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path5", + "name": "path5", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 60.026981,20.661107 h -0.232436 v -1.936961 h -0.432171 v -0.264293 c 0.18079,-0.03873 0.296149,-0.07834 0.341763,-0.129143 0.05768,-0.05853 0.116231,-0.193701 0.160999,-0.414073 h 0.161845 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path6", + "name": "path6", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 60.466031,23.237302 c 0,0.174758 -0.03876,0.342609 -0.122264,0.49067 -0.05853,0.109326 -0.136022,0.193702 -0.220371,0.264292 l -0.354701,0.284083 c -0.206613,0.161846 -0.316786,0.342636 -0.33573,0.549249 h 1.020154 v 0.328851 h -1.278413 c 0.01984,-0.489823 0.136022,-0.832459 0.355547,-1.019281 l 0.445055,-0.38825 c 0.167878,-0.135149 0.251381,-0.309033 0.251381,-0.509614 0,-0.154966 -0.03786,-0.284083 -0.109326,-0.374491 -0.07146,-0.09726 -0.160972,-0.142028 -0.284083,-0.142028 -0.239342,0 -0.368459,0.213492 -0.381371,0.645662 H 59.22032 c 0.0061,-0.632751 0.231589,-0.955595 0.670639,-0.955595 0.142902,0 0.272018,0.06456 0.38137,0.193701 0.129117,0.154967 0.193702,0.36158 0.193702,0.632751 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path7", + "name": "path7", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 60.459575,28.886818 c 0,0.245348 -0.06456,0.451961 -0.187669,0.606901 -0.122264,0.160999 -0.284109,0.239342 -0.476938,0.239342 -0.167878,0 -0.310779,-0.06456 -0.420105,-0.20058 -0.136022,-0.154967 -0.199734,-0.380524 -0.199734,-0.684398 h 0.225557 c 0,0.173884 0.0327,0.309906 0.09729,0.419232 0.06369,0.110199 0.148061,0.161846 0.251381,0.161846 0.309907,0 0.45884,-0.18079 0.45884,-0.555255 0,-0.322844 -0.136022,-0.483817 -0.413226,-0.483817 H 59.684769 V 28.0991 c 0.161846,0 0.278077,-0.02593 0.335757,-0.07144 0.08435,-0.06371 0.129116,-0.192855 0.129116,-0.393436 0,-0.278077 -0.122237,-0.413226 -0.368459,-0.413226 -0.219524,0 -0.335729,0.193702 -0.341762,0.574199 h -0.225557 c 0.01217,-0.580231 0.206613,-0.877226 0.587137,-0.891011 0.174757,0 0.322818,0.06543 0.433017,0.200607 0.109326,0.142029 0.167005,0.322818 0.167005,0.548376 0,0.239315 -0.0835,0.426138 -0.238469,0.575071 0.10332,0.07747 0.18079,0.161846 0.225557,0.264293 0.04564,0.09726 0.07146,0.232436 0.07146,0.394282 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path8", + "name": "path8", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "M 60.491854,33.548432 H 60.21465 v 0.645663 h -0.22643 v -0.645663 h -0.826426 v -0.361553 l 0.871193,-1.737254 h 0.181663 v 1.775989 h 0.277204 z M 59.98822,33.225614 v -1.226741 l -0.606901,1.226741 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path9", + "name": "path9", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 33.587196,37.131869 c 0,0.251381 -0.05853,0.458841 -0.167878,0.612934 -0.09726,0.142055 -0.21262,0.213519 -0.355548,0.213519 h -0.644763 v 1.194885 H 32.16678 v -2.815934 h 0.859129 c 0.173884,0 0.309906,0.07144 0.413226,0.226404 0.09641,0.148087 0.148061,0.335756 0.148061,0.568192 z m -0.25826,0 c 0,-0.129143 -0.0327,-0.239342 -0.09038,-0.335756 -0.06459,-0.09038 -0.135175,-0.142028 -0.219525,-0.142028 h -0.600022 v 0.981392 h 0.631852 c 0.06458,0 0.12311,-0.04477 0.181663,-0.129143 0.06371,-0.09726 0.09641,-0.226404 0.09641,-0.374465 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path10", + "name": "path10", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "M 34.658996,39.152783 H 34.42656 v -1.936988 h -0.432171 v -0.264292 c 0.18079,-0.03874 0.296149,-0.07832 0.341789,-0.129117 0.05768,-0.05855 0.109326,-0.193701 0.160973,-0.414099 h 0.161845 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path11", + "name": "path11", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 38.95911,37.131869 c 0,0.251381 -0.05855,0.458841 -0.167878,0.612934 -0.09729,0.142055 -0.212645,0.213519 -0.355547,0.213519 h -0.644789 v 1.194885 h -0.252254 v -2.815934 h 0.859155 c 0.17391,0 0.309933,0.07144 0.413226,0.226404 0.09641,0.148087 0.148087,0.335756 0.148087,0.568192 z m -0.258286,0 c 0,-0.129143 -0.0327,-0.239342 -0.09038,-0.335756 -0.06456,-0.09038 -0.135149,-0.142028 -0.219524,-0.142028 h -0.600022 v 0.981392 h 0.631878 c 0.06456,0 0.12311,-0.04477 0.181636,-0.129143 0.06371,-0.09726 0.09641,-0.226404 0.09641,-0.374465 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path12", + "name": "path12", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 40.469961,37.235163 c 0,0.174757 -0.04477,0.342635 -0.122264,0.490696 -0.05853,0.109326 -0.135996,0.193701 -0.220372,0.264292 l -0.354674,0.284083 c -0.206613,0.161846 -0.316812,0.342636 -0.335756,0.549249 h 1.020154 v 0.328851 h -1.278414 c 0.01984,-0.489824 0.136022,-0.832459 0.355547,-1.019281 l 0.445056,-0.38825 c 0.167878,-0.135149 0.245374,-0.30906 0.245374,-0.50964 0,-0.154967 -0.03186,-0.284083 -0.103319,-0.374492 -0.07144,-0.09726 -0.160973,-0.142028 -0.284083,-0.142028 -0.239343,0 -0.368459,0.213492 -0.387403,0.645663 h -0.225558 c 0.0061,-0.632751 0.23159,-0.955596 0.67064,-0.955596 0.142901,0 0.272044,0.06459 0.38137,0.193702 0.129117,0.154966 0.193702,0.361579 0.193702,0.632751 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path13", + "name": "path13", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 44.079168,39.152783 h -0.303027 c -0.01984,-0.0835 -0.03961,-0.174757 -0.04564,-0.265139 -0.01296,-0.103319 -0.01984,-0.25138 -0.01296,-0.438203 -0.0069,-0.335729 -0.103294,-0.510487 -0.303028,-0.510487 h -0.659421 v 1.213829 h -0.257413 v -2.815087 h 0.903076 c 0.226404,0 0.387377,0.07059 0.484664,0.219525 0.07747,0.12311 0.122237,0.315965 0.122237,0.574225 0,0.246195 -0.09038,0.452808 -0.257386,0.626719 0.08953,0.09038 0.148061,0.160972 0.173884,0.226404 0.02593,0.04477 0.03874,0.129143 0.04564,0.245348 0,0.122264 0.0061,0.315939 0.01905,0.587137 0.0069,0.09641 0.03874,0.180789 0.09038,0.239315 z m -0.32885,-2.066104 c 0,-0.135176 -0.02593,-0.239343 -0.09125,-0.315939 -0.06371,-0.07834 -0.148087,-0.116232 -0.244502,-0.116232 H 42.75514 v 0.967634 h 0.659421 c 0.225558,0 0.335757,-0.179916 0.335757,-0.535463 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path14", + "name": "path14", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 46.255049,39.152783 h -0.25826 v -2.272718 l -0.54237,2.272718 H 45.19616 l -0.535464,-2.285629 v 2.285629 h -0.25826 v -2.815087 h 0.354674 l 0.568193,2.394982 0.568166,-2.394982 h 0.36158 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path15", + "name": "path15", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 48.637516,43.162332 v 1.071774 h 0.89101 v -0.936625 h 0.316813 v 0.936625 h 1.284446 V 44.48636 H 48.32073 v -1.324028 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path16", + "name": "path16", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 51.129785,41.315752 v 0.28411 l -0.839364,0.199707 v 0.749803 l 0.839364,0.212645 v 0.271172 L 48.32073,42.316962 v -0.309907 z m -1.142392,0.555281 -1.239678,0.290962 1.239678,0.321945 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path17", + "name": "path17", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 50.380829,39.53373 c 0.20058,0 0.380497,0.05855 0.542343,0.167879 0.193701,0.142028 0.297021,0.335729 0.297021,0.58711 0,0.252254 -0.10332,0.445929 -0.297021,0.587983 -0.161846,0.116232 -0.341763,0.174758 -0.542343,0.174758 h -2.059226 v -0.259133 h 2.046314 c 0.142028,0 0.271172,-0.04477 0.381371,-0.148061 0.109325,-0.09641 0.167878,-0.212646 0.167878,-0.355547 0,-0.135149 -0.05252,-0.251381 -0.161846,-0.354674 -0.109352,-0.09729 -0.245375,-0.142055 -0.413226,-0.142055 h -2.020491 v -0.25826 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path18", + "name": "path18", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 51.129785,37.887281 v 1.226767 H 48.32073 v -0.258259 h 2.492243 v -0.968508 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path19", + "name": "path19", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 48.637516,36.227947 v 0.63963 h 2.492269 v 0.251381 H 48.637516 V 37.7715 H 48.32073 v -1.543553 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path20", + "name": "path20", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 92.393857,19.783008 c 0,0.265139 -0.05855,0.490696 -0.187669,0.678365 -0.129143,0.186823 -0.277204,0.283237 -0.457994,0.283237 -0.18079,0 -0.335756,-0.07662 -0.45884,-0.218652 -0.116232,-0.142928 -0.179943,-0.322844 -0.186822,-0.542369 h 0.245348 c 0.03874,0.17391 0.09038,0.290115 0.142055,0.347795 0.05768,0.05855 0.136022,0.09125 0.239315,0.09125 0.270325,0 0.399442,-0.213492 0.399442,-0.633597 0,-0.186823 -0.03186,-0.334883 -0.109326,-0.451115 -0.07059,-0.110199 -0.167878,-0.167878 -0.277204,-0.167878 -0.07834,0 -0.142902,0.01905 -0.200581,0.05768 -0.03873,0.03186 -0.09641,0.09644 -0.161845,0.186822 h -0.219525 l 0.148934,-1.497938 h 0.988298 v 0.342635 h -0.794597 l -0.0775,0.755862 c 0.09041,-0.110199 0.213518,-0.161846 0.355547,-0.161846 0.18079,0 0.335756,0.0835 0.445082,0.251381 0.116231,0.174757 0.167878,0.401161 0.167878,0.678365 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path21", + "name": "path21", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 92.393857,24.315532 c 0,0.271172 -0.05165,0.490697 -0.167878,0.658575 -0.116205,0.180789 -0.271172,0.264292 -0.464873,0.264292 -0.426138,0 -0.638784,-0.445082 -0.638784,-1.342972 0,-0.987399 0.238469,-1.485001 0.703342,-1.485001 0.123111,0 0.232437,0.06456 0.335757,0.187669 0.116205,0.136023 0.180789,0.309933 0.199707,0.529458 h -0.244475 c 0.0061,-0.10332 -0.01984,-0.199734 -0.09126,-0.277204 -0.07059,-0.08438 -0.148087,-0.12311 -0.238469,-0.12311 -0.129143,0 -0.232436,0.09038 -0.309906,0.277204 -0.0775,0.187668 -0.122264,0.445928 -0.135176,0.774752 0.160999,-0.22553 0.30906,-0.335703 0.464026,-0.335703 0.161846,0 0.303901,0.08435 0.420106,0.252201 0.116231,0.167878 0.167878,0.374491 0.167878,0.619839 z m -0.239342,0 c 0,-0.167878 -0.03183,-0.309906 -0.09641,-0.40632 -0.06456,-0.10332 -0.160973,-0.161846 -0.284083,-0.161846 -0.103294,0 -0.193702,0.05165 -0.271172,0.15494 -0.08438,0.110199 -0.129143,0.251381 -0.129143,0.433017 0,0.173911 0.03873,0.315966 0.116232,0.432171 0.07747,0.109325 0.173884,0.167878 0.290962,0.167878 0.08953,0 0.17391,-0.04477 0.238469,-0.129143 0.09041,-0.110173 0.135149,-0.271172 0.135149,-0.490697 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path22", + "name": "path22", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 92.413251,27.195178 c -0.290989,0.568193 -0.503634,1.097624 -0.626719,1.594353 -0.07062,0.284109 -0.122264,0.569039 -0.148087,0.859155 h -0.25826 c 0.05768,-0.348642 0.103294,-0.606902 0.148061,-0.761868 0.08438,-0.329724 0.290989,-0.878099 0.633624,-1.652905 h -1.027033 v -0.329697 h 1.278414 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path23", + "name": "path23", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 92.393857,33.477418 c 0,0.219525 -0.05855,0.406347 -0.187669,0.561314 -0.122264,0.15494 -0.28411,0.239315 -0.470905,0.239315 -0.18079,0 -0.329724,-0.08438 -0.445929,-0.239315 -0.122264,-0.154967 -0.179943,-0.347795 -0.179943,-0.587137 0,-0.15494 0.02593,-0.296995 0.0835,-0.419233 0.05855,-0.123084 0.136023,-0.213492 0.232437,-0.27805 -0.167852,-0.129143 -0.252228,-0.315939 -0.252228,-0.561287 0,-0.206613 0.05855,-0.381371 0.161846,-0.523426 0.110199,-0.142054 0.239316,-0.219524 0.387403,-0.219524 0.18079,0 0.322818,0.07059 0.43905,0.20058 0.110198,0.129143 0.167878,0.303028 0.167878,0.509641 0,0.238469 -0.08353,0.43217 -0.245375,0.581104 0.08438,0.04477 0.161846,0.142055 0.219525,0.284057 0.06458,0.142055 0.09041,0.290115 0.09041,0.451961 z m -0.309933,-1.304211 c 0,-0.129116 -0.02593,-0.226404 -0.09038,-0.303027 -0.05855,-0.07747 -0.142054,-0.110172 -0.239315,-0.110172 -0.10332,0 -0.186823,0.03874 -0.245348,0.110172 -0.05768,0.07662 -0.09041,0.179943 -0.09041,0.303027 0,0.290116 0.110198,0.43905 0.335756,0.43905 0.09726,0 0.174757,-0.03874 0.239315,-0.123084 0.06456,-0.08353 0.09038,-0.186822 0.09038,-0.315966 z m 0.06459,1.245685 c 0,-0.154966 -0.03874,-0.284083 -0.109352,-0.373618 -0.0654,-0.09125 -0.161846,-0.135996 -0.290963,-0.135996 -0.122237,0 -0.219525,0.05162 -0.290115,0.148035 -0.06543,0.09729 -0.10332,0.232436 -0.10332,0.394282 0,0.148087 0.03789,0.271171 0.109352,0.368458 0.07747,0.09642 0.167852,0.141182 0.278051,0.141182 0.115358,0 0.212645,-0.05165 0.290115,-0.15494 0.0775,-0.10332 0.116232,-0.232436 0.116232,-0.387403 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path24", + "name": "path24", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 124.30234,19.260033 c 0,0.988298 -0.22553,1.485027 -0.6844,1.485027 -0.16785,0 -0.29699,-0.05768 -0.38737,-0.173911 -0.0775,-0.110173 -0.13602,-0.284956 -0.16185,-0.51652 h 0.23932 c -0.007,0.116205 0.0259,0.206614 0.0904,0.277204 0.0646,0.06456 0.14205,0.103294 0.23934,0.103294 0.12827,0 0.23244,-0.09038 0.31594,-0.277204 0.0775,-0.181637 0.12311,-0.43905 0.12912,-0.762741 -0.13515,0.219525 -0.28409,0.329724 -0.44506,0.329724 -0.18166,0 -0.32972,-0.07747 -0.43992,-0.239316 -0.10933,-0.160999 -0.16701,-0.380524 -0.16701,-0.645663 0,-0.271171 0.0637,-0.490696 0.17992,-0.658574 0.11623,-0.173911 0.27205,-0.264292 0.44596,-0.264292 0.20658,0 0.36155,0.116205 0.47087,0.335729 0.11624,0.232463 0.17476,0.568193 0.17476,1.007243 z m -0.25135,-0.420106 c 0,-0.179916 -0.0396,-0.32885 -0.11708,-0.439049 -0.0766,-0.109326 -0.17391,-0.167005 -0.29615,-0.167005 -0.1102,0 -0.20058,0.05077 -0.26516,0.160972 -0.0714,0.110199 -0.1033,0.25826 -0.1033,0.445082 0,0.187669 0.0387,0.336603 0.1102,0.445929 0.0637,0.09641 0.15494,0.148934 0.25826,0.148934 0.12224,0 0.21953,-0.05853 0.29615,-0.174757 0.0775,-0.116205 0.11708,-0.25826 0.11708,-0.420106 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path25", + "name": "path25", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 122.32019,25.15487 h -0.23244 v -1.936962 h -0.43217 v -0.264292 c 0.18079,-0.03873 0.29615,-0.07834 0.34176,-0.129117 0.0577,-0.05855 0.11624,-0.193701 0.161,-0.414099 h 0.16185 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path26", + "name": "path26", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 124.2507,23.792557 c 0,0.961602 -0.20662,1.446292 -0.62672,1.446292 -0.41926,0 -0.62585,-0.497602 -0.62585,-1.485027 0,-0.420079 0.0577,-0.74893 0.16785,-0.987399 0.10936,-0.232436 0.26517,-0.355547 0.458,-0.355547 0.20058,0 0.35554,0.123111 0.46487,0.355547 0.1102,0.238469 0.16185,0.581078 0.16185,1.026134 z m -0.23244,0.03273 c 0,-0.7171 -0.12912,-1.07868 -0.3874,-1.07868 -0.15494,0 -0.26514,0.110199 -0.32885,0.335756 -0.0456,0.173911 -0.0714,0.426138 -0.0714,0.768747 0,0.716254 0.12911,1.077807 0.38737,1.070928 0.13603,0 0.23847,-0.09038 0.3039,-0.264293 0.0637,-0.180789 0.0964,-0.451961 0.0964,-0.832458 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path27", + "name": "path27", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 122.32019,29.648659 h -0.23244 v -1.936962 h -0.43217 v -0.264292 c 0.18079,-0.03876 0.29615,-0.07834 0.34176,-0.129143 0.0577,-0.05853 0.11624,-0.193701 0.161,-0.414073 h 0.16185 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path28", + "name": "path28", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 123.8181,29.648659 h -0.22553 v -1.936962 h -0.43304 v -0.264292 c 0.18079,-0.03876 0.29011,-0.07834 0.34179,-0.129143 0.0585,-0.05853 0.11017,-0.193701 0.16184,-0.414073 h 0.15494 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path29", + "name": "path29", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 122.32019,34.194095 h -0.23244 v -1.936962 h -0.43217 v -0.264292 c 0.18079,-0.03873 0.29615,-0.07834 0.34176,-0.129117 0.0577,-0.05855 0.11624,-0.193701 0.161,-0.414099 h 0.16185 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path30", + "name": "path30", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 124.25718,32.276527 c 0,0.174757 -0.0388,0.342636 -0.12227,0.490696 -0.0585,0.109353 -0.12911,0.193675 -0.21349,0.264266 l -0.36158,0.28411 c -0.20058,0.161845 -0.31678,0.342609 -0.33573,0.549222 h 1.02013 v 0.328877 h -1.27151 c 0.013,-0.48985 0.12914,-0.832485 0.34867,-1.019307 l 0.45196,-0.388223 c 0.16097,-0.13515 0.24448,-0.30906 0.24448,-0.509641 0,-0.154966 -0.0319,-0.284083 -0.1033,-0.374491 -0.0706,-0.09726 -0.16703,-0.142028 -0.29011,-0.142028 -0.23935,0 -0.36158,0.213492 -0.38137,0.645662 h -0.22556 c 0.006,-0.632751 0.22556,-0.955595 0.66461,-0.955595 0.14893,0 0.27201,0.06458 0.38137,0.193701 0.12911,0.154967 0.1937,0.36158 0.1937,0.632751 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path31", + "name": "path31", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 154.24159,20.661107 h -0.23244 v -1.936961 h -0.43217 v -0.264293 c 0.18079,-0.03873 0.29615,-0.07834 0.34176,-0.129143 0.0577,-0.05853 0.11623,-0.193701 0.161,-0.414073 h 0.16185 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path32", + "name": "path32", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 156.17209,19.89924 c 0,0.245348 -0.0646,0.451961 -0.18767,0.606927 -0.12223,0.160973 -0.2772,0.239316 -0.4709,0.239316 -0.17389,0 -0.30988,-0.06456 -0.42611,-0.200581 -0.12912,-0.154966 -0.19371,-0.380523 -0.19971,-0.684397 h 0.23244 c 0,0.173884 0.0319,0.309906 0.0964,0.419232 0.0576,0.110199 0.14203,0.161846 0.24532,0.161846 0.30991,0 0.46487,-0.18079 0.46487,-0.555255 0,-0.322845 -0.13515,-0.483817 -0.41322,-0.483817 h -0.11621 v -0.290989 c 0.16785,0 0.27805,-0.02593 0.34264,-0.07144 0.0835,-0.06371 0.12224,-0.192855 0.12224,-0.393436 0,-0.278077 -0.11624,-0.413226 -0.36158,-0.413226 -0.22641,0 -0.34261,0.193701 -0.34862,0.574199 h -0.21952 c 0.013,-0.580232 0.20661,-0.877226 0.58795,-0.891011 0.17389,0 0.31594,0.06543 0.42611,0.200607 0.11624,0.142028 0.16704,0.322818 0.16704,0.548375 0,0.239316 -0.0766,0.426138 -0.23847,0.575072 0.10932,0.07747 0.18767,0.161846 0.23243,0.264293 0.0448,0.09726 0.0646,0.232436 0.0646,0.394282 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path33", + "name": "path33", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 154.24159,25.15487 h -0.23244 v -1.936962 h -0.43217 v -0.264292 c 0.18079,-0.03873 0.29615,-0.07834 0.34176,-0.129117 0.0577,-0.05855 0.11623,-0.193701 0.161,-0.414099 h 0.16185 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path34", + "name": "path34", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 156.20437,24.509207 h -0.2772 v 0.645663 h -0.22643 v -0.645663 h -0.8204 V 24.147628 L 155.7455,22.4104 h 0.18167 v 1.775989 h 0.2772 z m -0.50363,-0.322818 v -1.22674 l -0.60688,1.22674 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path35", + "name": "path35", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 154.24159,29.648659 h -0.23244 v -1.936962 h -0.43217 v -0.264292 c 0.18079,-0.03876 0.29615,-0.07834 0.34176,-0.129143 0.0577,-0.05853 0.11623,-0.193701 0.161,-0.414073 h 0.16185 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path36", + "name": "path36", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 156.19146,28.770586 c 0,0.265139 -0.0646,0.490697 -0.1937,0.678366 -0.12311,0.186822 -0.27805,0.283236 -0.458,0.283236 -0.18076,0 -0.32967,-0.07662 -0.45278,-0.218652 -0.12226,-0.142928 -0.18682,-0.322844 -0.18682,-0.542369 h 0.23934 c 0.0447,0.173911 0.0904,0.290116 0.14804,0.347795 0.0516,0.05855 0.12914,0.09126 0.23243,0.09126 0.27117,0 0.40635,-0.213493 0.40635,-0.633598 0,-0.186822 -0.0379,-0.334883 -0.10935,-0.451115 -0.0775,-0.110199 -0.16785,-0.167878 -0.28408,-0.167878 -0.0775,0 -0.14206,0.01905 -0.19371,0.05768 -0.0456,0.03186 -0.0964,0.09644 -0.16785,0.186823 h -0.21349 l 0.14205,-1.497939 h 0.99516 v 0.342636 h -0.80148 l -0.0775,0.755861 c 0.0973,-0.110199 0.21349,-0.161845 0.35552,-0.161845 0.18767,0 0.33576,0.0835 0.45196,0.25138 0.10935,0.174757 0.16788,0.401161 0.16788,0.678365 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path37", + "name": "path37", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 154.24159,34.194095 h -0.23244 v -1.936962 h -0.43217 v -0.264292 c 0.18079,-0.03873 0.29615,-0.07834 0.34176,-0.129117 0.0577,-0.05855 0.11623,-0.193701 0.161,-0.414099 h 0.16185 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path38", + "name": "path38", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 156.19146,33.354757 c 0,0.271172 -0.0585,0.490696 -0.17476,0.658575 -0.11623,0.180789 -0.27032,0.264292 -0.46487,0.264292 -0.41923,0 -0.63185,-0.445082 -0.63185,-1.342946 0,-0.987425 0.23243,-1.485027 0.70329,-1.485027 0.11623,0 0.23246,0.06456 0.33575,0.187669 0.1102,0.136023 0.17391,0.309933 0.19974,0.529458 h -0.25138 c 0.013,-0.10332 -0.019,-0.199734 -0.0904,-0.277204 -0.0646,-0.08438 -0.14203,-0.123111 -0.23244,-0.123111 -0.12911,0 -0.23931,0.09038 -0.31591,0.277204 -0.0783,0.187669 -0.12311,0.445929 -0.12912,0.77478 0.15407,-0.225531 0.30901,-0.33573 0.45794,-0.33573 0.16788,0 0.30303,0.08435 0.41926,0.252227 0.11623,0.167878 0.17476,0.374465 0.17476,0.619813 z m -0.24535,0 c 0,-0.167878 -0.0318,-0.309906 -0.0904,-0.406347 -0.0706,-0.103267 -0.16788,-0.161819 -0.29099,-0.161819 -0.10332,0 -0.19283,0.05167 -0.26429,0.15494 -0.0904,0.110199 -0.12912,0.251381 -0.12912,0.433017 0,0.173911 0.0388,0.315965 0.11621,0.43217 0.0775,0.109326 0.16788,0.167879 0.28408,0.167879 0.0964,0 0.17476,-0.04477 0.24535,-0.129144 0.0835,-0.110172 0.12914,-0.271171 0.12914,-0.490696 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path39", + "name": "path39", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 186.16298,20.661107 h -0.23244 v -1.936961 h -0.43216 v -0.264293 c 0.18078,-0.03873 0.29614,-0.07834 0.34177,-0.129143 0.0577,-0.05853 0.11621,-0.193701 0.16098,-0.414073 h 0.16185 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path40", + "name": "path40", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 188.12578,18.207573 c -0.29098,0.568193 -0.49673,1.097624 -0.62672,1.594353 -0.0646,0.284083 -0.11622,0.569039 -0.14807,0.859155 h -0.25826 c 0.0577,-0.348642 0.11019,-0.606928 0.14807,-0.761868 0.0844,-0.329724 0.297,-0.878099 0.63361,-1.652905 h -1.02703 v -0.329724 h 1.2784 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path41", + "name": "path41", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 186.16298,25.15487 h -0.23244 v -1.936962 h -0.43216 v -0.264292 c 0.18078,-0.03873 0.29614,-0.07834 0.34177,-0.129117 0.0577,-0.05855 0.11621,-0.193701 0.16098,-0.414099 h 0.16185 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path42", + "name": "path42", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 188.11286,24.43822 c 0,0.219524 -0.0646,0.406347 -0.18768,0.561287 -0.12913,0.154966 -0.28408,0.239342 -0.47692,0.239342 -0.18165,0 -0.32972,-0.08438 -0.44594,-0.239342 -0.11622,-0.15494 -0.18078,-0.347795 -0.18078,-0.587111 0,-0.154966 0.0327,-0.296995 0.0835,-0.419259 0.0585,-0.123084 0.13602,-0.213492 0.23244,-0.27805 -0.16099,-0.129143 -0.24535,-0.315913 -0.24535,-0.561261 0,-0.206613 0.0525,-0.38137 0.16185,-0.523425 0.1033,-0.142055 0.23243,-0.219525 0.38739,-0.219525 0.17476,0 0.32283,0.07059 0.43216,0.200581 0.11708,0.129143 0.17476,0.303027 0.17476,0.50964 0,0.238469 -0.0835,0.432144 -0.25224,0.581078 0.0913,0.04477 0.16185,0.142029 0.22641,0.284083 0.0577,0.142055 0.0904,0.290116 0.0904,0.451962 z m -0.30992,-1.304211 c 0,-0.129117 -0.0327,-0.226404 -0.0904,-0.303027 -0.0646,-0.07747 -0.14205,-0.110199 -0.24535,-0.110199 -0.10331,0 -0.18079,0.03876 -0.23933,0.110199 -0.0637,0.07662 -0.0904,0.179916 -0.0904,0.303027 0,0.290116 0.11019,0.439023 0.32972,0.439023 0.0973,0 0.18078,-0.03874 0.23932,-0.123084 0.0637,-0.0835 0.0964,-0.186796 0.0964,-0.315939 z m 0.0585,1.245685 c 0,-0.154967 -0.0327,-0.28411 -0.10331,-0.373645 -0.0714,-0.09123 -0.16873,-0.135996 -0.29097,-0.135996 -0.12913,0 -0.22642,0.05165 -0.29012,0.148061 -0.0714,0.09729 -0.10331,0.232437 -0.10331,0.394282 0,0.148061 0.0379,0.271172 0.10934,0.368459 0.0706,0.09641 0.16184,0.141182 0.27806,0.141182 0.10933,0 0.20661,-0.05165 0.28323,-0.154967 0.0775,-0.103293 0.11708,-0.232436 0.11708,-0.387376 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path43", + "name": "path43", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 186.16298,29.648659 h -0.23244 v -1.936962 h -0.43216 v -0.264292 c 0.18078,-0.03876 0.29614,-0.07834 0.34177,-0.129143 0.0577,-0.05853 0.11621,-0.193701 0.16098,-0.414073 h 0.16185 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path44", + "name": "path44", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 188.09996,28.247585 c 0,0.988298 -0.23244,1.485026 -0.6844,1.485026 -0.17476,0 -0.3039,-0.05768 -0.39429,-0.17391 -0.0766,-0.110173 -0.12913,-0.284956 -0.16098,-0.51652 h 0.23846 c 0,0.116205 0.0327,0.206613 0.0973,0.277204 0.0646,0.06456 0.14205,0.103293 0.23244,0.103293 0.12913,0 0.23933,-0.09038 0.3168,-0.277203 0.0835,-0.181637 0.12225,-0.43905 0.13516,-0.762741 -0.13516,0.219524 -0.28409,0.329723 -0.44507,0.329723 -0.18768,0 -0.32972,-0.07747 -0.43991,-0.239315 -0.11622,-0.160999 -0.16701,-0.380524 -0.16701,-0.645663 0,-0.271171 0.0577,-0.490696 0.17992,-0.658574 0.11622,-0.173911 0.26515,-0.264293 0.44594,-0.264293 0.20058,0 0.35468,0.116205 0.4709,0.33573 0.11622,0.232463 0.17476,0.568193 0.17476,1.007243 z m -0.25138,-0.420106 c 0,-0.179917 -0.0396,-0.328851 -0.11708,-0.439049 -0.0766,-0.109326 -0.17992,-0.167005 -0.30303,-0.167005 -0.11019,0 -0.1937,0.05077 -0.26429,0.160972 -0.0654,0.110199 -0.0973,0.25826 -0.0973,0.445082 0,0.187669 0.0318,0.336603 0.10331,0.445929 0.0706,0.09641 0.15496,0.148934 0.26515,0.148934 0.12224,0 0.21952,-0.05853 0.29614,-0.174757 0.0775,-0.116205 0.11708,-0.25826 0.11708,-0.420106 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path45", + "name": "path45", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 186.60201,32.276527 c 0,0.174757 -0.0387,0.342636 -0.12224,0.490696 -0.0585,0.109353 -0.13602,0.193675 -0.22039,0.264266 l -0.35468,0.28411 c -0.20661,0.161845 -0.3168,0.342609 -0.33574,0.549222 h 1.02014 v 0.328877 h -1.27841 c 0.0198,-0.48985 0.13602,-0.832485 0.35555,-1.019307 l 0.45196,-0.388223 c 0.16098,-0.13515 0.24449,-0.30906 0.24449,-0.509641 0,-0.154966 -0.0379,-0.284083 -0.10933,-0.374491 -0.0715,-0.09726 -0.16099,-0.142028 -0.28409,-0.142028 -0.23933,0 -0.36846,0.213492 -0.38137,0.645662 h -0.23158 c 0.006,-0.632751 0.23158,-0.955595 0.67062,-0.955595 0.14291,0 0.27204,0.06458 0.38138,0.193701 0.12913,0.154967 0.19369,0.36158 0.19369,0.632751 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path46", + "name": "path46", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 188.09349,32.831782 c 0,0.961601 -0.20661,1.446265 -0.62672,1.446265 -0.41925,0 -0.62586,-0.497602 -0.62586,-1.485 0,-0.420106 0.0577,-0.748956 0.16787,-0.987425 0.10934,-0.232437 0.26516,-0.355547 0.45799,-0.355547 0.20059,0 0.35554,0.12311 0.46488,0.355547 0.11019,0.238469 0.16184,0.581104 0.16184,1.02616 z m -0.23244,0.03273 c 0,-0.717127 -0.12913,-1.07868 -0.38739,-1.07868 -0.15496,0 -0.26515,0.110172 -0.32886,0.33573 -0.0456,0.17391 -0.0714,0.426138 -0.0714,0.768773 0,0.716227 0.12913,1.077807 0.3874,1.070901 0.13602,0 0.23846,-0.09038 0.30389,-0.264292 0.0637,-0.180764 0.0964,-0.451961 0.0964,-0.832432 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path47", + "name": "path47", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 218.52342,18.74346 c 0,0.174784 -0.0387,0.342636 -0.12224,0.490723 -0.0585,0.109326 -0.13602,0.193701 -0.2204,0.264292 l -0.35467,0.284083 c -0.20661,0.161846 -0.31681,0.342636 -0.33573,0.549249 h 1.02013 v 0.328851 h -1.27841 c 0.0198,-0.48985 0.13602,-0.832485 0.35554,-1.019281 l 0.45196,-0.38825 c 0.161,-0.135175 0.2445,-0.30906 0.2445,-0.509667 0,-0.15494 -0.0379,-0.284083 -0.10932,-0.374465 -0.0715,-0.09729 -0.161,-0.142054 -0.28411,-0.142054 -0.23932,0 -0.36846,0.213492 -0.38137,0.645662 h -0.23156 c 0.006,-0.632751 0.23156,-0.955569 0.67061,-0.955569 0.14292,0 0.27204,0.06456 0.38137,0.193702 0.12914,0.15494 0.1937,0.361553 0.1937,0.632724 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path48", + "name": "path48", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 219.58228,20.661107 h -0.22553 v -1.936961 h -0.43305 v -0.264293 c 0.18079,-0.03873 0.29012,-0.07834 0.34179,-0.129143 0.0585,-0.05853 0.11018,-0.193701 0.16185,-0.414073 h 0.15494 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path49", + "name": "path49", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 218.52342,23.237302 c 0,0.174758 -0.0387,0.342609 -0.12224,0.49067 -0.0585,0.109326 -0.13602,0.193702 -0.2204,0.264292 l -0.35467,0.284083 c -0.20661,0.161846 -0.31681,0.342636 -0.33573,0.549249 h 1.02013 v 0.328851 h -1.27841 c 0.0198,-0.489823 0.13602,-0.832459 0.35554,-1.019281 l 0.45196,-0.38825 c 0.161,-0.135149 0.2445,-0.309033 0.2445,-0.509614 0,-0.154966 -0.0379,-0.284083 -0.10932,-0.374491 -0.0715,-0.09726 -0.161,-0.142028 -0.28411,-0.142028 -0.23932,0 -0.36846,0.213492 -0.38137,0.645662 h -0.23156 c 0.006,-0.632751 0.23156,-0.955595 0.67061,-0.955595 0.14292,0 0.27204,0.06456 0.38137,0.193701 0.12914,0.154967 0.1937,0.36158 0.1937,0.632751 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path50", + "name": "path50", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 220.02135,23.237302 c 0,0.174758 -0.0387,0.342609 -0.12224,0.49067 -0.0585,0.109326 -0.12914,0.193702 -0.21351,0.264292 l -0.36155,0.284083 c -0.20061,0.161846 -0.31682,0.342636 -0.33576,0.549249 h 1.02015 v 0.328851 h -1.27153 c 0.013,-0.489823 0.12914,-0.832459 0.34867,-1.019281 l 0.45196,-0.38825 c 0.16097,-0.135149 0.24447,-0.309033 0.24447,-0.509614 0,-0.154966 -0.0318,-0.284083 -0.10329,-0.374491 -0.0706,-0.09726 -0.16701,-0.142028 -0.29012,-0.142028 -0.23931,0 -0.36158,0.213492 -0.38137,0.645662 h -0.22555 c 0.006,-0.632751 0.22555,-0.955595 0.6646,-0.955595 0.14894,0 0.27205,0.06456 0.38137,0.193701 0.12914,0.154967 0.1937,0.36158 0.1937,0.632751 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path51", + "name": "path51", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 218.52342,27.731065 c 0,0.174757 -0.0387,0.342635 -0.12224,0.490723 -0.0585,0.109325 -0.13602,0.193701 -0.2204,0.264292 l -0.35467,0.284083 c -0.20661,0.161846 -0.31681,0.342635 -0.33573,0.549249 h 1.02013 v 0.32885 h -1.27841 c 0.0198,-0.489849 0.13602,-0.832485 0.35554,-1.019281 l 0.45196,-0.388276 c 0.161,-0.135149 0.2445,-0.309033 0.2445,-0.50964 0,-0.15494 -0.0379,-0.284083 -0.10932,-0.374465 -0.0715,-0.09729 -0.161,-0.142055 -0.28411,-0.142055 -0.23932,0 -0.36846,0.213493 -0.38137,0.645663 h -0.23156 c 0.006,-0.632751 0.23156,-0.955569 0.67061,-0.955569 0.14292,0 0.27204,0.06456 0.38137,0.193701 0.12914,0.15494 0.1937,0.361553 0.1937,0.632725 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path52", + "name": "path52", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 220.0149,28.886818 c 0,0.245348 -0.0646,0.451961 -0.1877,0.606901 -0.12223,0.160999 -0.2772,0.239342 -0.47088,0.239342 -0.17391,0 -0.30993,-0.06456 -0.42613,-0.20058 -0.12915,-0.154967 -0.1937,-0.380524 -0.19973,-0.684398 h 0.23243 c 0,0.173884 0.0319,0.309906 0.0964,0.419232 0.0577,0.110199 0.14206,0.161846 0.24535,0.161846 0.30993,0 0.46487,-0.18079 0.46487,-0.555255 0,-0.322844 -0.13515,-0.483817 -0.4132,-0.483817 h -0.11623 V 28.0991 c 0.16788,0 0.27808,-0.02593 0.34264,-0.07144 0.0835,-0.06371 0.12224,-0.192855 0.12224,-0.393436 0,-0.278077 -0.11621,-0.413226 -0.36156,-0.413226 -0.22643,0 -0.34263,0.193702 -0.34867,0.574199 h -0.21952 c 0.013,-0.580231 0.20661,-0.877226 0.58798,-0.891011 0.17389,0 0.31594,0.06543 0.42614,0.200607 0.1162,0.142029 0.167,0.322818 0.167,0.548376 0,0.239315 -0.0766,0.426138 -0.23846,0.575071 0.10932,0.07747 0.18766,0.161846 0.23243,0.264293 0.0448,0.09726 0.0646,0.232436 0.0646,0.394282 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path53", + "name": "path53", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 218.52342,32.276527 c 0,0.174757 -0.0387,0.342636 -0.12224,0.490696 -0.0585,0.109353 -0.13602,0.193675 -0.2204,0.264266 l -0.35467,0.28411 c -0.20661,0.161845 -0.31681,0.342609 -0.33573,0.549222 h 1.02013 v 0.328877 h -1.27841 c 0.0198,-0.48985 0.13602,-0.832485 0.35554,-1.019307 l 0.45196,-0.388223 c 0.161,-0.13515 0.2445,-0.30906 0.2445,-0.509641 0,-0.154966 -0.0379,-0.284083 -0.10932,-0.374491 -0.0715,-0.09726 -0.161,-0.142028 -0.28411,-0.142028 -0.23932,0 -0.36846,0.213492 -0.38137,0.645662 h -0.23156 c 0.006,-0.632751 0.23156,-0.955595 0.67061,-0.955595 0.14292,0 0.27204,0.06458 0.38137,0.193701 0.12914,0.154967 0.1937,0.36158 0.1937,0.632751 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path54", + "name": "path54", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 220.04718,33.548432 h -0.27721 v 0.645663 h -0.22643 v -0.645663 h -0.82041 v -0.361553 l 0.86518,-1.737254 h 0.18166 v 1.775989 h 0.27721 z m -0.50364,-0.322818 v -1.226741 l -0.6069,1.226741 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path55", + "name": "path55", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 250.39316,18.74346 c 0,0.174784 -0.0387,0.342636 -0.12224,0.490723 -0.0585,0.109326 -0.13602,0.193701 -0.2204,0.264292 l -0.35467,0.284083 c -0.20661,0.161846 -0.31681,0.342636 -0.33575,0.549249 h 1.02015 v 0.328851 h -1.27841 c 0.0198,-0.48985 0.13602,-0.832485 0.35554,-1.019281 l 0.45196,-0.38825 c 0.161,-0.135175 0.2445,-0.30906 0.2445,-0.509667 0,-0.15494 -0.0379,-0.284083 -0.10935,-0.374465 -0.0714,-0.09729 -0.16097,-0.142054 -0.28408,-0.142054 -0.23932,0 -0.36846,0.213492 -0.38137,0.645662 h -0.23156 c 0.006,-0.632751 0.23156,-0.955569 0.67061,-0.955569 0.1429,0 0.27204,0.06456 0.38137,0.193702 0.12914,0.15494 0.1937,0.361553 0.1937,0.632724 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path56", + "name": "path56", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 251.904,19.783008 c 0,0.265139 -0.0646,0.490696 -0.1937,0.678365 -0.12311,0.186823 -0.27805,0.283237 -0.45799,0.283237 -0.18076,0 -0.3297,-0.07662 -0.45281,-0.218652 -0.12223,-0.142928 -0.18682,-0.322844 -0.18682,-0.542369 h 0.23934 c 0.0448,0.17391 0.0904,0.290115 0.14806,0.347795 0.0516,0.05855 0.12915,0.09125 0.23244,0.09125 0.27117,0 0.40635,-0.213492 0.40635,-0.633597 0,-0.186823 -0.0379,-0.334883 -0.10936,-0.451115 -0.0775,-0.110199 -0.16785,-0.167878 -0.28408,-0.167878 -0.0775,0 -0.14205,0.01905 -0.1937,0.05768 -0.0456,0.03186 -0.0964,0.09644 -0.16788,0.186822 h -0.21349 l 0.14205,-1.497938 h 0.99518 v 0.342635 h -0.80147 l -0.0775,0.755862 c 0.0973,-0.110199 0.21352,-0.161846 0.35555,-0.161846 0.18767,0 0.33575,0.0835 0.45195,0.251381 0.10936,0.174757 0.16788,0.401161 0.16788,0.678365 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path57", + "name": "path57", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 250.39316,23.237302 c 0,0.174758 -0.0387,0.342609 -0.12224,0.49067 -0.0585,0.109326 -0.13602,0.193702 -0.2204,0.264292 l -0.35467,0.284083 c -0.20661,0.161846 -0.31681,0.342636 -0.33575,0.549249 h 1.02015 v 0.328851 h -1.27841 c 0.0198,-0.489823 0.13602,-0.832459 0.35554,-1.019281 l 0.45196,-0.38825 c 0.161,-0.135149 0.2445,-0.309033 0.2445,-0.509614 0,-0.154966 -0.0379,-0.284083 -0.10935,-0.374491 -0.0714,-0.09726 -0.16097,-0.142028 -0.28408,-0.142028 -0.23932,0 -0.36846,0.213492 -0.38137,0.645662 h -0.23156 c 0.006,-0.632751 0.23156,-0.955595 0.67061,-0.955595 0.1429,0 0.27204,0.06456 0.38137,0.193701 0.12914,0.154967 0.1937,0.36158 0.1937,0.632751 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path58", + "name": "path58", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 251.904,24.315532 c 0,0.271172 -0.0585,0.490697 -0.17475,0.658575 -0.11621,0.180789 -0.27033,0.264292 -0.46487,0.264292 -0.41926,0 -0.63188,-0.445082 -0.63188,-1.342972 0,-0.987425 0.23243,-1.485001 0.70334,-1.485001 0.1162,0 0.23244,0.06456 0.33573,0.187669 0.1102,0.136023 0.17391,0.309907 0.19973,0.529432 h -0.25138 c 0.013,-0.103294 -0.0191,-0.199708 -0.0904,-0.277204 -0.0645,-0.08435 -0.14202,-0.123084 -0.23243,-0.123084 -0.12912,0 -0.23932,0.09038 -0.31594,0.277204 -0.0783,0.187668 -0.12311,0.445928 -0.12912,0.774752 0.1541,-0.225557 0.30904,-0.335703 0.45797,-0.335703 0.16788,0 0.30305,0.08432 0.41926,0.252201 0.11623,0.167878 0.17475,0.374491 0.17475,0.619839 z m -0.24534,0 c 0,-0.167878 -0.0319,-0.309933 -0.0904,-0.406347 -0.0706,-0.103293 -0.16788,-0.161845 -0.29099,-0.161845 -0.1033,0 -0.19283,0.05167 -0.2643,0.154966 -0.0904,0.110199 -0.12914,0.251381 -0.12914,0.433017 0,0.173911 0.0388,0.315939 0.11623,0.432171 0.0775,0.109325 0.16788,0.167878 0.28409,0.167878 0.0964,0 0.17475,-0.04477 0.24534,-0.129143 0.0835,-0.110199 0.12915,-0.271172 0.12915,-0.490697 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path59", + "name": "path59", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 250.39316,27.731065 c 0,0.174757 -0.0387,0.342635 -0.12224,0.490723 -0.0585,0.109325 -0.13602,0.193701 -0.2204,0.264292 l -0.35467,0.284083 c -0.20661,0.161846 -0.31681,0.342635 -0.33575,0.549249 h 1.02015 v 0.32885 h -1.27841 c 0.0198,-0.489849 0.13602,-0.832485 0.35554,-1.019281 l 0.45196,-0.388276 c 0.161,-0.135149 0.2445,-0.309033 0.2445,-0.50964 0,-0.15494 -0.0379,-0.284083 -0.10935,-0.374465 -0.0714,-0.09729 -0.16097,-0.142055 -0.28408,-0.142055 -0.23932,0 -0.36846,0.213493 -0.38137,0.645663 h -0.23156 c 0.006,-0.632751 0.23156,-0.955569 0.67061,-0.955569 0.1429,0 0.27204,0.06456 0.38137,0.193701 0.12914,0.15494 0.1937,0.361553 0.1937,0.632725 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path60", + "name": "path60", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 251.91694,27.195178 c -0.29099,0.568193 -0.49673,1.097624 -0.62671,1.594353 -0.0646,0.284109 -0.11624,0.569039 -0.14809,0.859155 h -0.25826 c 0.0577,-0.348642 0.1102,-0.606902 0.14806,-0.761868 0.0844,-0.329724 0.29702,-0.878099 0.63362,-1.652905 h -1.02703 v -0.329697 h 1.27841 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path61", + "name": "path61", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 250.39316,32.276527 c 0,0.174757 -0.0387,0.342636 -0.12224,0.490696 -0.0585,0.109353 -0.13602,0.193675 -0.2204,0.264266 l -0.35467,0.28411 c -0.20661,0.161845 -0.31681,0.342609 -0.33575,0.549222 h 1.02015 v 0.328877 h -1.27841 c 0.0198,-0.48985 0.13602,-0.832485 0.35554,-1.019307 l 0.45196,-0.388223 c 0.161,-0.13515 0.2445,-0.30906 0.2445,-0.509641 0,-0.154966 -0.0379,-0.284083 -0.10935,-0.374491 -0.0714,-0.09726 -0.16097,-0.142028 -0.28408,-0.142028 -0.23932,0 -0.36846,0.213492 -0.38137,0.645662 h -0.23156 c 0.006,-0.632751 0.23156,-0.955595 0.67061,-0.955595 0.1429,0 0.27204,0.06458 0.38137,0.193701 0.12914,0.154967 0.1937,0.36158 0.1937,0.632751 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path62", + "name": "path62", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 251.904,33.477418 c 0,0.219525 -0.0646,0.406347 -0.18766,0.561314 -0.12915,0.15494 -0.28409,0.239315 -0.47694,0.239315 -0.18164,0 -0.3297,-0.08438 -0.44593,-0.239315 -0.1162,-0.154967 -0.18079,-0.347795 -0.18079,-0.587137 0,-0.15494 0.0327,-0.296995 0.0835,-0.419233 0.0585,-0.123084 0.13601,-0.213492 0.23243,-0.27805 -0.16097,-0.129143 -0.24535,-0.315939 -0.24535,-0.561287 0,-0.206613 0.0525,-0.381371 0.16185,-0.523426 0.10332,-0.142054 0.23243,-0.219524 0.3874,-0.219524 0.17476,0 0.32284,0.07059 0.43217,0.20058 0.11708,0.129143 0.17475,0.303028 0.17475,0.509641 0,0.238469 -0.0835,0.43217 -0.25225,0.581104 0.0913,0.04477 0.16185,0.142055 0.22643,0.284057 0.0577,0.142055 0.0904,0.290115 0.0904,0.451961 z m -0.3099,-1.304211 c 0,-0.129116 -0.0327,-0.226404 -0.0904,-0.303027 -0.0646,-0.07747 -0.14203,-0.110172 -0.24535,-0.110172 -0.10329,0 -0.18079,0.03874 -0.23931,0.110172 -0.0637,0.07662 -0.0904,0.179943 -0.0904,0.303027 0,0.290116 0.1102,0.43905 0.32972,0.43905 0.0973,0 0.18079,-0.03874 0.23934,-0.123084 0.0637,-0.08353 0.0964,-0.186822 0.0964,-0.315966 z m 0.0585,1.245685 c 0,-0.154966 -0.0327,-0.284083 -0.10329,-0.373618 -0.0715,-0.09125 -0.16875,-0.135996 -0.29099,-0.135996 -0.12911,0 -0.2264,0.05162 -0.29011,0.148035 -0.0714,0.09729 -0.1033,0.232436 -0.1033,0.394282 0,0.148087 0.0379,0.271171 0.10933,0.368458 0.0706,0.09642 0.16185,0.141182 0.27805,0.141182 0.10935,0 0.20661,-0.05165 0.28324,-0.15494 0.0775,-0.10332 0.11707,-0.232436 0.11707,-0.387403 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path63", + "name": "path63", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 106.90829,42.82012 c 0,0.265165 -0.0585,0.490696 -0.18767,0.678392 -0.12912,0.186795 -0.2772,0.28321 -0.45797,0.28321 -0.18079,0 -0.33575,-0.07662 -0.45886,-0.218652 -0.11621,-0.142902 -0.17992,-0.322845 -0.1868,-0.542369 h 0.24535 c 0.0387,0.17391 0.0904,0.290115 0.14203,0.347794 0.0577,0.05855 0.13602,0.09125 0.23934,0.09125 0.2703,0 0.39944,-0.213492 0.39944,-0.633598 0,-0.186822 -0.0319,-0.334883 -0.10932,-0.451114 -0.0706,-0.110146 -0.16788,-0.167825 -0.27721,-0.167825 -0.0783,0 -0.1429,0.01905 -0.20058,0.05768 -0.0388,0.03186 -0.0964,0.09639 -0.16185,0.186769 h -0.21952 l 0.14893,-1.497912 h 0.98828 v 0.342636 h -0.7946 l -0.0775,0.755861 c 0.0904,-0.110199 0.21349,-0.161845 0.35555,-0.161845 0.18079,0 0.33573,0.0835 0.44508,0.25138 0.1162,0.174758 0.16785,0.401135 0.16785,0.678339 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path64", + "name": "path64", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 106.90829,75.658351 c 0,0.271198 -0.0516,0.490723 -0.16785,0.658574 -0.11623,0.18079 -0.2712,0.264292 -0.46487,0.264292 -0.42614,0 -0.63879,-0.445055 -0.63879,-1.342972 0,-0.987425 0.23847,-1.485026 0.70334,-1.485026 0.12311,0 0.23244,0.06458 0.33573,0.187695 0.11623,0.135996 0.18079,0.309906 0.19974,0.529431 h -0.2445 c 0.006,-0.10332 -0.0199,-0.199734 -0.0912,-0.277204 -0.0706,-0.08437 -0.14809,-0.12311 -0.23847,-0.12311 -0.12914,0 -0.23244,0.09041 -0.30993,0.277204 -0.0775,0.187669 -0.12224,0.445928 -0.13515,0.774805 0.16097,-0.225557 0.30906,-0.335756 0.46402,-0.335756 0.16185,0 0.30388,0.08438 0.42011,0.252254 0.1162,0.167852 0.16785,0.374465 0.16785,0.619813 z m -0.23932,0 c 0,-0.167852 -0.0319,-0.309907 -0.0964,-0.406321 -0.0646,-0.10332 -0.161,-0.161845 -0.28408,-0.161845 -0.10332,0 -0.1937,0.05165 -0.2712,0.15494 -0.0844,0.110199 -0.12912,0.25138 -0.12912,0.433043 0,0.173884 0.0387,0.315939 0.11621,0.432144 0.0775,0.109352 0.17391,0.167878 0.29099,0.167878 0.0895,0 0.17388,-0.04477 0.23847,-0.129116 0.0904,-0.110199 0.13514,-0.271198 0.13514,-0.490723 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path65", + "name": "path65", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 106.92766,106.84373 c -0.29096,0.56817 -0.50361,1.09762 -0.62672,1.59433 -0.0706,0.28408 -0.12224,0.56904 -0.14806,0.85915 h -0.25826 c 0.0577,-0.34867 0.10329,-0.60693 0.14806,-0.76189 0.0844,-0.32967 0.29099,-0.87808 0.6336,-1.65286 h -1.02704 v -0.32972 h 1.27842 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path66", + "name": "path66", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 106.90829,141.38003 c 0,0.21952 -0.0585,0.40632 -0.18767,0.56129 -0.12224,0.15496 -0.28408,0.23931 -0.4709,0.23931 -0.18077,0 -0.3297,-0.0844 -0.44593,-0.23931 -0.12224,-0.15497 -0.17992,-0.3478 -0.17992,-0.58711 0,-0.15497 0.0259,-0.29702 0.0835,-0.41926 0.0585,-0.12311 0.13602,-0.21349 0.23244,-0.27805 -0.16788,-0.12915 -0.25223,-0.31597 -0.25223,-0.56132 0,-0.20661 0.0585,-0.38137 0.16185,-0.5234 0.11017,-0.14205 0.23931,-0.21952 0.38737,-0.21952 0.18079,0 0.32285,0.0706 0.43905,0.20058 0.1102,0.12912 0.16788,0.30303 0.16788,0.50964 0,0.23847 -0.0835,0.43217 -0.24535,0.58108 0.0844,0.0448 0.16185,0.14205 0.21953,0.28411 0.0646,0.14203 0.0904,0.29011 0.0904,0.45196 z m -0.30991,-1.30424 c 0,-0.12914 -0.0259,-0.2264 -0.0904,-0.30302 -0.0585,-0.0775 -0.14205,-0.1102 -0.23934,-0.1102 -0.10329,0 -0.1868,0.0387 -0.24535,0.1102 -0.0577,0.0766 -0.0904,0.17991 -0.0904,0.30302 0,0.29012 0.1102,0.43905 0.33573,0.43905 0.0973,0 0.17476,-0.0387 0.23934,-0.12311 0.0646,-0.0835 0.0904,-0.18682 0.0904,-0.31594 z m 0.0646,1.24569 c 0,-0.15494 -0.0387,-0.28409 -0.10932,-0.37362 -0.0654,-0.0913 -0.16185,-0.13602 -0.29097,-0.13602 -0.12226,0 -0.21952,0.0516 -0.29014,0.14808 -0.0654,0.0973 -0.10329,0.23244 -0.10329,0.39429 0,0.14806 0.0379,0.27117 0.10932,0.36846 0.0775,0.0964 0.16788,0.14118 0.27808,0.14118 0.11536,0 0.21262,-0.0517 0.29012,-0.15497 0.0775,-0.10329 0.1162,-0.23244 0.1162,-0.3874 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path67", + "name": "path67", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 138.81677,42.297145 c 0,0.988271 -0.22555,1.485 -0.68439,1.485 -0.16788,0 -0.297,-0.05768 -0.38741,-0.173884 -0.0775,-0.110199 -0.13602,-0.284956 -0.16184,-0.516546 h 0.23934 c -0.007,0.116231 0.0259,0.206613 0.0904,0.277204 0.0646,0.06456 0.14206,0.103319 0.23932,0.103319 0.12827,0 0.23243,-0.09041 0.31596,-0.277203 0.0775,-0.181663 0.12309,-0.43905 0.12912,-0.762741 -0.13515,0.219525 -0.28408,0.329697 -0.44508,0.329697 -0.18164,0 -0.3297,-0.07747 -0.4399,-0.239316 -0.10932,-0.160972 -0.167,-0.38047 -0.167,-0.645636 0,-0.271171 0.0637,-0.490696 0.17991,-0.658574 0.11621,-0.173884 0.27205,-0.264293 0.44593,-0.264293 0.20662,0 0.36158,0.116232 0.47091,0.335757 0.11623,0.232436 0.17475,0.568166 0.17475,1.007216 z m -0.25138,-0.420106 c 0,-0.179917 -0.0396,-0.32885 -0.11707,-0.439049 -0.0766,-0.109326 -0.17389,-0.167005 -0.29615,-0.167005 -0.11017,0 -0.20058,0.0508 -0.26514,0.160972 -0.0715,0.110199 -0.10332,0.258286 -0.10332,0.445082 0,0.187669 0.0388,0.336603 0.1102,0.445929 0.0637,0.09641 0.15496,0.148907 0.25826,0.148907 0.12226,0 0.21952,-0.05852 0.29615,-0.17473 0.0775,-0.116205 0.11707,-0.25826 0.11707,-0.420106 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path68", + "name": "path68", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 138.38418,76.497715 h -0.23244 v -1.936962 h -0.43217 v -0.264292 c 0.18079,-0.03876 0.29615,-0.07834 0.34177,-0.129143 0.0577,-0.05853 0.11623,-0.193702 0.161,-0.414073 h 0.16184 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path69", + "name": "path69", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 140.31471,75.135402 c 0,0.961602 -0.20661,1.446265 -0.62672,1.446265 -0.41925,0 -0.62587,-0.497575 -0.62587,-1.485 0,-0.420132 0.0577,-0.748983 0.16788,-0.987452 0.10933,-0.232436 0.26514,-0.355547 0.45799,-0.355547 0.20059,0 0.35553,0.123111 0.46488,0.355547 0.11017,0.238469 0.16184,0.581105 0.16184,1.026187 z m -0.23243,0.0327 c 0,-0.7171 -0.12915,-1.078679 -0.38741,-1.078679 -0.15496,0 -0.26516,0.110199 -0.32885,0.335729 -0.0456,0.173911 -0.0715,0.426138 -0.0715,0.768774 0,0.716253 0.12914,1.077833 0.3874,1.070954 0.13602,0 0.23847,-0.09041 0.30388,-0.264293 0.0637,-0.180789 0.0964,-0.451961 0.0964,-0.832485 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path70", + "name": "path70", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 138.38418,109.29721 h -0.23244 v -1.93696 h -0.43217 v -0.26429 c 0.18079,-0.0387 0.29615,-0.0784 0.34177,-0.12912 0.0577,-0.0586 0.11623,-0.1937 0.161,-0.4141 h 0.16184 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path71", + "name": "path71", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 139.88209,109.29721 h -0.22553 v -1.93696 h -0.43304 v -0.26429 c 0.18079,-0.0387 0.29014,-0.0784 0.34179,-0.12912 0.0585,-0.0586 0.1102,-0.1937 0.16184,-0.4141 h 0.15494 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path72", + "name": "path72", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 138.38418,142.09673 h -0.23244 v -1.93699 h -0.43217 v -0.26429 c 0.18079,-0.0387 0.29615,-0.0783 0.34177,-0.12914 0.0577,-0.0585 0.11623,-0.19368 0.161,-0.41407 h 0.16184 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path73", + "name": "path73", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 140.32117,140.17911 c 0,0.17476 -0.0387,0.34264 -0.12226,0.4907 -0.0585,0.10932 -0.12912,0.1937 -0.2135,0.26429 l -0.36155,0.28408 c -0.20061,0.16185 -0.31681,0.34264 -0.33576,0.54925 h 1.02016 v 0.32885 h -1.27154 c 0.013,-0.48982 0.12915,-0.83246 0.34867,-1.01928 l 0.45196,-0.38825 c 0.16097,-0.13515 0.24448,-0.30906 0.24448,-0.50964 0,-0.15496 -0.0319,-0.28408 -0.1033,-0.37449 -0.0706,-0.0973 -0.167,-0.14203 -0.29011,-0.14203 -0.23934,0 -0.36158,0.2135 -0.38137,0.64564 h -0.22556 c 0.006,-0.63273 0.22556,-0.95557 0.66461,-0.95557 0.14893,0 0.27204,0.0646 0.38137,0.1937 0.12911,0.15497 0.1937,0.36158 0.1937,0.63275 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path74", + "name": "path74", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 170.30558,43.698219 h -0.23244 v -1.936962 h -0.43217 v -0.264292 c 0.18079,-0.03874 0.29615,-0.07834 0.34179,-0.129143 0.0577,-0.05853 0.1162,-0.193701 0.16097,-0.414073 h 0.16185 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path75", + "name": "path75", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 172.23611,42.936325 c 0,0.245348 -0.0646,0.451961 -0.18767,0.606928 -0.12226,0.160972 -0.2772,0.239315 -0.4709,0.239315 -0.17391,0 -0.30994,-0.06456 -0.42614,-0.20058 -0.12915,-0.154967 -0.1937,-0.380524 -0.19974,-0.684398 h 0.23244 c 0,0.173884 0.0319,0.309906 0.0964,0.419232 0.0577,0.110199 0.14206,0.161846 0.24535,0.161846 0.30994,0 0.4649,-0.180763 0.4649,-0.555255 0,-0.322844 -0.13517,-0.483817 -0.41322,-0.483817 h -0.11624 v -0.290962 c 0.16788,0 0.27808,-0.02593 0.34264,-0.07144 0.0835,-0.06371 0.12224,-0.192854 0.12224,-0.393435 0,-0.278051 -0.11621,-0.413226 -0.36156,-0.413226 -0.22643,0 -0.34263,0.193701 -0.34866,0.574225 h -0.21953 c 0.013,-0.580231 0.20661,-0.877253 0.58798,-0.891011 0.17392,0 0.31594,0.06543 0.42614,0.200581 0.11621,0.142055 0.16701,0.322818 0.16701,0.548375 0,0.239316 -0.0766,0.426138 -0.23847,0.575072 0.10935,0.07744 0.18767,0.161819 0.23244,0.264266 0.0448,0.09729 0.0646,0.232436 0.0646,0.394282 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path76", + "name": "path76", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 170.30558,76.497715 h -0.23244 v -1.936962 h -0.43217 v -0.264292 c 0.18079,-0.03876 0.29615,-0.07834 0.34179,-0.129143 0.0577,-0.05853 0.1162,-0.193702 0.16097,-0.414073 h 0.16185 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path77", + "name": "path77", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 172.26839,75.852052 h -0.2772 v 0.645663 h -0.22641 v -0.645663 h -0.82042 v -0.361553 l 0.86519,-1.737254 h 0.18164 v 1.775989 h 0.2772 z m -0.50361,-0.322818 v -1.226767 l -0.60693,1.226767 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path78", + "name": "path78", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 170.30558,109.29721 h -0.23244 v -1.93696 h -0.43217 v -0.26429 c 0.18079,-0.0387 0.29615,-0.0784 0.34179,-0.12912 0.0577,-0.0586 0.1162,-0.1937 0.16097,-0.4141 h 0.16185 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path79", + "name": "path79", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 172.2555,108.41909 c 0,0.26516 -0.0646,0.49072 -0.1937,0.67839 -0.12311,0.18679 -0.27807,0.28323 -0.45799,0.28323 -0.18079,0 -0.32972,-0.0766 -0.45284,-0.21867 -0.12223,-0.14291 -0.18679,-0.32282 -0.18679,-0.54235 h 0.23931 c 0.0448,0.17389 0.0904,0.29012 0.14807,0.3478 0.0517,0.0585 0.12914,0.0913 0.23243,0.0913 0.2712,0 0.40635,-0.21352 0.40635,-0.63362 0,-0.1868 -0.0379,-0.33486 -0.10933,-0.45106 -0.0775,-0.1102 -0.16788,-0.16788 -0.28408,-0.16788 -0.0775,0 -0.14206,0.0191 -0.1937,0.0577 -0.0456,0.0318 -0.0964,0.0964 -0.16788,0.18679 h -0.21349 l 0.14203,-1.49791 h 0.99517 v 0.34261 h -0.80147 l -0.0775,0.75586 c 0.0973,-0.1102 0.21349,-0.16184 0.35554,-0.16184 0.18767,0 0.33573,0.0835 0.45197,0.25138 0.10932,0.17475 0.16787,0.40116 0.16787,0.67834 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path80", + "name": "path80", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 170.30558,142.09673 h -0.23244 v -1.93699 h -0.43217 v -0.26429 c 0.18079,-0.0387 0.29615,-0.0783 0.34179,-0.12914 0.0577,-0.0585 0.1162,-0.19368 0.16097,-0.41407 h 0.16185 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path81", + "name": "path81", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 172.2555,141.25737 c 0,0.27117 -0.0586,0.4907 -0.17478,0.65857 -0.1162,0.18079 -0.2703,0.2643 -0.46487,0.2643 -0.41923,0 -0.63188,-0.44509 -0.63188,-1.34298 0,-0.98745 0.23244,-1.48502 0.70334,-1.48502 0.11621,0 0.23244,0.0645 0.33573,0.18767 0.1102,0.13602 0.17391,0.3099 0.19974,0.52943 h -0.25139 c 0.013,-0.1033 -0.0191,-0.19971 -0.0904,-0.27721 -0.0646,-0.0843 -0.14205,-0.12308 -0.23243,-0.12308 -0.12915,0 -0.23935,0.0904 -0.31594,0.2772 -0.0784,0.18767 -0.12311,0.44593 -0.12915,0.77478 0.1541,-0.22556 0.30906,-0.33573 0.458,-0.33573 0.16788,0 0.30303,0.0844 0.41923,0.25223 0.11623,0.16788 0.17478,0.37449 0.17478,0.61984 z m -0.24537,0 c 0,-0.16788 -0.0318,-0.30993 -0.0904,-0.40635 -0.0706,-0.10329 -0.16788,-0.16184 -0.29099,-0.16184 -0.10329,0 -0.19283,0.0516 -0.26429,0.15496 -0.0904,0.1102 -0.12912,0.25138 -0.12912,0.43302 0,0.17391 0.0387,0.31594 0.11621,0.43217 0.0775,0.10933 0.16787,0.16788 0.2841,0.16788 0.0964,0 0.17476,-0.0448 0.24535,-0.12914 0.0835,-0.1102 0.12912,-0.27118 0.12912,-0.4907 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path82", + "name": "path82", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 202.17534,43.698219 h -0.23244 v -1.936962 h -0.43216 v -0.264292 c 0.18078,-0.03874 0.29614,-0.07834 0.34177,-0.129143 0.0577,-0.05853 0.11622,-0.193701 0.16098,-0.414073 h 0.16185 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path83", + "name": "path83", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 204.13814,41.244738 c -0.29098,0.568166 -0.49673,1.097624 -0.62672,1.594326 -0.0646,0.284083 -0.11622,0.569039 -0.14807,0.859155 h -0.25827 c 0.0577,-0.348668 0.1102,-0.606928 0.14808,-0.761894 0.0844,-0.329724 0.297,-0.878073 0.6336,-1.652852 h -1.02703 v -0.329724 h 1.27841 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path84", + "name": "path84", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 202.17534,76.497715 h -0.23244 v -1.936962 h -0.43216 v -0.264292 c 0.18078,-0.03876 0.29614,-0.07834 0.34177,-0.129143 0.0577,-0.05853 0.11622,-0.193702 0.16098,-0.414073 h 0.16185 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path85", + "name": "path85", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 204.12521,75.781065 c 0,0.219524 -0.0646,0.40632 -0.18767,0.561287 -0.12913,0.154966 -0.28409,0.239315 -0.47692,0.239315 -0.18165,0 -0.32972,-0.08435 -0.44594,-0.239315 -0.11622,-0.154967 -0.18079,-0.347795 -0.18079,-0.587111 0,-0.154966 0.0327,-0.297021 0.0835,-0.419259 0.0585,-0.12311 0.13602,-0.213492 0.23244,-0.278077 -0.16099,-0.129116 -0.24535,-0.315939 -0.24535,-0.561287 0,-0.206613 0.0525,-0.38137 0.16184,-0.523425 0.10331,-0.142028 0.23244,-0.219525 0.3874,-0.219525 0.17476,0 0.32283,0.07059 0.43216,0.200607 0.11708,0.129117 0.17476,0.303028 0.17476,0.509641 0,0.238442 -0.0835,0.432144 -0.25224,0.581078 0.0913,0.04477 0.16185,0.142055 0.22641,0.284109 0.0577,0.142029 0.0904,0.290116 0.0904,0.451962 z m -0.30991,-1.304238 c 0,-0.129143 -0.0327,-0.22643 -0.0904,-0.303027 -0.0646,-0.0775 -0.14205,-0.110199 -0.24535,-0.110199 -0.10331,0 -0.18079,0.03873 -0.23933,0.110199 -0.0637,0.0766 -0.0904,0.179917 -0.0904,0.303027 0,0.290116 0.11019,0.43905 0.32972,0.43905 0.0973,0 0.18078,-0.03873 0.23932,-0.123111 0.0637,-0.0835 0.0964,-0.186822 0.0964,-0.315939 z m 0.0585,1.245685 c 0,-0.154966 -0.0327,-0.284083 -0.10331,-0.373618 -0.0714,-0.09126 -0.16873,-0.136022 -0.29097,-0.136022 -0.12914,0 -0.22641,0.05165 -0.29012,0.148061 -0.0714,0.09729 -0.10331,0.232463 -0.10331,0.394308 0,0.148061 0.0379,0.271172 0.10934,0.368433 0.0706,0.09644 0.16184,0.141208 0.27806,0.141208 0.10933,0 0.20661,-0.05167 0.28323,-0.154967 0.0775,-0.10332 0.11708,-0.232436 0.11708,-0.387403 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path86", + "name": "path86", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 202.17534,109.29721 h -0.23244 v -1.93696 h -0.43216 v -0.26429 c 0.18078,-0.0387 0.29614,-0.0784 0.34177,-0.12912 0.0577,-0.0586 0.11622,-0.1937 0.16098,-0.4141 h 0.16185 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path87", + "name": "path87", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 204.11231,107.89616 c 0,0.98827 -0.23243,1.485 -0.68439,1.485 -0.17476,0 -0.30389,-0.0577 -0.39429,-0.17391 -0.0766,-0.1102 -0.12913,-0.28495 -0.16098,-0.51652 h 0.23846 c 0,0.11621 0.0327,0.20662 0.0973,0.27721 0.0646,0.0646 0.14205,0.10329 0.23244,0.10329 0.12913,0 0.23932,-0.0904 0.3168,-0.2772 0.0835,-0.18164 0.12225,-0.43905 0.13516,-0.76272 -0.13516,0.2195 -0.28409,0.3297 -0.44507,0.3297 -0.18768,0 -0.32972,-0.0775 -0.43992,-0.23929 -0.11621,-0.161 -0.16701,-0.38052 -0.16701,-0.64566 0,-0.2712 0.0577,-0.49073 0.17993,-0.65858 0.11622,-0.17391 0.26515,-0.26429 0.44594,-0.26429 0.20058,0 0.35468,0.11621 0.4709,0.33573 0.11621,0.23244 0.17475,0.56819 0.17475,1.00724 z m -0.25137,-0.4201 c 0,-0.17995 -0.0396,-0.32888 -0.11708,-0.43905 -0.0766,-0.10935 -0.17992,-0.16703 -0.30303,-0.16703 -0.11019,0 -0.1937,0.0508 -0.26429,0.161 -0.0654,0.11019 -0.0973,0.25825 -0.0973,0.44508 0,0.18767 0.0318,0.3366 0.1033,0.44593 0.0706,0.0964 0.15496,0.14893 0.26516,0.14893 0.12224,0 0.21952,-0.0585 0.29614,-0.17476 0.0775,-0.11623 0.11708,-0.25826 0.11708,-0.4201 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path88", + "name": "path88", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 202.61437,140.17911 c 0,0.17476 -0.0387,0.34264 -0.12224,0.4907 -0.0585,0.10932 -0.13602,0.1937 -0.22039,0.26429 l -0.35468,0.28408 c -0.20661,0.16185 -0.3168,0.34264 -0.33574,0.54925 h 1.02014 v 0.32885 h -1.27841 c 0.0198,-0.48982 0.13602,-0.83246 0.35555,-1.01928 l 0.45196,-0.38825 c 0.16098,-0.13515 0.24449,-0.30906 0.24449,-0.50964 0,-0.15496 -0.0379,-0.28408 -0.10934,-0.37449 -0.0714,-0.0973 -0.16098,-0.14203 -0.28409,-0.14203 -0.23932,0 -0.36845,0.2135 -0.38136,0.64564 h -0.23158 c 0.006,-0.63273 0.23158,-0.95557 0.67062,-0.95557 0.14291,0 0.27204,0.0646 0.38137,0.1937 0.12914,0.15497 0.1937,0.36158 0.1937,0.63275 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path89", + "name": "path89", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 204.10585,140.73437 c 0,0.9616 -0.20661,1.44626 -0.62672,1.44626 -0.41925,0 -0.62586,-0.49757 -0.62586,-1.485 0,-0.4201 0.0577,-0.74898 0.16787,-0.98745 0.10933,-0.23244 0.26515,-0.35552 0.45799,-0.35552 0.20059,0 0.35554,0.12308 0.46487,0.35552 0.1102,0.23847 0.16185,0.5811 0.16185,1.02619 z m -0.23244,0.0327 c 0,-0.7171 -0.12913,-1.07868 -0.38739,-1.07868 -0.15496,0 -0.26515,0.1102 -0.32886,0.33576 -0.0456,0.17388 -0.0714,0.42613 -0.0714,0.76874 0,0.71626 0.12913,1.07784 0.3874,1.07096 0.13602,0 0.23846,-0.0904 0.30388,-0.2643 0.0637,-0.18079 0.0964,-0.45196 0.0964,-0.83248 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path90", + "name": "path90", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 234.53577,41.780625 c 0,0.174757 -0.0387,0.342635 -0.12224,0.490696 -0.0585,0.1093 -0.13602,0.193675 -0.22037,0.264266 l -0.3547,0.284083 c -0.20661,0.161846 -0.31678,0.342636 -0.33572,0.549249 h 1.02012 v 0.32885 h -1.27838 c 0.0198,-0.489849 0.13599,-0.832458 0.35552,-1.01928 l 0.45198,-0.388224 c 0.16097,-0.135175 0.24448,-0.309059 0.24448,-0.50964 0,-0.154966 -0.0379,-0.28411 -0.10933,-0.374491 -0.0715,-0.09729 -0.161,-0.142055 -0.28408,-0.142055 -0.23934,0 -0.36846,0.213519 -0.38137,0.645663 h -0.23159 c 0.006,-0.632751 0.23159,-0.95557 0.67064,-0.95557 0.1429,0 0.27201,0.06456 0.38137,0.193702 0.12911,0.154966 0.19367,0.361553 0.19367,0.632751 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path91", + "name": "path91", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 235.59466,43.698219 h -0.22556 v -1.936962 h -0.43302 v -0.264292 c 0.18077,-0.03874 0.29012,-0.07834 0.34177,-0.129116 0.0585,-0.05855 0.11019,-0.193702 0.16184,-0.4141 h 0.15497 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path92", + "name": "path92", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 234.53577,74.580094 c 0,0.174758 -0.0387,0.342636 -0.12224,0.490723 -0.0585,0.109326 -0.13602,0.193702 -0.22037,0.264292 l -0.3547,0.284083 c -0.20661,0.161846 -0.31678,0.342636 -0.33572,0.549249 h 1.02012 v 0.328851 h -1.27838 c 0.0198,-0.48985 0.13599,-0.832485 0.35552,-1.019281 l 0.45198,-0.388276 c 0.16097,-0.135149 0.24448,-0.309034 0.24448,-0.509641 0,-0.15494 -0.0379,-0.284083 -0.10933,-0.374464 -0.0715,-0.09729 -0.161,-0.142055 -0.28408,-0.142055 -0.23934,0 -0.36846,0.213492 -0.38137,0.645662 h -0.23159 c 0.006,-0.632751 0.23159,-0.955569 0.67064,-0.955569 0.1429,0 0.27201,0.06456 0.38137,0.193702 0.12911,0.15494 0.19367,0.361553 0.19367,0.632724 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path93", + "name": "path93", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 236.0337,74.580094 c 0,0.174758 -0.0387,0.342636 -0.12223,0.490723 -0.0586,0.109326 -0.12915,0.193702 -0.21349,0.264292 l -0.36158,0.284083 c -0.20058,0.161846 -0.31681,0.342636 -0.33576,0.549249 h 1.02015 v 0.328851 h -1.27153 c 0.013,-0.48985 0.12914,-0.832485 0.34867,-1.019281 l 0.45196,-0.388276 c 0.161,-0.135149 0.2445,-0.309034 0.2445,-0.509641 0,-0.15494 -0.0319,-0.284083 -0.10332,-0.374464 -0.0706,-0.09729 -0.167,-0.142055 -0.29011,-0.142055 -0.23932,0 -0.36156,0.213492 -0.38137,0.645662 h -0.22556 c 0.006,-0.632751 0.22556,-0.955569 0.66461,-0.955569 0.14893,0 0.27204,0.06456 0.38136,0.193702 0.12915,0.15494 0.1937,0.361553 0.1937,0.632724 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path94", + "name": "path94", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 234.53577,107.37962 c 0,0.17475 -0.0387,0.34263 -0.12224,0.49069 -0.0585,0.10936 -0.13602,0.1937 -0.22037,0.2643 l -0.3547,0.28408 c -0.20661,0.16184 -0.31678,0.34261 -0.33572,0.54922 h 1.02012 v 0.32888 h -1.27838 c 0.0198,-0.48985 0.13599,-0.83249 0.35552,-1.01928 l 0.45198,-0.38825 c 0.16097,-0.13515 0.24448,-0.30906 0.24448,-0.50964 0,-0.15497 -0.0379,-0.28409 -0.10933,-0.37449 -0.0715,-0.0973 -0.161,-0.14203 -0.28408,-0.14203 -0.23934,0 -0.36846,0.21349 -0.38137,0.64566 h -0.23159 c 0.006,-0.63275 0.23159,-0.9556 0.67064,-0.9556 0.1429,0 0.27201,0.0646 0.38137,0.19371 0.12911,0.15496 0.19367,0.36158 0.19367,0.63275 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path95", + "name": "path95", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 236.02725,108.53532 c 0,0.24537 -0.0646,0.45196 -0.18767,0.60692 -0.12226,0.161 -0.2772,0.23935 -0.4709,0.23935 -0.17391,0 -0.30994,-0.0646 -0.42614,-0.20061 -0.12914,-0.15494 -0.1937,-0.3805 -0.19973,-0.6844 h 0.23243 c 0,0.17391 0.0319,0.30993 0.0964,0.41926 0.0577,0.1102 0.14205,0.16185 0.24537,0.16185 0.30991,0 0.46487,-0.18079 0.46487,-0.55529 0,-0.32279 -0.13517,-0.48379 -0.41322,-0.48379 h -0.11623 v -0.29096 c 0.16787,0 0.27807,-0.0259 0.34263,-0.0715 0.0835,-0.0637 0.12224,-0.19283 0.12224,-0.39341 0,-0.27808 -0.11621,-0.41323 -0.36155,-0.41323 -0.22643,0 -0.34264,0.1937 -0.34867,0.5742 h -0.21952 c 0.013,-0.58023 0.20661,-0.87722 0.58798,-0.89101 0.17391,0 0.31594,0.0654 0.42613,0.20058 0.11623,0.14206 0.16701,0.32285 0.16701,0.5484 0,0.23932 -0.0766,0.42611 -0.23847,0.57505 0.10935,0.0775 0.18769,0.16184 0.23243,0.26429 0.0448,0.0973 0.0646,0.23241 0.0646,0.39426 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path96", + "name": "path96", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 234.53577,140.17911 c 0,0.17476 -0.0387,0.34264 -0.12224,0.4907 -0.0585,0.10932 -0.13602,0.1937 -0.22037,0.26429 l -0.3547,0.28408 c -0.20661,0.16185 -0.31678,0.34264 -0.33572,0.54925 h 1.02012 v 0.32885 h -1.27838 c 0.0198,-0.48982 0.13599,-0.83246 0.35552,-1.01928 l 0.45198,-0.38825 c 0.16097,-0.13515 0.24448,-0.30906 0.24448,-0.50964 0,-0.15496 -0.0379,-0.28408 -0.10933,-0.37449 -0.0715,-0.0973 -0.161,-0.14203 -0.28408,-0.14203 -0.23934,0 -0.36846,0.2135 -0.38137,0.64564 h -0.23159 c 0.006,-0.63273 0.23159,-0.95557 0.67064,-0.95557 0.1429,0 0.27201,0.0646 0.38137,0.1937 0.12911,0.15497 0.19367,0.36158 0.19367,0.63275 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path97", + "name": "path97", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 236.05953,141.45107 h -0.27721 v 0.64566 h -0.2264 v -0.64566 h -0.82041 v -0.36158 l 0.86518,-1.73725 h 0.18163 v 1.77599 h 0.27721 z m -0.50361,-0.32284 v -1.22674 l -0.60692,1.22674 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path98", + "name": "path98", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 266.45716,41.780625 c 0,0.174757 -0.0387,0.342635 -0.12224,0.490696 -0.0585,0.1093 -0.13602,0.193675 -0.22037,0.264266 l -0.3547,0.284083 c -0.20661,0.161846 -0.31678,0.342636 -0.33573,0.549249 h 1.02013 v 0.32885 h -1.27839 c 0.0198,-0.489849 0.136,-0.832458 0.35552,-1.01928 l 0.45199,-0.388224 c 0.16097,-0.135175 0.24447,-0.309059 0.24447,-0.50964 0,-0.154966 -0.0379,-0.28411 -0.10932,-0.374491 -0.0715,-0.09729 -0.161,-0.142055 -0.28408,-0.142055 -0.23934,0 -0.36846,0.213519 -0.38137,0.645663 h -0.23159 c 0.006,-0.632751 0.23159,-0.95557 0.67063,-0.95557 0.14291,0 0.27202,0.06456 0.38138,0.193702 0.12911,0.154966 0.19367,0.361553 0.19367,0.632751 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path99", + "name": "path99", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 267.96803,42.82012 c 0,0.265165 -0.0646,0.490696 -0.1937,0.678392 -0.12311,0.186795 -0.27807,0.28321 -0.45799,0.28321 -0.18079,0 -0.32972,-0.07662 -0.45284,-0.218652 -0.12223,-0.142902 -0.18679,-0.322845 -0.18679,-0.542369 h 0.23931 c 0.0448,0.17391 0.0904,0.290115 0.14807,0.347794 0.0517,0.05855 0.12914,0.09125 0.23246,0.09125 0.27117,0 0.40632,-0.213492 0.40632,-0.633598 0,-0.186822 -0.0379,-0.334883 -0.10933,-0.451114 -0.0775,-0.110146 -0.16788,-0.167825 -0.28408,-0.167825 -0.0775,0 -0.14205,0.01905 -0.1937,0.05768 -0.0456,0.03186 -0.0964,0.09639 -0.16788,0.186769 h -0.21349 l 0.14203,-1.497912 h 0.99517 v 0.342636 h -0.80147 l -0.0775,0.755861 c 0.0973,-0.110199 0.21349,-0.161845 0.35554,-0.161845 0.18767,0 0.33573,0.0835 0.45196,0.25138 0.10933,0.174758 0.16788,0.401135 0.16788,0.678339 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path100", + "name": "path100", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 266.45716,74.580094 c 0,0.174758 -0.0387,0.342636 -0.12224,0.490723 -0.0585,0.109326 -0.13602,0.193702 -0.22037,0.264292 l -0.3547,0.284083 c -0.20661,0.161846 -0.31678,0.342636 -0.33573,0.549249 h 1.02013 v 0.328851 h -1.27839 c 0.0198,-0.48985 0.136,-0.832485 0.35552,-1.019281 l 0.45199,-0.388276 c 0.16097,-0.135149 0.24447,-0.309034 0.24447,-0.509641 0,-0.15494 -0.0379,-0.284083 -0.10932,-0.374464 -0.0715,-0.09729 -0.161,-0.142055 -0.28408,-0.142055 -0.23934,0 -0.36846,0.213492 -0.38137,0.645662 h -0.23159 c 0.006,-0.632751 0.23159,-0.955569 0.67063,-0.955569 0.14291,0 0.27202,0.06456 0.38138,0.193702 0.12911,0.15494 0.19367,0.361553 0.19367,0.632724 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path101", + "name": "path101", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 267.96803,75.658377 c 0,0.271172 -0.0586,0.490697 -0.17476,0.658575 -0.11622,0.180763 -0.27032,0.264292 -0.46489,0.264292 -0.41923,0 -0.63188,-0.445082 -0.63188,-1.342999 0,-0.987425 0.23244,-1.485 0.70334,-1.485 0.11623,0 0.23244,0.06456 0.33576,0.187669 0.11017,0.136022 0.17388,0.309906 0.1997,0.529431 h -0.25138 c 0.013,-0.103293 -0.019,-0.199707 -0.0904,-0.277204 -0.0646,-0.08435 -0.14205,-0.12311 -0.23243,-0.12311 -0.12915,0 -0.23935,0.09041 -0.31594,0.277204 -0.0784,0.187669 -0.12311,0.445955 -0.12915,0.774805 0.1541,-0.225557 0.30906,-0.335756 0.458,-0.335756 0.16788,0 0.30303,0.08438 0.41925,0.252254 0.11621,0.167878 0.17476,0.374465 0.17476,0.619839 z m -0.24537,0 c 0,-0.167878 -0.0318,-0.309933 -0.0904,-0.406347 -0.0706,-0.103293 -0.16788,-0.161845 -0.29099,-0.161845 -0.10329,0 -0.19283,0.05165 -0.26427,0.154966 -0.0904,0.110173 -0.12914,0.251381 -0.12914,0.433017 0,0.173884 0.0387,0.315939 0.11621,0.432171 0.0775,0.109325 0.16787,0.167851 0.2841,0.167851 0.0964,0 0.17476,-0.04477 0.24535,-0.129116 0.0835,-0.110199 0.12912,-0.271172 0.12912,-0.490697 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path102", + "name": "path102", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 266.45716,107.37962 c 0,0.17475 -0.0387,0.34263 -0.12224,0.49069 -0.0585,0.10936 -0.13602,0.1937 -0.22037,0.2643 l -0.3547,0.28408 c -0.20661,0.16184 -0.31678,0.34261 -0.33573,0.54922 h 1.02013 v 0.32888 h -1.27839 c 0.0198,-0.48985 0.136,-0.83249 0.35552,-1.01928 l 0.45199,-0.38825 c 0.16097,-0.13515 0.24447,-0.30906 0.24447,-0.50964 0,-0.15497 -0.0379,-0.28409 -0.10932,-0.37449 -0.0715,-0.0973 -0.161,-0.14203 -0.28408,-0.14203 -0.23934,0 -0.36846,0.21349 -0.38137,0.64566 h -0.23159 c 0.006,-0.63275 0.23159,-0.9556 0.67063,-0.9556 0.14291,0 0.27202,0.0646 0.38138,0.19371 0.12911,0.15496 0.19367,0.36158 0.19367,0.63275 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path103", + "name": "path103", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 267.98092,106.84373 c -0.29096,0.56817 -0.49673,1.09762 -0.62672,1.59433 -0.0646,0.28408 -0.11623,0.56904 -0.14806,0.85915 h -0.25829 c 0.0577,-0.34867 0.1102,-0.60693 0.14809,-0.76189 0.0844,-0.32967 0.297,-0.87808 0.6336,-1.65286 h -1.02703 v -0.32972 h 1.27841 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path104", + "name": "path104", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 266.45716,140.17911 c 0,0.17476 -0.0387,0.34264 -0.12224,0.4907 -0.0585,0.10932 -0.13602,0.1937 -0.22037,0.26429 l -0.3547,0.28408 c -0.20661,0.16185 -0.31678,0.34264 -0.33573,0.54925 h 1.02013 v 0.32885 h -1.27839 c 0.0198,-0.48982 0.136,-0.83246 0.35552,-1.01928 l 0.45199,-0.38825 c 0.16097,-0.13515 0.24447,-0.30906 0.24447,-0.50964 0,-0.15496 -0.0379,-0.28408 -0.10932,-0.37449 -0.0715,-0.0973 -0.161,-0.14203 -0.28408,-0.14203 -0.23934,0 -0.36846,0.2135 -0.38137,0.64564 h -0.23159 c 0.006,-0.63273 0.23159,-0.95557 0.67063,-0.95557 0.14291,0 0.27202,0.0646 0.38138,0.1937 0.12911,0.15497 0.19367,0.36158 0.19367,0.63275 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path105", + "name": "path105", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 33.554916,65.521502 -0.69125,2.815087 h -0.270325 l -0.698182,-2.815087 h 0.272044 l 0.568193,2.376038 0.548349,-2.376038 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path107", + "name": "path107", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 267.96803,141.38003 c 0,0.21952 -0.0646,0.40635 -0.18769,0.56129 -0.12912,0.15496 -0.28408,0.23934 -0.47691,0.23934 -0.18167,0 -0.32973,-0.0844 -0.44593,-0.23934 -0.11623,-0.15494 -0.18079,-0.3478 -0.18079,-0.58711 0,-0.15497 0.0327,-0.297 0.0835,-0.41926 0.0585,-0.12311 0.13602,-0.21349 0.23244,-0.27805 -0.161,-0.12915 -0.24535,-0.31594 -0.24535,-0.56132 0,-0.20658 0.0525,-0.38137 0.16185,-0.5234 0.10329,-0.14205 0.23243,-0.21952 0.3874,-0.21952 0.17476,0 0.32282,0.0706 0.43214,0.20058 0.11708,0.12914 0.17476,0.30303 0.17476,0.50964 0,0.23847 -0.0835,0.43217 -0.25223,0.58111 0.0913,0.0448 0.16185,0.14202 0.2264,0.28408 0.0577,0.14205 0.0904,0.29011 0.0904,0.45196 z m -0.30993,-1.30424 c 0,-0.12911 -0.0327,-0.2264 -0.0904,-0.30302 -0.0646,-0.0775 -0.14206,-0.1102 -0.24535,-0.1102 -0.10332,0 -0.18079,0.0387 -0.23934,0.1102 -0.0637,0.0766 -0.0904,0.17991 -0.0904,0.30302 0,0.29012 0.1102,0.43905 0.32972,0.43905 0.0973,0 0.18076,-0.0387 0.23932,-0.12311 0.0637,-0.0835 0.0964,-0.18679 0.0964,-0.31594 z m 0.0586,1.24571 c 0,-0.15496 -0.0327,-0.28411 -0.10332,-0.37364 -0.0714,-0.0913 -0.16872,-0.13602 -0.29096,-0.13602 -0.12914,0 -0.22643,0.0517 -0.29011,0.14808 -0.0715,0.0973 -0.10332,0.23244 -0.10332,0.39429 0,0.14806 0.0379,0.27117 0.10932,0.36846 0.0706,0.0964 0.16185,0.14118 0.27808,0.14118 0.10932,0 0.20661,-0.0517 0.28324,-0.15497 0.0775,-0.10329 0.11707,-0.23244 0.11707,-0.38738 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path106", + "name": "path106", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 33.852361,67.936301 h 0.277204 v 0.400315 h -0.277204 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path108", + "name": "path108", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 35.743709,66.418995 c 0,0.174757 -0.03874,0.342635 -0.122238,0.490696 -0.05855,0.109326 -0.129143,0.193702 -0.220398,0.264293 l -0.354674,0.284083 c -0.20058,0.161845 -0.316812,0.342635 -0.335756,0.549248 h 1.020154 v 0.328851 h -1.278414 c 0.01984,-0.489823 0.136022,-0.832459 0.355547,-1.019281 l 0.451961,-0.38825 c 0.160999,-0.135149 0.244502,-0.309059 0.244502,-0.50964 0,-0.154966 -0.03789,-0.284083 -0.109326,-0.374491 -0.06458,-0.09726 -0.160999,-0.142028 -0.284109,-0.142028 -0.239316,0 -0.368459,0.213492 -0.381371,0.645662 h -0.225531 c 0,-0.632751 0.225531,-0.955595 0.664581,-0.955595 0.142901,0 0.272044,0.06458 0.38137,0.193701 0.129143,0.154967 0.193702,0.36158 0.193702,0.632751 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path109", + "name": "path109", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 37.273926,67.690927 h -0.277204 v 0.645662 h -0.232436 v -0.645662 h -0.82042 v -0.36158 l 0.87122,-1.737254 h 0.181636 v 1.776015 h 0.277204 z m -0.50964,-0.322819 v -1.226767 l -0.607775,1.226767 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path110", + "name": "path110", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 33.58074,101.13609 h -0.284083 l -0.199734,-0.84625 h -0.755809 l -0.213519,0.84625 h -0.264292 l 0.710247,-2.815066 h 0.315939 z m -0.561287,-1.149302 -0.290963,-1.239626 -0.322818,1.239626 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path111", + "name": "path111", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 35.446714,100.10299 c -0.122264,0.74295 -0.400315,1.11744 -0.832485,1.11744 -0.259133,0 -0.471752,-0.13602 -0.626719,-0.40719 -0.161845,-0.2712 -0.238469,-0.61984 -0.238469,-1.064921 0,-0.413226 0.07059,-0.755862 0.212646,-1.027007 0.154966,-0.296994 0.374491,-0.445082 0.658574,-0.445082 0.18079,0 0.342636,0.07662 0.477785,0.232437 0.142055,0.15412 0.239315,0.380497 0.309906,0.677492 H 35.14366 c -0.110172,-0.394256 -0.28493,-0.587084 -0.53631,-0.587084 -0.18079,0 -0.328851,0.102447 -0.43905,0.315912 -0.109326,0.212646 -0.161846,0.496729 -0.161846,0.852276 0,0.335727 0.05252,0.606927 0.168725,0.813537 0.109326,0.2135 0.257413,0.31679 0.43905,0.31679 0.296148,0 0.483817,-0.26514 0.574199,-0.7946 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path112", + "name": "path112", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 37.325573,101.13609 h -0.277204 l -0.200581,-0.84625 h -0.755861 l -0.21262,0.84625 H 35.60811 l 0.716253,-2.815066 h 0.309933 z m -0.555255,-1.149302 -0.290988,-1.239626 -0.321972,1.239626 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path113", + "name": "path113", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 31.159538,131.91467 c 0,0.25138 -0.05853,0.45884 -0.167852,0.61293 -0.09729,0.14206 -0.212646,0.21352 -0.355547,0.21352 h -0.644816 v 1.19488 h -0.252227 v -2.81593 h 0.859155 c 0.17391,0 0.309906,0.0715 0.413226,0.2264 0.09641,0.14809 0.148061,0.33576 0.148061,0.5682 z m -0.25826,0 c 0,-0.12915 -0.0327,-0.23932 -0.09038,-0.33576 -0.06458,-0.0904 -0.135175,-0.14203 -0.219524,-0.14203 h -0.600049 v 0.98139 h 0.631904 c 0.06456,0 0.123085,-0.0448 0.181637,-0.12911 0.06371,-0.0973 0.09641,-0.22643 0.09641,-0.37449 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path114", + "name": "path114", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 33.296657,132.56679 c 0,0.43217 -0.09038,0.78168 -0.265139,1.05201 -0.173884,0.26513 -0.406321,0.40116 -0.696437,0.40116 -0.278077,0 -0.503607,-0.13603 -0.678365,-0.4072 -0.174783,-0.27807 -0.265165,-0.62587 -0.265165,-1.06577 0,-0.42529 0.08438,-0.7679 0.239316,-1.03909 0.174757,-0.29012 0.40722,-0.43215 0.710247,-0.43215 0.303874,0 0.542343,0.14806 0.716227,0.44506 0.155813,0.27808 0.239316,0.62587 0.239316,1.04598 z m -0.25826,-0.0327 c 0,-0.32885 -0.06456,-0.60005 -0.186796,-0.81354 -0.123111,-0.21264 -0.290962,-0.32197 -0.497575,-0.32197 -0.225558,0 -0.406347,0.11623 -0.529458,0.33576 -0.116205,0.20574 -0.174757,0.47778 -0.174757,0.81266 0,0.34865 0.06543,0.62672 0.187669,0.83334 0.129143,0.21264 0.297021,0.31594 0.510513,0.31594 0.225557,0 0.400315,-0.11536 0.522552,-0.3478 0.1093,-0.21349 0.167852,-0.48466 0.167852,-0.81439 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path115", + "name": "path115", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 35.898675,131.12052 -0.503634,2.81509 H 35.11699 l -0.445082,-2.30545 -0.445082,2.30545 h -0.278051 l -0.496729,-2.81509 h 0.277204 l 0.368459,2.25981 0.43905,-2.25981 h 0.270298 l 0.439923,2.25981 0.374491,-2.25981 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path116", + "name": "path116", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 37.596744,133.93558 h -1.414409 v -2.81509 h 1.369642 v 0.31682 h -1.117415 v 0.89101 h 1.071801 v 0.31594 h -1.071801 v 0.9685 h 1.162182 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path117", + "name": "path117", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "M 39.572467,133.93558 H 39.26944 c -0.01984,-0.0835 -0.03958,-0.17476 -0.04561,-0.26514 -0.01297,-0.10332 -0.01984,-0.25138 -0.01297,-0.4382 -0.0069,-0.33573 -0.103319,-0.51049 -0.303027,-0.51049 h -0.659447 v 1.21383 h -0.257413 v -2.81509 h 0.903075 c 0.226404,0 0.387403,0.0706 0.484664,0.21953 0.0775,0.12311 0.122264,0.31596 0.122264,0.57422 0,0.2462 -0.09041,0.45281 -0.257413,0.62672 0.08953,0.0904 0.148087,0.16097 0.173911,0.22641 0.02593,0.0448 0.03873,0.12914 0.04561,0.24534 0,0.12227 0.0061,0.31594 0.01905,0.58714 0.0069,0.0964 0.03874,0.18076 0.09041,0.23932 z m -0.32885,-2.0661 c 0,-0.13518 -0.02593,-0.23935 -0.09126,-0.31594 -0.06371,-0.0784 -0.148061,-0.11623 -0.244475,-0.11623 H 38.24844 v 0.96763 h 0.659447 c 0.225531,0 0.33573,-0.17992 0.33573,-0.53546 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path118", + "name": "path118", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + } + ], + "id": "g2", + "name": "g2", + "transform": "matrix(4.0000001,0,0,4.0000001,298.99938,230.99939)", + "type": "group" + }, + { + "d": "m 580.99218,400.21381 c 0,-9.09087 -7.0248,-16.11562 -15.70249,-16.11562 -9.09087,0 -16.11569,7.02475 -16.11569,16.11562 0,8.67763 7.02482,16.11569 16.11569,16.11569 8.67769,0 15.70249,-7.43806 15.70249,-16.11569 m 7.02467,0 c 0,-12.80984 -9.91719,-23.14042 -22.72716,-23.14042 -12.80995,0 -23.14037,10.33058 -23.14037,23.14042 0,12.80989 10.33042,23.14049 23.14037,23.14049 12.80997,0 22.72716,-10.3306 22.72716,-23.14049 m -24.79325,11.98341 c 0.41318,-0.41316 0.41318,-1.23961 0.41318,-2.06607 M 563.2236,392.3627 c 0.41318,-0.41328 0.41318,-1.23976 0.41318,-2.06619 m -10.74376,14.87595 c 0,1.23972 1.23959,2.47935 2.47934,2.47935 1.23962,0 2.06609,-1.23963 2.06609,-2.47935 m -4.54543,-9.91722 c 0,1.23959 1.23959,2.47935 2.47934,2.47935 1.23962,0 2.06609,-1.23976 2.06609,-2.47935 m 0.41328,-4.95873 c 0,1.23971 1.23959,2.47935 2.47924,2.47935 1.23972,0 2.06615,-1.23964 2.06615,-2.47935 m 5.37193,0 c 0,1.23971 1.23959,2.47935 2.47937,2.47935 1.23959,0 2.06607,-1.23964 2.06607,-2.47935 m 0.41328,4.95873 c 0,1.23959 1.23961,2.47935 2.47924,2.47935 1.23971,0 2.06617,-1.23976 2.06617,-2.47935 m -4.54541,9.91722 c 0,1.23972 1.23961,2.47935 2.47924,2.47935 1.23971,0 2.06617,-1.23963 2.06617,-2.47935 m -9.50413,4.95869 c 0,1.23963 1.23959,2.47937 2.47937,2.47937 1.23959,0 2.06607,-1.23974 2.06607,-2.47937 m -14.46276,0 c 0,1.23963 1.23959,2.47937 2.47924,2.47937 1.23972,0 2.06619,-1.23974 2.06619,-2.47937 m 17.35536,-9.91732 c 0,-1.65281 0,-2.89252 -0.41328,-4.13215 m -28.09915,0 c -0.41316,1.23963 -0.82644,2.47934 -0.82644,4.13215 m 19.00827,-14.04958 c -2.89258,-0.82635 -5.78514,-0.82635 -8.26451,0 m 0,0 c -4.95859,1.23972 -8.67767,4.95869 -9.91732,9.91743 m 0,0 c 0,0 -0.41316,0 -0.41316,0.41315 m 0,0 c 0,0.82648 0.82644,1.65291 1.65281,1.65291 m 10.3306,-10.33058 c 0,-0.41319 0,-1.23963 -0.41318,-1.23963 -0.41328,-0.41328 -0.82647,-0.41328 -1.23975,-0.41328 m 18.18183,9.91743 c -1.65286,-4.95874 -5.37186,-8.67771 -9.91732,-9.91743 m 0,0 c -0.41328,0 -1.23971,0 -1.23971,0.41328 -0.41316,0 -0.82644,0.82644 -0.82644,1.23963 m 10.33061,10.33058 c 0.41328,0 0.82643,-0.41315 1.23971,-0.82643 0,-0.4132 0.41315,-0.82648 0,-1.23963 m -11.57032,16.52884 c 0,0.41318 0.41328,0.82646 0.82644,1.23963 0,0 0.82643,0.41316 1.23971,0 m 0,0.41316 c 4.54546,-1.65279 8.26446,-5.37187 9.91732,-9.91733 m -0.41315,0 c 0.41315,-0.41315 0,-1.23963 0,-1.23963 -0.41328,-0.41328 -0.82643,-0.82643 -1.23971,-0.82643 m -26.44629,2.06606 c 1.23965,4.54546 4.95873,8.26454 9.91732,9.91733 m 0,-0.41318 c 0.41328,0.41318 0.82647,0 1.23975,0 0.41318,-0.41315 0.41318,-0.82643 0.41318,-1.23961 m -10.3306,-10.3306 c -0.82637,0 -1.65281,0.82643 -1.65281,1.65291 m 0,0 c 0,0 0.41316,0 0.41316,0.41315 m -0.82644,-4.13217 c 0,1.23963 0.41328,2.89254 0.82644,4.13217 m 28.09915,0 c 0.41328,-1.23963 0.41328,-2.89254 0.41328,-4.13217 m -18.59511,14.0495 c 2.47937,0.41328 5.37193,0.41328 8.26451,0 m -7.02476,-4.13216 c 0,-1.23971 -0.82647,-2.47934 -2.06619,-2.47934 -1.23965,0 -2.47924,1.23963 -2.47924,2.47934 m 14.46276,0 c 0,-1.23971 -0.82648,-2.47934 -2.06607,-2.47934 -1.23978,0 -2.47937,1.23963 -2.47937,2.47934 m 9.50413,-4.95869 c 0,-1.23963 -0.82646,-2.47939 -2.06617,-2.47939 -1.23963,0 -2.47924,1.23976 -2.47924,2.47939 m 4.54541,-9.91722 c 0,-1.23975 -0.82646,-2.47938 -2.06617,-2.47938 -1.23963,0 -2.47924,1.23963 -2.47924,2.47938 m -0.41328,-4.95873 c 0,-1.23963 -0.82648,-2.47935 -2.06607,-2.47935 -1.23978,0 -2.47937,1.23972 -2.47937,2.47935 m -5.37193,0 c 0,-1.23963 -0.82643,-2.47935 -2.06615,-2.47935 -1.23965,0 -2.47924,1.23972 -2.47924,2.47935 m -0.41328,4.95873 c 0,-1.23975 -0.82647,-2.47938 -2.06609,-2.47938 -1.23975,0 -2.47934,1.23963 -2.47934,2.47938 m 4.54543,9.91722 c 0,-1.23963 -0.82647,-2.47939 -2.06609,-2.47939 -1.23975,0 -2.47934,1.23976 -2.47934,2.47939 m 0,-7.02472 h -0.41328 m 10.3306,-10.33058 v 0.41328 m 4.13224,0 v -0.41328 m -14.46284,14.46276 h 0.41328 m 0,-4.13218 c 1.65287,0.82648 3.3058,0.82648 4.54543,0 m 4.13224,0 h -4.13224 m 4.13224,0 c 0.82643,0 1.23965,-0.82643 1.23965,-1.65291 m 0,-3.71897 v 4.13225 m 0.82644,-6.6116 c 0,-0.82643 0,-1.65291 -0.41316,-2.47935 m 4.13215,0 c -1.23965,1.65292 -1.23965,3.30578 0,4.54554 m -0.41319,4.54541 v -4.13225 m 0.41319,3.71897 c 0,0.82648 0.41328,1.65291 1.23972,1.65291 m 4.13228,0 h -4.13228 m 4.13228,0 c 1.6528,0.82648 3.30567,0.82648 4.54541,0 m 0,4.13218 c -1.23974,-1.23976 -2.89261,-1.23976 -4.54541,0 m -1.65291,0 h 1.65291 m -1.23976,0 c -0.41315,0 -0.82643,0.41315 -0.82643,0.82643 m 0,2.06611 v -2.06611 m -0.82644,2.47937 c 0.41328,0 0.82644,-0.41326 0.82644,-0.82646 m -2.89253,1.23964 h 2.06609 m -1.65293,-0.41318 c -0.41316,0 -0.82644,0.41318 -0.82644,0.82646 m -0.41319,1.65278 v -1.65278 m 0.41319,1.23963 c -1.23965,1.65291 -1.23965,3.3058 0,4.54543 m -3.71899,-2.06609 c 0,-0.82643 0,-1.65291 -0.41316,-2.47934 m -0.41328,-3.71898 v 4.13213 m 0,-4.54541 c 0,-0.82648 -0.41322,-1.23963 -1.23965,-1.23963 m -4.13224,0 h 4.13224 m -4.13224,0 c -1.23963,-1.23976 -2.89256,-1.23976 -4.54543,0 m 4.13224,0 h 8.26443 m 0,0 v 9.91732 m 0,0 h 0.82643 m 0,0 v -2.06609 m 0.82646,-2.47934 c -0.41328,0.82643 -0.82646,1.65291 -0.82646,2.47934 m 0.82646,-2.06619 v -8.2643 m 0,0 h 9.91732 m 0,0 v -0.82644 m 0,0 h -2.06605 m -2.06608,-0.82648 c 0.82633,0.41328 1.6528,0.82648 2.47924,0.82648 m -2.47924,-0.4132 h -8.26456 m 0,0 v -10.33058 m 0,0 h -0.82643 m 0,0 v 2.06607 m -0.41318,2.06619 c 0.41318,-0.41328 0.82646,-1.23976 0.82646,-2.06619 m -0.82646,2.47935 v 8.2643 m 0,0 h -10.33058 m 0,0 v 0.41328 m 0,0 h 2.06606 m 2.47937,0.4132 c -0.41319,-0.4132 -1.23963,-0.4132 -2.06609,-0.4132 m 9.91733,10.7438 h -0.41316 m 11.98341,-12.39658 v 0.41317 m -12.39669,-11.98339 h 0.41328 m -11.98351,12.80972 v -0.82635 m 0,0 h 10.3306 m 1.65291,-11.98337 v 10.33058 m 11.98341,1.65279 h -9.91736 m -2.06605,11.98343 v -9.91732 m 19.00809,-2.06611 c 0,-10.33045 -8.26433,-18.59501 -18.59493,-18.59501 -10.33061,0 -19.00832,8.26456 -19.00832,18.59501 0,10.33052 8.67771,18.59505 19.00832,18.59505 10.3306,0 18.59493,-8.26453 18.59493,-18.59505 m 2.47934,0 c 0,-11.98337 -9.50404,-21.07436 -21.07427,-21.07436 -11.98352,0 -21.48756,9.09099 -21.48756,21.07436 0,11.57025 9.50404,21.0743 21.48756,21.0743 11.57021,0 21.07427,-9.50405 21.07427,-21.0743 m -2.06606,0 c 0,-10.74373 -8.26446,-19.42145 -19.00821,-19.42145 -10.7438,0 -19.42147,8.67772 -19.42147,19.42145 0,10.7438 8.67767,19.42151 19.42147,19.42151 10.74375,0 19.00821,-8.67771 19.00821,-19.42151 m -24.79336,20.24795 c 9.5041,2.47926 19.42155,-1.6529 23.96688,-9.91743 4.95863,-8.26441 3.30582,-18.59491 -3.3057,-25.20643 -6.61162,-7.02488 -17.3554,-8.26451 -25.61983,-3.7191 -8.26452,4.95873 -12.39657,14.87603 -9.91732,23.96692", + "fill": { + "paint": "transparent" + }, + "id": "Out", + "name": "Out", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "width": "0.412001" + }, + "type": "path" + }, + { + "d": "m 588.04889,531.28459 c 0,-12.81001 -9.9172,-22.7272 -22.72717,-22.7272 -12.80995,0 -23.14036,9.91719 -23.14036,22.7272 0,12.80985 10.33041,23.14032 23.14036,23.14032 12.80997,0 22.72717,-10.33047 22.72717,-23.14032 m -24.79323,12.39667 c 0.41315,-0.82648 0.41315,-1.65291 0.41315,-2.47934 m -0.41315,-17.35541 c 0.41315,-0.82647 0.41315,-1.65293 0.41315,-2.47936 m -10.74376,14.87603 c 0,1.23974 1.23959,2.47937 2.47937,2.47937 1.23959,0 2.06607,-1.23963 2.06607,-2.47937 m -4.54544,-9.9173 c 0,1.23959 1.23959,2.47935 2.47937,2.47935 1.23959,0 2.06607,-1.23976 2.06607,-2.47935 m 0.41328,-4.95873 c 0,1.23971 1.23961,2.47936 2.47924,2.47936 1.23971,0 2.06617,-1.23965 2.06617,-2.47936 m 5.37191,0 c 0,1.23971 1.23961,2.47936 2.47937,2.47936 1.23958,0 2.06606,-1.23965 2.06606,-2.47936 m 0.41328,4.95873 c 0,1.23959 1.23961,2.47935 2.47924,2.47935 1.23974,0 2.06617,-1.23976 2.06617,-2.47935 m -4.54541,9.9173 c 0,1.23974 1.23961,2.47937 2.47924,2.47937 1.23974,0 2.06617,-1.23963 2.06617,-2.47937 m -9.50412,4.95874 c 0,1.23958 1.23961,2.47934 2.47937,2.47934 1.23958,0 2.06606,-1.23976 2.06606,-2.47934 m -14.46275,0 c 0,1.23958 1.23961,2.47934 2.47924,2.47934 1.23971,0 2.06617,-1.23976 2.06617,-2.47934 m 17.3554,-9.91733 c 0,-1.23975 0,-2.89264 -0.41328,-4.13227 m -28.09918,0 c -0.41315,1.23963 -0.82643,2.89252 -0.82643,4.13227 m 19.00829,-14.0496 c -2.89265,-0.41328 -5.78517,-0.41328 -8.26454,0 m 0,0 c -4.95858,1.65287 -8.67767,5.37187 -9.91732,9.91733 m 0,0 c 0,0.41315 -0.41315,0.41315 -0.41315,0.41315 m 0,0 c 0,0.82648 0.82643,1.65291 1.6528,1.65291 m 10.33061,-10.33052 c 0,-0.41328 0,-0.82643 -0.4132,-1.23971 -0.41328,0 -0.82646,-0.41316 -1.23974,0 m 18.18186,9.50417 c -1.65289,-4.54546 -5.37189,-8.26446 -9.91732,-9.91733 m 0,0.41316 c -0.41328,-0.41316 -1.23974,0 -1.23974,0 -0.41315,0.41328 -0.82643,0.82643 -0.82643,1.23971 m 10.3306,10.33052 c 0.41328,0 0.82643,-0.4132 1.23971,-0.82648 0,0 0.4132,-0.82643 0,-1.23958 m -11.57031,16.52892 c 0,0.4132 0.41328,1.23963 0.82643,1.23963 0,0.41328 0.82646,0.41328 1.23974,0.41328 m 0,0 c 4.54543,-1.23971 8.26443,-4.95871 9.91734,-9.91745 m -0.4132,0 c 0.4132,-0.41315 0,-0.82643 0,-1.23958 -0.41328,-0.41328 -0.82643,-0.41328 -1.23971,-0.41328 m -26.44629,1.65286 c 1.23965,4.95874 4.95874,8.67774 9.91732,9.91745 m 0,0 c 0.41328,0 0.82646,0 1.23974,-0.41328 0.4132,0 0.4132,-0.82643 0.4132,-1.23961 m -10.33061,-9.91742 c -0.82637,0 -1.6528,0.41328 -1.6528,1.23971 m 0,0 c 0,0.41315 0.41315,0.41315 0.41315,0.41315 m -0.82643,-4.13215 c 0,1.65291 0.41328,2.89257 0.82643,4.13215 m 28.0992,0 c 0.41326,-1.23958 0.41326,-2.47924 0.41326,-4.13215 m -18.59514,14.0496 c 2.47937,0.82644 5.37189,0.82644 8.26454,0 m -7.0248,-4.13223 c 0,-1.23966 -0.82646,-2.06609 -2.06617,-2.06609 -1.23963,0 -2.47924,0.82643 -2.47924,2.06609 m 14.46275,0 c 0,-1.23966 -0.82648,-2.06609 -2.06606,-2.06609 -1.23976,0 -2.47937,0.82643 -2.47937,2.06609 m 9.50412,-4.95874 c 0,-1.23963 -0.82643,-2.06606 -2.06617,-2.06606 -1.23963,0 -2.47924,0.82643 -2.47924,2.06606 m 4.54541,-9.9173 c 0,-1.23965 -0.82643,-2.06609 -2.06617,-2.06609 -1.23963,0 -2.47924,0.82644 -2.47924,2.06609 m -0.41328,-4.95873 c 0,-1.23963 -0.82648,-2.06607 -2.06606,-2.06607 -1.23976,0 -2.47937,0.82644 -2.47937,2.06607 m -5.37191,0 c 0,-1.23963 -0.82646,-2.06607 -2.06617,-2.06607 -1.23963,0 -2.47924,0.82644 -2.47924,2.06607 m -0.41328,4.95873 c 0,-1.23965 -0.82648,-2.06609 -2.06607,-2.06609 -1.23978,0 -2.47937,0.82644 -2.47937,2.06609 m 4.54544,9.9173 c 0,-1.23963 -0.82648,-2.06606 -2.06607,-2.06606 -1.23978,0 -2.47937,0.82643 -2.47937,2.06606 m 0,-6.61152 h -0.41328 m 14.46284,14.46278 v -0.41318 m -4.13223,0 v 0.41318 m -10.33061,-10.3306 h 0.41328 m 0,-4.54546 c 1.65287,1.23974 3.30581,1.23974 4.54544,0 m 4.13223,0.41328 h -4.13223 m 4.13223,-0.41328 c 0.82646,0 1.23966,-0.4132 1.23966,-1.23963 m 0,-4.13224 v 4.13224 m 0.82643,-6.6116 c 0,-0.82648 0,-1.65291 -0.41315,-2.06607 m 4.13215,0 c -1.23963,1.23959 -1.23963,2.8925 0,4.54543 m -0.4132,4.13224 v -4.13224 m 0.4132,4.13224 c 0,0.82643 0.41328,1.23963 1.23971,1.23963 m 4.13228,0.41328 h -4.13228 m 4.13228,-0.41328 c 1.65281,1.23974 3.3057,1.23974 4.54546,0 m 0,4.13226 c -1.23976,-0.82646 -2.89265,-0.82646 -4.54546,0 m -1.65291,0.4132 h 1.65291 m -1.23976,0 c -0.41315,0 -0.82643,0 -0.82643,0.41328 m 0,2.06606 v -1.65291 m -0.82643,2.47937 c 0.41328,0 0.82643,-0.41318 0.82643,-0.82646 m -2.89252,0.82646 h 2.06609 m -1.65294,0 c -0.41315,0 -0.82643,0 -0.82643,0.41328 m -0.4132,1.65291 v -1.23976 m 0.4132,1.23976 c -1.23963,1.23961 -1.23963,2.89252 0,4.54541 m -3.719,-2.47932 c 0,-0.82648 0,-1.65294 -0.41315,-2.06609 m -0.41328,-4.13228 v 4.13228 m 0,-4.13228 c 0,-0.82643 -0.41316,-1.23971 -1.23966,-1.23971 m -4.13223,0 h 4.13223 m -4.13223,-0.4132 c -1.23963,-0.82646 -2.89257,-0.82646 -4.54544,0 m 4.13224,0 h 8.26443 m 0,0 v 10.3306 m 0,0 h 0.82646 m 0,0 v -2.06617 m 0.82643,-2.47924 c -0.41328,0.41315 -0.82643,1.23961 -0.82643,2.06609 m 0.82643,-1.65294 v -8.67771 m 0,0 h 9.91737 m 0,0 v -0.41315 m 0,0 h -2.06609 m -2.06609,-0.82646 c 0.82633,0.41318 1.65281,0.82646 2.47924,0.82646 m -2.47924,-0.82646 h -8.26451 m 0,0 v -9.91742 m 0,0 h -0.82648 m 0,0 v 2.06619 m -0.41315,2.06608 c 0.41315,-0.82647 0.82643,-1.65293 0.82643,-2.47936 m -0.82643,2.47936 v 8.26452 m 0,0 h -10.33061 m 0,0 v 0.82643 m 0,0 h 2.06609 m 2.47935,0.41318 c -0.4132,-0.41318 -1.23963,-0.82646 -2.06607,-0.82646 m 9.9173,11.15706 h -0.41315 m 11.98341,-12.80997 v 0.82648 m -12.39669,-11.98351 h 0.41328 m -11.98352,12.39679 v -0.41328 m 0,0 h 10.33061 m 1.65291,-11.98351 v 9.91742 m 11.98341,2.06609 h -9.91737 m -2.06604,11.98349 v -10.3306 m 14.87601,-2.06609 c 0,-7.85123 -6.6116,-14.46284 -14.46286,-14.46284 -8.26443,0 -14.87603,6.61161 -14.87603,14.46284 0,8.26443 6.6116,14.87604 14.87603,14.87604 7.85126,0 14.46286,-6.61161 14.46286,-14.87604 m 4.13207,0 c 0,-10.3306 -8.26433,-18.59499 -18.59493,-18.59499 -10.33058,0 -19.00831,8.26439 -19.00831,18.59499 0,10.33052 8.67773,19.00821 19.00831,19.00821 10.3306,0 18.59493,-8.67769 18.59493,-19.00821 m 2.47937,0 c 0,-11.57031 -9.50404,-21.07423 -21.0743,-21.07423 -11.98351,0 -21.48755,9.50392 -21.48755,21.07423 0,11.98341 9.50404,21.48747 21.48755,21.48747 11.57026,0 21.0743,-9.50406 21.0743,-21.48747 m -2.06609,0 c 0,-10.74388 -8.26443,-19.00817 -19.00821,-19.00817 -10.7438,0 -19.42147,8.26429 -19.42147,19.00817 0,10.7438 8.67767,19.42149 19.42147,19.42149 10.74378,0 19.00821,-8.67769 19.00821,-19.42149 m -24.79336,20.661 c 9.50413,2.47936 19.42155,-1.65279 23.96688,-9.9172 4.95863,-8.26451 3.30585,-19.00831 -3.30567,-25.61983 -6.61165,-6.61148 -17.3554,-8.26441 -25.61986,-3.30568 -8.26451,4.54531 -12.39654,14.46263 -9.91732,23.9668", + "fill": { + "paint": "transparent" + }, + "id": "CommIn", + "name": "CommIn", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "width": "0.412001" + }, + "type": "path" + } + ], + "id": "g4", + "name": "g4", + "transform": "matrix(0.53333573,0,0,0.59762402,480.46281,199.76032)", + "type": "group" + }, + { + "elements": [ + { + "d": "m 699.9375,569.49536 -220.24159,-0.42223 v 60.87352 l -254.42476,-0.36993", + "fill": { + "paint": "transparent" + }, + "id": "path128", + "name": "path128", + "stroke": { + "width": "3.77953" + }, + "type": "path" + }, + { + "d": "m 699.9375,603.49536 -183.67845,-0.42223 -0.22044,114.0645 H 267.5405 l 0.35558,94.14757 -42.93843,0.0811", + "fill": { + "paint": "transparent" + }, + "id": "path129", + "name": "path129", + "stroke": { + "width": "3.77953" + }, + "type": "path" + }, + { + "d": "m 700.04799,633.09264 c -51.12516,-0.004 -102.25031,0.0224 -153.37546,0.0412 l 0.4114,133.7128 -199.33006,0.31088 -0.1818,92.36494 -107.32902,0.52731 0.008,129.49764 -15.50293,-0.0359", + "fill": { + "paint": "transparent" + }, + "id": "path155", + "name": "path155", + "stroke": { + "width": "3.77953" + }, + "type": "path" + }, + { + "d": "m 699.9375,510.59335 -220.24159,0.42223 v -60.87352 l -254.90227,0.36993", + "fill": { + "paint": "transparent" + }, + "id": "path156", + "name": "path156", + "stroke": { + "width": "3.77953" + }, + "type": "path" + }, + { + "d": "m 699.9375,476.59335 -183.67845,0.42223 -0.22044,-114.0645 H 267.5405 l 0.35558,-94.14757 -42.83312,-0.0811", + "fill": { + "paint": "transparent" + }, + "id": "path157", + "name": "path157", + "stroke": { + "width": "3.77953" + }, + "type": "path" + }, + { + "d": "m 700.04799,446.99607 c -51.12516,0.004 -102.25031,-0.0224 -153.37546,-0.0412 l 0.4114,-133.7128 -199.33006,-0.31088 -0.1818,-92.36494 -107.32902,-0.52731 0.008,-129.49764 -14.90804,0.0359", + "fill": { + "paint": "transparent" + }, + "id": "path158", + "name": "path158", + "stroke": { + "width": "3.77953" + }, + "type": "path" + } + ], + "id": "g158", + "name": "g158", + "transform": "matrix(1.3333333,0,0,1.5000001,-320.06974,-269.68853)", + "type": "group" + }, + { + "elements": [ + { + "d": "m 984.73619,390.02042 v -105.8469 h 101.26491 l -0.078,-105.33102", + "fill": { + "paint": "transparent" + }, + "id": "path143", + "name": "path143", + "stroke": { + "width": "3.77953" + }, + "type": "path" + }, + { + "d": "m 1090.2894,390.2414 v -89.93672 h 229.4212 l 0,-121.21299", + "fill": { + "paint": "transparent" + }, + "id": "path165", + "name": "path165", + "stroke": { + "width": "3.77953" + }, + "type": "path" + }, + { + "d": "m 1185.0876,390.13091 v -73.03215 h 166.5044 v -78.03207 h 178.7473 V 199.3785 h 34.3756 l 0,-20.7202", + "fill": { + "paint": "transparent" + }, + "id": "path166", + "name": "path166", + "stroke": { + "width": "3.77953" + }, + "type": "path" + }, + { + "d": "m 935.08173,390.02042 v -105.8469 h -101.2649 l 0.078,-105.06722", + "fill": { + "paint": "transparent" + }, + "id": "path167", + "name": "path167", + "stroke": { + "width": "3.77953" + }, + "type": "path" + }, + { + "d": "m 829.52853,390.2414 v -89.93672 h -229.4212 l 0,-121.08077", + "fill": { + "paint": "transparent" + }, + "id": "path168", + "name": "path168", + "stroke": { + "width": "3.77953" + }, + "type": "path" + }, + { + "d": "M 734.73033,390.13091 V 317.09876 H 568.22593 V 239.06669 H 389.47862 V 199.3785 h -34.3756 l 0,-20.33765", + "fill": { + "paint": "transparent" + }, + "id": "path169", + "name": "path169", + "stroke": { + "width": "3.77953" + }, + "type": "path" + } + ], + "id": "g169", + "name": "g169", + "transform": "matrix(1.3333333,0,0,1.5000001,-320.06974,-269.68853)", + "type": "group" + }, + { + "elements": [ + { + "d": "m 699.9375,569.49536 -220.24159,-0.42223 v 60.87352 l -254.42476,-0.36993", + "fill": { + "paint": "transparent" + }, + "id": "path119", + "name": "path119", + "stroke": { + "width": "3.77953" + }, + "type": "path" + }, + { + "d": "m 699.9375,603.49536 -183.67845,-0.42223 -0.22044,114.0645 H 267.5405 l 0.35558,94.14757 -42.93843,0.0811", + "fill": { + "paint": "transparent" + }, + "id": "path120", + "name": "path120", + "stroke": { + "width": "3.77953" + }, + "type": "path" + }, + { + "d": "m 700.04799,633.09264 c -51.12516,-0.004 -102.25031,0.0224 -153.37546,0.0412 l 0.4114,133.7128 -199.33006,0.31088 -0.1818,92.36494 -107.32902,0.52731 0.008,129.49764 -15.50293,-0.0359", + "fill": { + "paint": "transparent" + }, + "id": "path121", + "name": "path121", + "stroke": { + "width": "3.77953" + }, + "type": "path" + }, + { + "d": "m 699.9375,510.59335 -220.24159,0.42223 v -60.87352 l -254.90227,0.36993", + "fill": { + "paint": "transparent" + }, + "id": "path122", + "name": "path122", + "stroke": { + "width": "3.77953" + }, + "type": "path" + }, + { + "d": "m 699.9375,476.59335 -183.67845,0.42223 -0.22044,-114.0645 H 267.5405 l 0.35558,-94.14757 -42.83312,-0.0811", + "fill": { + "paint": "transparent" + }, + "id": "path123", + "name": "path123", + "stroke": { + "width": "3.77953" + }, + "type": "path" + }, + { + "d": "m 700.04799,446.99607 c -51.12516,0.004 -102.25031,-0.0224 -153.37546,-0.0412 l 0.4114,-133.7128 -199.33006,-0.31088 -0.1818,-92.36494 -107.32902,-0.52731 0.008,-129.49764 -14.90804,0.0359", + "fill": { + "paint": "transparent" + }, + "id": "path124", + "name": "path124", + "stroke": { + "width": "3.77953" + }, + "type": "path" + } + ], + "id": "g124", + "name": "g124", + "transform": "matrix(-1.3333333,0,0,-1.5000001,2242.4945,1350.8903)", + "type": "group" + }, + { + "elements": [ + { + "d": "m 984.73619,390.02042 v -105.8469 h 101.26491 l -0.078,-105.33102", + "fill": { + "paint": "transparent" + }, + "id": "path125", + "name": "path125", + "stroke": { + "width": "3.77953" + }, + "type": "path" + }, + { + "d": "m 1090.2894,390.2414 v -89.93672 h 229.4212 V 179.09169", + "fill": { + "paint": "transparent" + }, + "id": "path126", + "name": "path126", + "stroke": { + "width": "3.77953" + }, + "type": "path" + }, + { + "d": "m 1185.0876,390.13091 v -73.03215 h 166.5044 v -78.03207 h 178.7473 V 199.3785 h 34.3756 v -20.7202", + "fill": { + "paint": "transparent" + }, + "id": "path127", + "name": "path127", + "stroke": { + "width": "3.77953" + }, + "type": "path" + }, + { + "d": "m 935.08173,390.02042 v -105.8469 h -101.2649 l 0.078,-105.06722", + "fill": { + "paint": "transparent" + }, + "id": "path130", + "name": "path130", + "stroke": { + "width": "3.77953" + }, + "type": "path" + }, + { + "d": "M 829.52853,390.2414 V 300.30468 H 600.10733 V 179.22391", + "fill": { + "paint": "transparent" + }, + "id": "path131", + "name": "path131", + "stroke": { + "width": "3.77953" + }, + "type": "path" + }, + { + "d": "M 734.73033,390.13091 V 317.09876 H 568.22593 V 239.06669 H 389.47862 V 199.3785 h -34.3756 v -20.33765", + "fill": { + "paint": "transparent" + }, + "id": "path132", + "name": "path132", + "stroke": { + "width": "3.77953" + }, + "type": "path" + } + ], + "id": "g132", + "name": "g132", + "transform": "matrix(-1.3333333,0,0,-1.5000001,2242.4945,1350.8903)", + "type": "group" + } + ], + "id": "layer1", + "name": "layer1", + "transform": "matrix(0.74957033,0,0,0.66580032,240.25554,180.88257)", + "type": "group" + } + ], + "preserveAspectRatio": "none", + "viewBox": "0 0 1920 1080" + }, + "type": "ia.shapes.svg" + } + ], + "meta": { + "name": "root" + }, + "props": { + "direction": "column" + }, + "type": "ia.container.flex" + } +} \ No newline at end of file diff --git a/.resources/88b2d186276d125d97df67fb5a6f54be4e38ba7a065771213d3490e0ea8dd30d b/.resources/88b2d186276d125d97df67fb5a6f54be4e38ba7a065771213d3490e0ea8dd30d new file mode 100644 index 00000000..2d4109e9 --- /dev/null +++ b/.resources/88b2d186276d125d97df67fb5a6f54be4e38ba7a065771213d3490e0ea8dd30d @@ -0,0 +1,1450 @@ +{ + "custom": {}, + "params": { + "tagProps": [ + "TAG0", + "TAG1", + "TAG2", + "TAG3", + "TAG4", + "TAG5", + "TAG6", + "TAG7", + "TAG8", + "TAG9", + "TAG10", + "TAG11", + "TAG12", + "TAG13", + "TAG14", + "TAG15", + "TAG16", + "TAG17", + "TAG18", + "TAG19" + ] + }, + "props": { + "defaultSize": { + "height": 1080, + "width": 1920 + } + }, + "root": { + "children": [ + { + "meta": { + "name": "DPM" + }, + "position": { + "height": 1, + "width": 1 + }, + "propConfig": { + "props.params.con_lines[0]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[0]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[10]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[10]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[11]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[11]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[12]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[12]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[13]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[13]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[14]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[14]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[15]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[15]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[16]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[16]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[17]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[17]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[18]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[18]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[19]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[19]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[1]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[1]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[2]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[2]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[3]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[3]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[4]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[4]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[5]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[5]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[6]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[6]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[7]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[7]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[8]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[8]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[9]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[9]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + } + }, + "props": { + "params": { + "con_lines": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + false, + false, + false, + false + ], + "con_lines_visible": [ + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + false, + false, + false, + false + ], + "in": false, + "out": false + }, + "path": "Windows/Tabs/Enternet Windows/Components/DPM_TO_HUB" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011033_ZMX1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0232, + "y": 0.4991 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/ZMX" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011033_ZMX1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.0094, + "y": 0.5394 + }, + "props": { + "text": "S011033_ZMX1 11.200.1.149", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "S011034_ZMX1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.023, + "y": 0.6677 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/ZMX" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011034_ZMX1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.0068, + "y": 0.7315 + }, + "props": { + "text": "S011034_ZMX1 11.200.1.150", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "S011035_ZMX1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0216, + "y": 0.8333 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/ZMX" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011035_ZMX1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.0068, + "y": 0.8981 + }, + "props": { + "text": "S011035_ZMX1 11.200.1.151", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "S011036_ZMX1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0229, + "y": 0.3333 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/ZMX" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011036_ZMX1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.0068, + "y": 0.3986 + }, + "props": { + "text": "S011036_ZMX1 11.200.1.152", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "S011037_ZMX1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0229, + "y": 0.1667 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/ZMX" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011037_ZMX1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.0068, + "y": 0.2324 + }, + "props": { + "text": "S011037_ZMX1 11.200.1.153", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "S011038_ZMX1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0244 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/ZMX" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011038_ZMX1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.0068, + "y": 0.0653 + }, + "props": { + "text": "S011038_ZMX1 11.200.1.154", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "S011039_ZMX1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.5 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/ZMX" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011039_ZMX1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.5117, + "y": 0.1662 + }, + "props": { + "text": "S011039_ZMX1 11.200.1.155", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "S011040_ZMX1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.625 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/ZMX" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011040_ZMX1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.6312, + "y": 0.1664 + }, + "props": { + "text": "S011040_ZMX1 11.200.1.156", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "S011041_ZMX1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.75 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/ZMX" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011041_ZMX1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.75, + "y": 0.1664 + }, + "props": { + "text": "S011041_ZMX1 11.200.1.157", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "S011042_ZMX1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.375 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/ZMX" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011042_ZMX1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.3864, + "y": 0.1664 + }, + "props": { + "text": "S011042_ZMX1 11.200.1.158", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "S011043_ZMX1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.2516, + "y": 0.0019 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/ZMX" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011043_ZMX1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.315, + "y": 0.1682 + }, + "props": { + "text": "S011043_ZMX1 11.200.1.159", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "S011044_ZMX1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.1245 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/ZMX" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011044_ZMX1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.2072, + "y": 0.1646 + }, + "props": { + "text": "S011044_ZMX1 11.200.1.160", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "S011045_ZMX1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.8544, + "y": 0.3332 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/ZMX" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011045_ZMX1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.9505, + "y": 0.3943 + }, + "props": { + "text": "S011045_ZMX1 11.200.1.161", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "S011046_ZMX1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.8549, + "y": 0.1667 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/ZMX" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011046_ZMX1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.9505, + "y": 0.2276 + }, + "props": { + "text": "S011046_ZMX1 11.200.1.162", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "S011048_ZMX1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.8563 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/ZMX" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011048_ZMX1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.9505, + "y": 0.0619 + }, + "props": { + "text": "S011048_ZMX1 11.200.1.163", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "VS01A_FIOM10" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.8389, + "y": 0.4988 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/FIO_SIO" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "VS01A_FIOM10_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.9349999999999999, + "y": 0.561 + }, + "props": { + "text": "VS01A_FIOM10 11.200.1.164", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "VS01A_FIOM11" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.8381, + "y": 0.6639 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/FIO_SIO" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "VS01A_FIOM11_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.9349999999999999, + "y": 0.7257 + }, + "props": { + "text": "VS01A_FIOM11 11.200.1.165", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "VS01A_FIOM12" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.8395, + "y": 0.8329 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/FIO_SIO" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "VS01A_FIOM12_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.9349999999999999, + "y": 0.8927 + }, + "props": { + "text": "VS01A_FIOM12 11.200.1.166", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "VS01A_FIOM13" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.374, + "y": 0.8324 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/FIO_SIO" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "VS01A_FIOM13_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.4587, + "y": 0.8896 + }, + "props": { + "text": "VS01A_FIOM13 11.200.1.167", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "VS01A_FIOM14" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.2481, + "y": 0.8324 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/FIO_SIO" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "VS01A_FIOM14_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.3311, + "y": 0.8887 + }, + "props": { + "text": "VS01A_FIOM14 11.200.1.168", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "DPM_label" + }, + "position": { + "height": 0.0694, + "width": 0.101, + "x": 0.5831, + "y": 0.6342 + }, + "props": { + "text": "DPM03_VS01A 11.200.1.4", + "textStyle": { + "fontSize": "2vmin" + } + }, + "type": "ia.display.label" + } + ], + "meta": { + "name": "root" + }, + "position": { + "x": 0.6348, + "y": -0.1546 + }, + "props": { + "mode": "percent" + }, + "type": "ia.container.coord" + } +} \ No newline at end of file diff --git a/.resources/8a1e9cebd7e0a505b68c2b02761b9767a7cfb55630564be891cbbcf03c2316f3 b/.resources/8a1e9cebd7e0a505b68c2b02761b9767a7cfb55630564be891cbbcf03c2316f3 new file mode 100644 index 00000000..f250b7e1 Binary files /dev/null and b/.resources/8a1e9cebd7e0a505b68c2b02761b9767a7cfb55630564be891cbbcf03c2316f3 differ diff --git a/.resources/8a8cabb7b15b2d90e0d9a0a7637cd76c1fca3a9574c94dcbff95dc6fa3824e7d b/.resources/8a8cabb7b15b2d90e0d9a0a7637cd76c1fca3a9574c94dcbff95dc6fa3824e7d new file mode 100644 index 00000000..98f036f0 --- /dev/null +++ b/.resources/8a8cabb7b15b2d90e0d9a0a7637cd76c1fca3a9574c94dcbff95dc6fa3824e7d @@ -0,0 +1,5427 @@ +{ + "custom": {}, + "params": { + "highlightTagPath": "" + }, + "propConfig": { + "params.highlightTagPath": { + "onChange": { + "enabled": null, + "script": "\tutils.handleTagHighlight(self.view, currentValue)\n" + }, + "paramDirection": "input", + "persistent": true + } + }, + "props": { + "defaultSize": { + "height": 1080, + "width": 1920 + } + }, + "root": { + "children": [ + { + "meta": { + "name": "MCM01 Bulk Inbound" + }, + "position": { + "height": 1, + "width": 1 + }, + "props": { + "elements": [ + { + "id": "defs1", + "name": "defs1", + "type": "defs" + }, + { + "elements": [ + { + "elements": [ + { + "fill": { + "paint": "#ffffff" + }, + "height": "452.60101", + "id": "rect1-6-2-0-0-4-8-1", + "name": "rect1-6-2-0-0-4-8-1", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "0.991349" + }, + "transform": "matrix(-8.1387333e-5,-1,-1,7.8601361e-5,0,0)", + "type": "rect", + "width": "28.972996", + "x": "-719.7785", + "y": "-808.02985" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "498.72485", + "id": "rect1-6-2-0-0-4-8-1-2", + "name": "rect1-6-2-0-0-4-8-1-2", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "0.996127" + }, + "transform": "matrix(0,-1,-1,0,0,0)", + "type": "rect", + "width": "29.003874", + "x": "-719.79688", + "y": "-1309.8108" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "75.095642", + "id": "rect1-6-2-0-0-4-8-1-2-8", + "name": "rect1-6-2-0-0-4-8-1-2-8", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "0.995127" + }, + "transform": "matrix(0,-1,-1,0,0,0)", + "type": "rect", + "width": "29.004873", + "x": "-719.98676", + "y": "-1387.6458" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "90.68074", + "id": "rect1-6-2-0-0-4-8-1-2-8-1", + "name": "rect1-6-2-0-0-4-8-1-2-8-1", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "0.997909" + }, + "transform": "matrix(0,-1,-1,0,0,0)", + "type": "rect", + "width": "29.00209", + "x": "-720.01599", + "y": "-1481.2389" + }, + { + "d": "m 283.98287,648.66179 c -0.40837,36.79455 21.43731,71.6458 68.84499,71.76201 l 0.0131,-29.70755 c -22.5474,-1.53671 -40.97961,-10.68979 -40.11414,-41.99303 z", + "fill": { + "paint": "#ffffff" + }, + "id": "path4-9-3", + "name": "path4-9-3", + "stroke": { + "dasharray": "none", + "dashoffset": "0", + "paint": "#000000", + "width": "1" + }, + "type": "path" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "770.62036", + "id": "rect1-6-2-0-0-4-8-1-2-2-0", + "name": "rect1-6-2-0-0-4-8-1-2-2-0", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1.00318" + }, + "transform": "matrix(0,-1,-1,0,0,0)", + "type": "rect", + "width": "28.996822", + "x": "-549.84698", + "y": "-1463.5435" + }, + { + "d": "m 690.08008,520.95897 c -8.99145,0 -19.10599,-1.99405 -21.58098,-11.23083 l -28.61426,0.0587 c 0,23.88702 16.89342,39.78338 49.84299,40.0847 z", + "fill": { + "paint": "#ffffff" + }, + "id": "path10-8", + "name": "path10-8", + "stroke": { + "dasharray": "none", + "dashoffset": "0", + "paint": "#000000", + "width": "1" + }, + "type": "path" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "278.60223", + "id": "rect1-6-2-0-0-4-8-1-2-8-3-1-5-1-6", + "name": "rect1-6-2-0-0-4-8-1-2-8-3-1-5-1-6", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "scale(-1,1)", + "type": "rect", + "width": "29.014879", + "x": "-668.63367", + "y": "229.452" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "64.622307", + "id": "rect1-6-2-0-0-6-8-2", + "name": "rect1-6-2-0-0-6-8-2", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "0.985206" + }, + "transform": "scale(1,-1)", + "type": "rect", + "width": "29.014793", + "x": "283.51157", + "y": "-468.77496" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "26.518293", + "id": "rect1-6-2-3-6-8-3-6-7", + "name": "rect1-6-2-3-6-8-3-6-7", + "ry": "0", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "0.985362" + }, + "transform": "scale(1,-1)", + "type": "rect", + "width": "29.014637", + "x": "283.54504", + "y": "-347.54135" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "24.58976", + "id": "rect1-6-2-3-6-8-3-6-2-7", + "name": "rect1-6-2-3-6-8-3-6-2-7", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "0.985383" + }, + "transform": "scale(1,-1)", + "type": "rect", + "width": "29.014616", + "x": "283.45166", + "y": "-374.22592" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "25.795069", + "id": "rect1-6-2-3-6-8-3-6-4-9", + "name": "rect1-6-2-3-6-8-3-6-4-9", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "0.98537" + }, + "transform": "scale(1,-1)", + "type": "rect", + "width": "29.014629", + "x": "283.41986", + "y": "-402.15924" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "176.27286", + "id": "rect1-6-2-0-0-6-8-3-3", + "name": "rect1-6-2-0-0-6-8-3-3", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "0.985136" + }, + "transform": "scale(1,-1)", + "type": "rect", + "width": "29.014864", + "x": "283.65851", + "y": "-647.12708" + }, + { + "d": "m 1431.0849,721.64758 h 25.2682 l 14.3361,66.0502 h -53.7562 z", + "fill": { + "paint": "#ffffff" + }, + "id": "path4", + "name": "path4", + "stroke": { + "dasharray": "none", + "linecap": "square", + "linejoin": "bevel", + "miterlimit": "2.8", + "paint": "#000000", + "width": "1" + }, + "style": { + "opacity": "1", + "paintOrder": "markers fill stroke" + }, + "type": "path" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "53.314598", + "id": "rect5", + "name": "rect5", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "matrix(0,-1,-1,0,0,0)", + "type": "rect", + "width": "61.265743", + "x": "-850.9541", + "y": "-1470.3099" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "280.48474", + "id": "rect6", + "name": "rect6", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "0.991581" + }, + "transform": "matrix(-8.1350967e-5,-1,-1,7.8636498e-5,0,0)", + "type": "rect", + "width": "28.986282", + "x": "-661.52814", + "y": "-808.36115" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "499.5683", + "id": "rect7", + "name": "rect7", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "0.996127" + }, + "transform": "matrix(0,-1,-1,0,0,0)", + "type": "rect", + "width": "29.003874", + "x": "-661.66882", + "y": "-1310.8802" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "214.63808", + "id": "rect8", + "name": "rect8", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "matrix(0,-1,-1,0,0,0)", + "type": "rect", + "width": "29.291504", + "x": "-662.06744", + "y": "-1528.4611" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "90.67865", + "id": "rect9", + "name": "rect9", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "matrix(0,-1,-1,0,0,0)", + "type": "rect", + "width": "29.124451", + "x": "-662.05457", + "y": "-1622.473" + }, + { + "d": "m 453.75348,590.4534 c -0.90663,38.16476 23.50044,71.75346 70.94726,71.76201 l -0.32781,-29.70755 c -22.5474,-1.53671 -41.28532,-11.26695 -41.57418,-41.99303 z", + "fill": { + "paint": "#ffffff" + }, + "id": "path9", + "name": "path9", + "stroke": { + "dasharray": "none", + "dashoffset": "0", + "paint": "#000000", + "width": "1" + }, + "type": "path" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "64.622307", + "id": "rect10", + "name": "rect10", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "0.985206" + }, + "transform": "scale(1,-1)", + "type": "rect", + "width": "29.014793", + "x": "453.80444", + "y": "-469.38501" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "24.750513", + "id": "rect11", + "name": "rect11", + "ry": "0", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "0.985382" + }, + "transform": "scale(1,-1)", + "type": "rect", + "width": "29.014618", + "x": "453.75757", + "y": "-347.14697" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "24.911169", + "id": "rect12", + "name": "rect12", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "0.985379" + }, + "transform": "scale(1,-1)", + "type": "rect", + "width": "29.014622", + "x": "453.66412", + "y": "-374.59494" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "25.795069", + "id": "rect13", + "name": "rect13", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "0.98537" + }, + "transform": "scale(1,-1)", + "type": "rect", + "width": "29.014629", + "x": "454.03418", + "y": "-402.76929" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "117.133", + "id": "rect14", + "name": "rect14", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "0.985157" + }, + "transform": "scale(1,-1)", + "type": "rect", + "width": "29.014843", + "x": "453.71033", + "y": "-588.51691" + }, + { + "d": "m 1570.8436,663.68025 h 26.0717 l 13.5326,66.0502 h -53.7562 z", + "fill": { + "paint": "#ffffff" + }, + "id": "path14", + "name": "path14", + "stroke": { + "dasharray": "none", + "linecap": "square", + "linejoin": "bevel", + "miterlimit": "2.8", + "paint": "#000000", + "width": "1" + }, + "style": { + "opacity": "1", + "paintOrder": "markers fill stroke" + }, + "type": "path" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "53.314598", + "id": "rect15", + "name": "rect15", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "matrix(0,-1,-1,0,0,0)", + "type": "rect", + "width": "61.265743", + "x": "-792.98682", + "y": "-1610.0686" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "105.78705", + "id": "rect16", + "name": "rect16", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "0.997907" + }, + "transform": "matrix(0,-1,-1,0,0,0)", + "type": "rect", + "width": "29.002092", + "x": "-549.80048", + "y": "-1573.2906" + }, + { + "d": "m 1618.8697,550.07953 0.1205,-29.12512 43.1145,-12.48801 -0.085,53.7562 z", + "fill": { + "paint": "#ffffff" + }, + "id": "path16", + "name": "path16", + "stroke": { + "dasharray": "none", + "linecap": "square", + "linejoin": "bevel", + "miterlimit": "2.8", + "paint": "#000000", + "width": "1" + }, + "style": { + "opacity": "1", + "paintOrder": "markers fill stroke" + }, + "type": "path" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "621.30151", + "id": "rect17", + "name": "rect17", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1.00318" + }, + "transform": "matrix(0,-1,-1,0,0,0)", + "type": "rect", + "width": "28.996824", + "x": "-474.59332", + "y": "-1463.9486" + }, + { + "d": "m 839.64288,445.73614 c -14.85723,-0.20088 -22.64153,-9.61826 -22.42469,-21.74775 l -28.61426,0.0587 c -1.35016,26.08103 17.73713,50.06857 50.6867,50.36989 z", + "fill": { + "paint": "#ffffff" + }, + "id": "path17", + "name": "path17", + "stroke": { + "dasharray": "none", + "dashoffset": "0", + "paint": "#000000", + "width": "1" + }, + "type": "path" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "192.7852", + "id": "rect18", + "name": "rect18", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "scale(-1,1)", + "type": "rect", + "width": "29.014954", + "x": "-817.35272", + "y": "229.52931" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "106.46999", + "id": "rect19", + "name": "rect19", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "0.997909" + }, + "transform": "matrix(0,-1,-1,0,0,0)", + "type": "rect", + "width": "29.002106", + "x": "-474.64386", + "y": "-1573.8059" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "41.343845", + "id": "rect1", + "name": "rect1", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "0.997907" + }, + "transform": "matrix(0,-1,-1,0,0,0)", + "type": "rect", + "width": "29.002075", + "x": "-549.8808", + "y": "-1617.0831" + }, + { + "d": "m 1618.9833,474.73863 0.1205,-29.12512 43.1145,-12.48801 -0.085,53.7562 z", + "fill": { + "paint": "#ffffff" + }, + "id": "path1", + "name": "path1", + "stroke": { + "dasharray": "none", + "linecap": "square", + "linejoin": "bevel", + "miterlimit": "2.8", + "paint": "#000000", + "width": "1" + }, + "style": { + "opacity": "1", + "paintOrder": "markers fill stroke" + }, + "type": "path" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "41.343845", + "id": "rect2", + "name": "rect2", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "0.997907" + }, + "transform": "matrix(0,-1,-1,0,0,0)", + "type": "rect", + "width": "29.002075", + "x": "-474.53992", + "y": "-1617.1968" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "24.750513", + "id": "rect3", + "name": "rect3", + "ry": "0", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "0.985382" + }, + "transform": "scale(1,-1)", + "type": "rect", + "width": "29.014618", + "x": "639.75757", + "y": "-227.14697" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "24.750513", + "id": "rect4", + "name": "rect4", + "ry": "0", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "0.985382" + }, + "transform": "scale(1,-1)", + "type": "rect", + "width": "29.014618", + "x": "788.47192", + "y": "-227.14697" + } + ], + "id": "g2", + "name": "g2", + "type": "group" + } + ], + "id": "layer1", + "name": "layer1", + "type": "group" + } + ], + "preserveAspectRatio": "none", + "viewBox": "0 0 1920 1080" + }, + "type": "ia.shapes.svg" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect1-6-2-0-0-4-8-1-2-8-3-1-5-1-6", + "inheritedGroupPrefix": "CON", + "name": "ULC3_6", + "originalName": "ULC3-6" + }, + "position": { + "height": 0.0231, + "rotate": { + "angle": "270deg" + }, + "width": 0.013, + "x": 0.3339, + "y": 0.3291 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM01/Conveyor/VFD/ULC3_6_VFD1" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect1-6-2-0-0-6-8-2", + "inheritedGroupPrefix": "CON", + "name": "ULC1_9B", + "originalName": "ULC1-9" + }, + "position": { + "height": 0.0231, + "rotate": { + "angle": "270deg" + }, + "width": 0.013, + "x": 0.1484, + "y": 0.3825 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM01/Conveyor/VFD/ULC1_9B_VFD1" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect1-6-2-3-6-8-3-6-7", + "inheritedGroupPrefix": "CON", + "name": "ULC1_12", + "originalName": "ULC1-12" + }, + "position": { + "height": 0.0231, + "rotate": { + "angle": "270deg" + }, + "width": 0.013, + "x": 0.1485, + "y": 0.2972 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM01/Conveyor/VFD/ULC1_12_VFD1" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect1-6-2-3-6-8-3-6-2-7", + "inheritedGroupPrefix": "CON", + "name": "ULC1_11", + "originalName": "ULC1-11" + }, + "position": { + "height": 0.0231, + "rotate": { + "angle": "270deg" + }, + "width": 0.013, + "x": 0.1484, + "y": 0.3228 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM01/Conveyor/VFD/ULC1_11_VFD1" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect1-6-2-3-6-8-3-6-4-9", + "inheritedGroupPrefix": "CON", + "name": "ULC1_10", + "originalName": "ULC1-10" + }, + "position": { + "height": 0.0231, + "rotate": { + "angle": "270deg" + }, + "width": 0.013, + "x": 0.1484, + "y": 0.3481 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM01/Conveyor/VFD/ULC1_10_VFD1" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect1-6-2-0-0-6-8-3-3", + "inheritedGroupPrefix": "CON", + "name": "ULC1_8", + "originalName": "ULC1-8" + }, + "position": { + "height": 0.0231, + "rotate": { + "angle": "270deg" + }, + "width": 0.013, + "x": 0.1485, + "y": 0.5052 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM01/Conveyor/VFD/ULC1_8_VFD1" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": null, + "groupSuffix": "u", + "id": "path4", + "inheritedGroupPrefix": "CON", + "name": "ULC1_2", + "originalName": "ULC1-2" + }, + "position": { + "height": 0.0231, + "rotate": { + "angle": "270deg" + }, + "width": 0.013, + "x": 0.7459, + "y": 0.6901 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM01/Conveyor/VFD/ULC1_2_VFD1" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect5", + "inheritedGroupPrefix": "CON", + "name": "ULC1_1_TIPPER", + "originalName": "ULC1-1" + }, + "position": { + "height": 0.0231, + "rotate": { + "angle": 0 + }, + "width": 0.013, + "x": 0.7451, + "y": 0.7472 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM01/Conveyor/TIPPER/ULC1_1_TIPPER" + ] + }, + "path": "Symbol-Views/Equipment-Views/Tipper" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect11", + "inheritedGroupPrefix": "CON", + "name": "ULC2_12", + "originalName": "ULC2-12" + }, + "position": { + "height": 0.0231, + "rotate": { + "angle": "270deg" + }, + "width": 0.013, + "x": 0.2371, + "y": 0.2976 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM01/Conveyor/VFD/ULC2_12_VFD1" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect12", + "inheritedGroupPrefix": "CON", + "name": "ULC2_11", + "originalName": "ULC2-11" + }, + "position": { + "height": 0.0231, + "rotate": { + "angle": "270deg" + }, + "width": 0.013, + "x": 0.2371, + "y": 0.323 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM01/Conveyor/VFD/ULC2_11_VFD1" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect13", + "inheritedGroupPrefix": "CON", + "name": "ULC2_10", + "originalName": "ULC2-10" + }, + "position": { + "height": 0.0231, + "rotate": { + "angle": "270deg" + }, + "width": 0.013, + "x": 0.2373, + "y": 0.3486 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM01/Conveyor/VFD/ULC2_10_VFD1" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect14", + "inheritedGroupPrefix": "CON", + "name": "ULC2_8", + "originalName": "ULC2-8" + }, + "position": { + "height": 0.0231, + "rotate": { + "angle": "270deg" + }, + "width": 0.013, + "x": 0.2371, + "y": 0.4783 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM01/Conveyor/VFD/ULC2_8_VFD1" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": null, + "groupSuffix": "u", + "id": "path14", + "inheritedGroupPrefix": "CON", + "name": "ULC2_2", + "originalName": "ULC2-2" + }, + "position": { + "height": 0.0231, + "rotate": { + "angle": "270deg" + }, + "width": 0.013, + "x": 0.8181, + "y": 0.6364 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM01/Conveyor/VFD/ULC2_2_VFD1" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect15", + "inheritedGroupPrefix": "CON", + "name": "ULC2_1_TIPPER", + "originalName": "ULC2-1" + }, + "position": { + "height": 0.0231, + "rotate": { + "angle": 0 + }, + "width": 0.013, + "x": 0.8179, + "y": 0.6935 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM01/Conveyor/TIPPER/ULC2_1_TIPPER" + ] + }, + "path": "Symbol-Views/Equipment-Views/Tipper" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect18", + "inheritedGroupPrefix": "CON", + "name": "ULC4_6", + "originalName": "ULC4-6" + }, + "position": { + "height": 0.0231, + "rotate": { + "angle": "270deg" + }, + "width": 0.013, + "x": 0.4114, + "y": 0.2855 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM01/Conveyor/VFD/ULC4_6_VFD1" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "l", + "id": "rect1-6-2-0-0-4-8-1", + "inheritedGroupPrefix": "CON", + "name": "ULC1_6", + "originalName": "ULC1-6" + }, + "position": { + "height": 0.0231, + "rotate": { + "angle": "180deg" + }, + "width": 0.013, + "x": 0.2962, + "y": 0.6407 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM01/Conveyor/VFD/ULC1_6_VFD1" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "l", + "id": "rect1-6-2-0-0-4-8-1-2", + "inheritedGroupPrefix": "CON", + "name": "ULC1_5", + "originalName": "ULC1-5" + }, + "position": { + "height": 0.0231, + "rotate": { + "angle": "180deg" + }, + "width": 0.013, + "x": 0.5455, + "y": 0.6407 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM01/Conveyor/VFD/ULC1_5_VFD1" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "l", + "id": "rect1-6-2-0-0-4-8-1-2-8", + "inheritedGroupPrefix": "CON", + "name": "ULC1_4", + "originalName": "ULC1-4" + }, + "position": { + "height": 0.0231, + "rotate": { + "angle": "180deg" + }, + "width": 0.013, + "x": 0.6964, + "y": 0.6409 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM01/Conveyor/VFD/ULC1_4_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "l", + "id": "rect1-6-2-0-0-4-8-1-2-8-1", + "inheritedGroupPrefix": "CON", + "name": "ULC1_3", + "originalName": "ULC1-3" + }, + "position": { + "height": 0.0231, + "rotate": { + "angle": "180deg" + }, + "width": 0.013, + "x": 0.7411, + "y": 0.6409 + }, + "props": { + "params": { + "angle": 0, + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM01/Conveyor/VFD/ULC1_3_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": null, + "groupSuffix": "l", + "id": "path4-9-3", + "inheritedGroupPrefix": "CON", + "name": "ULC1_7", + "originalName": "ULC1-7" + }, + "position": { + "height": 0.0231, + "rotate": { + "angle": "212deg" + }, + "width": 0.013, + "x": 0.1573, + "y": 0.629 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM01/Conveyor/VFD/ULC1_7_VFD1" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "l", + "id": "rect1-6-2-0-0-4-8-1-2-2-0", + "inheritedGroupPrefix": "CON", + "name": "ULC3_4", + "originalName": "ULC3-4" + }, + "position": { + "height": 0.0231, + "rotate": { + "angle": "180deg" + }, + "width": 0.013, + "x": 0.5548, + "y": 0.4833 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM01/Conveyor/VFD/ULC3_4_VFD1" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": null, + "groupSuffix": "l", + "id": "path10-8", + "inheritedGroupPrefix": "CON", + "name": "ULC3_5", + "originalName": "ULC3-5" + }, + "position": { + "height": 0.0231, + "rotate": { + "angle": "212deg" + }, + "width": 0.013, + "x": 0.3396, + "y": 0.4774 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM01/Conveyor/VFD/ULC3_5_VFD1" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "l", + "id": "rect6", + "inheritedGroupPrefix": "CON", + "name": "ULC2_6", + "originalName": "ULC2-6" + }, + "position": { + "height": 0.0231, + "rotate": { + "angle": "180deg" + }, + "width": 0.013, + "x": 0.3412, + "y": 0.5867 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM01/Conveyor/VFD/ULC2_6_VFD1" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "l", + "id": "rect7", + "inheritedGroupPrefix": "CON", + "name": "ULC2_5", + "originalName": "ULC2-5" + }, + "position": { + "height": 0.0231, + "rotate": { + "angle": "180deg" + }, + "width": 0.013, + "x": 0.5459, + "y": 0.5869 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM01/Conveyor/VFD/ULC2_5_VFD1" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "l", + "id": "rect8", + "inheritedGroupPrefix": "CON", + "name": "ULC2_4", + "originalName": "ULC2-4" + }, + "position": { + "height": 0.0231, + "rotate": { + "angle": "180deg" + }, + "width": 0.013, + "x": 0.7334, + "y": 0.5871 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM01/Conveyor/VFD/ULC2_4_VFD1" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "l", + "id": "rect9", + "inheritedGroupPrefix": "CON", + "name": "ULC2_3", + "originalName": "ULC2-3" + }, + "position": { + "height": 0.0231, + "rotate": { + "angle": "180deg" + }, + "width": 0.013, + "x": 0.8147, + "y": 0.5872 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM01/Conveyor/VFD/ULC2_3_VFD1" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": null, + "groupSuffix": "l", + "id": "path9", + "inheritedGroupPrefix": "CON", + "name": "ULC2_7", + "originalName": "ULC2-7" + }, + "position": { + "height": 0.0231, + "rotate": { + "angle": "212deg" + }, + "width": 0.013, + "x": 0.2452, + "y": 0.5732 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM01/Conveyor/VFD/ULC2_7_VFD1" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "l", + "id": "rect10", + "inheritedGroupPrefix": "CON", + "name": "ULC2_9B", + "originalName": "ULC2-9" + }, + "position": { + "height": 0.0231, + "rotate": { + "angle": -90 + }, + "width": 0.013, + "x": 0.2371, + "y": 0.384 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM01/Conveyor/VFD/ULC2_9B_VFD1" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "l", + "id": "rect16", + "inheritedGroupPrefix": "CON", + "name": "ULC3_3", + "originalName": "ULC3-3" + }, + "position": { + "height": 0.0231, + "rotate": { + "angle": "180deg" + }, + "width": 0.013, + "x": 0.7851, + "y": 0.4833 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM01/Conveyor/VFD/ULC3_3_VFD1" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": null, + "groupSuffix": "l", + "id": "path16", + "inheritedGroupPrefix": "CON", + "name": "ULC3_1_TIPPER", + "originalName": "ULC3-1" + }, + "position": { + "height": 0.0231, + "rotate": { + "angle": 0 + }, + "width": 0.013, + "x": 0.8473, + "y": 0.4831 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM01/Conveyor/TIPPER/ULC3_1_TIPPER" + ] + }, + "path": "Symbol-Views/Equipment-Views/Tipper" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "l", + "id": "rect17", + "inheritedGroupPrefix": "CON", + "name": "ULC4_4", + "originalName": "ULC4-4" + }, + "position": { + "height": 0.0231, + "rotate": { + "angle": "180deg" + }, + "width": 0.013, + "x": 0.5939, + "y": 0.4137 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM01/Conveyor/VFD/ULC4_4_VFD1" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": null, + "groupSuffix": "l", + "id": "path17", + "inheritedGroupPrefix": "CON", + "name": "ULC4_5", + "originalName": "ULC4-5" + }, + "position": { + "height": 0.0231, + "rotate": { + "angle": "212deg" + }, + "width": 0.013, + "x": 0.417, + "y": 0.405 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM01/Conveyor/VFD/ULC4_5_VFD1" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "l", + "id": "rect19", + "inheritedGroupPrefix": "CON", + "name": "ULC4_3", + "originalName": "ULC4-3" + }, + "position": { + "height": 0.0231, + "rotate": { + "angle": "180deg" + }, + "width": 0.013, + "x": 0.7852, + "y": 0.4137 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM01/Conveyor/VFD/ULC4_3_VFD1" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "l", + "id": "rect1", + "inheritedGroupPrefix": "CON", + "name": "ULC3_2", + "originalName": "ULC3-2" + }, + "position": { + "height": 0.0231, + "rotate": { + "angle": "180deg" + }, + "width": 0.013, + "x": 0.8247, + "y": 0.4834 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM01/Conveyor/VFD/ULC3_2_VFD1" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": null, + "groupSuffix": "l", + "id": "path1", + "inheritedGroupPrefix": "CON", + "name": "ULC4_1_TIPPER", + "originalName": "ULC4-1" + }, + "position": { + "height": 0.0231, + "rotate": { + "angle": 0 + }, + "width": 0.013, + "x": 0.8474, + "y": 0.4124 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM01/Conveyor/TIPPER/ULC4_1_TIPPER" + ] + }, + "path": "Symbol-Views/Equipment-Views/Tipper" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "l", + "id": "rect2", + "inheritedGroupPrefix": "CON", + "name": "ULC4_2", + "originalName": "ULC4-2" + }, + "position": { + "height": 0.0231, + "rotate": { + "angle": "180deg" + }, + "width": 0.013, + "x": 0.8247, + "y": 0.4136 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM01/Conveyor/VFD/ULC4_2_VFD1" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC4_3_EPC2_Line" + }, + "position": { + "height": 0.0056, + "rotate": { + "angle": 0 + }, + "width": 0.1078, + "x": 0.7245, + "y": 0.401 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/EPC/ULC4_3_EPC2", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_Line" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC4_3_EPC2" + }, + "position": { + "height": 0.0296, + "rotate": { + "angle": -90 + }, + "width": 0.0083, + "x": 0.8321, + "y": 0.3885 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/EPC/ULC4_3_EPC2", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC1_12_S1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.1398, + "y": 0.2832 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/S_PB/ULC1_12_S1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC4_3_EPC2_END" + }, + "position": { + "height": 0.0278, + "rotate": { + "angle": 90 + }, + "width": 0.0073, + "x": 0.718, + "y": 0.3906 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/EPC/ULC4_3_EPC2", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_End" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC3_6_FIO1" + }, + "position": { + "height": 0.0185, + "width": 0.0104, + "x": 0.3356, + "y": 0.3046 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/IO_BLOCK/FIO/ULC3_6_FIO1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/DeviceStatus" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC4_3_EPC1_Line" + }, + "position": { + "height": 0.0056, + "rotate": { + "angle": 0 + }, + "width": 0.1099, + "x": 0.7245, + "y": 0.4454 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/EPC/ULC4_3_EPC1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_Line" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC4_3_EPC1" + }, + "position": { + "height": 0.0296, + "rotate": { + "angle": -90 + }, + "width": 0.0083, + "x": 0.8321, + "y": 0.433 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/EPC/ULC4_3_EPC1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC4_3_EPC1_END" + }, + "position": { + "height": 0.0278, + "rotate": { + "angle": 90 + }, + "width": 0.0073, + "x": 0.718, + "y": 0.435 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/EPC/ULC4_3_EPC1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_End" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC3_3_EPC1_Line" + }, + "position": { + "height": 0.0056, + "rotate": { + "angle": 0 + }, + "width": 0.1099, + "x": 0.724, + "y": 0.5158 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/EPC/ULC3_3_EPC1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_Line" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC3_3_EPC1_END" + }, + "position": { + "height": 0.0278, + "rotate": { + "angle": 90 + }, + "width": 0.0073, + "x": 0.7175, + "y": 0.5054 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/EPC/ULC3_3_EPC1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_End" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC3_3_EPC2_Line" + }, + "position": { + "height": 0.0056, + "rotate": { + "angle": 0 + }, + "width": 0.1078, + "x": 0.724, + "y": 0.4714 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/EPC/ULC3_3_EPC2", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_Line" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC3_3_EPC2" + }, + "position": { + "height": 0.0296, + "rotate": { + "angle": -90 + }, + "width": 0.0083, + "x": 0.8316, + "y": 0.4589 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/EPC/ULC3_3_EPC2", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC3_3_EPC2_END" + }, + "position": { + "height": 0.0278, + "rotate": { + "angle": 90 + }, + "width": 0.0073, + "x": 0.7175, + "y": 0.4609 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/EPC/ULC3_3_EPC2", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_End" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC3_3_EPC1" + }, + "position": { + "height": 0.0296, + "rotate": { + "angle": -90 + }, + "width": 0.0083, + "x": 0.8316, + "y": 0.5033 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/EPC/ULC3_3_EPC1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC2_3_EPC2_Line" + }, + "position": { + "height": 0.0056, + "rotate": { + "angle": 0 + }, + "width": 0.1568, + "x": 0.6797, + "y": 0.5751 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/EPC/ULC2_3_EPC2", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_Line" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC2_3_EPC2_END" + }, + "position": { + "height": 0.0278, + "rotate": { + "angle": 90 + }, + "width": 0.0073, + "x": 0.6722, + "y": 0.5637 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/EPC/ULC2_3_EPC2", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_End" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC2_3_EPC2" + }, + "position": { + "height": 0.0296, + "rotate": { + "angle": -90 + }, + "width": 0.0083, + "x": 0.8342, + "y": 0.5626 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/EPC/ULC2_3_EPC2", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC2_3_EPC1_Line_2" + }, + "position": { + "height": 0.0056, + "rotate": { + "angle": 0 + }, + "width": 0.1219, + "x": 0.6953, + "y": 0.6177 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/EPC/ULC2_3_EPC1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_Line" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC2_3_EPC1_END" + }, + "position": { + "height": 0.0278, + "rotate": { + "angle": 90 + }, + "width": 0.0073, + "x": 0.6915, + "y": 0.6063 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/EPC/ULC2_3_EPC1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_End" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC2_3_EPC1_Line_1" + }, + "position": { + "height": 0.0056, + "rotate": { + "angle": 0 + }, + "width": 0.0104, + "x": 0.8323, + "y": 0.6177 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/EPC/ULC2_3_EPC1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_Line" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC2_3_EPC1" + }, + "position": { + "height": 0.0296, + "rotate": { + "angle": -90 + }, + "width": 0.0083, + "x": 0.841, + "y": 0.6061 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/EPC/ULC2_3_EPC1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC1_3_EPC2_Line" + }, + "position": { + "height": 0.0056, + "rotate": { + "angle": 0 + }, + "width": 0.0802, + "x": 0.6823, + "y": 0.6288 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/EPC/ULC1_3_EPC2", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_Line" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC1_3_EPC2_END_1" + }, + "position": { + "height": 0.0278, + "rotate": { + "angle": 90 + }, + "width": 0.0073, + "x": 0.6722, + "y": 0.6183 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/EPC/ULC1_3_EPC2_END_1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_End" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC1_3_EPC2" + }, + "position": { + "height": 0.0296, + "rotate": { + "angle": -90 + }, + "width": 0.0083, + "x": 0.7623, + "y": 0.6163 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/EPC/ULC1_3_EPC2", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC1_3_EPC1_Line_2" + }, + "position": { + "height": 0.0056, + "rotate": { + "angle": 0 + }, + "width": 0.1016, + "x": 0.6427, + "y": 0.6714 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/EPC/ULC1_3_EPC1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_Line" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC1_3_EPC1_Line_1" + }, + "position": { + "height": 0.0056, + "rotate": { + "angle": 0 + }, + "width": 0.0083, + "x": 0.7594, + "y": 0.6714 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/EPC/ULC1_3_EPC1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_Line" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC1_3_EPC1_END" + }, + "position": { + "height": 0.0278, + "rotate": { + "angle": 90 + }, + "width": 0.0073, + "x": 0.6384, + "y": 0.66 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/EPC/ULC1_3_EPC1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_End" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC1_3_EPC1" + }, + "position": { + "height": 0.0296, + "rotate": { + "angle": -90 + }, + "width": 0.0083, + "x": 0.766, + "y": 0.6598 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/EPC/ULC1_3_EPC1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC1_12_EPC1_Line_1" + }, + "position": { + "height": 0.0056, + "rotate": { + "angle": 90 + }, + "width": 0.1807, + "x": 0.0528, + "y": 0.4721 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/EPC/ULC1_12_EPC1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_Line" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC1_12_EPC1" + }, + "position": { + "height": 0.0296, + "rotate": { + "angle": 0 + }, + "width": 0.0083, + "x": 0.1387, + "y": 0.2931 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/EPC/ULC1_12_EPC1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC1_12_EPC1_Line_2" + }, + "position": { + "height": 0.0056, + "rotate": { + "angle": 40 + }, + "width": 0.0352, + "x": 0.139, + "y": 0.6528 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/EPC/ULC1_12_EPC1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_Line" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC1_12_EPC1_Line_3" + }, + "position": { + "height": 0.0056, + "rotate": { + "angle": 0 + }, + "width": 0.0198, + "x": 0.1695, + "y": 0.6724 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/EPC/ULC1_12_EPC1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_Line" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC1_12_EPC1_END" + }, + "position": { + "height": 0.0278, + "rotate": { + "angle": 90 + }, + "width": 0.0073, + "x": 0.1875, + "y": 0.6611 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/EPC/ULC1_12_EPC1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_End" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC1_12_EPC2_Line_3" + }, + "position": { + "height": 0.0056, + "rotate": { + "angle": 0 + }, + "width": 0.0125, + "x": 0.1737, + "y": 0.6252 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/EPC/ULC1_12_EPC2", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_Line" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC1_12_EPC2_Line_2" + }, + "position": { + "height": 0.0053, + "rotate": { + "angle": 70 + }, + "width": 0.0178, + "x": 0.162, + "y": 0.6107 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/EPC/ULC1_12_EPC2", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_Line" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC1_12_EPC2_Line_1" + }, + "position": { + "height": 0.0056, + "rotate": { + "angle": 90 + }, + "width": 0.1599, + "x": 0.0879, + "y": 0.454 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/EPC/ULC1_12_EPC2", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_Line" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC1_12_EPC2" + }, + "position": { + "height": 0.0296, + "rotate": { + "angle": 0 + }, + "width": 0.0083, + "x": 0.1637, + "y": 0.2931 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/EPC/ULC1_12_EPC2", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": " LC1_12_EPC2_END" + }, + "position": { + "height": 0.0278, + "rotate": { + "angle": 90 + }, + "width": 0.0073, + "x": 0.187, + "y": 0.6148 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/EPC/ LC1_12_EPC2", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_End" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC2_12_EPC2_Line_3" + }, + "position": { + "height": 0.0056, + "rotate": { + "angle": 0 + }, + "width": 0.0125, + "x": 0.2617, + "y": 0.5734 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/EPC/ULC2_12_EPC2", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_Line" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC2_12_EPC2_Line_2" + }, + "position": { + "height": 0.0056, + "rotate": { + "angle": 70 + }, + "width": 0.0169, + "x": 0.2509, + "y": 0.5597 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/EPC/ULC2_12_EPC2", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_Line" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC2_12_EPC2_Line_1" + }, + "position": { + "height": 0.0056, + "rotate": { + "angle": 90 + }, + "width": 0.1339, + "x": 0.1897, + "y": 0.4275 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/EPC/ULC2_12_EPC2", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_Line" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC2_12_EPC2" + }, + "position": { + "height": 0.0296, + "rotate": { + "angle": 0 + }, + "width": 0.0083, + "x": 0.2522, + "y": 0.294 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/EPC/ULC2_12_EPC2", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC2_12_EPC2_END" + }, + "position": { + "height": 0.0278, + "rotate": { + "angle": 90 + }, + "width": 0.0073, + "x": 0.275, + "y": 0.5629 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/EPC/ULC2_12_EPC2", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_End" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC2_12_EPC1_Line_2" + }, + "position": { + "height": 0.0056, + "rotate": { + "angle": 40 + }, + "width": 0.0352, + "x": 0.2276, + "y": 0.6009 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/EPC/ULC2_12_EPC1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_Line" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC2_12_EPC1_Line_3" + }, + "position": { + "height": 0.0056, + "rotate": { + "angle": 0 + }, + "width": 0.0198, + "x": 0.2586, + "y": 0.6206 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/EPC/ULC2_12_EPC1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_Line" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC2_12_EPC1_END" + }, + "position": { + "height": 0.0278, + "rotate": { + "angle": 90 + }, + "width": 0.0073, + "x": 0.2751, + "y": 0.6092 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/EPC/ULC2_12_EPC1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_End" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC2_12_EPC1_Line_1" + }, + "position": { + "height": 0.0056, + "rotate": { + "angle": 90 + }, + "width": 0.1505, + "x": 0.1567, + "y": 0.4476 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/EPC/ULC2_12_EPC1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_Line" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC2_12_EPC1" + }, + "position": { + "height": 0.0296, + "rotate": { + "angle": 0 + }, + "width": 0.0083, + "x": 0.2272, + "y": 0.294 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/EPC/ULC2_12_EPC1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC3_6_EPC2_Line_3" + }, + "position": { + "height": 0.0056, + "rotate": { + "angle": 0 + }, + "width": 0.0125, + "x": 0.3586, + "y": 0.4706 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/EPC/ULC3_6_EPC2", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_Line" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC3_6_EPC2_Line_2" + }, + "position": { + "height": 0.0056, + "rotate": { + "angle": 70 + }, + "width": 0.0169, + "x": 0.3477, + "y": 0.4569 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/EPC/ULC3_6_EPC2", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_Line" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC3_6_EPC2_Line_1" + }, + "position": { + "height": 0.0056, + "rotate": { + "angle": 90 + }, + "width": 0.124, + "x": 0.2915, + "y": 0.3336 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/EPC/ULC3_6_EPC2", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_Line" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC3_6_EPC2" + }, + "position": { + "height": 0.0296, + "rotate": { + "angle": 0 + }, + "width": 0.0083, + "x": 0.3491, + "y": 0.2088 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/EPC/ULC3_6_EPC2", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC3_6_EPC1_Line_1" + }, + "position": { + "height": 0.0056, + "rotate": { + "angle": 90 + }, + "width": 0.1505, + "x": 0.253, + "y": 0.3624 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/EPC/ULC3_6_EPC1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_Line" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC3_6_EPC1_Line_2" + }, + "position": { + "height": 0.0056, + "rotate": { + "angle": 20 + }, + "width": 0.0302, + "x": 0.3273, + "y": 0.5046 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/EPC/ULC3_6_EPC1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_Line" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC3_6_EPC1_Line_3" + }, + "position": { + "height": 0.0056, + "rotate": { + "angle": 0 + }, + "width": 0.0198, + "x": 0.356, + "y": 0.5132 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/EPC/ULC3_6_EPC1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_Line" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC3_6_EPC1_END" + }, + "position": { + "height": 0.0278, + "rotate": { + "angle": 90 + }, + "width": 0.0073, + "x": 0.372, + "y": 0.5018 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/EPC/ULC3_6_EPC1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_End" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC3_6_EPC1" + }, + "position": { + "height": 0.0296, + "rotate": { + "angle": 0 + }, + "width": 0.0083, + "x": 0.3241, + "y": 0.2088 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/EPC/ULC3_6_EPC1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC3_6_EPC2_END" + }, + "position": { + "height": 0.0278, + "rotate": { + "angle": 90 + }, + "width": 0.0073, + "x": 0.3719, + "y": 0.4601 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/EPC/ULC3_6_EPC2", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_End" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC4_6_EPC2_Line_3" + }, + "position": { + "height": 0.0056, + "rotate": { + "angle": 0 + }, + "width": 0.0094, + "x": 0.434, + "y": 0.3997 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/EPC/ULC4_6_EPC2", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_Line" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC4_6_EPC2_Line_2" + }, + "position": { + "height": 0.0056, + "rotate": { + "angle": 70 + }, + "width": 0.0114, + "x": 0.4268, + "y": 0.3902 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/EPC/ULC4_6_EPC2", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_Line" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC4_6_EPC2_Line_1" + }, + "position": { + "height": 0.0056, + "rotate": { + "angle": 90 + }, + "width": 0.0938, + "x": 0.3838, + "y": 0.2975 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/EPC/ULC4_6_EPC2", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_Line" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC4_6_EPC2" + }, + "position": { + "height": 0.0296, + "rotate": { + "angle": 0 + }, + "width": 0.0083, + "x": 0.4267, + "y": 0.2005 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/EPC/ULC4_6_EPC2", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC4_6_EPC2_END" + }, + "position": { + "height": 0.0278, + "rotate": { + "angle": 90 + }, + "width": 0.0073, + "x": 0.4442, + "y": 0.3876 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/EPC/ULC4_6_EPC2", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_End" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC4_6_EPC1_Line_2" + }, + "position": { + "height": 0.0063, + "rotate": { + "angle": 20 + }, + "width": 0.0258, + "x": 0.4057, + "y": 0.4373 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/EPC/ULC4_6_EPC1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_Line" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC4_6_EPC1_Line_3" + }, + "position": { + "height": 0.0056, + "rotate": { + "angle": 0 + }, + "width": 0.0198, + "x": 0.43, + "y": 0.4456 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/EPC/ULC4_6_EPC1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_Line" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC4_6_EPC1_Line_1" + }, + "position": { + "height": 0.0056, + "rotate": { + "angle": 90 + }, + "width": 0.1167, + "x": 0.348, + "y": 0.3266 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/EPC/ULC4_6_EPC1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_Line" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC4_6_EPC1" + }, + "position": { + "height": 0.0296, + "rotate": { + "angle": 0 + }, + "width": 0.0083, + "x": 0.4017, + "y": 0.2005 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/EPC/ULC4_6_EPC1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC4_6_EPC1_END" + }, + "position": { + "height": 0.0278, + "rotate": { + "angle": 90 + }, + "width": 0.0073, + "x": 0.4439, + "y": 0.4342 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/EPC/ULC4_6_EPC1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_End" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC4_6_FIO1" + }, + "position": { + "height": 0.0185, + "width": 0.0104, + "x": 0.4127, + "y": 0.2627 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/IO_BLOCK/FIO/ULC4_6_FIO1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/DeviceStatus" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC4_4_FIO1" + }, + "position": { + "height": 0.0185, + "width": 0.0104, + "x": 0.7511, + "y": 0.4166 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/IO_BLOCK/FIO/ULC4_4_FIO1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/DeviceStatus" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC3_4_FIO1" + }, + "position": { + "height": 0.0185, + "width": 0.0104, + "x": 0.7516, + "y": 0.4861 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/IO_BLOCK/FIO/ULC3_4_FIO1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/DeviceStatus" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC2_4_FIO1" + }, + "position": { + "height": 0.0185, + "width": 0.0104, + "x": 0.7475, + "y": 0.5898 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/IO_BLOCK/FIO/ULC2_4_FIO1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/DeviceStatus" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC1_4_FIO1" + }, + "position": { + "height": 0.0185, + "width": 0.0104, + "x": 0.6709, + "y": 0.6444 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/IO_BLOCK/FIO/ULC1_4_FIO1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/DeviceStatus" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC3_6_DPM1" + }, + "position": { + "height": 0.0139, + "rotate": { + "angle": 90 + }, + "width": 0.0156, + "x": 0.3531, + "y": 0.4079 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/IO_BLOCK/DPM/ULC3_6_DPM1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/ControlCabinet" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC2_8_DPM1" + }, + "position": { + "height": 0.0139, + "rotate": { + "angle": 90 + }, + "width": 0.0156, + "x": 0.257, + "y": 0.5178 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/IO_BLOCK/DPM/ULC2_8_DPM1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/ControlCabinet" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC1_8_DPM1" + }, + "position": { + "height": 0.0139, + "rotate": { + "angle": 90 + }, + "width": 0.0156, + "x": 0.1668, + "y": 0.5714 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/IO_BLOCK/DPM/ULC1_8_DPM1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/ControlCabinet" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "MCM01" + }, + "position": { + "height": 0.0139, + "rotate": { + "angle": 0 + }, + "width": 0.0156, + "x": 0.5254, + "y": 0.2085 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/MCM01", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/MCM" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC1_12_S2" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.1643, + "y": 0.2836 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/S_PB/ULC1_12_S2", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC2_12_S2" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.2528, + "y": 0.2836 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/S_PB/ULC2_12_S2", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC2_12_S1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.2278, + "y": 0.2842 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/S_PB/ULC2_12_S1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC3_6_SS2" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.3471, + "y": 0.192 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/SS_PB/ULC3_6_SS2", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/SS_Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC3_6_SS1" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.3221, + "y": 0.1916 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/SS_PB/ULC3_6_SS1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/SS_Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC4_6_SS2" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.4247, + "y": 0.1836 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/SS_PB/ULC4_6_SS2", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/SS_Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC4_6_SS1" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.4002, + "y": 0.1842 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/SS_PB/ULC4_6_SS1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/SS_Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC4_4_JR1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.3976, + "y": 0.3712 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/JR/ULC4_4_JR1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC4_4_JR2" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.4325, + "y": 0.3707 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/JR/ULC4_4_JR2", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC3_6_JR1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.3551, + "y": 0.4314 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/JR/ULC3_6_JR1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC3_6_JR2" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.3197, + "y": 0.4319 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/JR/ULC3_6_JR2", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC2_7_JR2" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.2624, + "y": 0.5518 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/JR/ULC2_7_JR2", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC2_7_JR1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.2362, + "y": 0.6038 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/JR/ULC2_7_JR1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC1_7_JR2" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.1739, + "y": 0.6073 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/JR/ULC1_7_JR2", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC1_7_JR1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.1477, + "y": 0.6593 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/JR/ULC1_7_JR1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC4_3_SS2" + }, + "position": { + "height": 0.0185, + "width": 0.0104, + "x": 0.8189, + "y": 0.3869 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/SS_PB/ULC4_3_SS2", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/SS_Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC4_3_SS1" + }, + "position": { + "height": 0.0185, + "width": 0.0104, + "x": 0.8184, + "y": 0.4458 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/SS_PB/ULC4_3_SS1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/SS_Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC3_3_SS2" + }, + "position": { + "height": 0.0185, + "width": 0.0104, + "x": 0.8184, + "y": 0.4584 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/SS_PB/ULC3_3_SS2", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/SS_Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC3_3_SS1" + }, + "position": { + "height": 0.0185, + "width": 0.0104, + "x": 0.8184, + "y": 0.5162 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/SS_PB/ULC3_3_SS1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/SS_Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC2_3_SS2" + }, + "position": { + "height": 0.0185, + "width": 0.0104, + "x": 0.833, + "y": 0.5545 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/SS_PB/ULC2_3_SS2", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/SS_Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC2_3_SS1" + }, + "position": { + "height": 0.0185, + "width": 0.0104, + "x": 0.8408, + "y": 0.6245 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/SS_PB/ULC2_3_SS1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/SS_Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC1_3_SS1" + }, + "position": { + "height": 0.0185, + "width": 0.0104, + "x": 0.7768, + "y": 0.6643 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/SS_PB/ULC1_3_SS1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/SS_Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC1_3_SS2" + }, + "position": { + "height": 0.0185, + "width": 0.0104, + "x": 0.7736, + "y": 0.6221 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/Station/SS_PB/ULC1_3_SS2", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/SS_Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect18", + "inheritedGroupPrefix": "CON", + "name": "ULC4_7", + "originalName": "ULC4-6" + }, + "position": { + "height": 0.0213, + "rotate": { + "angle": "270deg" + }, + "width": 0.013, + "x": 0.4119, + "y": 0.1883 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM01/Conveyor/VFD/ULC4_7_VFD1" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect18", + "inheritedGroupPrefix": "CON", + "name": "ULC3_7", + "originalName": "ULC4-6" + }, + "position": { + "height": 0.0213, + "rotate": { + "angle": "270deg" + }, + "width": 0.0125, + "x": 0.3346, + "y": 0.1888 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM01/Conveyor/VFD/ULC3_7_VFD1" + ] + }, + "path": "Symbol-Views/Equipment-Views/StatusNonPowered" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "l", + "id": "rect10", + "inheritedGroupPrefix": "CON", + "name": "ULC2_9A", + "originalName": "ULC2-9" + }, + "position": { + "height": 0.0231, + "rotate": { + "angle": -90 + }, + "width": 0.013, + "x": 0.2371, + "y": 0.4016 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM01/Conveyor/VFD/ULC2_9A_VFD1" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "elementPrefix": "CON", + "forcedPrefix": "CON", + "groupSuffix": "u", + "id": "rect1-6-2-0-0-6-8-2", + "inheritedGroupPrefix": "CON", + "name": "ULC1_9A", + "originalName": "ULC1-9" + }, + "position": { + "height": 0.0231, + "rotate": { + "angle": "270deg" + }, + "width": 0.013, + "x": 0.1484, + "y": 0.4001 + }, + "props": { + "params": { + "tagProps": [ + "System/MCM01/Conveyor/VFD/ULC1_9A_VFD1" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "MCM05_Button" + }, + "position": { + "height": 0.0426, + "width": 0.1521, + "x": 0.1345, + "y": 0.0997 + }, + "props": { + "params": { + "pageid": "DetailedView/MCM05 Sorter Destination and Chutes", + "panel_id": "value", + "text": "MCM05 Sorter Destination and Chutes" + }, + "path": "Symbol-Views/Equipment-Views/Area_Nav_Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "MCM05_Button_0" + }, + "position": { + "height": 0.0426, + "width": 0.1521, + "x": 0.3028, + "y": 0.0998 + }, + "props": { + "params": { + "pageid": "DetailedView/MCM04 Sorter Destination, Chutes and Bypass", + "panel_id": "value", + "text": "MCM04 Sorter Destination, Chutes and Bypass" + }, + "path": "Symbol-Views/Equipment-Views/Area_Nav_Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PDP01_FIOM1" + }, + "position": { + "height": 0.0185, + "width": 0.0104, + "x": 0.563, + "y": 0.2077 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM01/IO_BLOCK/FIO/PDP01_FIOM1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/DeviceStatus" + }, + "type": "ia.display.view" + } + ], + "meta": { + "name": "root" + }, + "props": { + "mode": "percent", + "style": { + "backgroundColor": "#FFFFFF" + } + }, + "type": "ia.container.coord" + } +} \ No newline at end of file diff --git a/.resources/8d29c30cd93e3bdc587170902d3363621665dc7da82367443b610f5f929a4bc9 b/.resources/8d29c30cd93e3bdc587170902d3363621665dc7da82367443b610f5f929a4bc9 new file mode 100644 index 00000000..ba432899 --- /dev/null +++ b/.resources/8d29c30cd93e3bdc587170902d3363621665dc7da82367443b610f5f929a4bc9 @@ -0,0 +1,3730 @@ +{ + "custom": {}, + "params": { + "MCM": "value" + }, + "propConfig": { + "params.MCM": { + "paramDirection": "input", + "persistent": true + } + }, + "props": { + "defaultSize": { + "height": 512, + "width": 117 + } + }, + "root": { + "children": [ + { + "children": [ + { + "meta": { + "name": "Label" + }, + "position": { + "height": 0.6613, + "width": 0.9999, + "y": 0.3387 + }, + "propConfig": { + "props.text": { + "binding": { + "config": { + "path": "view.params.MCM" + }, + "type": "property" + } + } + }, + "props": { + "style": { + "borderColor": "#1A1A1A", + "borderStyle": "solid", + "overflow": "visible", + "whiteSpace": "normal", + "wordBreak": "break-all" + }, + "textStyle": { + "fontFamily": "inherit", + "fontSize": "1vmin", + "textAlign": "center" + } + }, + "type": "ia.display.label" + } + ], + "meta": { + "name": "CoordinateContainer" + }, + "position": { + "height": 0.1211, + "rotate": { + "anchor": "-132% -413%" + }, + "width": 0.7094, + "x": 0.1452, + "y": 0.065 + }, + "props": { + "mode": "percent", + "style": { + "overflow": "hidden", + "transform": "scale(1)" + } + }, + "type": "ia.container.coord" + }, + { + "meta": { + "name": "EN4TR" + }, + "position": { + "height": 0.9961, + "width": 0.9744, + "x": 0.0091, + "y": 0.002 + }, + "props": { + "elements": [ + { + "elements": [ + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 346.08,345.72 H 501 v 15.96 H 346.08 Z", + "id": "path259", + "name": "path259", + "transform": "translate(-346.08,-342.35999)", + "type": "path" + } + ], + "id": "clipPath259", + "name": "clipPath259", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "m 0,345.72 h 39.6 v 15.72 H 0 Z", + "id": "path405", + "name": "path405", + "transform": "translate(115.2,-342.24)", + "type": "path" + } + ], + "id": "clipPath405", + "name": "clipPath405", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "m 0,418.56 h 2.16 v 0.12 H 0 Z", + "id": "path412", + "name": "path412", + "transform": "translate(-8.4472556e-8,2.4410002e-5)", + "type": "path" + } + ], + "id": "clipPath412", + "name": "clipPath412", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "m 0,413.16 h 2.16 v 0.12 H 0 Z", + "id": "path415", + "name": "path415", + "transform": "translate(-8.4472756e-8,2.4085783e-5)", + "type": "path" + } + ], + "id": "clipPath415", + "name": "clipPath415", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "m 0,423.84 h 2.16 v 0.12 H 0 Z", + "id": "path417", + "name": "path417", + "transform": "translate(-8.4472756e-8,2.4085783e-5)", + "type": "path" + } + ], + "id": "clipPath417", + "name": "clipPath417", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "m 0,745.56 h 2.16 v 0.12 H 0 Z", + "id": "path419", + "name": "path419", + "transform": "translate(-8.4472756e-8,2.4085783e-5)", + "type": "path" + } + ], + "id": "clipPath419", + "name": "clipPath419", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "m 0,724.2 h 2.16 v 16.2 H 0 Z", + "id": "path422", + "name": "path422", + "transform": "translate(77.64,-740.40004)", + "type": "path" + } + ], + "id": "clipPath422", + "name": "clipPath422", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "m 0,494.4 h 2.16 v 0.12 H 0 Z", + "id": "path424", + "name": "path424", + "transform": "translate(-8.4472756e-8,2.4085783e-5)", + "type": "path" + } + ], + "id": "clipPath424", + "name": "clipPath424", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "m 0,549.84 h 2.16 v 0.12 H 0 Z", + "id": "path426", + "name": "path426", + "transform": "translate(-8.4472756e-8,2.4085783e-5)", + "type": "path" + } + ], + "id": "clipPath426", + "name": "clipPath426", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "m 0,531.12 h 2.16 v 0.12 H 0 Z", + "id": "path428", + "name": "path428", + "transform": "translate(-8.4472756e-8,2.4085783e-5)", + "type": "path" + } + ], + "id": "clipPath428", + "name": "clipPath428", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "m 0,512.52 h 2.16 v 0.12 H 0 Z", + "id": "path430", + "name": "path430", + "transform": "translate(-8.4472756e-8,2.4085783e-5)", + "type": "path" + } + ], + "id": "clipPath430", + "name": "clipPath430", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "m 0,476.28 h 2.16 v 0.12 H 0 Z", + "id": "path432", + "name": "path432", + "transform": "translate(-8.4472756e-8,2.4085783e-5)", + "type": "path" + } + ], + "id": "clipPath432", + "name": "clipPath432", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "m 0,568.56 h 2.16 v 0.12 H 0 Z", + "id": "path434", + "name": "path434", + "transform": "translate(-8.4472756e-8,2.4085783e-5)", + "type": "path" + } + ], + "id": "clipPath434", + "name": "clipPath434", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "m 0,457.56 h 2.16 v 0.12 H 0 Z", + "id": "path436", + "name": "path436", + "transform": "translate(-8.4472756e-8,2.4085783e-5)", + "type": "path" + } + ], + "id": "clipPath436", + "name": "clipPath436", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "m 0,438.84 h 2.16 v 0.12 H 0 Z", + "id": "path438", + "name": "path438", + "transform": "translate(-8.4472756e-8,2.4085783e-5)", + "type": "path" + } + ], + "id": "clipPath438", + "name": "clipPath438", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "m 0,716.88 h 2.16 v 7.44 H 0 Z", + "id": "path440", + "name": "path440", + "transform": "translate(-2.0400003,-724.32002)", + "type": "path" + } + ], + "id": "clipPath440", + "name": "clipPath440", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,710.4 H 2.16 V 717 H 0 Z", + "id": "path442", + "name": "path442", + "transform": "translate(-2.0400003,-717.00002)", + "type": "path" + } + ], + "id": "clipPath442", + "name": "clipPath442", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "m 0,703.08 h 2.16 v 7.44 H 0 Z", + "id": "path444", + "name": "path444", + "transform": "translate(-2.0400003,-710.52004)", + "type": "path" + } + ], + "id": "clipPath444", + "name": "clipPath444", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "m 0,695.16 h 2.16 v 8.04 H 0 Z", + "id": "path446", + "name": "path446", + "transform": "translate(-2.0400003,-703.20003)", + "type": "path" + } + ], + "id": "clipPath446", + "name": "clipPath446", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "m 0,687.84 h 2.16 v 7.44 H 0 Z", + "id": "path448", + "name": "path448", + "transform": "translate(-2.0400003,-695.28005)", + "type": "path" + } + ], + "id": "clipPath448", + "name": "clipPath448", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "m 0,680.76 h 2.16 v 7.2 H 0 Z", + "id": "path450", + "name": "path450", + "transform": "translate(-2.0400003,-687.96004)", + "type": "path" + } + ], + "id": "clipPath450", + "name": "clipPath450", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "m 0,673.44 h 2.16 v 7.44 H 0 Z", + "id": "path452", + "name": "path452", + "transform": "translate(-2.0400003,-680.88002)", + "type": "path" + } + ], + "id": "clipPath452", + "name": "clipPath452", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "m 0,652.2 h 2.16 v 21.36 H 0 Z", + "id": "path454", + "name": "path454", + "transform": "translate(-2.0400003,-673.56002)", + "type": "path" + } + ], + "id": "clipPath454", + "name": "clipPath454", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "m 0,652.08 h 2.16 v 0.24 H 0 Z", + "id": "path456", + "name": "path456", + "transform": "translate(-2.0400003,-652.32002)", + "type": "path" + } + ], + "id": "clipPath456", + "name": "clipPath456", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "m 0,651.84 h 2.16 v 0.36 H 0 Z", + "id": "path458", + "name": "path458", + "transform": "translate(-2.0400003,-652.20003)", + "type": "path" + } + ], + "id": "clipPath458", + "name": "clipPath458", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "m 0,651.24 h 2.16 v 0.72 H 0 Z", + "id": "path460", + "name": "path460", + "transform": "translate(-2.0400003,-651.96004)", + "type": "path" + } + ], + "id": "clipPath460", + "name": "clipPath460", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "m 0,650.52 h 2.16 v 0.84 H 0 Z", + "id": "path462", + "name": "path462", + "transform": "translate(-2.0400003,-651.36)", + "type": "path" + } + ], + "id": "clipPath462", + "name": "clipPath462", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "m 0,649.56 h 2.16 v 1.08 H 0 Z", + "id": "path464", + "name": "path464", + "transform": "translate(-2.0400003,-650.64003)", + "type": "path" + } + ], + "id": "clipPath464", + "name": "clipPath464", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "m 0,648.36 h 2.16 v 1.32 H 0 Z", + "id": "path466", + "name": "path466", + "transform": "translate(-2.0400003,-649.68001)", + "type": "path" + } + ], + "id": "clipPath466", + "name": "clipPath466", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "m 0,646.92 h 2.16 v 1.56 H 0 Z", + "id": "path468", + "name": "path468", + "transform": "translate(-2.0400003,-648.48)", + "type": "path" + } + ], + "id": "clipPath468", + "name": "clipPath468", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "m 0,645.36 h 2.16 v 1.68 H 0 Z", + "id": "path470", + "name": "path470", + "transform": "translate(-2.0400003,-647.03999)", + "type": "path" + } + ], + "id": "clipPath470", + "name": "clipPath470", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "m 0,643.56 h 2.16 v 1.92 H 0 Z", + "id": "path472", + "name": "path472", + "transform": "translate(-2.0400003,-645.48)", + "type": "path" + } + ], + "id": "clipPath472", + "name": "clipPath472", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "m 0,641.64 h 2.16 v 2.04 H 0 Z", + "id": "path474", + "name": "path474", + "transform": "translate(-2.0400003,-643.68001)", + "type": "path" + } + ], + "id": "clipPath474", + "name": "clipPath474", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "m 0,639.6 h 2.16 v 2.16 H 0 Z", + "id": "path476", + "name": "path476", + "transform": "translate(-2.0400003,-641.76003)", + "type": "path" + } + ], + "id": "clipPath476", + "name": "clipPath476", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "m 0,637.44 h 2.16 v 2.28 H 0 Z", + "id": "path478", + "name": "path478", + "transform": "translate(-2.0400003,-639.71998)", + "type": "path" + } + ], + "id": "clipPath478", + "name": "clipPath478", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "m 0,635.16 h 2.16 v 2.4 H 0 Z", + "id": "path480", + "name": "path480", + "transform": "translate(-2.0400003,-637.56001)", + "type": "path" + } + ], + "id": "clipPath480", + "name": "clipPath480", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "m 0,632.76 h 2.16 v 2.52 H 0 Z", + "id": "path482", + "name": "path482", + "transform": "translate(-2.0400003,-635.28004)", + "type": "path" + } + ], + "id": "clipPath482", + "name": "clipPath482", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "m 0,630.36 h 2.16 v 2.52 H 0 Z", + "id": "path484", + "name": "path484", + "transform": "translate(-2.0400003,-632.88002)", + "type": "path" + } + ], + "id": "clipPath484", + "name": "clipPath484", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "m 0,627.84 h 2.16 v 2.64 H 0 Z", + "id": "path486", + "name": "path486", + "transform": "translate(-2.0400003,-630.48)", + "type": "path" + } + ], + "id": "clipPath486", + "name": "clipPath486", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "m 0,625.32 h 2.16 v 2.64 H 0 Z", + "id": "path488", + "name": "path488", + "transform": "translate(-2.0400003,-627.96004)", + "type": "path" + } + ], + "id": "clipPath488", + "name": "clipPath488", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "m 0,622.8 h 2.16 v 2.64 H 0 Z", + "id": "path490", + "name": "path490", + "transform": "translate(-2.0400003,-625.44001)", + "type": "path" + } + ], + "id": "clipPath490", + "name": "clipPath490", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "m 0,620.28 h 2.16 v 2.64 H 0 Z", + "id": "path492", + "name": "path492", + "transform": "translate(-2.0400003,-622.92)", + "type": "path" + } + ], + "id": "clipPath492", + "name": "clipPath492", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "m 0,617.88 h 2.16 v 2.52 H 0 Z", + "id": "path494", + "name": "path494", + "transform": "translate(-2.0400003,-620.40004)", + "type": "path" + } + ], + "id": "clipPath494", + "name": "clipPath494", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,615.48 H 2.16 V 618 H 0 Z", + "id": "path496", + "name": "path496", + "transform": "translate(-2.0400003,-618.00001)", + "type": "path" + } + ], + "id": "clipPath496", + "name": "clipPath496", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "m 0,613.2 h 2.16 v 2.4 H 0 Z", + "id": "path498", + "name": "path498", + "transform": "translate(-2.0400003,-615.59999)", + "type": "path" + } + ], + "id": "clipPath498", + "name": "clipPath498", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "m 0,611.04 h 2.16 v 2.28 H 0 Z", + "id": "path500", + "name": "path500", + "transform": "translate(-2.0400003,-613.32002)", + "type": "path" + } + ], + "id": "clipPath500", + "name": "clipPath500", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "m 0,608.88 h 2.16 v 2.28 H 0 Z", + "id": "path502", + "name": "path502", + "transform": "translate(-2.0400003,-611.15999)", + "type": "path" + } + ], + "id": "clipPath502", + "name": "clipPath502", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,606.96 H 2.16 V 609 H 0 Z", + "id": "path504", + "name": "path504", + "transform": "translate(-2.0400003,-609.00001)", + "type": "path" + } + ], + "id": "clipPath504", + "name": "clipPath504", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "m 0,605.28 h 2.16 v 1.8 H 0 Z", + "id": "path506", + "name": "path506", + "transform": "translate(-2.0400003,-607.08003)", + "type": "path" + } + ], + "id": "clipPath506", + "name": "clipPath506", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "m 0,603.72 h 2.16 v 1.68 H 0 Z", + "id": "path508", + "name": "path508", + "transform": "translate(-2.0400003,-605.40004)", + "type": "path" + } + ], + "id": "clipPath508", + "name": "clipPath508", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "m 0,602.28 h 2.16 v 1.56 H 0 Z", + "id": "path510", + "name": "path510", + "transform": "translate(-2.0400003,-603.84004)", + "type": "path" + } + ], + "id": "clipPath510", + "name": "clipPath510", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "m 0,601.08 h 2.16 v 1.32 H 0 Z", + "id": "path512", + "name": "path512", + "transform": "translate(-2.0400003,-602.40004)", + "type": "path" + } + ], + "id": "clipPath512", + "name": "clipPath512", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "m 0,600.12 h 2.16 v 1.08 H 0 Z", + "id": "path514", + "name": "path514", + "transform": "translate(-2.0400003,-601.20003)", + "type": "path" + } + ], + "id": "clipPath514", + "name": "clipPath514", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "m 0,599.4 h 2.16 v 0.84 H 0 Z", + "id": "path516", + "name": "path516", + "transform": "translate(-2.0400003,-600.24001)", + "type": "path" + } + ], + "id": "clipPath516", + "name": "clipPath516", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "m 0,598.8 h 2.16 v 0.72 H 0 Z", + "id": "path518", + "name": "path518", + "transform": "translate(-2.0400003,-599.52004)", + "type": "path" + } + ], + "id": "clipPath518", + "name": "clipPath518", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "m 0,598.56 h 2.16 v 0.36 H 0 Z", + "id": "path520", + "name": "path520", + "transform": "translate(-2.0400003,-598.92)", + "type": "path" + } + ], + "id": "clipPath520", + "name": "clipPath520", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "m 0,598.44 h 2.16 v 0.24 H 0 Z", + "id": "path522", + "name": "path522", + "transform": "translate(-2.0400003,-598.68001)", + "type": "path" + } + ], + "id": "clipPath522", + "name": "clipPath522", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "m 0,587.28 h 2.16 v 11.28 H 0 Z", + "id": "path524", + "name": "path524", + "transform": "translate(-2.0400003,-598.56001)", + "type": "path" + } + ], + "id": "clipPath524", + "name": "clipPath524", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,587.28 H 2.16 V 724.32 H 0 Z", + "id": "path526", + "name": "path526", + "transform": "translate(77.64,-724.32002)", + "type": "path" + } + ], + "id": "clipPath526", + "name": "clipPath526", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "m 0,666.72 h 2.16 v 0.12 H 0 Z", + "id": "path528", + "name": "path528", + "transform": "translate(-8.4472756e-8,2.4085783e-5)", + "type": "path" + } + ], + "id": "clipPath528", + "name": "clipPath528", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "m 0,662.04 h 2.16 v 0.12 H 0 Z", + "id": "path530", + "name": "path530", + "transform": "translate(-8.4472756e-8,2.4085783e-5)", + "type": "path" + } + ], + "id": "clipPath530", + "name": "clipPath530", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "m 0,624.6 h 2.16 v 0.12 H 0 Z", + "id": "path532", + "name": "path532", + "transform": "translate(-8.4472756e-8,2.4085783e-5)", + "type": "path" + } + ], + "id": "clipPath532", + "name": "clipPath532", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "m 0,606 h 2.16 v 0.12 H 0 Z", + "id": "path534", + "name": "path534", + "transform": "translate(-8.4472756e-8,2.4085783e-5)", + "type": "path" + } + ], + "id": "clipPath534", + "name": "clipPath534", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "m 0,587.28 h 2.16 v 0.12 H 0 Z", + "id": "path536", + "name": "path536", + "transform": "translate(-8.4472756e-8,2.4085783e-5)", + "type": "path" + } + ], + "id": "clipPath536", + "name": "clipPath536", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "m 0,643.32 h 2.16 v 0.12 H 0 Z", + "id": "path538", + "name": "path538", + "transform": "translate(-8.4472756e-8,2.4085783e-5)", + "type": "path" + } + ], + "id": "clipPath538", + "name": "clipPath538", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,413.16 H 2.16 V 745.68 H 0 Z", + "id": "path540", + "name": "path540", + "transform": "translate(77.64,-745.68001)", + "type": "path" + } + ], + "id": "clipPath540", + "name": "clipPath540", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "m 0,384.84 h 3.48 v 5.28 H 0 Z", + "id": "path542", + "name": "path542", + "transform": "translate(1.2600001,-384.96)", + "type": "path" + } + ], + "id": "clipPath542", + "name": "clipPath542", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 605.64,740.4 H 612 v 0.12 h -6.36 z", + "id": "path547", + "name": "path547", + "transform": "translate(7.6294095e-8,2.3310002e-5)", + "type": "path" + } + ], + "id": "clipPath547", + "name": "clipPath547", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 605.64,413.4 H 612 v 327.12 h -6.36 z", + "id": "path549", + "name": "path549", + "transform": "translate(-605.64003,-413.52)", + "type": "path" + } + ], + "id": "clipPath549", + "name": "clipPath549", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 605.64,413.4 H 612 v 327.12 h -6.36 z", + "id": "path551", + "name": "path551", + "transform": "translate(-605.64003,-740.52004)", + "type": "path" + } + ], + "id": "clipPath551", + "name": "clipPath551", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 605.64,418.68 H 612 v 0.12 h -6.36 z", + "id": "path554", + "name": "path554", + "transform": "translate(7.6294245e-8,2.2958439e-5)", + "type": "path" + } + ], + "id": "clipPath554", + "name": "clipPath554", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 605.64,413.4 H 612 v 0.12 h -6.36 z", + "id": "path556", + "name": "path556", + "transform": "translate(7.6294245e-8,2.2958439e-5)", + "type": "path" + } + ], + "id": "clipPath556", + "name": "clipPath556", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 605.64,666.84 H 612 v 0.12 h -6.36 z", + "id": "path558", + "name": "path558", + "transform": "translate(7.6294245e-8,2.2958439e-5)", + "type": "path" + } + ], + "id": "clipPath558", + "name": "clipPath558", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 605.64,662.16 H 612 v 0.12 h -6.36 z", + "id": "path560", + "name": "path560", + "transform": "translate(7.6294245e-8,2.2958439e-5)", + "type": "path" + } + ], + "id": "clipPath560", + "name": "clipPath560", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 605.64,624.84 H 612 v 0.12 h -6.36 z", + "id": "path562", + "name": "path562", + "transform": "translate(7.6294245e-8,2.2958439e-5)", + "type": "path" + } + ], + "id": "clipPath562", + "name": "clipPath562", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 605.64,606.12 H 612 v 0.12 h -6.36 z", + "id": "path564", + "name": "path564", + "transform": "translate(7.6294245e-8,2.2958439e-5)", + "type": "path" + } + ], + "id": "clipPath564", + "name": "clipPath564", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 605.64,587.4 H 612 v 0.12 h -6.36 z", + "id": "path566", + "name": "path566", + "transform": "translate(7.6294245e-8,2.2958439e-5)", + "type": "path" + } + ], + "id": "clipPath566", + "name": "clipPath566", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 605.64,568.68 H 612 v 0.12 h -6.36 z", + "id": "path568", + "name": "path568", + "transform": "translate(7.6294245e-8,2.2958439e-5)", + "type": "path" + } + ], + "id": "clipPath568", + "name": "clipPath568", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 605.64,496.92 H 612 v 0.12 h -6.36 z", + "id": "path570", + "name": "path570", + "transform": "translate(7.6294245e-8,2.2958439e-5)", + "type": "path" + } + ], + "id": "clipPath570", + "name": "clipPath570", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 605.64,492.12 H 612 v 0.12 h -6.36 z", + "id": "path572", + "name": "path572", + "transform": "translate(7.6294245e-8,2.2958439e-5)", + "type": "path" + } + ], + "id": "clipPath572", + "name": "clipPath572", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 605.64,550.08 H 612 v 0.12 h -6.36 z", + "id": "path574", + "name": "path574", + "transform": "translate(7.6294245e-8,2.2958439e-5)", + "type": "path" + } + ], + "id": "clipPath574", + "name": "clipPath574", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 605.64,531.36 H 612 v 0.12 h -6.36 z", + "id": "path576", + "name": "path576", + "transform": "translate(7.6294245e-8,2.2958439e-5)", + "type": "path" + } + ], + "id": "clipPath576", + "name": "clipPath576", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 605.64,512.64 H 612 v 0.12 h -6.36 z", + "id": "path578", + "name": "path578", + "transform": "translate(7.6294245e-8,2.2958439e-5)", + "type": "path" + } + ], + "id": "clipPath578", + "name": "clipPath578", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 605.64,476.4 H 612 v 0.12 h -6.36 z", + "id": "path580", + "name": "path580", + "transform": "translate(7.6294245e-8,2.2958439e-5)", + "type": "path" + } + ], + "id": "clipPath580", + "name": "clipPath580", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 605.64,457.68 H 612 v 0.12 h -6.36 z", + "id": "path582", + "name": "path582", + "transform": "translate(7.6294245e-8,2.2958439e-5)", + "type": "path" + } + ], + "id": "clipPath582", + "name": "clipPath582", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 605.64,438.96 H 612 v 0.12 h -6.36 z", + "id": "path584", + "name": "path584", + "transform": "translate(7.6294245e-8,2.2958439e-5)", + "type": "path" + } + ], + "id": "clipPath584", + "name": "clipPath584", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 605.64,413.4 H 612 v 332.52 h -6.36 z", + "id": "path586", + "name": "path586", + "transform": "translate(-605.64003,-413.52)", + "type": "path" + } + ], + "id": "clipPath586", + "name": "clipPath586", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 605.64,413.4 H 612 v 0.12 h -6.36 z", + "id": "path588", + "name": "path588", + "transform": "translate(7.6294245e-8,2.2958439e-5)", + "type": "path" + } + ], + "id": "clipPath588", + "name": "clipPath588", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 605.64,643.56 H 612 v 0.12 h -6.36 z", + "id": "path590", + "name": "path590", + "transform": "translate(7.6294245e-8,2.2958439e-5)", + "type": "path" + } + ], + "id": "clipPath590", + "name": "clipPath590", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 605.64,745.8 H 612 v 0.12 h -6.36 z", + "id": "path593", + "name": "path593", + "transform": "translate(7.6294245e-8,2.2958439e-5)", + "type": "path" + } + ], + "id": "clipPath593", + "name": "clipPath593", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 605.64,740.4 H 612 v 0.12 h -6.36 z", + "id": "path595", + "name": "path595", + "transform": "translate(7.6294245e-8,2.2958439e-5)", + "type": "path" + } + ], + "id": "clipPath595", + "name": "clipPath595", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 611.76,462.84 H 612 v 7.44 h -0.24 z", + "id": "path597", + "name": "path597", + "transform": "translate(-611.80501,-462.96)", + "type": "path" + } + ], + "id": "clipPath597", + "name": "clipPath597", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path626", + "name": "path626", + "type": "path" + } + ], + "id": "clipPath626", + "name": "clipPath626", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path627", + "name": "path627", + "type": "path" + } + ], + "id": "clipPath627", + "name": "clipPath627", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path628", + "name": "path628", + "type": "path" + } + ], + "id": "clipPath628", + "name": "clipPath628", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path629", + "name": "path629", + "type": "path" + } + ], + "id": "clipPath629", + "name": "clipPath629", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path630", + "name": "path630", + "transform": "matrix(0.70710656,0.70710656,0.70710656,-0.70710656,-30.645977,-1.4256)", + "type": "path" + } + ], + "id": "clipPath630", + "name": "clipPath630", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path631", + "name": "path631", + "transform": "matrix(0.50788967,0.86142142,0.86142142,-0.50788967,-48.926058,11.967347)", + "type": "path" + } + ], + "id": "clipPath631", + "name": "clipPath631", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path632", + "name": "path632", + "transform": "matrix(0.6257688,0.78000777,0.78000777,-0.6257688,-50.136829,19.328428)", + "type": "path" + } + ], + "id": "clipPath632", + "name": "clipPath632", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path633", + "name": "path633", + "transform": "matrix(0.72684676,0.68679877,0.68679877,-0.72684676,-50.702213,26.504614)", + "type": "path" + } + ], + "id": "clipPath633", + "name": "clipPath633", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path634", + "name": "path634", + "transform": "matrix(0.79021964,0.61282271,0.61282271,-0.79021964,-50.998607,31.577733)", + "type": "path" + } + ], + "id": "clipPath634", + "name": "clipPath634", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path635", + "name": "path635", + "transform": "matrix(0.84916123,0.52813251,0.52813251,-0.84916123,-49.220915,36.882918)", + "type": "path" + } + ], + "id": "clipPath635", + "name": "clipPath635", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path636", + "name": "path636", + "transform": "matrix(0.91591364,0.40137385,0.40137385,-0.91591364,-46.868407,44.030448)", + "type": "path" + } + ], + "id": "clipPath636", + "name": "clipPath636", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path637", + "name": "path637", + "transform": "matrix(0.96231247,0.27194385,0.27194385,-0.96231247,-44.076273,50.524865)", + "type": "path" + } + ], + "id": "clipPath637", + "name": "clipPath637", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path638", + "name": "path638", + "transform": "matrix(0.98801937,0.1543259,0.1543259,-0.98801937,-40.817569,55.818711)", + "type": "path" + } + ], + "id": "clipPath638", + "name": "clipPath638", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path639", + "name": "path639", + "transform": "matrix(0.99940505,0.03447097,0.03447097,-0.99940505,-36.675024,60.666214)", + "type": "path" + } + ], + "id": "clipPath639", + "name": "clipPath639", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path640", + "name": "path640", + "transform": "matrix(0.99580095,-0.0915379,-0.0915379,-0.99580095,-31.887656,65.18736)", + "type": "path" + } + ], + "id": "clipPath640", + "name": "clipPath640", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path641", + "name": "path641", + "transform": "matrix(0.97758315,-0.21054681,-0.21054681,-0.97758315,-26.955154,68.91018)", + "type": "path" + } + ], + "id": "clipPath641", + "name": "clipPath641", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path642", + "name": "path642", + "transform": "matrix(0.92269674,-0.38552489,-0.38552489,-0.92269674,-18.190167,73.345889)", + "type": "path" + } + ], + "id": "clipPath642", + "name": "clipPath642", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path643", + "name": "path643", + "transform": "matrix(0.87527752,-0.48361974,-0.48361974,-0.87527752,-13.503508,75.217645)", + "type": "path" + } + ], + "id": "clipPath643", + "name": "clipPath643", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path644", + "name": "path644", + "transform": "matrix(0.82078335,-0.57123857,-0.57123857,-0.82078335,-7.7049581,76.44114)", + "type": "path" + } + ], + "id": "clipPath644", + "name": "clipPath644", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path645", + "name": "path645", + "transform": "matrix(0.74239381,-0.66996283,-0.66996283,-0.74239381,-1.1630839,77.192221)", + "type": "path" + } + ], + "id": "clipPath645", + "name": "clipPath645", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path646", + "name": "path646", + "transform": "matrix(0.65220655,-0.75804048,-0.75804048,-0.65220655,5.4213079,77.114299)", + "type": "path" + } + ], + "id": "clipPath646", + "name": "clipPath646", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path647", + "name": "path647", + "transform": "matrix(0.5563815,-0.83092624,-0.83092624,-0.5563815,11.516682,76.267016)", + "type": "path" + } + ], + "id": "clipPath647", + "name": "clipPath647", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path648", + "name": "path648", + "transform": "matrix(0.47789272,-0.87841749,-0.87841749,-0.47789272,15.617975,75.122091)", + "type": "path" + } + ], + "id": "clipPath648", + "name": "clipPath648", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path649", + "name": "path649", + "transform": "matrix(0.33105882,-0.94360947,-0.94360947,-0.33105882,24.550735,18.625413)", + "type": "path" + } + ], + "id": "clipPath649", + "name": "clipPath649", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path650", + "name": "path650", + "transform": "matrix(0.47771192,-0.87851585,-0.87851585,-0.47771192,16.729654,21.637896)", + "type": "path" + } + ], + "id": "clipPath650", + "name": "clipPath650", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path651", + "name": "path651", + "transform": "matrix(0.61206656,-0.79080545,-0.79080545,-0.61206656,8.527453,23.360748)", + "type": "path" + } + ], + "id": "clipPath651", + "name": "clipPath651", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path652", + "name": "path652", + "transform": "matrix(0.69446787,-0.71952286,-0.71952286,-0.69446787,1.6134814,23.771429)", + "type": "path" + } + ], + "id": "clipPath652", + "name": "clipPath652", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path653", + "name": "path653", + "transform": "matrix(0.73843868,-0.67431971,-0.67431971,-0.73843868,-1.5441369,23.725911)", + "type": "path" + } + ], + "id": "clipPath653", + "name": "clipPath653", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path654", + "name": "path654", + "transform": "matrix(0.78659996,-0.61746199,-0.61746199,-0.78659996,-5.2845102,23.404699)", + "type": "path" + } + ], + "id": "clipPath654", + "name": "clipPath654", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path655", + "name": "path655", + "transform": "matrix(0.84299855,-0.53791473,-0.53791473,-0.84299855,-9.8924836,22.549679)", + "type": "path" + } + ], + "id": "clipPath655", + "name": "clipPath655", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path656", + "name": "path656", + "transform": "matrix(0.89906217,-0.43781961,-0.43781961,-0.89906217,-15.660372,20.92333)", + "type": "path" + } + ], + "id": "clipPath656", + "name": "clipPath656", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path657", + "name": "path657", + "transform": "matrix(0.94329252,-0.33196084,-0.33196084,-0.94329252,-21.204044,18.647024)", + "type": "path" + } + ], + "id": "clipPath657", + "name": "clipPath657", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path658", + "name": "path658", + "transform": "matrix(0.97510659,-0.22173391,-0.22173391,-0.97510659,-26.450485,15.750764)", + "type": "path" + } + ], + "id": "clipPath658", + "name": "clipPath658", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path659", + "name": "path659", + "transform": "matrix(0.99206666,-0.12570796,-0.12570796,-0.99206666,-31.037054,12.830386)", + "type": "path" + } + ], + "id": "clipPath659", + "name": "clipPath659", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path660", + "name": "path660", + "transform": "matrix(0.99867303,-0.05148795,-0.05148795,-0.99867303,-34.161059,10.333008)", + "type": "path" + } + ], + "id": "clipPath660", + "name": "clipPath660", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path661", + "name": "path661", + "transform": "matrix(0.99918909,0.04024796,0.04024796,-0.99918909,-37.016563,6.9637112)", + "type": "path" + } + ], + "id": "clipPath661", + "name": "clipPath661", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path662", + "name": "path662", + "transform": "matrix(0.98711069,0.16003494,0.16003494,-0.98711069,-40.858766,2.0931301)", + "type": "path" + } + ], + "id": "clipPath662", + "name": "clipPath662", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path663", + "name": "path663", + "transform": "matrix(0.96685734,0.25531483,0.25531483,-0.96685734,-44.318001,-2.1742084)", + "type": "path" + } + ], + "id": "clipPath663", + "name": "clipPath663", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path664", + "name": "path664", + "transform": "matrix(0.94703419,0.32113071,0.32113071,-0.94703419,-46.01679,-5.3373702)", + "type": "path" + } + ], + "id": "clipPath664", + "name": "clipPath664", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path665", + "name": "path665", + "transform": "matrix(0.90406406,0.42739557,0.42739557,-0.90406406,-47.253263,-10.849517)", + "type": "path" + } + ], + "id": "clipPath665", + "name": "clipPath665", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path666", + "name": "path666", + "transform": "matrix(0.83683656,0.54745172,0.54745172,-0.83683656,-49.754,-17.76703)", + "type": "path" + } + ], + "id": "clipPath666", + "name": "clipPath666", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path667", + "name": "path667", + "transform": "matrix(0.77953837,0.62635347,0.62635347,-0.77953837,-50.965278,-22.797713)", + "type": "path" + } + ], + "id": "clipPath667", + "name": "clipPath667", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path668", + "name": "path668", + "transform": "matrix(0.71482772,0.69929972,0.69929972,-0.71482772,-50.856134,-27.882207)", + "type": "path" + } + ], + "id": "clipPath668", + "name": "clipPath668", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path669", + "name": "path669", + "transform": "matrix(0.65204961,0.75817551,0.75817551,-0.65204961,-51.400025,-32.375619)", + "type": "path" + } + ], + "id": "clipPath669", + "name": "clipPath669", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path670", + "name": "path670", + "transform": "matrix(0.58444253,0.81143434,0.81143434,-0.58444253,-50.182021,-36.839922)", + "type": "path" + } + ], + "id": "clipPath670", + "name": "clipPath670", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path671", + "name": "path671", + "transform": "matrix(0.48269178,0.8757896,0.8757896,-0.48269178,-48.664657,-42.975217)", + "type": "path" + } + ], + "id": "clipPath671", + "name": "clipPath671", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path672", + "name": "path672", + "transform": "matrix(0.34184876,0.93975434,0.93975434,-0.34184876,-45.137033,-50.539998)", + "type": "path" + } + ], + "id": "clipPath672", + "name": "clipPath672", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path719", + "name": "path719", + "transform": "translate(3.3999994e-6)", + "type": "path" + } + ], + "id": "clipPath719", + "name": "clipPath719", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path720", + "name": "path720", + "transform": "translate(3.3999994e-6)", + "type": "path" + } + ], + "id": "clipPath720", + "name": "clipPath720", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path721", + "name": "path721", + "transform": "translate(3.3999994e-6)", + "type": "path" + } + ], + "id": "clipPath721", + "name": "clipPath721", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path722", + "name": "path722", + "transform": "translate(3.3999994e-6)", + "type": "path" + } + ], + "id": "clipPath722", + "name": "clipPath722", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path723", + "name": "path723", + "transform": "matrix(0.70710656,0.70710656,0.70710656,-0.70710656,-30.645979,-1.4256017)", + "type": "path" + } + ], + "id": "clipPath723", + "name": "clipPath723", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path724", + "name": "path724", + "transform": "matrix(0.50788967,0.86142142,0.86142142,-0.50788967,-48.926057,11.967348)", + "type": "path" + } + ], + "id": "clipPath724", + "name": "clipPath724", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path725", + "name": "path725", + "transform": "matrix(0.6257688,0.78000777,0.78000777,-0.6257688,-50.136829,19.328429)", + "type": "path" + } + ], + "id": "clipPath725", + "name": "clipPath725", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path726", + "name": "path726", + "transform": "matrix(0.72684676,0.68679877,0.68679877,-0.72684676,-50.702215,26.504611)", + "type": "path" + } + ], + "id": "clipPath726", + "name": "clipPath726", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path727", + "name": "path727", + "transform": "matrix(0.79021964,0.61282271,0.61282271,-0.79021964,-50.998608,31.577732)", + "type": "path" + } + ], + "id": "clipPath727", + "name": "clipPath727", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path728", + "name": "path728", + "transform": "matrix(0.84916123,0.52813251,0.52813251,-0.84916123,-49.220916,36.882917)", + "type": "path" + } + ], + "id": "clipPath728", + "name": "clipPath728", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path729", + "name": "path729", + "transform": "matrix(0.91591364,0.40137385,0.40137385,-0.91591364,-46.868409,44.030447)", + "type": "path" + } + ], + "id": "clipPath729", + "name": "clipPath729", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path730", + "name": "path730", + "transform": "matrix(0.96231247,0.27194385,0.27194385,-0.96231247,-44.076273,50.524865)", + "type": "path" + } + ], + "id": "clipPath730", + "name": "clipPath730", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path731", + "name": "path731", + "transform": "matrix(0.98801937,0.1543259,0.1543259,-0.98801937,-40.81757,55.818711)", + "type": "path" + } + ], + "id": "clipPath731", + "name": "clipPath731", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path732", + "name": "path732", + "transform": "matrix(0.99940505,0.03447097,0.03447097,-0.99940505,-36.675027,60.666214)", + "type": "path" + } + ], + "id": "clipPath732", + "name": "clipPath732", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path733", + "name": "path733", + "transform": "matrix(0.99580095,-0.0915379,-0.0915379,-0.99580095,-31.88766,65.187361)", + "type": "path" + } + ], + "id": "clipPath733", + "name": "clipPath733", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path734", + "name": "path734", + "transform": "matrix(0.97758315,-0.21054681,-0.21054681,-0.97758315,-26.955152,68.91018)", + "type": "path" + } + ], + "id": "clipPath734", + "name": "clipPath734", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path735", + "name": "path735", + "transform": "matrix(0.92269674,-0.38552489,-0.38552489,-0.92269674,-18.190167,73.345889)", + "type": "path" + } + ], + "id": "clipPath735", + "name": "clipPath735", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path736", + "name": "path736", + "transform": "matrix(0.87527752,-0.48361974,-0.48361974,-0.87527752,-13.503509,75.217646)", + "type": "path" + } + ], + "id": "clipPath736", + "name": "clipPath736", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path737", + "name": "path737", + "transform": "matrix(0.82078335,-0.57123857,-0.57123857,-0.82078335,-7.7049571,76.441139)", + "type": "path" + } + ], + "id": "clipPath737", + "name": "clipPath737", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path738", + "name": "path738", + "transform": "matrix(0.74239381,-0.66996283,-0.66996283,-0.74239381,-1.1630847,77.192222)", + "type": "path" + } + ], + "id": "clipPath738", + "name": "clipPath738", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path739", + "name": "path739", + "transform": "matrix(0.65220655,-0.75804048,-0.75804048,-0.65220655,5.4213092,77.114297)", + "type": "path" + } + ], + "id": "clipPath739", + "name": "clipPath739", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path740", + "name": "path740", + "transform": "matrix(0.5563815,-0.83092624,-0.83092624,-0.5563815,11.516683,76.267015)", + "type": "path" + } + ], + "id": "clipPath740", + "name": "clipPath740", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path741", + "name": "path741", + "transform": "matrix(0.47789272,-0.87841749,-0.87841749,-0.47789272,15.617973,75.122093)", + "type": "path" + } + ], + "id": "clipPath741", + "name": "clipPath741", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path742", + "name": "path742", + "transform": "matrix(0.33105882,-0.94360947,-0.94360947,-0.33105882,24.550736,18.62541)", + "type": "path" + } + ], + "id": "clipPath742", + "name": "clipPath742", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path743", + "name": "path743", + "transform": "matrix(0.47771192,-0.87851585,-0.87851585,-0.47771192,16.729654,21.637897)", + "type": "path" + } + ], + "id": "clipPath743", + "name": "clipPath743", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path744", + "name": "path744", + "transform": "matrix(0.61206656,-0.79080545,-0.79080545,-0.61206656,8.5274533,23.360747)", + "type": "path" + } + ], + "id": "clipPath744", + "name": "clipPath744", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path745", + "name": "path745", + "transform": "matrix(0.69446787,-0.71952286,-0.71952286,-0.69446787,1.6134838,23.771426)", + "type": "path" + } + ], + "id": "clipPath745", + "name": "clipPath745", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path746", + "name": "path746", + "transform": "matrix(0.73843868,-0.67431971,-0.67431971,-0.73843868,-1.5441393,23.725913)", + "type": "path" + } + ], + "id": "clipPath746", + "name": "clipPath746", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path747", + "name": "path747", + "transform": "matrix(0.78659996,-0.61746199,-0.61746199,-0.78659996,-5.2845098,23.404698)", + "type": "path" + } + ], + "id": "clipPath747", + "name": "clipPath747", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path748", + "name": "path748", + "transform": "matrix(0.84299855,-0.53791473,-0.53791473,-0.84299855,-9.8924825,22.549678)", + "type": "path" + } + ], + "id": "clipPath748", + "name": "clipPath748", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path749", + "name": "path749", + "transform": "matrix(0.89906217,-0.43781961,-0.43781961,-0.89906217,-15.660373,20.923331)", + "type": "path" + } + ], + "id": "clipPath749", + "name": "clipPath749", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path750", + "name": "path750", + "transform": "matrix(0.94329252,-0.33196084,-0.33196084,-0.94329252,-21.204043,18.647023)", + "type": "path" + } + ], + "id": "clipPath750", + "name": "clipPath750", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path751", + "name": "path751", + "transform": "matrix(0.97510659,-0.22173391,-0.22173391,-0.97510659,-26.450485,15.750764)", + "type": "path" + } + ], + "id": "clipPath751", + "name": "clipPath751", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path752", + "name": "path752", + "transform": "matrix(0.99206666,-0.12570796,-0.12570796,-0.99206666,-31.037052,12.830386)", + "type": "path" + } + ], + "id": "clipPath752", + "name": "clipPath752", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path753", + "name": "path753", + "transform": "matrix(0.99867303,-0.05148795,-0.05148795,-0.99867303,-34.161056,10.333008)", + "type": "path" + } + ], + "id": "clipPath753", + "name": "clipPath753", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path754", + "name": "path754", + "transform": "matrix(0.99918909,0.04024796,0.04024796,-0.99918909,-37.016563,6.9637112)", + "type": "path" + } + ], + "id": "clipPath754", + "name": "clipPath754", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path755", + "name": "path755", + "transform": "matrix(0.98711069,0.16003494,0.16003494,-0.98711069,-40.858767,2.0931298)", + "type": "path" + } + ], + "id": "clipPath755", + "name": "clipPath755", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path756", + "name": "path756", + "transform": "matrix(0.96685734,0.25531483,0.25531483,-0.96685734,-44.318005,-2.1742092)", + "type": "path" + } + ], + "id": "clipPath756", + "name": "clipPath756", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path757", + "name": "path757", + "transform": "matrix(0.94703419,0.32113071,0.32113071,-0.94703419,-46.016788,-5.3373695)", + "type": "path" + } + ], + "id": "clipPath757", + "name": "clipPath757", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path758", + "name": "path758", + "transform": "matrix(0.90406406,0.42739557,0.42739557,-0.90406406,-47.25326,-10.849516)", + "type": "path" + } + ], + "id": "clipPath758", + "name": "clipPath758", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path759", + "name": "path759", + "transform": "matrix(0.83683656,0.54745172,0.54745172,-0.83683656,-49.754003,-17.767031)", + "type": "path" + } + ], + "id": "clipPath759", + "name": "clipPath759", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path760", + "name": "path760", + "transform": "matrix(0.77953837,0.62635347,0.62635347,-0.77953837,-50.965278,-22.797713)", + "type": "path" + } + ], + "id": "clipPath760", + "name": "clipPath760", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path761", + "name": "path761", + "transform": "matrix(0.71482772,0.69929972,0.69929972,-0.71482772,-50.856133,-27.882206)", + "type": "path" + } + ], + "id": "clipPath761", + "name": "clipPath761", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path762", + "name": "path762", + "transform": "matrix(0.65204961,0.75817551,0.75817551,-0.65204961,-51.400026,-32.37562)", + "type": "path" + } + ], + "id": "clipPath762", + "name": "clipPath762", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path763", + "name": "path763", + "transform": "matrix(0.58444253,0.81143434,0.81143434,-0.58444253,-50.182021,-36.839922)", + "type": "path" + } + ], + "id": "clipPath763", + "name": "clipPath763", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path764", + "name": "path764", + "transform": "matrix(0.48269178,0.8757896,0.8757896,-0.48269178,-48.664657,-42.975215)", + "type": "path" + } + ], + "id": "clipPath764", + "name": "clipPath764", + "type": "clipPath" + }, + { + "clipPathUnits": "userSpaceOnUse", + "elements": [ + { + "d": "M 0,0 H 73.872002 V 73.872002 H 0 Z", + "id": "path765", + "name": "path765", + "transform": "matrix(0.34184876,0.93975434,0.93975434,-0.34184876,-45.137033,-50.539997)", + "type": "path" + } + ], + "id": "clipPath765", + "name": "clipPath765", + "type": "clipPath" + } + ], + "id": "defs1", + "name": "defs1", + "type": "defs" + }, + { + "d": "m 28.121646,248.96777 24.04976,-0.77896 m 3.21313,-0.0973 1.07105,-0.0973 m 2.82367,6.13416 h -32.61812 m 1.46051,-2.92103 h 29.69709 m -29.69709,-0.19481 h 29.69709 m -7.10784,0 h 0.38949 m 6.71835,-0.19482 h -1.36315 m -1.07105,-2.62892 h -23.17345 m 23.17345,-0.38946 h 0.2921 m -0.2921,-0.0973 h -22.68661 m 0,-0.0973 h 21.42084 m 1.55787,-0.19481 h -0.2921 m -8.76307,-1.16841 h -2.82365 m 12.65777,-0.77895 h -0.19481 m 0.19481,-0.48684 h -0.38946 m -6.71836,-0.19482 h -2.7263 m -2.82365,0 h -5.35522 m 18.01299,-0.38948 h -0.48685 m -6.62097,-0.0973 h -2.7263 m -2.82365,0 h -5.35522 m 16.94194,-1.55788 h -1.26577 m -4.771,-0.29209 h -10.90517 m 12.36568,-0.68159 h -1.46051 m -10.90517,-0.58421 h -3.01839 m 15.38407,-0.0973 h -1.46051 m -10.90517,-0.38946 h -3.01839 m 15.38407,-0.38948 h -1.46051 m 1.46051,-0.68157 h -1.46051 m -13.92356,-0.29211 h -1.55787 m 22.1024,-0.29209 h 0.48685 m -5.64731,-0.0973 h -1.46051 m -13.92356,-0.0973 h -1.55787 m 22.1024,-0.29212 h 0.48685 m -5.64731,-0.38946 h -1.46051 m 6.62097,-0.19481 h 0.48685 m -8.76307,0 h -3.01839 m 11.29461,-0.1948 h 0.48685 m -5.64731,-0.29211 h -1.46051 m 6.62097,-0.0973 h 0.48685 m -8.27623,-0.0973 h -3.50523 m 11.29461,-0.48684 h 0.48685 m -5.64731,-0.0973 h -1.46051 m -1.65525,-0.19481 h -3.01839 m 11.29461,-0.38946 h -0.5842 m -4.57626,-0.0973 h -1.46051 m -1.16841,-0.19481 h -3.50523 m 11.00251,-0.0973 h -0.2921 m -4.57626,-0.38948 h -1.46051 m -1.65525,-0.29211 h -3.01839 m 6.13415,-0.48681 h -1.46051 m -1.16841,-0.19481 h -3.50523 m 6.13415,-0.48685 h -1.46051 m -1.65525,-0.19481 h -3.01839 m -10.80779,-0.2921 h 1.55787 m 15.38407,-0.2921 h -1.46051 m -1.16841,-0.19481 h -3.50523 m 6.13415,-0.48686 h -1.46051 m -1.65525,-0.19481 h -3.01839 m 6.13415,-0.58419 h -1.46051 m 6.03677,0 h 1.07105 m -21.03138,0 h 3.01839 m 9.73676,-0.19481 h -3.50523 m 10.71041,-0.48684 h 1.07105 m -5.64731,0 h -1.46051 m -1.65525,-0.19481 h -3.01839 m 10.71041,-0.29211 h 1.07105 m -1.07105,-0.1948 h 1.07105 m -28.33394,5.16047 3.31049,0.0973 m 24.5366,0.87631 h 0.48685 m -1.07105,-6.32888 h -1.26577 m -5.93941,0 h -3.50523 m 10.71041,-0.2921 h 1.07105 m -1.07105,-0.19481 h -1.26577 m 0.2921,-0.19481 h -0.2921 m -6.42625,-0.0973 h -3.01839 m 9.44464,-0.58421 h 2.33682 m -8.27623,-0.0973 h -3.50523 m 9.44464,-0.5842 h 0.19481 m 0.68156,0 h 1.46052 m -18.01299,-0.0973 h 5.35522 m 2.82364,0 h 2.72631 m -2.72631,-0.0973 h -1.94733 m 9.44464,-0.2921 h 0.19481 m 0.97367,0 h 1.16841 m -2.33682,-0.19482 h 0.19481 m 0.97367,0 h 1.1684 m -29.79444,-0.0973 h 32.61811 m -4.47892,1.16842 -0.48682,-0.0973 m 1.26577,3.99207 0.38946,0.2921 m -8.76307,4.67364 2.1421,3.21313 m -1.85,-3.21313 1.85,2.62892 m -2.1421,-4.08944 2.1421,3.21313 m -1.85,-3.21313 1.85,2.62893 m -2.1421,-4.08944 2.1421,3.21313 m -1.85,-3.21313 1.85,2.72628 m -2.1421,-4.18679 2.1421,3.21312 m -1.85,-3.21312 1.85,2.72629 m -2.1421,-4.18679 2.1421,3.21311 m -1.85,-3.21311 1.85,2.72627 m -2.1421,-4.08942 2.1421,3.21312 m -1.85,-3.21312 1.85,2.62891 m -2.1421,-4.08943 2.1421,3.21312 m -1.85,-3.21312 1.85,2.62893 m -1.65526,-3.31048 1.65526,2.43417 m -1.2658,-2.43417 1.2658,1.84996 m 0,-1.26577 -0.29211,-0.58419 m 10.22359,26.19184 -1.46051,-2.92103 m -1.94736,-3.89471 -1.55787,-3.31048 m 2.14207,3.11576 -1.65525,-3.31051 m 1.65525,1.85 -1.46051,-2.92103 m 0.87631,-7.10768 -0.48684,-0.8763 m 1.07104,0.77894 -1.07104,-2.04472 m 1.07104,0.58421 -1.07104,-2.04472 m -28.72361,22.10224 v -7.88676 m 0,0 v -11.00253 m 0,0 v -7.98398 m 1.46051,23.95239 v -23.95239 m 3.31049,20.34977 v -20.34977 m 0.5842,0 v 19.96031 m 0.68159,0.48684 v -0.0973 m 1.16841,-8.27623 v -5.93941 m 1.55787,7.78939 v -2.33682 m 0,-5.45257 v -1.7526 m 3.01839,13.1446 v -4.08944 m 0,-9.05516 v -3.69997 m 5.35529,18.30508 v -1.94735 m 0,-16.35773 v -0.68156 m 0.87631,10.71039 v -0.68157 m 0,-0.77894 v -0.68156 m 0,-0.77895 v -0.68157 m 0,-0.68156 v -0.77895 m 0,-0.68157 v -0.77893 m 0,-0.68157 v -0.68159 m 0,-0.77892 v -0.68159 m 0,-0.77892 v -0.5842 m 1.94727,0 v 0.68156 m 0,18.30508 v -1.94735 m 2.7263,-16.35773 v 16.84457 m 1.36313,6.23151 v -2.82367 m 0.0973,-6.42625 v -0.68156 m 0,-0.77895 v -0.68157 m 0,-0.68156 v -0.77894 m 0,-0.68157 v -0.77895 m 0,-0.68156 v -0.68159 m 0,-0.77892 v -0.68159 m 0,-0.77893 v -0.68159 m 0,-0.77891 v -0.68158 m 0.2921,20.05769 v -2.82367 m 3.01846,-20.93397 v 2.82363 m 0,17.52614 v -4.86836 m 0.19481,1.26577 v -1.26577 m 0,-14.41038 v -1.07103 m 0.0973,2.33681 v -0.68158 m 0.38939,13.82618 v 1.07103 m 0.58421,4.38153 v -0.77892 m 0,-4.67364 v -13.1446 m 0.2921,17.81824 v -0.48684 m 0,-11.19725 v -0.48685 m 0.0973,12.17094 v -0.38949 m 0,-11.2946 v -0.38949 m 0.19481,9.05518 v -8.27623 m 0,-3.01839 v -0.48684 m 0.48685,1.46049 v 1.46051 m 0,10.12622 v 1.46051 m 0,3.8947 v -23.75765 m 1.36315,0 v 23.95239 m 1.46051,-23.95239 v 7.98412 m 0,0 v 11.00253 m 0,0 v 7.88677 m -31.1576,-2.92103 -1.46051,2.92103 m 28.13919,-26.87342 -0.48682,1.07103 m 1.07103,-1.07103 -0.58421,1.16841 m -0.38946,0.48683 0.2921,-0.19482 m 1.07105,7.01045 0.0973,-0.0973 m 0.29211,0.38948 0.0973,-0.0973 m -0.48683,11.48938 0.0973,-0.0973 m 0.29211,0.38949 0.0973,-0.0973 m -1.46052,-3.79733 -0.48682,0.19481 m -3.21299,7.00991 0.0973,-0.0973 m -0.58421,0.0973 0.0973,-0.0973 m 5.74469,-5.06312 V 245.657 m 0,-11.48938 v -0.0973 m -25.02345,13.53408 0.0973,0.19481 0.19481,0.1948 0.19482,0.0973 0.2921,0.0973 m 17.6235,-17.23403 0.19482,0.19481 0.19481,0.19482 0.5842,0.19481 m -0.97369,0.87629 0.19481,0.19481 0.19481,0.19482 0.58421,0.19481 m -0.97369,0.8763 0.19481,0.19482 0.19481,0.19481 0.58421,0.19481 m -0.97369,0.87631 0.19481,0.1948 0.19481,0.19482 0.58421,0.19481 m -0.97369,0.77895 0.19481,0.2921 0.19481,0.0973 0.5842,0.29209 m -0.97369,0.77895 0.19481,0.2921 0.19482,0.0973 0.5842,0.29211 m -0.97369,0.77894 0.19481,0.19482 0.19481,0.19481 0.58421,0.1948 m -0.97369,0.87632 0.19481,0.19481 0.19481,0.19482 0.58421,0.1948 m 5.45256,-5.74469 0.0973,-0.0973 0.0973,-0.1948 m -0.48684,0.48683 0.19481,-0.0973 m 0.0973,11.58672 0.0973,-0.19482 0.0973,-0.0973 m -0.77895,0.48685 h 0.29211 l 0.19481,-0.0973 m -0.48685,-11.9762 h 0.0973 m -0.0973,11.6841 h 0.0973 m 0.68173,-0.0973 v -0.19481 m 0,-11.48937 v -0.0973 m -24.43924,11.68409 0.0973,0.19482 0.0973,0.19481 0.2921,0.0973 h 0.19481 m -0.68159,-0.5842 0.0973,0.19481 0.0973,0.19481 0.29211,0.0973 h 0.19481 m 17.91561,-16.64983 0.19481,0.0973 m -0.19481,1.36311 0.19481,0.0973 m -0.19481,1.36313 h 0.19481 m -0.19481,1.46051 h 0.19481 m -0.19481,1.36316 0.19481,0.0973 m -0.19481,1.36316 0.19481,0.0973 m -0.19481,1.36316 0.19481,0.0973 m -0.19481,1.36316 0.19481,0.0973", + "fill": { + "paint": "transparent" + }, + "id": "in", + "name": "in", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.0973682" + }, + "type": "path" + }, + { + "d": "m 28.186526,215.05161 24.04976,-0.87629 m 3.21313,-0.0973 h 1.07105 m 2.82366,6.0368 h -32.61811 m 1.46051,-2.92104 h 29.69709 m -29.69709,-0.0973 h 29.69709 m -7.10784,0 h 0.38948 m 6.71836,-0.2921 h -1.36315 m -1.07105,-2.62892 h -23.17345 m 23.17345,-0.2921 h 0.2921 m -0.2921,-0.0973 h -22.68661 m 0,-0.0973 h 21.42084 m 1.55787,-0.2921 h -0.2921 m -8.76308,-1.07105 h -2.82364 m 12.65777,-0.87631 h -0.19482 m 0.19482,-0.38947 h -0.38947 m -6.71835,-0.1948 h -2.72631 m -2.82364,0 h -5.35522 m 18.01299,-0.38947 h -0.48685 m -6.62097,-0.0973 h -2.72631 m -2.82364,0 h -5.35522 m 16.94194,-1.65523 h -1.26577 m -4.771,-0.29211 h -10.90517 m 12.36568,-0.5842 h -1.46051 m -10.90517,-0.68159 h -3.01839 m 15.38407,0 h -1.46051 m -10.90517,-0.48682 h -3.01839 m 15.38407,-0.29211 h -1.46051 m 1.46051,-0.68159 h -1.46051 m -13.92356,-0.2921 h -1.55787 m 22.1024,-0.38946 h 0.48685 m -5.64731,-0.0973 h -1.46051 m -13.92356,0 h -1.55787 m 22.1024,-0.2921 h 0.48685 m -5.64731,-0.38949 h -1.46051 m 6.62097,-0.1948 h 0.48685 m -8.76308,0 h -3.01838 m 11.29461,-0.19482 h 0.48685 m -5.64731,-0.29211 h -1.46051 m 6.62097,-0.0973 h 0.48685 m -8.27623,-0.19482 h -3.50523 m 11.29461,-0.38946 h 0.48685 m -5.64731,-0.0973 h -1.46051 m -1.65526,-0.19481 h -3.01838 m 11.29461,-0.38949 h -0.5842 m -4.57626,-0.0973 h -1.46051 m -1.16841,-0.19482 h -3.50523 m 11.00251,-0.0973 h -0.2921 m -4.57626,-0.48684 h -1.46051 m -1.65526,-0.19481 h -3.01838 m 6.13415,-0.48685 h -1.46051 m -1.16841,-0.19482 h -3.50523 m 6.13415,-0.58419 h -1.46051 m -1.65526,-0.19482 h -3.01838 m -10.80779,-0.19481 h 1.55787 m 15.38407,-0.2921 h -1.46051 m -1.16841,-0.19481 h -3.50523 m 6.13415,-0.48683 h -1.46051 m -1.65526,-0.29209 h -3.01838 m 6.13415,-0.48686 h -1.46051 m 6.03677,0 h 1.07105 m -21.03138,-0.0973 h 3.01839 m 9.73676,-0.0973 h -3.50523 m 10.71041,-0.48682 h 1.07105 m -5.64731,0 h -1.46051 m -1.65526,-0.19481 h -3.01838 m 10.71041,-0.38946 h 1.07105 m -1.07105,-0.0973 h 1.07105 m -28.33394,5.06313 3.31049,0.1948 m 24.5366,0.77895 0.48685,0.0973 m -1.07105,-6.42625 h -1.26577 m -5.93941,0 h -3.50523 m 10.71041,-0.29211 h 1.07105 m -1.07105,-0.1948 h -1.26577 m 0.2921,-0.0973 h -0.2921 m -6.42626,-0.0973 h -3.01838 m 9.44464,-0.5842 h 2.33682 m -8.27623,-0.19482 h -3.50523 m 9.44464,-0.48682 h 0.19481 m 0.68156,0 h 1.46052 m -18.013,-0.0973 h 5.35523 m 2.82364,0 h 2.72631 m -2.72631,-0.0973 h -1.94733 m 9.44464,-0.2921 h 0.19481 m 0.97367,0 h 1.1684 m -2.33682,-0.19481 h 0.19482 m 0.97366,0 h 1.16841 m -29.79444,-0.0973 h 32.61811 m -4.47892,1.16841 -0.48682,-0.0973 m 1.26577,3.99206 0.38946,0.2921 m -8.76307,4.57629 2.1421,3.21312 m -1.85,-3.21312 1.85,2.72627 m -2.1421,-4.08944 2.1421,3.21313 m -1.85,-3.21313 1.85,2.62893 m -2.1421,-4.08943 2.1421,3.21313 m -1.85,-3.21313 1.85,2.62892 m -2.1421,-4.08944 2.1421,3.21312 m -1.85,-3.21312 1.85,2.62893 m -2.1421,-4.08944 2.1421,3.21313 m -1.85,-3.21313 1.85,2.72631 m -2.1421,-4.18682 2.1421,3.21313 m 0.48682,0.5842 v 0.0973 m -2.33682,-3.89471 1.85,2.7263 m -2.1421,-4.18682 2.1421,3.21313 m -1.85,-3.21313 1.85,2.72631 m -1.65526,-3.31051 1.65526,2.4342 m -1.2658,-2.4342 1.2658,1.85 m 0,-1.36316 -0.29211,-0.48684 m 10.22359,26.0945 -1.46051,-2.92103 m -1.94736,-3.89471 -1.55787,-3.31048 m 2.14207,3.21312 -1.65525,-3.31049 m 1.65525,1.84998 -1.46051,-3.01839 m 0.87631,-7.01046 -0.48685,-0.97369 m 1.07105,0.77895 -1.07105,-1.94735 m 1.07105,0.58421 -1.07105,-2.04472 M 26.726226,220.115 v -7.88677 m 0,0 v -10.90517 m 0,0 v -7.98413 m 1.46051,23.85504 v -23.85504 m 3.31048,20.34982 v -20.34982 m 0.58421,0 v 19.96033 m 0.68159,0.48685 v -0.0973 m 1.16841,-8.27625 v -5.93941 m 1.55787,7.69203 v -2.23944 m 0,-5.45259 v -1.84997 m 3.01838,13.24197 v -4.18679 m 0,-9.05518 v -3.60261 m 5.35523,18.30509 v -1.94735 m 0,-16.35774 v -0.68156 m 0.87631,10.71042 v -0.77895 m 0,-0.68155 v -0.68159 m 0,-0.77893 v -0.68159 m 0,-0.77892 v -0.68159 m 0,-0.77893 v -0.68159 m 0,-0.68156 v -0.77894 m 0,-0.68156 v -0.77895 m 0,-0.68157 v -0.5842 m 1.94733,0 v 0.68156 m 0,18.30509 v -1.94735 m 2.72631,-16.35774 v 16.84458 M 49.899676,199.96 v -0.0973 m 0.8763,17.23404 v -2.82364 m 0.0973,-6.42625 v -0.68159 m 0,-0.77893 v -0.68158 m 0,-0.77893 v -0.68158 m 0,-0.68157 v -0.77895 m 0,-0.68156 v -0.77895 m 0,-0.68156 v -0.77895 m 0,-0.68157 v -0.68156 m 0,-0.77895 v -0.68157 m 0.2921,20.05769 v -2.82364 m 3.01838,-20.93401 v 2.72628 m 0,17.62352 v -4.96574 m 0.19481,1.26578 v -1.26578 m 0,-14.31301 v -1.07105 m 0.0973,2.23945 v -0.5842 m 0.38947,13.72881 v 1.16842 m 0.5842,4.28414 v -0.77892 m 0,-4.67364 v -13.14461 m 0.2921,17.81825 v -0.38948 m 0,-11.19725 v -0.48685 m 0.0973,12.07358 v -0.38948 m 0,-11.19725 v -0.38947 m 0.19482,9.05518 v -8.27625 m 0,-3.01839 v -0.48684 m 0.48684,1.46051 v 1.36315 m 0,10.22358 v 1.46053 m 0,3.89468 v -23.75765 m 1.36315,0 v 23.85504 m 1.46052,-23.85504 v 7.98412 m 0,-0.0973 v 11.00253 m 0,0 v 7.88677 m -31.1576,-2.92102 -1.46052,2.92102 m 28.1392,-26.77607 -0.48683,1.07105 m 1.07103,-1.07105 -0.5842,1.16842 m -0.38947,0.48684 0.29211,-0.19481 m 1.07105,7.01046 0.0973,-0.0973 m 0.2921,0.38946 0.0973,-0.0973 m -0.48682,11.392 0.0973,-0.0973 m 0.2921,0.38948 0.0973,-0.0973 m -1.46051,-3.69996 -0.48682,0.0973 m -3.21313,7.10781 0.0973,-0.0973 m -0.5842,0.0973 0.0973,-0.0973 m 5.74469,-5.06311 v -0.19481 m 0,-11.48935 v -0.0973 m -25.02345,13.53408 0.0973,0.19482 0.19481,0.19481 0.19481,0.0973 h 0.2921 m 17.62351,-17.13667 0.19481,0.19481 0.19481,0.19482 0.58421,0.19481 m -0.97369,0.87631 0.19481,0.19481 0.19481,0.19481 0.58421,0.19481 m -0.97369,0.87631 0.19481,0.19481 0.19481,0.19482 0.5842,0.1948 m -0.97369,0.77893 0.19482,0.2921 0.19481,0.0973 0.5842,0.29209 m -0.97369,0.77892 0.19481,0.19482 0.19482,0.19481 0.5842,0.19482 m -0.97369,0.8763 0.19481,0.19481 0.19481,0.19482 0.58421,0.1948 m -0.97369,0.87632 0.19481,0.19481 0.19481,0.1948 0.58421,0.19482 m -0.97369,0.8763 0.19481,0.19482 0.19481,0.19481 0.5842,0.19481 m 5.45257,-5.74467 0.0973,-0.0973 0.0973,-0.19482 m -0.48685,0.48682 0.19482,-0.0973 m 0.0973,11.48935 0.0973,-0.0973 0.0973,-0.1948 m -0.77895,0.5842 0.2921,-0.0973 0.19482,-0.0973 m -0.48685,-11.87885 h 0.0973 m -0.0973,11.58675 h 0.0973 m 0.68156,-0.0973 v -0.0973 m 0,-11.48936 v -0.19481 m -24.43924,11.78145 0.0973,0.19482 0.0973,0.19481 0.2921,0.0973 h 0.19482 m -0.68159,-0.58419 0.0973,0.1948 0.0973,0.19481 h 0.2921 l 0.19481,0.0973 m 17.91561,-16.64984 0.19481,0.0973 m -0.19481,1.36316 h 0.19481 m -0.19481,1.36313 0.19481,0.0973 m -0.19481,1.36313 0.19481,0.0973 m -0.19481,1.36313 0.19481,0.0973 m -0.19481,1.36313 0.19481,0.0973 m -0.19481,1.36313 0.19481,0.0973 m -0.19481,1.36314 h 0.19481", + "fill": { + "paint": "transparent" + }, + "id": "out", + "name": "out", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.0973682" + }, + "type": "path" + }, + { + "elements": [ + { + "elements": [ + { + "elements": [ + { + "d": "m 99.924144,401.12291 v 15.16506 m 0,-416.21289547 V 6.8317778 m 0,-6.75670327 V 416.28797 m -99.84906947,0 V 0.07507453 H 99.924144 m 0,416.21289547 H 0.07507453 m 0,-6.75672 v 6.75672 M 99.924144,409.53125 H 0.07507453 m 99.84906947,6.75672 v -6.75672 M 0.07507453,416.28797 H 99.924144 m 0,-317.414885 H 0.07507453 M 99.924144,104.7289 H 0.07507453 M 99.924144,151.57536 H 0.07507453 M 99.924144,174.99861 H 0.07507453 M 99.924144,198.42184 H 0.07507453 M 52.627222,221.69493 H 0.07507453 M 89.864176,402.92469 h 10.059968 m -10.059968,0 v 6.60656 M 99.924144,311.78431 H 89.864176 m -50.299913,0 H 0.07507453 M 99.924144,317.64012 H 89.864176 m -50.299913,0 H 0.07507453 M 99.924144,245.11817 H 0.07507453 M 99.924144,268.5414 H 0.07507453 M 99.924144,291.96465 H 0.07507453 M 99.924144,337.3096 H 0.07507453 M 39.388479,360.73283 H 0.07507453 M 99.924144,384.15606 H 0.07507453 M 99.924144,128.15213 H 0.07507453 m 0,-128.07705547 V 6.8317778 M 99.924144,0.07507453 H 0.07507453 M 99.924144,6.8317778 V 0.07507453 M 0.07507453,6.8317778 H 99.924144 M 0.07507453,26.951739 H 99.924144 M 76.500908,80.705063 H 65.540045 m 10.960863,-5.85581 v 5.85581 m -10.960863,-5.85581 h 10.960863 m -10.960863,5.85581 v -5.85581 m -7.207151,5.85581 H 47.371997 m 10.960897,-5.85581 v 5.85581 m -10.960897,-5.85581 h 10.960897 m -10.960897,5.85581 v -5.85581 m -25.5253,5.85581 H 11.035972 m 10.810725,-5.85581 v 5.85581 m -10.810725,-5.85581 h 10.810725 m -10.810725,5.85581 v -5.85581", + "fill": { + "paint": "transparent" + }, + "id": "path291", + "name": "path291", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.15015" + }, + "type": "path" + }, + { + "d": "m 67.585783,86.138554 c 0,-0.600593 0.158897,-1.06981 0.47797,-1.417655 0.329146,-0.337835 0.741996,-0.506752 1.258769,-0.506752 0.337657,0 0.638109,0.07633 0.909619,0.235224 0.26282,0.160176 0.469244,0.384133 0.60938,0.675672 0.141519,0.281511 0.216357,0.610607 0.216357,0.975969 0,0.365362 -0.07519,0.694437 -0.225224,0.984727 -0.150031,0.291548 -0.356597,0.508003 -0.629385,0.658152 -0.271687,0.150136 -0.571819,0.223982 -0.880854,0.223982 -0.347944,0 -0.648147,-0.08385 -0.920933,-0.242745 -0.271332,-0.168935 -0.467968,-0.395392 -0.609344,-0.67567 -0.141519,-0.29155 -0.206426,-0.591838 -0.206426,-0.910904 z m 0.487973,0.0088 c 0,0.43168 0.122724,0.779525 0.356598,1.032276 0.235153,0.253987 0.534294,0.376622 0.892168,0.376622 0.356598,0 0.656872,-0.122611 0.890857,-0.376622 0.23409,-0.252748 0.347943,-0.618113 0.347943,-1.088582 0,-0.290272 -0.04752,-0.553046 -0.15145,-0.77827 -0.102503,-0.215221 -0.244021,-0.384131 -0.440445,-0.506752 -0.187626,-0.122611 -0.40416,-0.187698 -0.646869,-0.187698 -0.339078,0 -0.629385,0.122611 -0.873372,0.356604 -0.244021,0.233985 -0.375395,0.619365 -0.375395,1.172412 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path292", + "name": "path292", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "m 71.658603,87.912245 v -3.641111 h 0.47797 v 1.801787 l 1.801788,-1.801787 h 0.658149 l -1.530278,1.47396 1.595362,2.167151 h -0.638145 l -1.285015,-1.848085 -0.601861,0.580577 v 1.267508 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path293", + "name": "path293", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "m 9.7502833,87.912245 v -3.641111 h 0.4779707 v 3.209433 h 1.793026 v 0.431678 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path294", + "name": "path294", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "m 12.67755,84.271141 h 0.479247 v 3.641111 H 12.67755 Z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path295", + "name": "path295", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "m 14.001367,87.912245 v -3.641111 h 0.487973 l 1.914399,2.852828 v -2.852828 h 0.459207 v 3.641111 h -0.496733 l -1.904398,-2.86159 v 2.86159 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path296", + "name": "path296", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "m 17.651867,87.912245 v -3.641111 h 0.477969 v 1.801787 l 1.801789,-1.801787 h 0.658149 l -1.530279,1.47396 1.595363,2.167151 h -0.638145 l -1.295054,-1.848085 -0.591823,0.580577 v 1.267508 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path297", + "name": "path297", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "m 22.550494,87.912245 h -0.440445 v -2.85283 c -0.112436,0.103845 -0.253952,0.206462 -0.422923,0.309071 -0.177697,0.103845 -0.327727,0.178937 -0.46921,0.235225 v -0.431677 c 0.244021,-0.121369 0.46921,-0.262748 0.656908,-0.431681 0.177695,-0.158897 0.319214,-0.327832 0.394159,-0.479226 h 0.281618 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path298", + "name": "path298", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "m 48.132118,87.912245 v -3.641111 h 0.487972 l 1.914399,2.852828 v -2.852828 h 0.459207 v 3.641111 h -0.496733 l -1.904396,-2.86159 v 2.86159 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path299", + "name": "path299", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "m 51.81078,87.912245 v -3.641111 h 2.627594 v 0.431677 h -2.149625 v 1.116108 h 2.008248 v 0.42292 h -2.008248 v 1.238728 h 2.234713 v 0.431678 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path300", + "name": "path300", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "m 56.108751,87.912245 v -3.209434 h -1.191166 v -0.431677 h 2.87034 v 0.431677 h -1.201204 v 3.209434 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path301", + "name": "path301", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "M 14.395525,20.495352 V 13.22314 h 5.386601 v 1.228716 H 15.86948 v 1.614104 h 3.641136 v 1.229968 H 15.86948 v 1.969454 h 4.054022 v 1.22997 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path302", + "name": "path302", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "M 22.803843,20.495352 V 14.451856 H 20.645458 V 13.22314 h 5.780724 v 1.228716 h -2.158386 v 6.043496 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path303", + "name": "path303", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "M 27.374036,20.495352 V 13.22314 h 1.473953 v 2.861587 h 2.871617 V 13.22314 h 1.462675 v 7.272212 h -1.462675 v -3.181906 h -2.871617 v 3.181906 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path304", + "name": "path304", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "M 34.70316,20.495352 V 13.22314 h 5.386601 v 1.228716 h -3.922648 v 1.614104 h 3.651139 v 1.229968 h -3.651139 v 1.969454 h 4.064025 v 1.22997 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path305", + "name": "path305", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "M 41.478663,20.495352 V 13.22314 h 3.086802 c 0.779522,0 1.342581,0.06505 1.690453,0.196459 0.355321,0.131374 0.636867,0.356601 0.853331,0.694436 0.206425,0.337835 0.308928,0.713211 0.308928,1.144888 0,0.544289 -0.158898,0.994735 -0.478006,1.35134 -0.319214,0.356605 -0.798283,0.581828 -1.436394,0.67567 0.320279,0.178937 0.581823,0.385384 0.789525,0.609356 0.205361,0.216462 0.47797,0.610603 0.834567,1.173662 l 0.882132,1.426416 H 46.255776 L 45.194849,18.90002 c -0.37536,-0.563059 -0.629384,-0.910904 -0.769519,-1.059799 -0.140106,-0.151414 -0.291548,-0.245228 -0.440445,-0.30031 -0.160316,-0.05757 -0.404126,-0.08509 -0.74196,-0.08509 h -0.300416 v 3.040516 z m 1.463952,-4.19416 h 1.088591 c 0.703195,0 1.14488,-0.02873 1.323817,-0.09508 0.16883,-0.05633 0.30893,-0.158897 0.402885,-0.30907 0.103916,-0.140134 0.150031,-0.329075 0.150031,-0.544293 0,-0.243985 -0.06633,-0.441685 -0.197559,-0.590585 -0.13123,-0.150138 -0.308928,-0.245228 -0.553021,-0.291549 -0.112792,-0.01 -0.469245,-0.01879 -1.069829,-0.01879 h -1.144915 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path306", + "name": "path306", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "M 48.817187,20.495352 V 13.22314 h 1.426427 l 2.974191,4.859818 V 13.22314 h 1.361342 v 7.272212 h -1.463952 l -2.937907,-4.777236 v 4.777236 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path307", + "name": "path307", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "M 56.136949,20.495352 V 13.22314 h 5.386599 v 1.228716 h -3.922647 v 1.614104 h 3.651139 v 1.229968 h -3.651139 v 1.969454 h 4.064023 v 1.22997 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path308", + "name": "path308", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "M 64.535903,20.495352 V 14.451856 H 62.38752 V 13.22314 h 5.77072 v 1.228716 h -2.148382 v 6.043496 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path309", + "name": "path309", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "m 71.179995,20.607923 1.793026,-7.50745 h 1.051032 l -1.821792,7.50745 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path310", + "name": "path310", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "m 77.53314,13.223158 h 1.463952 v 7.272213 H 77.53314 Z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path311", + "name": "path311", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "M 80.395357,20.495352 V 13.22314 h 2.356085 c 0.890892,0 1.472714,0.03752 1.744224,0.112612 0.414162,0.102609 0.769519,0.337835 1.042305,0.703197 0.281617,0.366614 0.422924,0.844587 0.422924,1.416404 0,0.450447 -0.07626,0.825822 -0.244022,1.126117 -0.160317,0.310312 -0.3666,0.544289 -0.610586,0.723219 -0.253953,0.1689 -0.50677,0.281512 -0.759518,0.337835 -0.357838,0.07509 -0.864609,0.103845 -1.530277,0.103845 H 81.85931 v 2.748978 z m 1.463953,-6.043496 v 2.07456 h 0.807044 c 0.581821,0 0.96722,-0.04756 1.163642,-0.12261 0.187628,-0.07509 0.347944,-0.197701 0.459208,-0.356606 0.103917,-0.158897 0.160317,-0.346596 0.160317,-0.563058 0,-0.271511 -0.07519,-0.487983 -0.23409,-0.656901 -0.15145,-0.178937 -0.347944,-0.281512 -0.581821,-0.329075 -0.17876,-0.02767 -0.535536,-0.04628 -1.061069,-0.04628 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path312", + "name": "path312", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "m 38.513552,242.56555 h 4.504468 m -4.504468,0 h 4.504468 m -6.756703,-1.65161 h 1.351342 m -1.351342,0 h 1.351342 m 50.450049,-0.15003 H 52.627542 m 34.3841,-1.05104 H 53.678573 m -16.065914,-0.90088 h -1.351342 m 1.351342,-0.15004 h -1.351342 m 32.582313,-0.45046 h 2.102096 m 13.813681,0 h -0.900894 m -27.627395,0 h 26.576364 m 1.051031,-0.60059 H 82.807482 M 43.01802,237.16044 h -4.504468 m 4.504468,0 h -4.504468 m 16.666535,0 H 81.606278 M 19.44461,234.30762 h 6.156119 m 6.156118,0 h 13.963855 m -17.567429,1.05103 3.753712,3.75374 m -3.753712,-3.75374 3.753712,3.75374 m 1.501477,-1.50149 -2.102061,-2.10209 m 2.102061,2.10209 -2.102061,-2.10209 m -0.450767,-32.73265 v -0.15014 m 5.405364,36.03576 v 0.15002 m 1.351341,-0.15002 v 0.15002 m 0.450447,-1.20117 v 0.75073 m 0,3.00299 v 0.75072 m 0,-4.50444 v 0.75073 m 0,3.00299 v 0.75072 m -6.45643,-27.32709 1.051066,-4.80476 m -1.051066,4.80476 1.051066,-4.80476 m -2.552544,-8.2582 -9.159074,16.36624 m 9.159074,-16.36624 -9.159074,16.36624 m 1.201168,0.15014 8.708662,-15.61549 m -8.708662,15.61549 8.708662,-15.46534 m 24.324133,21.32114 -1.501514,0.45045 m 1.501514,-1.20119 -1.501514,0.45045 M 19.44429,234.30733 h 6.156119 m 6.15612,0 h 13.963853 m 34.3841,-0.90089 h -6.156119 m 11.561482,-0.30031 h -0.750757 m -5.105053,-0.15014 h -5.705672 m -8.858766,0 h 1.651615 m -2.402371,-0.30031 h -2.102097 m 1.501513,-0.45044 H 61.93647 M 45.720382,232.0551 H 27.101888 m -6.156084,0 h -1.651651 m 26.426229,0 H 27.101888 m -6.156084,0 h -1.651651 m 66.215692,-1.80178 h -0.750757 m -11.861756,-2.40239 h -5.255225 m -36.185889,-0.30031 h 2.852819 m -2.852819,0 h 2.852819 m 31.681455,-0.75075 h 5.705636 m -7.957871,-0.75074 h 2.252235 m 0.75072,0 h 4.354332 m 0.600584,0 h 2.252235 M 63.738257,225.899 h 2.252235 m 5.705636,0 h 2.252235 m 10.810725,0 h 0.750757 m -51.200808,-0.45046 h -2.852819 m 2.852819,0 h -2.852819 m 32.282039,-1.50148 h 2.252235 m 5.705636,0 h 2.252235 m 10.810725,0 h 0.750757 m 0,-0.30031 H 84.759088 M 73.948363,223.1963 h -2.252235 m -5.705636,0 h -2.252235 m 21.020831,15.01489 0.750757,0.15014 m 0,-0.15014 -0.750757,-0.15014 m -21.020831,-5.8558 1.35134,0.75075 m -13.813715,0 -4.204158,-3.30328 m 4.204158,3.30328 -4.204158,-3.30328 m -16.21609,-26.87666 8.708629,15.46534 m -8.708629,-15.61549 8.708629,15.61549 m 1.201203,-0.15014 -9.15911,-16.36624 m 9.15911,16.36624 -9.15911,-16.36624 m -2.552509,8.2582 1.051031,4.80476 m -1.051031,-4.80476 1.051031,4.80476 m 13.36327,27.32709 v -4.50444 m 0,4.50444 v -4.50444 m 2.702681,-7.50745 v 1.50148 m 0,3.15313 v 1.50149 m 0,-6.1561 v 1.50148 m 0,3.15313 v 1.50149 m 6.456393,4.50459 v -19.66949 m 0,0 v -19.21907 m 2.552545,3.75373 v 31.53127 m 1.051031,-32.73246 v 33.78351 m -28.828601,-11.11102 -3.903885,3.90387 m 3.903885,-3.90387 -3.903885,3.90387 m 3.153128,-0.15014 2.252235,-2.25223 m -2.252235,2.25223 2.252235,-2.25223 m 55.855413,-23.87369 0.750757,-0.15014 m 0,-0.3003 -0.750757,0.15014 M 63.738257,219.5929 h 2.252235 m 5.705636,0 h 2.252235 M 21.696524,219.29258 H 40.01471 m -18.318186,0 H 40.01471 m 45.495135,-0.30031 h -0.750757 m -21.020831,-0.3003 h 2.252235 m 5.705636,0 h 2.252235 m 10.810725,0 h 0.750757 M 39.564263,218.24151 H 22.146972 m 17.417291,0 H 22.146972 m 41.591285,-1.35134 h 2.252235 m 5.705636,0 h 2.252235 m 10.810725,0 h 0.750757 m -11.561482,-0.30031 h -2.252235 m -0.600584,0 h -4.354332 m -0.75072,0 h -2.252235 m 7.957871,-0.75074 h -5.705636 m 1.651615,-0.90089 h 5.255225 m -42.792454,-0.15014 h 1.501478 m -1.501478,0 h 1.501478 m 53.903489,-2.25224 H 84.759088 M 61.93647,210.43377 h 1.801787 m -1.501513,-0.30032 h 2.102097 m 2.402371,-0.45044 h -1.651615 m 8.858766,0 h 5.705672 m 5.85581,-0.15014 h -0.750757 m -10.810725,-0.15014 h 6.156119 m -8.408354,17.41728 -0.600584,-0.75075 m 8.558491,6.90686 0.450447,0.45045 m 6.90684,6.30627 1.051067,1.05103 m -25.825645,-8.10804 -3.753712,-4.65463 m 0,0 v -13.36326 m 0.300416,13.8137 V 214.1875 m 4.954916,2.40239 v 3.00298 m 0,3.60357 v 2.85282 m 0.750721,0 v -0.15013 m 0,-1.95193 v -0.75075 m 0,-3.60357 v -0.9009 m 0,-1.80178 v -0.30031 m 1.501514,-0.75075 v 10.96087 m 0.75072,-17.11699 v 1.65165 m 0,5.25522 v 9.45937 m 0,5.40537 v 1.50149 m 2.702682,-29.72949 v 1.20119 m 0.750756,-1.35134 v 1.35134 m -11.711725,10.21012 3.753712,-4.50446 m 2.852853,-0.45046 -1.35134,0.75075 M 81.60596,205.62901 H 55.179767 m 28.678428,-0.6006 h -1.051031 m 1.951924,-0.60059 h -0.900893 m -1.051031,0 H 56.230798 m 12.612512,0 h 2.102098 m -17.267155,-1.35134 h 33.333069 m -34.3841,-1.20119 h 35.435167 m -22.071897,13.96385 0.75072,0.75075 m -13.062959,-13.51341 -1.051031,-1.20119 m 14.11399,9.45938 0.900895,3.60357 m 6.306256,16.51639 -1.051031,-3.60357 m -1.801788,-1.8018 v -9.45937 m 0.600584,10.21012 v -10.96087 m 1.501514,0.75075 v 0.30031 m 0,1.80178 v 0.9009 m 0,3.60357 v 0.75075 m 0,1.95193 v 0.15013 m 0.750721,7.35731 v -1.95194 m 0,-5.40537 v -2.85282 m 0,-3.60357 v -3.00298 m 0,-5.25522 v -1.95194 m 2.702681,-6.30625 v 1.35134 m 0,34.53426 v 0.75076 m 0.600479,-36.63636 v 1.35134 m 0,33.78352 v 1.5015 m 2.402371,-30.02982 v 23.2731 m 0.450447,-23.57339 v 24.02384 m 1.501477,3.75371 v -31.53127 m 1.20131,32.58233 v -33.78352 m 1.050924,33.18292 v 0.6006 m 0,-33.18293 v -0.60059 m 0.900894,0 v 33.78352 m -17.116981,-10.36028 -0.900894,3.60357 m 6.156119,-16.51639 1.051031,-3.60357 m -2.252234,4.50447 -0.600584,0.75075 m 8.558491,-6.90687 0.450447,-0.3003 m 6.90684,-6.30626 1.051066,-1.20119 M 65.990351,226.8 l 0.75072,-0.75075 m -13.062959,13.66355 -1.051031,1.05104 m -5.5555,-4.05401 4.20416,-3.30327 m -4.20416,3.30327 4.20416,-3.30327 m 34.233961,6.30624 v -36.63634 m 1.351342,0 v 36.63634 m 1.201203,-37.83754 v 19.21907 m 0,0 v 19.66951 M 31.456218,225.2985 c -1.501476,0 -3.00299,0.6006 -4.054021,1.65163 m 4.054021,-1.65163 c -1.501476,0 -3.00299,0.6006 -4.054021,1.65163 m -8.708627,4.65463 c -0.750758,-1.5015 -2.402407,-2.25223 -4.054022,-1.95194 -1.651651,0.30031 -2.702682,1.80179 -2.702682,3.45342 0,1.65165 1.051031,3.15313 2.702682,3.45343 1.651615,0.45045 3.303264,-0.45044 4.054022,-1.95193 m 9.459383,0.60059 c -0.750756,-0.60059 -1.651649,-1.05104 -2.552544,-1.05104 m 5.855809,-6.60656 c -0.900893,0 -1.801787,0.30032 -2.552543,0.9009 m -7.957871,3.60357 c 0.900893,0 1.801787,-0.45044 2.552508,-1.05104 m -4.804742,0.6006 c -0.750758,-1.5015 -2.402407,-2.25223 -4.054022,-1.95194 -1.651651,0.30031 -2.702682,1.80179 -2.702682,3.45342 0,1.65165 1.051031,3.15313 2.702682,3.45343 1.651615,0.45045 3.303264,-0.45044 4.054022,-1.95193 m 2.252234,-2.55254 c 0.900893,0 1.801787,-0.45044 2.552508,-1.05104 m 7.957906,-3.45343 c -0.900893,0 -1.801787,0.30032 -2.552543,0.9009 m -0.750722,6.7567 c -0.750756,-0.60059 -1.651649,-1.05104 -2.552544,-1.05104 m 7.057013,-24.32413 c 0.150031,-0.75075 -0.15003,-1.50149 -0.750757,-1.80178 -0.750756,-0.45046 -1.501478,-0.45046 -2.102097,0 -0.600584,0.3003 -0.900893,1.05103 -0.750721,1.80178 m 3.453402,0 c 0.150031,-0.60059 -0.150031,-1.35134 -0.75072,-1.80178 -0.60062,-0.45046 -1.351342,-0.45046 -1.951961,0 -0.600584,0.45044 -0.900893,1.20119 -0.750721,1.80178 m -8.108043,8.10805 c -0.150031,0.3003 -0.150031,0.60059 0,0.90088 0.15003,0.30032 0.450446,0.45046 0.75072,0.45046 m -0.75072,-1.35134 c -0.150031,0.3003 -0.150031,0.60059 0,0.90088 0.15003,0.30032 0.450446,0.45046 0.75072,0.45046 m -2.252234,14.86474 c -0.300416,0 -0.600584,0.15014 -0.75072,0.45045 m 0.75072,-0.45045 c -0.300416,0 -0.600584,0.15014 -0.75072,0.45045 m 12.912786,-18.16803 c 0,-0.45044 -0.450447,-0.75075 -0.750722,-0.75075 -0.450447,0 -0.750756,0.30032 -0.750756,0.75075 0,0.30031 0.300416,0.75075 0.750756,0.75075 0.300416,0 0.750722,-0.45044 0.750722,-0.75075 m 0.15003,17.71758 c -0.300416,0 -0.450446,0.15014 -0.600619,0.45045 -0.15003,0.3003 0,0.60059 0.150031,0.75074 m -4.654642,-4.65462 c -0.150031,0.30032 -0.300416,0.60059 -0.150031,0.9009 0.150031,0.15014 0.300416,0.45044 0.600584,0.45044 m -8.408318,-0.45044 c 0.150031,0.15014 0.300416,0.45044 0.600585,0.45044 m 12.312202,-15.61549 c 0,-0.45044 -0.450446,-0.75075 -0.750721,-0.75075 -0.450447,0 -0.750756,0.30032 -0.750756,0.75075 0,0.30031 0.300416,0.75075 0.750756,0.75075 0.300417,0 0.750721,-0.45044 0.750721,-0.75075 m -12.912787,15.16505 c 0.150031,0.15014 0.300416,0.45044 0.600585,0.45044 m 7.357287,-1.35134 c -0.150031,0.30032 -0.300416,0.60059 -0.150031,0.9009 0.150031,0.15014 0.300416,0.45044 0.600584,0.45044 m 4.654641,2.10209 c -0.300416,0 -0.450447,0.15014 -0.600619,0.45045 -0.150031,0.3003 0,0.60059 0.150031,0.75074 m 0.600584,3.75374 c 1.201203,1.05104 2.702681,1.80179 4.354332,1.80179 m -4.354332,-1.95196 c 1.201203,1.20121 2.702681,1.80179 4.354332,1.80179 m -2.852854,-3.30327 c 0.750756,0.75074 1.801787,1.20121 2.852854,1.20121 m -2.852854,-1.20121 c 0.750756,0.75074 1.801787,1.20121 2.852854,1.20121 m -1.351342,-10.81075 c 0.600586,0.9009 1.801789,1.35135 3.002957,1.05104 1.201203,-0.3003 1.951961,-1.35134 1.951961,-2.55253 0,-1.20119 -0.750758,-2.25223 -1.951961,-2.55252 -1.201168,-0.30032 -2.402371,0.15012 -3.002957,1.20118 m 0,2.85283 c 0.600586,0.9009 1.801789,1.35135 3.002957,1.05104 1.201203,-0.3003 1.951961,-1.35134 1.951961,-2.55253 0,-1.20119 -0.750758,-2.25223 -1.951961,-2.55252 -1.201168,-0.30032 -2.402371,0.15012 -3.002957,1.20118 m 5.105054,-5.70565 c 0.300417,0 0.600584,-0.15014 0.750757,-0.45046 0.150031,-0.3003 0.150031,-0.60059 0,-0.90088 m -0.750757,1.35134 c 0.300417,0 0.600584,-0.15014 0.750757,-0.45046 0.150031,-0.3003 0.150031,-0.60059 0,-0.90088 m -5.855811,9.90982 c -0.150031,-0.3003 -0.450447,-0.3003 -0.600619,-0.3003 m 0,-2.25224 c 0.150031,0 0.450447,-0.15014 0.600619,-0.30031 m -0.600619,0.30031 c 0.150031,0 0.450447,-0.15014 0.600619,-0.30031 m 0,2.85284 c -0.150031,-0.30032 -0.450447,-0.30032 -0.600619,-0.30032 m 12.762686,2.10209 c -0.15003,-0.15014 -0.450446,-0.15014 -0.600618,-0.15014 -0.150031,0.15014 -0.300418,0.30031 -0.300418,0.6006 m 0,6.00595 c 0,0.30032 0.150031,0.45046 0.300418,0.6006 0.150029,0 0.450445,0 0.600618,-0.15014 m -0.900893,-0.45044 c 0,0.3003 0.150031,0.45044 0.300416,0.60059 0.150031,0 0.450447,0 0.600619,-0.15014 m 0,-6.90685 c -0.150031,-0.15014 -0.450447,-0.15014 -0.600619,-0.15014 -0.150031,0.15014 -0.300416,0.30031 -0.300416,0.6006 m -7.657598,7.057 c -0.300416,0 -0.450445,0.15014 -0.450445,0.45045 m 5.405361,0 c 0,-0.30031 -0.150031,-0.45045 -0.450447,-0.45045 m 0,5.40535 c 0.300416,0 0.450447,-0.15004 0.450447,-0.45045 m -5.405361,0 c 0,0.30041 0.150029,0.45045 0.450445,0.45045 m -0.450445,-1.35135 c 0,-0.15002 -0.150032,-0.30042 -0.450448,-0.30042 m 0.600584,1.20118 c 0,0.15002 0.150031,0.45044 0.300416,0.45044 m 4.504469,0 c 0.150031,0 0.450447,-0.30042 0.450447,-0.45044 m 0,-4.50446 c 0,-0.3003 -0.300416,-0.45044 -0.450447,-0.45044 m -4.504469,0 c -0.150031,0 -0.300416,0.15014 -0.300416,0.45044 m -0.600584,1.05106 c 0.300416,0 0.450448,-0.15004 0.450448,-0.45046 m 8.108043,-3.60357 c 0,-0.15014 -0.150031,-0.30032 -0.450447,-0.30032 m 0,-2.25223 c 0.300416,0 0.450447,-0.30031 0.450447,-0.45044 m -0.450447,0.45044 c 0.300416,0 0.450447,-0.30031 0.450447,-0.45044 m 0,3.00297 c 0,-0.15014 -0.150031,-0.30032 -0.450447,-0.30032 m -8.108044,4.35432 c 0.300416,0 0.450448,-0.15002 0.450448,-0.45044 m 0,3.00296 c 0,-0.15004 -0.150032,-0.30042 -0.450448,-0.30042 m 13.663543,-7.50745 c 0.150032,-0.15013 0.150032,-0.15013 0.150032,-0.3003 0,0 0,-0.15014 -0.150032,-0.15014 m 0,0.45044 c 0.150032,-0.15013 0.150032,-0.15013 0.150032,-0.3003 0,0 0,-0.15014 -0.150032,-0.15014 M 31.606142,201.57467 c -0.150029,-0.15014 -0.450445,-0.30031 -0.75072,-0.30031 -0.300416,0 -0.60062,0.15014 -0.750756,0.30031 m 1.501476,0 c -0.150029,-0.15014 -0.450445,-0.30031 -0.75072,-0.30031 -0.300416,0 -0.60062,0.15014 -0.750756,0.30031 m 45.945582,37.98768 c 0.450447,-0.30042 0.750756,-0.9009 1.051031,-1.35134 m -2.102418,1.35144 c 0.450448,-0.3004 0.900895,-0.75075 1.20117,-1.35133 m -21.020832,-1.20119 c 0,0.6006 0.450447,1.20119 1.051031,1.20119 m 0,-33.78351 c -0.600584,0 -1.051031,0.45044 -1.051031,1.05103 m -1.500094,34.23605 v -17.41727 m 0,-1.05105 v -18.16801 m 33.333069,19.21906 v 17.41727 m 0,-36.63633 v 18.16801 m 0,0 v 1.05105 m -33.333212,-5.25522 1.501514,-0.15013 m 14.264127,-13.66356 -9.309211,-0.15014 m 10.059969,0.75075 -0.150031,-0.15014 -0.150031,-0.3003 -0.150031,-0.15014 h -0.300417 m 0,-0.15014 v 0.15014 m -15.765923,15.01511 h 1.501513 m 27.627396,19.96981 -1.201203,-1.05104 m 1.201203,-32.73247 -1.201203,1.20119 m -27.928381,15.61335 v 1.05104 m 46.245891,-0.6006 H 88.062389 M 40.01471,80.705063 H 29.203984 m 10.810726,-5.85581 v 5.85581 M 29.203984,74.849253 H 40.01471 m -10.810726,5.85581 v -5.85581", + "fill": { + "paint": "transparent" + }, + "id": "path313", + "name": "path313", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.15015" + }, + "type": "path" + }, + { + "d": "m 27.918296,87.912245 v -3.641111 h 0.47797 v 3.209433 h 1.793027 v 0.431678 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path314", + "name": "path314", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "m 30.846838,84.271141 h 0.477971 v 3.641111 h -0.477971 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path315", + "name": "path315", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "m 32.169415,87.912245 v -3.641111 h 0.487972 l 1.914399,2.852828 v -2.852828 h 0.459208 v 3.641111 h -0.496733 l -1.904398,-2.86159 v 2.86159 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path316", + "name": "path316", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "m 35.819915,87.912245 v -3.641111 h 0.47797 v 1.801787 l 1.801787,-1.801787 h 0.658149 l -1.530277,1.47396 1.595363,2.167151 H 38.18476 l -1.295052,-1.848085 -0.591823,0.580577 v 1.267508 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path317", + "name": "path317", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "m 41.384814,87.480522 v 0.431676 h -2.402372 c 0,-0.112607 0.01774,-0.216463 0.0564,-0.319072 0.0564,-0.160174 0.160317,-0.319073 0.290485,-0.477975 0.141519,-0.160174 0.329146,-0.337834 0.581822,-0.554301 0.394123,-0.319071 0.666909,-0.571814 0.807044,-0.769511 0.13123,-0.187699 0.206426,-0.366615 0.206426,-0.535533 0,-0.17766 -0.0649,-0.319071 -0.186563,-0.440436 -0.132657,-0.121369 -0.29155,-0.187699 -0.497975,-0.187699 -0.215292,0 -0.384121,0.06633 -0.515531,0.197699 -0.132657,0.131373 -0.197559,0.309071 -0.197559,0.534281 l -0.459207,-0.04629 c 0.0376,-0.347836 0.150031,-0.601846 0.356598,-0.788281 0.205361,-0.178937 0.47797,-0.26275 0.824567,-0.26275 0.347943,0 0.629384,0.09386 0.825806,0.290273 0.206426,0.187698 0.310347,0.431678 0.310347,0.713207 0,0.150137 -0.02837,0.290307 -0.09398,0.43168 -0.0564,0.141376 -0.160317,0.291549 -0.29155,0.441687 -0.140106,0.158897 -0.365358,0.365361 -0.694433,0.638133 -0.261401,0.225224 -0.430407,0.384133 -0.515495,0.459205 -0.07519,0.08509 -0.13123,0.158897 -0.187627,0.243985 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path318", + "name": "path318", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "m 4.5607807,260.73366 3.0780419,-8.02294 h 1.1448798 l 3.2745006,8.02294 H 10.857035 L 9.9185803,258.31253 H 6.5690289 l -0.882131,2.42113 z m 2.3085225,-3.29326 h 2.7214794 l -0.8358449,-2.2247 c -0.2528888,-0.67567 -0.4492055,-1.22873 -0.5718193,-1.66165 -0.1039222,0.50801 -0.2440216,1.0235 -0.4316841,1.53028 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path358", + "name": "path358", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "m 12.865886,260.73366 v -8.02294 h 1.061068 v 7.07577 h 3.950136 v 0.94717 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path359", + "name": "path359", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "m 19.097056,260.73366 v -8.02294 h 1.061069 v 7.07577 h 3.950135 v 0.94717 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path360", + "name": "path360", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "m 25.384549,260.73366 v -8.02294 h 5.799486 v 0.94717 h -4.738417 v 2.4587 h 4.438143 v 0.92967 h -4.438143 v 2.74023 h 4.926116 v 0.94717 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path361", + "name": "path361", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "m 32.826322,260.73366 v -8.02294 h 1.088592 l 4.214162,6.29625 v -6.29625 h 1.013506 v 8.02294 h -1.089834 l -4.21292,-6.30624 v 6.30624 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path362", + "name": "path362", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "m 43.993646,260.73366 v -8.02294 h 3.012992 c 0.609346,0 1.097318,0.0838 1.472714,0.24261 0.3666,0.16031 0.656907,0.41415 0.863333,0.75198 0.216357,0.33803 0.319214,0.68444 0.319214,1.0598 0,0.33801 -0.09398,0.66567 -0.281617,0.96722 -0.187628,0.30042 -0.46921,0.5443 -0.844607,0.73195 0.488008,0.14014 0.863369,0.38416 1.126117,0.722 0.253954,0.34793 0.385399,0.75071 0.385399,1.21992 0,0.3754 -0.07519,0.722 -0.235155,1.04104 -0.158897,0.32914 -0.356632,0.57309 -0.591859,0.75076 -0.23409,0.17875 -0.525497,0.31034 -0.872094,0.39539 -0.356632,0.0926 -0.788281,0.14013 -1.295052,0.14013 z m 1.061068,-4.65459 h 1.735462 c 0.46921,0 0.807045,-0.0284 1.013506,-0.094 0.27275,-0.0752 0.469209,-0.21528 0.610586,-0.39416 0.13123,-0.18763 0.205361,-0.42292 0.205361,-0.70443 0,-0.26282 -0.0649,-0.49673 -0.196494,-0.7032 -0.121298,-0.20642 -0.308928,-0.33765 -0.544296,-0.41292 -0.23409,-0.0752 -0.646871,-0.11274 -1.219932,-0.11274 h -1.604086 z m 0,3.70742 h 1.998211 c 0.337658,0 0.581822,-0.0177 0.723233,-0.0387 0.242603,-0.0465 0.44917,-0.12129 0.609345,-0.22415 0.168829,-0.10389 0.300416,-0.24508 0.402884,-0.44169 0.112436,-0.1965 0.160316,-0.42293 0.160316,-0.67567 0,-0.30042 -0.07519,-0.56306 -0.225223,-0.77951 -0.160317,-0.22382 -0.366601,-0.37537 -0.638145,-0.46923 -0.271332,-0.0838 -0.666909,-0.13128 -1.173644,-0.13128 h -1.856835 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path363", + "name": "path363", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "m 51.529267,260.73366 v -8.02294 h 3.556012 c 0.713232,0 1.258768,0.0752 1.624127,0.21529 0.375361,0.14014 0.66691,0.39412 0.890893,0.75948 0.225222,0.36664 0.337657,0.77076 0.337657,1.21121 0,0.57306 -0.187626,1.05107 -0.553057,1.43642 -0.3666,0.39288 -0.938419,0.63814 -1.707938,0.74948 0.281618,0.13272 0.497974,0.26389 0.638109,0.3954 0.310348,0.2802 0.60938,0.63814 0.882132,1.06984 l 1.398903,2.1859 h -1.34258 l -1.061068,-1.67042 c -0.308929,-0.48796 -0.563059,-0.85332 -0.759482,-1.10735 -0.206426,-0.25288 -0.385398,-0.43164 -0.544296,-0.53553 -0.160317,-0.10246 -0.319214,-0.1777 -0.47797,-0.2153 -0.122725,-0.0284 -0.320279,-0.0375 -0.591859,-0.0375 h -1.228692 v 3.56604 z m 1.061069,-4.4857 h 2.279758 c 0.479212,0 0.863332,-0.0461 1.136119,-0.15003 0.271332,-0.10246 0.47797,-0.26281 0.619347,-0.47925 0.150031,-0.2238 0.215292,-0.45916 0.215292,-0.72195 0,-0.37537 -0.13123,-0.69444 -0.412922,-0.93842 -0.27275,-0.24402 -0.704435,-0.36536 -1.305019,-0.36536 h -2.532505 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path364", + "name": "path364", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "m 58.717619,260.73366 3.078042,-8.02294 h 1.144879 l 3.284539,8.02294 h -1.211206 l -0.938455,-2.42113 h -3.349551 l -0.88213,2.42113 z m 2.308523,-3.29326 h 2.72148 l -0.835846,-2.2247 c -0.252889,-0.67567 -0.440445,-1.22873 -0.571819,-1.66165 -0.103917,0.50801 -0.244022,1.0235 -0.431684,1.53028 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path365", + "name": "path365", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "m 67.06965,260.73366 v -8.02294 h 2.758969 c 0.628143,0 1.097351,0.0361 1.426426,0.1113 0.46045,0.10389 0.854607,0.30149 1.182441,0.57307 0.422924,0.3566 0.731958,0.81581 0.948422,1.3701 0.206424,0.56306 0.308928,1.19117 0.308928,1.9144 0,0.60058 -0.06633,1.14488 -0.206426,1.61409 -0.15003,0.46925 -0.329145,0.86337 -0.553056,1.17244 -0.216356,0.30149 -0.460448,0.54554 -0.733236,0.7232 -0.262819,0.17875 -0.580544,0.30893 -0.95594,0.40415 -0.366599,0.0926 -0.798284,0.14014 -1.286256,0.14014 z m 1.061067,-0.94717 h 1.707938 c 0.534259,0 0.947181,-0.0575 1.247491,-0.15003 0.300416,-0.10389 0.54426,-0.23516 0.721956,-0.41288 0.245086,-0.25396 0.441686,-0.59186 0.583063,-1.02351 0.140091,-0.42169 0.215292,-0.93846 0.215292,-1.53904 0,-0.84461 -0.141519,-1.48272 -0.412922,-1.93316 -0.281618,-0.45044 -0.609345,-0.75076 -1.003468,-0.91093 -0.291549,-0.10246 -0.741996,-0.1589 -1.380141,-0.1589 h -1.679138 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path366", + "name": "path366", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "m 75.112005,260.73366 v -8.02294 h 1.061069 v 7.07577 h 3.950135 v 0.94717 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path367", + "name": "path367", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "m 81.408863,260.73366 v -8.02294 h 5.79076 v 0.94717 h -4.729692 v 2.4587 h 4.428142 v 0.92967 h -4.428142 v 2.74023 h 4.917356 v 0.94717 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path368", + "name": "path368", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "m 91.112269,260.73366 v -3.3971 l -3.086803,-4.62584 h 1.285015 l 1.586567,2.42113 c 0.290484,0.45044 0.563058,0.9009 0.815804,1.3501 0.235156,-0.41164 0.525534,-0.8909 0.873372,-1.41639 l 1.547798,-2.35484 h 1.23873 l -3.199415,4.62584 v 3.3971 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path369", + "name": "path369", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "m 21.508827,284.75746 h -0.985983 v -6.2775 c -0.23409,0.22381 -0.543018,0.45046 -0.928417,0.67567 -0.38412,0.22382 -0.731958,0.40292 -1.041028,0.51553 v -0.95721 c 0.553057,-0.25289 1.031026,-0.57181 1.445189,-0.93842 0.412886,-0.37536 0.703193,-0.73195 0.882132,-1.07983 h 0.628107 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path370", + "name": "path370", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "m 24.098896,277.7756 v -0.93841 h 5.190142 v 0.76075 c -0.516773,0.54303 -1.023508,1.26625 -1.521518,2.16715 -0.496733,0.9009 -0.890857,1.83055 -1.162401,2.77773 -0.197558,0.67567 -0.320279,1.40767 -0.376603,2.21471 h -1.013505 c 0.0107,-0.63815 0.141519,-1.39763 0.375361,-2.28976 0.235155,-0.9009 0.57306,-1.75426 1.014747,-2.59008 0.449206,-0.82583 0.918415,-1.52903 1.416424,-2.10209 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path371", + "name": "path371", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "m 30.255015,282.646 1.041029,-0.0852 c 0.07519,0.49801 0.253953,0.87337 0.526775,1.12612 0.280199,0.25395 0.618105,0.37663 1.012264,0.37663 0.470451,0 0.87337,-0.17875 1.202445,-0.53553 0.327726,-0.35659 0.496733,-0.82584 0.496733,-1.41766 0,-0.56182 -0.158899,-1.00351 -0.479212,-1.33131 -0.317796,-0.32914 -0.730752,-0.48924 -1.238729,-0.48924 -0.317796,0 -0.600619,0.0762 -0.853367,0.21635 -0.262819,0.14156 -0.459207,0.32914 -0.610586,0.56306 l -0.919691,-0.12129 0.779521,-4.11031 h 3.988973 v 0.92842 h -3.200691 l -0.431649,2.15839 c 0.479212,-0.33802 0.984705,-0.50678 1.510238,-0.50678 0.704437,0 1.296294,0.24402 1.774264,0.73199 0.477971,0.48798 0.723199,1.10737 0.723199,1.87688 0,0.72321 -0.216355,1.3513 -0.63811,1.88684 -0.516772,0.64691 -1.211206,0.97599 -2.103338,0.97599 -0.731994,0 -1.322577,-0.20644 -1.783025,-0.61935 -0.469209,-0.40416 -0.731995,-0.94846 -0.797043,-1.62413 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path372", + "name": "path372", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "m 41.591274,278.69523 -0.97598,0.0752 c -0.08512,-0.3854 -0.215292,-0.6569 -0.37536,-0.83584 -0.262821,-0.27134 -0.591823,-0.41293 -0.984741,-0.41293 -0.310348,0 -0.581821,0.0852 -0.825808,0.26282 -0.310347,0.22523 -0.554298,0.5543 -0.731958,0.98598 -0.179115,0.43165 -0.272751,1.04103 -0.272751,1.83932 0.235155,-0.3566 0.525533,-0.62811 0.863369,-0.80705 0.347943,-0.16883 0.703193,-0.26281 1.078554,-0.26281 0.656907,0 1.219966,0.24402 1.680415,0.73199 0.459208,0.47921 0.684431,1.10735 0.684431,1.87686 0,0.49798 -0.102504,0.96719 -0.317796,1.39888 -0.216355,0.43044 -0.516772,0.76827 -0.892133,0.99474 -0.385398,0.23409 -0.817081,0.34653 -1.295052,0.34653 -0.817047,0 -1.491476,-0.30042 -2.008249,-0.9109 -0.516772,-0.59934 -0.778279,-1.59533 -0.778279,-2.98423 0,-1.54776 0.290484,-2.67387 0.862126,-3.37834 0.497975,-0.60936 1.173645,-0.91843 2.018251,-0.91843 0.629384,0 1.14488,0.1777 1.54904,0.5343 0.402884,0.34794 0.646871,0.8446 0.721957,1.46395 z m -4.016496,3.45343 c 0,0.33801 0.07519,0.65688 0.216357,0.96719 0.140106,0.30892 0.346525,0.54305 0.600619,0.71194 0.261401,0.16033 0.534259,0.23516 0.815805,0.23516 0.422924,0 0.778281,-0.16031 1.069794,-0.498 0.300416,-0.33802 0.450447,-0.78705 0.450447,-1.37011 0,-0.5443 -0.141519,-0.98474 -0.441687,-1.30381 -0.29013,-0.31921 -0.665632,-0.47921 -1.116079,-0.47921 -0.440445,0 -0.817082,0.16031 -1.126117,0.47921 -0.319215,0.31921 -0.469246,0.74199 -0.469246,1.25753 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path373", + "name": "path373", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "m 42.604745,281.36041 h 3.021753 v 0.98471 h -3.021753 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path374", + "name": "path374", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "m 46.865262,284.75746 v -8.02296 h 5.799487 v 0.94718 h -4.738418 v 2.4587 h 4.438143 v 0.92966 h -4.438143 v 2.74024 h 4.926115 v 0.94718 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path375", + "name": "path375", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "m 54.307035,284.75746 v -8.02296 h 1.088592 l 4.204158,6.29625 v -6.29625 h 1.023508 v 8.02296 H 59.53346 l -4.212919,-6.30626 v 6.30626 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path376", + "name": "path376", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "m 65.15525,284.75746 v -1.92441 h -3.472201 v -0.89964 l 3.659898,-5.19891 h 0.798285 v 5.19891 h 1.088592 v 0.89964 h -1.088592 v 1.92441 z m 0,-2.82405 v -3.62358 l -2.506222,3.62358 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path377", + "name": "path377", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "m 70.673224,284.75746 v -7.07578 h -2.646358 v -0.94718 h 6.353783 v 0.94718 h -2.646356 v 7.07578 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path378", + "name": "path378", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "m 75.487402,284.75746 v -8.02296 h 3.556011 c 0.713231,0 1.258769,0.0752 1.63413,0.21529 0.365359,0.14014 0.665668,0.39412 0.890892,0.75949 0.225223,0.36663 0.327727,0.77075 0.327727,1.2112 0,0.57306 -0.177697,1.05107 -0.553057,1.43643 -0.3666,0.39289 -0.928417,0.63815 -1.699178,0.74947 0.281618,0.13272 0.489214,0.26389 0.638109,0.39541 0.310347,0.28019 0.60062,0.63815 0.882131,1.06983 l 1.390144,2.18591 H 81.22049 l -1.059826,-1.67041 c -0.310348,-0.48797 -0.563058,-0.85334 -0.769484,-1.10736 -0.196494,-0.25289 -0.375396,-0.43165 -0.534294,-0.53554 -0.160316,-0.10246 -0.319215,-0.17769 -0.487973,-0.21528 -0.112436,-0.0284 -0.310346,-0.0377 -0.591859,-0.0377 h -1.22869 v 3.56606 z m 1.061069,-4.4857 h 2.279757 c 0.487973,0 0.863332,-0.0461 1.14488,-0.15004 0.27275,-0.10246 0.47797,-0.26282 0.619346,-0.47924 0.141519,-0.2238 0.216357,-0.45918 0.216357,-0.72197 0,-0.37535 -0.141519,-0.69442 -0.414163,-0.93841 -0.281618,-0.24403 -0.713196,-0.36537 -1.303777,-0.36537 h -2.542507 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path379", + "name": "path379", + "stroke": { + "paint": "transparent", + "width": "1.25124" + }, + "type": "path" + }, + { + "d": "M 99.82503,360.73408 H 89.765075", + "fill": { + "paint": "transparent" + }, + "id": "ethernet2", + "name": "ethernet2", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.15015" + }, + "type": "path" + } + ], + "id": "g1", + "name": "g1", + "type": "group" + } + ], + "id": "g2", + "name": "g2", + "transform": "scale(0.64847288,0.64802213)", + "type": "group" + } + ], + "id": "layer1", + "name": "layer1", + "type": "group" + } + ], + "viewBox": "0 0 64.847 270.00001" + }, + "type": "ia.shapes.svg" + } + ], + "meta": { + "name": "root" + }, + "props": { + "mode": "percent" + }, + "type": "ia.container.coord" + } +} \ No newline at end of file diff --git a/.resources/8d96a147fce044211d25f21cf0895b8819ef45cc641146320a65927f2f60d3e0 b/.resources/8d96a147fce044211d25f21cf0895b8819ef45cc641146320a65927f2f60d3e0 new file mode 100644 index 00000000..a013e8b9 Binary files /dev/null and b/.resources/8d96a147fce044211d25f21cf0895b8819ef45cc641146320a65927f2f60d3e0 differ diff --git a/.resources/8fb38829988d8fd59dc0b1ae25aa7d393fc8e7acaf5e951554100550d3493748 b/.resources/8fb38829988d8fd59dc0b1ae25aa7d393fc8e7acaf5e951554100550d3493748 deleted file mode 100644 index 529c16e8..00000000 Binary files a/.resources/8fb38829988d8fd59dc0b1ae25aa7d393fc8e7acaf5e951554100550d3493748 and /dev/null differ diff --git a/.resources/8fddefd4f9bff19dbef60ff795059df0c9a65f92620e09ab4c2b592680bf6774 b/.resources/8fddefd4f9bff19dbef60ff795059df0c9a65f92620e09ab4c2b592680bf6774 deleted file mode 100644 index 1555b607..00000000 Binary files a/.resources/8fddefd4f9bff19dbef60ff795059df0c9a65f92620e09ab4c2b592680bf6774 and /dev/null differ diff --git a/.resources/8ff4a6e970ede141cf3a2137d5e700a3bf1c6fe51e5cb88d2cbfa329023133d9 b/.resources/8ff4a6e970ede141cf3a2137d5e700a3bf1c6fe51e5cb88d2cbfa329023133d9 deleted file mode 100644 index 4e694c23..00000000 --- a/.resources/8ff4a6e970ede141cf3a2137d5e700a3bf1c6fe51e5cb88d2cbfa329023133d9 +++ /dev/null @@ -1,262 +0,0 @@ -{ - "custom": {}, - "params": { - "tagProps": [ - "\"\"", - 1, - "", - "value", - "value", - "value", - "value", - "value", - "value", - "value" - ] - }, - "propConfig": { - "params.tagProps": { - "paramDirection": "inout", - "persistent": true - }, - "params.tagProps[0]": { - "paramDirection": "input", - "persistent": true - }, - "params.tagProps[1]": { - "paramDirection": "input", - "persistent": true - }, - "params.tagProps[2]": { - "paramDirection": "input", - "persistent": true - }, - "params.tagProps[3]": { - "paramDirection": "input", - "persistent": true - }, - "params.tagProps[4]": { - "paramDirection": "input", - "persistent": true - }, - "params.tagProps[5]": { - "paramDirection": "input", - "persistent": true - }, - "params.tagProps[6]": { - "paramDirection": "input", - "persistent": true - }, - "params.tagProps[7]": { - "paramDirection": "input", - "persistent": true - }, - "params.tagProps[8]": { - "paramDirection": "input", - "persistent": true - }, - "params.tagProps[9]": { - "paramDirection": "input", - "persistent": true - } - }, - "props": { - "defaultSize": { - "height": 40, - "width": 40 - }, - "styles": "value" - }, - "root": { - "children": [ - { - "meta": { - "name": "Icon" - }, - "position": { - "basis": "264px" - }, - "propConfig": { - "meta.visible": { - "binding": { - "config": { - "expression": "if({parent.custom.state}\u003d1||{parent.custom.covert_mode}||{parent.custom.isMatch}\u003e0,true,false)" - }, - "type": "expr" - } - }, - "props.style.classes": { - "binding": { - "config": { - "expression": "{parent.custom.ref_state}" - }, - "overlayOptOut": true, - "transforms": [ - { - "fallback": "EmergencyStop-Styles/EstopDeactivated", - "inputType": "scalar", - "mappings": [ - { - "input": 1, - "output": "State-Styles/State1" - }, - { - "input": 2, - "output": "State-Styles/State2" - }, - { - "input": 3, - "output": "State-Styles/State3" - }, - { - "input": 4, - "output": "State-Styles/State4" - }, - { - "input": 5, - "output": "State-Styles/State5" - }, - { - "input": 101, - "output": "State-Styles/State101" - }, - { - "input": 102, - "output": "State-Styles/State102" - }, - { - "input": 103, - "output": "State-Styles/State103" - }, - { - "input": 104, - "output": "State-Styles/State104" - }, - { - "input": 105, - "output": "State-Styles/State105" - } - ], - "outputType": "style-list", - "type": "map" - } - ], - "type": "expr" - } - } - }, - "props": { - "path": "material/location_on" - }, - "type": "ia.display.icon" - } - ], - "events": { - "dom": { - "onDoubleClick": { - "config": { - "script": "\ttagProps \u003d self.view.params.tagProps\n\tsystem.perspective.openPopup(\"DevicePopUP\", \"PopUp-Views/Device/Information-Device\", params \u003d{\"tagProps\":tagProps},resizable \u003d 1)\n\tsystem.perspective.print(tagProps)" - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "root" - }, - "propConfig": { - "custom.alarmId": { - "binding": { - "config": { - "path": "session.custom.deviceSearchId" - }, - "type": "property" - } - }, - "custom.bit_position": { - "binding": { - "config": { - "path": "view.params.tagProps[1]" - }, - "type": "property" - } - }, - "custom.bit_value": { - "binding": { - "config": { - "fallbackDelay": 2.5, - "mode": "indirect", - "references": { - "0": "{view.params.tagProps[0]}" - }, - "tagPath": "{0}" - }, - "type": "tag" - } - }, - "custom.covert_mode": { - "binding": { - "config": { - "path": "session.custom.covert" - }, - "type": "property" - } - }, - "custom.isMatch": { - "binding": { - "config": { - "expression": "if({this.custom.alarmId} \u003d {this.custom.search_path},1,0)" - }, - "type": "expr" - }, - "onChange": { - "enabled": null, - "script": "\tif currentValue.value \u003d\u003d 1:\n\t\tself.session.custom.searchId \u003d \"\"" - } - }, - "custom.priority": { - "binding": { - "config": { - "expression": "{view.params.tagProps[0]}" - }, - "transforms": [ - { - "code": "\tif \"AlarmCritical\" in value:\n\t\treturn 1\n\telif \"AlarmHigh\" in value:\n\t\treturn 1\n\telif \"AlarmMedium\" in value:\n\t\treturn 2\n\telif \"AlarmLow\" in value:\n\t\treturn 3\n\telif \"AlarmInfo\" in value:\n\t\treturn 4\n\telse:\n\t\treturn 5", - "type": "script" - } - ], - "type": "expr" - } - }, - "custom.ref_state": { - "binding": { - "config": { - "expression": "if({this.custom.state}\u003d1 \u0026\u0026 {this.custom.isMatch} \u003d 1,{this.custom.priority}+100,\nif({this.custom.state}\u003d1 \u0026\u0026 {this.custom.isMatch} \u003d 0,{this.custom.priority},\nif({this.custom.state}\u003d0 \u0026\u0026 {this.custom.isMatch} \u003d 1,{this.custom.priority}+100,5)))\n\n" - }, - "type": "expr" - } - }, - "custom.search_path": { - "binding": { - "config": { - "expression": "{view.params.tagProps[0]}+\"/\"+{view.params.tagProps[1]}" - }, - "type": "expr" - } - }, - "custom.state": { - "binding": { - "config": { - "expression": "getBit({this.custom.bit_value},{this.custom.bit_position})" - }, - "type": "expr" - } - } - }, - "props": { - "direction": "column" - }, - "type": "ia.container.flex" - } -} \ No newline at end of file diff --git a/.resources/903530ae489ebea6761bebb12b9ea824a40af797a8445c1e9ecc0b27e706e06c b/.resources/903530ae489ebea6761bebb12b9ea824a40af797a8445c1e9ecc0b27e706e06c deleted file mode 100644 index 946df883..00000000 --- a/.resources/903530ae489ebea6761bebb12b9ea824a40af797a8445c1e9ecc0b27e706e06c +++ /dev/null @@ -1,68 +0,0 @@ -{ - "custom": {}, - "params": { - "stylePath": "value", - "text": "value" - }, - "propConfig": { - "params.stylePath": { - "paramDirection": "input", - "persistent": true - }, - "params.text": { - "paramDirection": "input", - "persistent": true - } - }, - "props": { - "defaultSize": { - "height": 30, - "width": 210 - } - }, - "root": { - "children": [ - { - "meta": { - "name": "Label" - }, - "position": { - "basis": "209px" - }, - "propConfig": { - "props.style.classes": { - "binding": { - "config": { - "expression": "{view.params.stylePath}" - }, - "type": "expr" - } - }, - "props.text": { - "binding": { - "config": { - "expression": "{view.params.text}" - }, - "type": "expr" - } - } - }, - "props": { - "style": {} - }, - "type": "ia.display.label" - } - ], - "meta": { - "name": "root" - }, - "props": { - "alignItems": "center", - "justify": "center", - "style": { - "overflow": "hidden" - } - }, - "type": "ia.container.flex" - } -} \ No newline at end of file diff --git a/.resources/94cec8ae5398ec0042bb93b2a1149d58c062bfce137b4a7a0e2572a9104ac0c2 b/.resources/94cec8ae5398ec0042bb93b2a1149d58c062bfce137b4a7a0e2572a9104ac0c2 deleted file mode 100644 index 6331de9a..00000000 --- a/.resources/94cec8ae5398ec0042bb93b2a1149d58c062bfce137b4a7a0e2572a9104ac0c2 +++ /dev/null @@ -1,627 +0,0 @@ -{ - "custom": { - "FillColour": "value", - "alarm_message": null, - "covert_mode": true, - "disconnected": false, - "display_icon": true, - "error": false, - "isMatch": 0, - "plc": "value", - "priority": 0, - "priority_string": "No active alarms", - "running": false, - "running_status": 0, - "searchId": "value", - "show_error": false, - "show_running": true, - "state": 5, - "state_string": "Unknown" - }, - "params": { - "forceFaultStatus": null, - "forceRunningStatus": null, - "tagProps": [ - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value" - ] - }, - "propConfig": { - "custom.FillColour": { - "persistent": true - }, - "custom.alarm_message": { - "persistent": true - }, - "custom.covert_mode": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case(\t{value},\r\n\t\t0, {session.custom.alarm_filter.show_running},\r\n\t\t1, True,\r\n\t\t2, True,\r\n\t\t3, {session.custom.alarm_filter.show_low_alarm} || {session.custom.alarm_filter.show_running},\r\n\t\t4, {session.custom.alarm_filter.show_diagnostic} || {session.custom.alarm_filter.show_running},\r\n\t\t5, {session.custom.alarm_filter.show_running},\r\n\t\tFalse)", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.disconnected": { - "binding": { - "config": { - "fallbackDelay": 2.5, - "mode": "indirect", - "references": { - "fc": "{session.custom.fc}", - "plc": "{view.custom.plc}" - }, - "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{plc}/DCN" - }, - "transforms": [ - { - "expression": "if(isNull({value}), False, {value})", - "type": "expression" - } - ], - "type": "tag" - }, - "persistent": true - }, - "custom.display_icon": { - "binding": { - "config": { - "expression": "{this.custom.covert_mode}//||{this.custom.isMatch}\u003e0" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.error": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "0 \u003c {value} \u0026\u0026 {value} \u003c 5", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.isMatch": { - "binding": { - "config": { - "expression": "if({view.params.tagProps[0]}\u003d\"value\",0,\nif({this.custom.searchId}\u003d{view.params.tagProps[0]},100,0))\n" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.plc": { - "binding": { - "config": { - "path": "view.params.tagProps[0]" - }, - "transforms": [ - { - "expression": "split({value}, \"/\")[0]", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.priority": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "fallback": 0, - "inputType": "scalar", - "mappings": [ - { - "input": 1, - "output": 4 - }, - { - "input": 2, - "output": 3 - }, - { - "input": 3, - "output": 2 - }, - { - "input": 4, - "output": 1 - } - ], - "outputType": "scalar", - "type": "map" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.priority_string": { - "binding": { - "config": { - "expression": "case({view.custom.state},\r\n1, \"High\",\r\n2, \"Medium\",\r\n3, \"Low\",\r\n4, \"Diagnostic\",\r\n5, \"No active alarms\",\r\n\"Unknown\")" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.running": { - "binding": { - "config": { - "expression": "{view.custom.running_status} \u003d 3" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.running_status": { - "binding": { - "config": { - "fallbackDelay": 2.5, - "mode": "indirect", - "references": { - "0": "{view.params.tagProps[0]}", - "fc": "{session.custom.fc}" - }, - "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/STATE" - }, - "transforms": [ - { - "expression": "coalesce({value},{view.params.forceRunningStatus},0)", - "type": "expression" - } - ], - "type": "tag" - }, - "persistent": true - }, - "custom.searchId": { - "binding": { - "config": { - "path": "session.custom.searchId" - }, - "type": "property" - }, - "persistent": true - }, - "custom.show_error": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case(\t{value},\r\n\t\t1, True,\r\n\t\t2, True,\r\n\t\t3, {session.custom.alarm_filter.show_low_alarm},\r\n\t\t4, {session.custom.alarm_filter.show_diagnostic},\r\n\t\tFalse)", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.show_running": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case(\t{value},\r\n\t\t1, False,\r\n\t\t2, False,\r\n\t\t{session.custom.alarm_filter.show_running}\r\n\t\t)", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.state": { - "binding": { - "config": { - "fallbackDelay": 2.5, - "mode": "indirect", - "references": { - "0": "{view.params.tagProps[0]}", - "fc": "{session.custom.fc}" - }, - "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/ALARMST" - }, - "transforms": [ - { - "expression": "coalesce({value},{view.params.forceFaultStatus},0)", - "type": "expression" - }, - { - "fallback": null, - "inputType": "scalar", - "mappings": [ - { - "input": 4, - "output": 1 - }, - { - "input": 3, - "output": 2 - }, - { - "input": 2, - "output": 3 - }, - { - "input": 1, - "output": 4 - }, - { - "input": 0, - "output": 5 - } - ], - "outputType": "scalar", - "type": "map" - } - ], - "type": "tag" - }, - "persistent": true - }, - "custom.state_string": { - "binding": { - "config": { - "expression": "case({view.custom.running_status},\r\n1, \"Faulted\",\r\n2, \"Stopped\",\r\n3, \"Running\",\r\n\"Unknown\")" - }, - "type": "expr" - }, - "persistent": true - }, - "params.forceFaultStatus": { - "paramDirection": "input", - "persistent": true - }, - "params.forceRunningStatus": { - "paramDirection": "input", - "persistent": true - }, - "params.tagProps": { - "paramDirection": "inout", - "persistent": true - } - }, - "props": { - "defaultSize": { - "height": 100, - "width": 100 - } - }, - "root": { - "children": [ - { - "meta": { - "name": "Goods_Lift" - }, - "position": { - "height": 1, - "width": 1 - }, - "propConfig": { - "props.elements[1].elements[0].elements[0].fill.paint": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case({value},\r\n0,{session.custom.colours.state0},\r\n1,{session.custom.colours.state1},\r\n2,{session.custom.colours.state2},\r\n3,{session.custom.colours.state3},\r\n4,{session.custom.colours.state4},\r\n5,if({view.custom.running},{session.custom.colours.state5},{session.custom.colours.state0}),\r\n6,{session.custom.colours.state6},\r\n{session.custom.colours.fallback}\r\n)", - "type": "expression" - }, - { - "expression": "if({view.custom.display_icon}\u0026\u0026 {view.custom.isMatch}\u003d0,{value},{value}+\u002700\u0027)", - "type": "expression" - } - ], - "type": "property" - } - }, - "props.style.classes": { - "binding": { - "config": { - "expression": "if({session.custom.colours.colour_impaired} \u003d True \u0026\u0026 {view.custom.isMatch} \u003e 0,\r\n{view.custom.state} + 100 + {view.custom.isMatch},\r\n{view.custom.state} + {view.custom.isMatch})" - }, - "transforms": [ - { - "fallback": "", - "inputType": "scalar", - "mappings": [ - { - "input": 101, - "output": "State-Styles/State101" - }, - { - "input": 102, - "output": "State-Styles/State102" - }, - { - "input": 103, - "output": "State-Styles/State103" - }, - { - "input": 104, - "output": "State-Styles/State104" - }, - { - "input": 105, - "output": "State-Styles/State105" - }, - { - "input": 106, - "output": "State-Styles/State106" - }, - { - "input": 201, - "output": "State-Styles/State201" - }, - { - "input": 202, - "output": "State-Styles/State202" - }, - { - "input": 203, - "output": "State-Styles/State203" - }, - { - "input": 204, - "output": "State-Styles/State204" - }, - { - "input": 205, - "output": "State-Styles/State205" - } - ], - "outputType": "style-list", - "type": "map" - } - ], - "type": "expr" - } - } - }, - "props": { - "elements": [ - { - "id": "defs2", - "name": "defs2", - "type": "defs" - }, - { - "elements": [ - { - "elements": [ - { - "cx": "69.035934", - "cy": "129.08073", - "fill": {}, - "id": "path509", - "name": "path509", - "rx": "9.5693493", - "ry": "9.4979048", - "stroke": { - "dasharray": "none", - "linejoin": "round", - "paint": "#000000", - "width": 0.5 - }, - "style": { - "paintOrder": "stroke fill markers" - }, - "type": "ellipse" - }, - { - "d": "m 67.713019,128.18115 1.322917,-0.66146 1.322917,0.66146 v -3.06917 h -2.645834 z m -1.322916,3.54542 v -1.05833 h 2.645833 v 1.05833 z m -1.322918,2.11667 q -0.3175,0 -0.555625,-0.23812 -0.238125,-0.23813 -0.238125,-0.55563 v -7.93751 q 0,-0.3175 0.238125,-0.55562 0.238125,-0.23813 0.555625,-0.23813 h 7.937499 q 0.3175,0 0.55563,0.23813 0.23812,0.23812 0.23812,0.55562 v 7.93751 q 0,0.3175 -0.23812,0.55563 -0.23813,0.23812 -0.55563,0.23812 z m 0,-8.73126 v 7.93751 z m 0,7.93751 h 7.937499 v -7.93751 h -1.852081 v 4.3524 l -2.116667,-1.05834 -2.116666,1.05834 v -4.3524 h -1.852085 z", - "id": "path132", - "name": "path132", - "stroke": { - "dasharray": "none", - "width": 0 - }, - "type": "path" - }, - { - "d": "m 66.429788,123.74768 -0.568854,-0.56885 3.175,-3.175 3.175,3.16177 -0.568855,0.56885 -2.606145,-2.60614 z", - "id": "path2154", - "name": "path2154", - "stroke": { - "width": 0.264583 - }, - "type": "path" - }, - { - "d": "m 71.642074,134.41379 0.56886,0.56885 -3.175,3.175 -3.175,-3.16177 0.56885,-0.56885 2.60615,2.60614 z", - "id": "path2154-5", - "name": "path2154-5", - "stroke": { - "width": 0.264583 - }, - "type": "path" - } - ], - "id": "g2552", - "name": "g2552", - "type": "group" - } - ], - "id": "layer1", - "name": "layer1", - "transform": "translate(-58.814035,-118.93028)", - "type": "group" - } - ], - "style": {}, - "viewBox": "0 0 20.443798 20.300909" - }, - "type": "ia.shapes.svg" - } - ], - "events": { - "dom": { - "onClick": { - "config": { - "script": "\tsystem.perspective.openDock(\u0027Docked-East\u0027,params\u003d{\u0027tagProps\u0027:self.view.params.tagProps})" - }, - "scope": "G", - "type": "script" - }, - "onDoubleClick": { - "config": { - "script": "\ttagProps \u003d self.view.params.tagProps\n\tsystem.perspective.openPopup(\"StatusPopUP\", \"PopUp-Views/Controller-Equipment/Information\", params \u003d{\"tagProps\":tagProps})\n\t" - }, - "enabled": false, - "scope": "G", - "type": "script" - }, - "onMouseEnter": { - "config": { - "script": "\tfrom time import sleep\n\t\n\talarm \u003d []\n\tmessage \u003d None\n\t\n\tsleep(0.5)\n\t\n\tif system.tag.exists(\"System/aws_data\"):\n\t\tif self.view.params.tagProps[0] !\u003d \"\":\n\t\t\ttags_to_read \u003d system.tag.readBlocking(\"System/aws_data\")\n\t\t\tdecode_alarm_data \u003d system.util.jsonDecode(tags_to_read[0].value)\n\t\t\talarm \u003d [decode_alarm_data[i] for i in decode_alarm_data\n\t\t\t\t\tif decode_alarm_data[i][\u0027sourceId\u0027].startswith(self.view.params.tagProps[0])]\n\t\tif alarm:\n\t\t\talarm \u003d sorted(alarm, key \u003d lambda t:t[\u0027timestamp\u0027], reverse\u003dTrue)\n\t\t\tmessage \u003d max(alarm, key \u003d lambda p:p[\u0027priority\u0027]).get(\u0027message\u0027)\n\t\t\tif len(alarm) \u003e 1:\n\t\t\t\tmessage +\u003d \" (+\" + str(len(alarm)-1) + \")\"\n\tself.view.custom.alarm_message \u003d message" - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "root", - "tooltip": { - "enabled": true, - "location": "top-left", - "style": {} - } - }, - "propConfig": { - "meta.tooltip.style.backgroundColor": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case({value},\r\n0,{session.custom.colours.state0},\r\n1,{session.custom.colours.state1},\r\n2,{session.custom.colours.state2},\r\n3,{session.custom.colours.state3},\r\n4,{session.custom.colours.state4},\r\n5,{session.custom.colours.state5},\r\n6,{session.custom.colours.state6},\r\n{session.custom.colours.fallback}\r\n)", - "type": "expression" - } - ], - "type": "property" - } - }, - "meta.tooltip.style.classes": { - "binding": { - "config": { - "expression": "{view.custom.priority}" - }, - "transforms": [ - { - "fallback": "Alarms-Styles/NoAlarm", - "inputType": "scalar", - "mappings": [ - { - "input": 1, - "output": "Alarms-Styles/Diagnostic" - }, - { - "input": 2, - "output": "Alarms-Styles/Low" - }, - { - "input": 3, - "output": "Alarms-Styles/Medium" - }, - { - "input": 4, - "output": "Alarms-Styles/High" - } - ], - "outputType": "style-list", - "type": "map" - } - ], - "type": "expr" - } - }, - "meta.tooltip.style.color": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "if({session.custom.colours.colour_impaired},\r\n\t\u0027#000000\u0027,\r\n\tcase(\t{value},\r\n\t\t\t1,\u0027#FFFFFF\u0027,\r\n\t\t\t2,\u0027#000000\u0027,\r\n\t\t\t3,\u0027#000000\u0027,\r\n\t\t\t4,\u0027#FFFFFF\u0027,\r\n\t\t\t5,\u0027#FFFFFF\u0027,\r\n\t\t\t\u0027#000000\u0027)\r\n\t)", - "type": "expression" - } - ], - "type": "property" - } - }, - "meta.tooltip.text": { - "binding": { - "config": { - "expression": "if({view.custom.disconnected} \u003d False,\n\tif(isNull({view.custom.alarm_message}),\n\t\"Source Id: \" + {view.params.tagProps[0]} +\n\t\", Priority: \" + {view.custom.priority_string} +\n\t\", State: \" + {view.custom.state_string},\n\t\"Source Id: \" + {view.params.tagProps[0]} +\n\t\", Alarm: \" + {view.custom.alarm_message} +\n\t\", Priority: \" + {view.custom.priority_string} +\n\t\", State: \" + {view.custom.state_string}),\n\"Source Id: \" +{view.params.tagProps[0]} + \", Priority: Unknown, State: Unknown\")" - }, - "type": "expr" - } - }, - "props.style.classes": { - "binding": { - "config": { - "path": "view.custom.disconnected" - }, - "transforms": [ - { - "fallback": "Disconnects/Device-Connected", - "inputType": "scalar", - "mappings": [ - { - "input": true, - "output": "Disconnects/Device-Disconnected" - }, - { - "input": false, - "output": "Disconnects/Device-Connected" - } - ], - "outputType": "style-list", - "type": "map" - } - ], - "type": "property" - } - } - }, - "props": { - "aspectRatio": "1:1", - "mode": "percent", - "style": { - "cursor": "pointer" - } - }, - "type": "ia.container.coord" - } -} \ No newline at end of file diff --git a/.resources/959623a68e9df96fa0dfbc84814a058e21ce2d4e8b1cf64cb4dc16f0db134f7c b/.resources/9669fcacacbfb6dc65cffbdc9c939816941f532038b041286c99b343446166b7 similarity index 93% rename from .resources/959623a68e9df96fa0dfbc84814a058e21ce2d4e8b1cf64cb4dc16f0db134f7c rename to .resources/9669fcacacbfb6dc65cffbdc9c939816941f532038b041286c99b343446166b7 index ed84ea51..2fcf6767 100644 --- a/.resources/959623a68e9df96fa0dfbc84814a058e21ce2d4e8b1cf64cb4dc16f0db134f7c +++ b/.resources/9669fcacacbfb6dc65cffbdc9c939816941f532038b041286c99b343446166b7 @@ -1,20 +1,20 @@ { "custom": { - "PLCs": "{ \"MCM07 Bypass\": [ \"MCM07\" ], \t\"MCM06 Non Con\": [ \"MCM06\" ],\t \t\"MCM05 South Bulk Inbound, Fluid Outbound and Problem Solve\": [ \"MCM05\" ],\t \t\"MCM04 North Bulk Inbound, Fluid Outbound and Problem Solve\": [ \"MCM04\" ], \t\"MCM03 Non Con\": [ \"MCM03\" ], \t\"MCM02 Fluid Inbound Merges 5-7\": [ \"MCM02\" ], \t\"MCM01 Fluid Inbound Merges 1-4\": [ \"MCM01\" ]}", + "PLCs": "{ \"MCM05 Sorter Destination and Chutes\": [ \"MCM05\" ], \"MCM04 Sorter Destination, Chutes and Bypass\": [ \"MCM04\" ], \"MCM03 Fluid Inbound\": [ \"MCM03\" ], \"MCM02 Fluid Inbound\": [ \"MCM02\" ], \"MCM01 Bulk Inbound\": [ \"MCM01\" ] }", "activityLogger": { "alt_pageid": "command_control", "start_time": { "$": [ "ts", 192, - 1751987721218 + 1756710337161 ], - "$ts": 1751987721218 + "$ts": 1756710337161 } }, "devices": { "MCM01": { - "area": "Fluid Inbound Merges 1-4", + "area": "Bulk Inbound", "name": "MCM01", "tagProps": [ "MCM01", @@ -30,7 +30,7 @@ ] }, "MCM02": { - "area": "Fluid Inbound Merges 5-7", + "area": "Fluid Inbound", "name": "MCM02", "tagProps": [ "MCM02", @@ -46,7 +46,7 @@ ] }, "MCM03": { - "area": "Non Con Merge", + "area": "Fluid Inbound", "name": "MCM03", "tagProps": [ "MCM03", @@ -62,7 +62,7 @@ ] }, "MCM04": { - "area": "South Bulk Inbound, Fluid Outbound and Problem Solve", + "area": "Sorter Destination, Chutes and Bypass", "name": "MCM04", "tagProps": [ "MCM04", @@ -78,7 +78,7 @@ ] }, "MCM05": { - "area": "North Bulk Inbound, Fluid Outbound and Problem Solve", + "area": "Sorter Destination and Chutes", "name": "MCM05", "tagProps": [ "MCM05", @@ -92,38 +92,6 @@ "value", "value" ] - }, - "MCM06": { - "area": "Non Con Sorters", - "name": "MCM06", - "tagProps": [ - "MCM06", - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value" - ] - }, - "MCM07": { - "area": "Bypass", - "name": "MCM07", - "tagProps": [ - "MCM07", - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value" - ] } } }, diff --git a/.resources/96a658ff5cbc8f6a2c1764263247a33cf8d211da04aacdd1fadbebadd2b19546 b/.resources/96a658ff5cbc8f6a2c1764263247a33cf8d211da04aacdd1fadbebadd2b19546 new file mode 100644 index 00000000..ae801a3a --- /dev/null +++ b/.resources/96a658ff5cbc8f6a2c1764263247a33cf8d211da04aacdd1fadbebadd2b19546 @@ -0,0 +1,1052 @@ +{ + "custom": {}, + "params": { + "tagProps": [ + "TAG0", + "TAG1", + "TAG2", + "TAG3", + "TAG4", + "TAG5", + "TAG6", + "TAG7", + "TAG8", + "TAG9", + "TAG10", + "TAG11", + "TAG12", + "TAG13" + ] + }, + "props": { + "defaultSize": { + "height": 1080, + "width": 1920 + } + }, + "root": { + "children": [ + { + "meta": { + "name": "DPM" + }, + "position": { + "height": 1, + "width": 1 + }, + "propConfig": { + "props.params.con_lines[0]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[0]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[10]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[10]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[11]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[11]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[12]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[12]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[13]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[13]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[1]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[1]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[2]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[2]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[3]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[3]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[4]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[4]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[5]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[5]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[6]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[6]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[7]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[7]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[8]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[8]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[9]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[9]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + } + }, + "props": { + "params": { + "con_lines": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "con_lines_visible": [ + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "in": false, + "out": false + }, + "path": "Windows/Tabs/Enternet Windows/Components/DPM_TO_HUB" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC1_1_TIPPER" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0232, + "y": 0.4991 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC1_1_TIPPER_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.0094, + "y": 0.5394 + }, + "props": { + "text": "ULC1_1_TIPPER 11.200.1.30", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "ULC1_3" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.023, + "y": 0.6677 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC1_3_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.0068, + "y": 0.7315 + }, + "props": { + "text": "ULC1_3_VFD1 11.200.1.31", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "ULC1_4" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0216, + "y": 0.8333 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC1_4_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.0068, + "y": 0.8981 + }, + "props": { + "text": "ULC1_4_VFD1 11.200.1.32", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "ULC1_5" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0229, + "y": 0.3333 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC1_5_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.0068, + "y": 0.3986 + }, + "props": { + "text": "ULC1_5_VFD1 11.200.1.33", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "ULC1_6" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0229, + "y": 0.1667 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC1_6_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.0068, + "y": 0.2324 + }, + "props": { + "text": "ULC1_6_VFD1 11.200.1.34", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "ULC1_7" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0244 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC1_7_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.0068, + "y": 0.0653 + }, + "props": { + "text": "ULC1_7_VFD1 11.200.1.35", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "ULC1_8" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.5 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC1_8_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.5117, + "y": 0.1662 + }, + "props": { + "text": "ULC1_8_VFD1 11.200.1.36", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "ULC1_9A" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.625 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC1_9A_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.6312, + "y": 0.1664 + }, + "props": { + "text": "ULC1_9A_VFD1 11.200.1.37", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "ULC1_9B" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.75 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC1_9B_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.75, + "y": 0.1664 + }, + "props": { + "text": "ULC1_9B_VFD1 11.200.1.38", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "ULC1_10" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.375 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC1_10_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.3864, + "y": 0.1664 + }, + "props": { + "text": "ULC1_10_VFD1 11.200.1.39", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "ULC1_11" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.2516, + "y": 0.0019 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC1_11_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.315, + "y": 0.1682 + }, + "props": { + "text": "ULC1_11_VFD1 11.200.1.40", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "ULC1_12" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.1245 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC1_12_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.2072, + "y": 0.1646 + }, + "props": { + "text": "ULC1_12_VFD1 11.200.1.41", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "ULC1_4_FIO" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.8389, + "y": 0.3332 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/FIO_SIO" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC1_4_FIO_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.9349999999999999, + "y": 0.3943 + }, + "props": { + "text": "ULC1_4_FIO 11.200.1.42", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "ULC1_3_PLC" + }, + "position": { + "height": 0.1667, + "width": 0.037, + "x": 0.8818, + "y": 0.1658 + }, + "props": { + "params": { + "MCM": "MCM01" + }, + "path": "Windows/Tabs/Enternet Windows/Components/PLC" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC1_3_PLC_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.9349999999999999, + "y": 0.2276 + }, + "props": { + "text": "ULC1_3_PLC 11.200.1.43", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "DPM_label" + }, + "position": { + "height": 0.0694, + "width": 0.101, + "x": 0.5831, + "y": 0.6342 + }, + "props": { + "text": "DPM1_ULC1_8 11.200.1.2", + "textStyle": { + "fontSize": "2vmin" + } + }, + "type": "ia.display.label" + } + ], + "meta": { + "name": "root" + }, + "position": { + "x": 0.6348, + "y": -0.1546 + }, + "props": { + "mode": "percent" + }, + "type": "ia.container.coord" + } +} \ No newline at end of file diff --git a/.resources/97586e8c8ebde3aa2d87c31b191778a022ab54509ec059cca51424cdfdfa2c31 b/.resources/97586e8c8ebde3aa2d87c31b191778a022ab54509ec059cca51424cdfdfa2c31 deleted file mode 100644 index 6c1f3dc7..00000000 Binary files a/.resources/97586e8c8ebde3aa2d87c31b191778a022ab54509ec059cca51424cdfdfa2c31 and /dev/null differ diff --git a/.resources/2d2c9881d1e4bb587c47ff83578da53b8c3d5c31bc2a2d91fbf894288b35a744 b/.resources/99c2bbd84ba419c8adfa7dc3691d549e3ecf5a354f21d30c08668073a54cfc76 similarity index 99% rename from .resources/2d2c9881d1e4bb587c47ff83578da53b8c3d5c31bc2a2d91fbf894288b35a744 rename to .resources/99c2bbd84ba419c8adfa7dc3691d549e3ecf5a354f21d30c08668073a54cfc76 index 5f70803a..d1d32192 100644 --- a/.resources/2d2c9881d1e4bb587c47ff83578da53b8c3d5c31bc2a2d91fbf894288b35a744 +++ b/.resources/99c2bbd84ba419c8adfa7dc3691d549e3ecf5a354f21d30c08668073a54cfc76 @@ -1,10 +1,10 @@ { "custom": { - "start_color": "#006400", + "start_color": "#C2C2C2", "start_priority": "No Active Alarms", - "start_state": "Normal", + "start_state": "Closed", "stop_priority": "No Active Alarms", - "stop_state": "Normal" + "stop_state": "Closed" }, "params": { "forceFaultStatus": null, diff --git a/.resources/8ec1c8fbc6b5d117579c88bb0a804bed7240e2c7b45d981cfd117c66c4dae55b b/.resources/9bf20033a2a88048f24a135c51e0bddcdfa2f0b03c5eafba0e73a83151495abd similarity index 99% rename from .resources/8ec1c8fbc6b5d117579c88bb0a804bed7240e2c7b45d981cfd117c66c4dae55b rename to .resources/9bf20033a2a88048f24a135c51e0bddcdfa2f0b03c5eafba0e73a83151495abd index cd20fdd3..96d25960 100644 --- a/.resources/8ec1c8fbc6b5d117579c88bb0a804bed7240e2c7b45d981cfd117c66c4dae55b +++ b/.resources/9bf20033a2a88048f24a135c51e0bddcdfa2f0b03c5eafba0e73a83151495abd @@ -41,7 +41,7 @@ "deviceSearchId": "", "download_url": "https://scadacloud-storage-prod-downloadbucketdc1a1095-17r7vrw051y3t.s3.amazonaws.com/history/DNG2/58b56f26-c115-41b5-badb-a3394f312630-1672826106.csv?AWSAccessKeyId\u003dASIAVDEI3U6Y3J5KB2NA\u0026Signature\u003dzucRF2nCigK4y5M%2BNbjoI06UUng%3D\u0026x-amz-security-token\u003dIQoJb3JpZ2luX2VjEKL%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaCWV1LXdlc3QtMSJIMEYCIQCy78peP6YRJ1gyf9RROmmcfk%2BRHyPhxv6ejHJgyEG0KQIhALXnJXYIyDiWzr9vxehoDIa2c7sx818gUyuiFXYY6rb2KsoDCOv%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEQABoMMzUwMzI2ODU5Njk3IgzVrdKyNsVjl%2BNjqWQqngOJCTFOLVppHMmo1otgHZCXlVISlnBz6rz6ykr8SHgGQPc0EsaL9a1I0oQmS42i%2BlRHpEpQfMdjUbP3dr2OnVKXmopkkUJZ592SPzA3MZzS95SHXMvbbPDs0OAw5mKdS6LHQAQb90ZdQdeoEj%2FG1bPEIiifVT07PhHMA0JMS7ExgXmHzq1c6W%2Fjc%2BdfQOjl41qnWcE1GH5MaVfU%2FOKW5PffN6pLf%2BJ61YjjbXqPIpPHimJSGqMI5BmFzAfSlsYAtgFT8bMyJhbUDaPlDF7X42SSYLs1CeAbddPFMvrhDIUk%2BYTA3oV69SMjX91LrKBNqRhFS%2F0R4U8nbA4rSd%2BhMkdr5RSwa9Q22ZQpbzuqQU1H%2B4oQy6419lQg3lkBF5SBNGdvQajD6mav2ipHYe7OkX5GKq2pNzBLzJsqGGnsJvISB83ShA6SnuiZFx%2F2LXvDtEu3jTCS4yRjDegxiKRBs%2FiwH0dN2ztb8a3vnSJN0EqaoORf2eVb%2BozzAv1EBaqnUEZZAoOKb8iaxpbZtqLaUNOOd7VsHsUPoBQRkKqH2RAw95nVnQY6nQFAgIr2YAjgyrsuAfVgr2b41jc3Dj83zJ6I9LI%2BglDMgQFyfL0RNPmoxEu3DDfq5yLy8MtiPlYcs71J3J8Z%2B7xIkH%2BIPWKwmKLsvaEtN7Io1kOfvFgEcMhhIPRwwEj70AVokPncUQ8HtKQhXnq7l1YZ4yyAw2poT%2Ff%2FgJwv7suOu2dZeh%2BH%2B9OwE4M%2BRmVoFO7tTWIakPgODw2ZFzqs\u0026Expires\u003d1672829705", "enable_activity_logging": false, - "fc": "", + "fc": "SAT9", "id_to_state": "{\"PLC01/0820_06_09\":1,\"PLC02/0820_91_16/B4510\":1,\"PLC03/0820_82_04/B312_3\":1,\"PLC09/0120_33_01/B425_0\":1,\"PLC09/1210_03_27\":3,\"PLC02/0820_07_39_BT1\":1,\"ARSAW1501/05_10/B12_6\":3,\"PLC09/0110_13_40\":1,\"FSC10/TRZ_0850_01/CAS_0850_01_0299\":2,\"PLC02/0820_05_31/B4000_2\":1,\"PLC09/1210_03_30\":3,\"PLC09/1210_03_36\":3,\"PLC1000/1000_43_01\":1,\"PLC09/0120_35_18/B505_2\":1,\"PLC02/0820_05_20/B3804_6\":1,\"PLC01/0820_06_05\":1,\"PLC01/0820_06_07\":1,\"PLC1000/1000_22_02/B501_3\":1,\"PLC01/0820_01_41/B6103_2\":1,\"PLC1000/1000_42_04/B517_7\":1,\"PLC09/2210_08_60/B911_1\":1,\"PLC02/0820_05_06/B3702_6\":1,\"PLC09/2210_08_60/B911_5\":1,\"PLC09/0110_23_40/B304_2\":1,\"PLC09/1210_02_01/B705_0\":1,\"PLC09/1210_03_25\":3,\"PLC01/0820_01_75/B6401_6\":1,\"PLC01/0820_64_03\":1,\"PLC02/0820_07_29_BT1/TN12A\":1,\"PLC02/0820_05_03/B3701_2\":1,\"PLC01/0820_06_14\":1,\"PLC09/2210_03_45/B1007_4\":1,\"PLC01/0820_06_17\":1,\"PLC01/0820_06_18\":1,\"FSC10/OFZ_0850_31/CH_0850_31_06\":2,\"FSC10/OFZ_0850_31/CH_0850_31_07\":2,\"FSC10/OFZ_0850_31/CH_0850_31_04\":2,\"FSC10/OFZ_0850_31/CH_0850_31_05\":2,\"FSC10/OFZ_0850_31/CH_0850_31_08\":2,\"FSC10/OFZ_0850_31/CH_0850_31_09\":2,\"PLC09/1210_03_06\":3,\"PLC09/1210_03_04\":3,\"PLC02/0820_05_41/B4100_2\":1,\"FSC10/OFZ_0850_31/CH_0850_31_02\":2,\"PLC02/0820_91_08/B4318\":1,\"FSC10/OFZ_0850_31/CH_0850_31_03\":2,\"FSC10/OFZ_0850_31/CH_0850_31_01\":2,\"FSC10/TRZ_0850_01/CAS_0850_01_0148\":3,\"PLC02/0820_01_07\":1,\"PLC09/1210_03_13\":3,\"PLC09/1210_03_12\":1,\"PLC26/0513_11_02/B118_1\":3,\"PLC09/0120_52_23/B528_6\":1,\"PLC09/0120_51_01/B510_0\":1,\"ARSAW1303\":3,\"PLC09/2210_02_01\":1,\"PLC09/1210_02_30\":3,\"PLC1000/1000_42_04\":1,\"PLC09/1210_03_02\":3,\"PLC1000/1000_43_01/B525_0\":1,\"PLC26/0513_31_30/M1\":3,\"PLC01/0820_02_02/B6500_6\":1,\"FSC10/OFZ_0850_31/CH_0850_31_28\":2,\"FSC10/OFZ_0850_31/CH_0850_31_29\":2,\"FSC10/OFZ_0850_31/CH_0850_31_26\":2,\"PLC09/0110_23_40\":1,\"PLC01/0820_01_47/B6200_6\":1,\"FSC10/OFZ_0850_52/CH_0850_52_01\":2,\"FSC10/OFZ_0850_31/CH_0850_31_27\":2,\"FSC10/OFZ_0850_31/CH_0850_31_20\":2,\"FSC10/OFZ_0850_31/CH_0850_31_21\":2,\"FSC10/OFZ_0850_31/CH_0850_31_24\":2,\"FSC10/OFZ_0850_31/CH_0850_31_25\":2,\"FSC10/OFZ_0850_31/CH_0850_31_22\":2,\"FSC10/OFZ_0850_31/CH_0850_31_23\":2,\"FSC10/IFZ_0850_68/PCO_0850_68_98\":2,\"PLC09/0120_33_10\":1,\"PLC09/2210_09_60\":1,\"PLC09/0110_01_20\":1,\"FSC10/OFZ_0850_31/CH_0850_31_17\":2,\"FSC10/OFZ_0850_31/CH_0850_31_18\":2,\"FSC10/OFZ_0850_31/CH_0850_31_15\":2,\"FSC10/OFZ_0850_31/CH_0850_31_16\":2,\"FSC10/OFZ_0850_31/CH_0850_31_19\":2,\"PLC09/0120_52_08/B526_7\":1,\"FSC10/OFZ_0850_31/CH_0850_31_10\":2,\"PLC02/0820_91_14/B4422\":1,\"FSC10/OFZ_0850_31/CH_0850_31_13\":2,\"FSC10/OFZ_0850_31/CH_0850_31_14\":2,\"FSC10/OFZ_0850_31/CH_0850_31_11\":2,\"FSC10/OFZ_0850_31/CH_0850_31_12\":2,\"FSC10/TRZ_0850_01/CAS_0850_01_0147\":3,\"PLC01/0820_06_05/B6902_2\":1,\"FSC10/OFZ_0850_51/CH_0850_51_50\":2,\"PLC09/0120_33_01\":1,\"PLC09/1210_03_60\":3,\"FSC10/OFZ_0850_31/CH_0850_31_48\":2,\"FSC10/OFZ_0850_31/CH_0850_31_49\":2,\"PLC01/0820_02_04/B6501_6\":1,\"FSC10/OFZ_0850_31/CH_0850_31_42\":2,\"PLC02/0820_07_09_BT1\":1,\"FSC10/OFZ_0850_51/CH_0850_51_43\":2,\"PLC01/0820_03_18/B6802_6\":1,\"FSC10/OFZ_0850_31/CH_0850_31_43\":2,\"PLC09/1210_03_48\":3,\"FSC10/OFZ_0850_31/CH_0850_31_40\":2,\"FSC10/OFZ_0850_51/CH_0850_51_41\":2,\"FSC10/OFZ_0850_31/CH_0850_31_41\":2,\"PLC02/0820_91_18/B4518\":1,\"FSC10/OFZ_0850_31/CH_0850_31_46\":2,\"FSC10/OFZ_0850_31/CH_0850_31_47\":2,\"FSC10/OFZ_0850_51/CH_0850_51_44\":2,\"FSC10/OFZ_0850_31/CH_0850_31_44\":2,\"FSC10/OFZ_0850_31/CH_0850_31_45\":2,\"PLC01/0820_55_03/B420_1\":1,\"FSC10/OFZ_0850_31/CH_0850_31_39\":2,\"FSC10/OFZ_0850_31/CH_0850_31_37\":2,\"FSC10/OFZ_0850_31/CH_0850_31_38\":2,\"PLC09/1210_03_39\":3,\"FSC10/OFZ_0850_31/CH_0850_31_31\":2,\"FSC10/OFZ_0850_31/CH_0850_31_32\":2,\"PLC09/0120_32_02\":1,\"FSC10/OFZ_0850_31/CH_0850_31_30\":2,\"PLC09/0120_35_10/B504_1\":1,\"FSC10/OFZ_0850_31/CH_0850_31_35\":2,\"PLC09/2210_02_01/B905_0\":1,\"PLC09/0110_23_40/B305_1\":1,\"ARSAW1501\":3,\"PLC09/0110_23_40/B305_0\":1,\"FSC10/OFZ_0850_31/CH_0850_31_36\":2,\"FSC10/OFZ_0850_31/CH_0850_31_33\":2,\"PLC09/0110_23_40/B305_2\":1,\"FSC10/OFZ_0850_31/CH_0850_31_34\":2,\"PLC09/1210_03_42\":3,\"PLC01/0820_06_07/B6903_2\":1,\"PLC26/0513_11_02\":3,\"PLC09/1210_03_45\":3,\"PLC09/0120_32_11\":1,\"ARSAW1303/05_22\":3,\"PLC09/0110_01_20/B102_3\":1,\"PLC09/0110_01_20/B102_2\":1,\"PLC09/2210_03_45\":1,\"PLC01/0820_01_73/B6400_6\":1,\"PLC02/0820_07_49_BT1\":1,\"PLC80/0632_05_40/B113_3\":1,\"PLC80/0632_05_40/B113_4\":1,\"PLC26/S01/A902\":4,\"PLC80/0632_05_40/B113_5\":1,\"PLC26/S01/A901\":4,\"PLC26/0513_31_23\":3,\"PLC09/0120_43_01\":1,\"PLC80/0632_05_40/B113_2\":1,\"PLC80/0632_01_07/B103_6\":1,\"PLC14/0580_01_01\":3,\"PLC09/0120_51_08/B510_7\":1,\"PLC09/0120_41_20/B521_3\":1,\"PLC26/0513_31_19\":3,\"PLC01/0820_02_05/B6502_2\":1,\"PLC02/0820_07_29_BT1\":1,\"PLC02/0820_91_12/B4414\":1,\"PLC82/0640_21_02/BT1\":1,\"PLC01/0820_02_01/B6500_2\":1,\"FSC10/OFZ_0850_53/CH_0850_53_02\":2,\"PLC81/0631_05_40/B113_5\":1,\"PLC02/0820_91_13/B4418\":1,\"PLC09/1210_02_30/M1\":3,\"PLC81/0631_05_40/B113_4\":1,\"PLC81/0631_05_40/B113_3\":1,\"FSC10/OFZ_0850_55/CH_0850_55_04\":2,\"PLC1000/1000_22_02\":1,\"PLC69/0330_07_20/B118_4\":1,\"FSC10/OFZ_0850_55/CH_0850_55_02\":2,\"FSC10/OFZ_0850_55/CH_0850_55_03\":2,\"PLC69/0330_07_20/B118_3\":1,\"PLC16/0580_21_01\":3,\"PLC01/0820_01_43/B6104_2\":1,\"PLC1000/1000_33_12\":1,\"PLC01/0820_55_03\":1,\"PLC27/0514_04_20/B106_5\":1,\"PLC09/2210_04_22\":1,\"PLC02/0820_05_14/B3801_6\":1,\"PLC26/0513_31_30\":3,\"PLC26/0513_32_01\":3,\"PLC09/1210_03_27/B805_2\":3,\"PLC02/0820_05_24/B3901_6\":1,\"PLC09/1210_03_04/B802_3\":3,\"PLC82/0640_21_03\":1,\"PLC82/0640_21_04\":1,\"PLC82/0640_21_01\":1,\"PLC26/0513_31_23/B320_6\":3,\"PLC82/0640_21_02\":1,\"FSC10/OFZ_0850_53/CH_0850_53_20\":2,\"FSC10/TRZ_0850_01/CAS_0850_01_1180\":3,\"PLC02/0820_91_06/B4310\":1,\"PLC09/0110_21_20\":1,\"PLC1000/1000_33_01\":1,\"FSC10/OFZ_0850_53/CH_0850_53_29\":2,\"FSC10/OFZ_0850_53/CH_0850_53_26\":2,\"PLC01/0820_01_71/B6306_6\":1,\"PLC09/0120_35_26/B506_2\":1,\"PLC09/0120_51_01\":1,\"PLC09/0120_51_08\":1,\"PLC09/0120_41_14/B520_5\":1,\"PLC09/0120_41_20\":1,\"PLC09/0120_32_11/B423_2\":1,\"PLC82/0640_21_01/BT1\":1,\"PLC09/1210_09_60/M1\":3,\"PLC80/0632_05_40\":1,\"PLC09/0120_41_14\":1,\"FSC10\":4,\"PLC01/0820_57_03\":1,\"PLC02/0820_05_02/B3700_6\":1,\"PLC09/0120_51_15\":1,\"PLC02/0820_91_51/B5210\":1,\"PLC27/0514_04_20\":1,\"PLC09/1210_03_45/B807_4\":3,\"PLC09/1210_03_39/B806_6\":3,\"PLC01/0820_57_03/B421_1\":1,\"PLC09/0120_41_08\":1,\"PLC02/0820_91_52/B5214\":1,\"PLC09/0120_51_23\":1,\"PLC09/2210_03_12\":1,\"FSC10/TRZ_0850_01/CAS_0850_01_1174\":3,\"PLC09/0120_52_15/B527_6\":1,\"PLC01/0820_01_77/B6402_6\":1,\"PLC01/0820_06_18/B7003_6\":1,\"PLC02/0820_91_02/B4214\":1,\"FSC10/OFZ_0850_33/CH_0850_33_21\":2,\"PLC26/0513_31_19/B320_2\":3,\"FSC10/OFZ_0850_33/CH_0850_33_25\":2,\"PLC09/0120_52_01\":1,\"PLC02/0820_91_53/B5218\":1,\"FSC10/OFZ_0850_75\":2,\"FSC10/OFZ_0850_73\":2,\"PLC09/0120_52_08\":1,\"PLC01/0820_02_03/B6501_2\":1,\"PLC09/2210_07_01\":1,\"FSC10/OFZ_0850_54/CH_0850_54_08\":2,\"PLC01/0820_06_14/B7001_6\":1,\"FSC10/OFZ_0850_54/CH_0850_54_06\":2,\"FSC10/OFZ_0850_54/CH_0850_54_03\":2,\"PLC82/0640_21_04/BT1\":1,\"FSC10/MAZ_0850_98/CCO_0850_98_98\":3,\"PLC09/0120_52_15\":1,\"PLC02/0820_07_19_BT1/TN8A\":1,\"FSC10/OFZ_0850_33/CH_0850_33_13\":2,\"PLC02/0820_04_28/B3601_6\":1,\"FSC10/OFZ_0850_33/CH_0850_33_14\":2,\"FSC10/OFZ_0850_33/CH_0850_33_12\":2,\"PLC01/0820_06_09/B6904_2\":1,\"PLC09/2210_06_29\":1,\"FSC10/OFZ_0850_33/CH_0850_33_15\":2,\"PLC09/2210_03_12/B1003_3\":1,\"PLC81/0631_05_40\":1,\"FSC10/OFZ_0850_33/CH_0850_33_19\":2,\"FSC10/OFZ_0850_54/CH_0850_54_19\":2,\"PLC02/0820_07_39_BT1/TN16A\":1,\"FSC10/OFZ_0850_54/CH_0850_54_17\":2,\"PLC69\":1,\"PLC09/2210_09_60/B912_5\":1,\"PLC09/0120_52_23\":1,\"PLC02/0820_05_41\":1,\"PLC01/0820_01_49/B6201_6\":1,\"FSC10/OFZ_0850_55\":2,\"PLC09/2210_07_27\":1,\"FSC10/OFZ_0850_54\":2,\"FSC10/OFZ_0850_33/CH_0850_33_05\":2,\"FSC10/OFZ_0850_53\":2,\"PLC01/0820_64_03/B425_5\":1,\"FSC10/OFZ_0850_52\":2,\"FSC10/OFZ_0850_51\":2,\"PLC02/0820_07_19_BT1\":1,\"FSC10/OFZ_0850_75/CH_0850_75_08\":2,\"FSC10/OFZ_0850_54/CH_0850_54_20\":2,\"PLC02/0820_91_07/B4314\":1,\"PLC69/0330_09_30\":1,\"PLC69/0330_09_30/B120_2\":1,\"PLC69/0330_09_30/B120_4\":1,\"PLC07/0320_31_20/B520_1\":1,\"PLC80\":1,\"PLC09/0120_51_15/B511_6\":1,\"FSC10/MAZ_0850_98\":3,\"PLC03\":1,\"PLC01/0820_02_04\":1,\"PLC01/0820_02_03\":1,\"PLC01/0820_02_13/B6600_2\":1,\"PLC09/2210_04_22/B1011_5\":1,\"PLC01\":1,\"PLC01/0820_02_02\":1,\"PLC01/0820_02_01\":1,\"PLC02\":1,\"PLC07\":1,\"PLC02/0820_05_20\":1,\"FSC10/OFZ_0850_33\":2,\"FSC10/OFZ_0850_32\":2,\"FSC10/OFZ_0850_31\":2,\"PLC02/0820_05_24\":1,\"PLC02/0820_05_27\":1,\"PLC82/0640_21_03/BT1\":1,\"PLC09\":3,\"PLC01/0820_02_05\":1,\"PLC14\":3,\"PLC01/0820_01_47\":1,\"PLC01/0820_01_46\":1,\"PLC01/0820_02_13\":1,\"ARSAW1501/05_10\":3,\"PLC01/0820_06_17/B7003_2\":1,\"PLC01/0820_01_43\":1,\"PLC02/0820_91_17/B4514\":1,\"PLC01/0820_71_03/B428_1\":1,\"PLC01/0820_01_41\":1,\"PLC16\":3,\"PLC02/0820_05_31\":1,\"PLC1000/1000_12_02/B308_7\":1,\"PLC01/0820_01_50/B6202_2\":1,\"PLC01/0820_59_03/B422_1\":1,\"PLC09/1210_03_60/M1\":3,\"PLC03/0820_82_04\":1,\"PLC01/0820_01_49\":1,\"PLC26\":4,\"PLC01/0820_02_20\":1,\"PLC27\":1,\"PLC01/0820_71_03\":1,\"PLC01/0820_01_50\":1,\"PLC02/0820_05_03\":1,\"PLC02/0820_05_02\":1,\"PLC02/0820_91_28/B4718\":1,\"PLC02/0820_91_33/B4818\":1,\"PLC02/0820_05_06\":1,\"PLC1000/1000_12_02\":1,\"PLC80/0632_03_01/B106_0\":1,\"PLC02/0820_91_15/B4430\":1,\"PLC01/0820_03_07\":1,\"PLC01/0820_03_08\":1,\"PLC01/0820_01_63\":1,\"PLC02/0820_05_14\":1,\"ARSAW1303/05_22/B11_4\":3,\"PLC02/0820_05_15\":1,\"PLC09/2210_06_02\":1,\"PLC01/0820_59_03\":1,\"PLC09/0120_51_23/B512_6\":1,\"PLC09/1210_03_12/B803_3\":1,\"PLC09/1210_03_06/B802_5\":3,\"PLC09/2210_07_01/B1025_0\":1,\"PLC01/0820_03_18\":1,\"PLC01/0820_03_07/B6703_2\":1,\"FSC10/OFZ_0850_32/CH_0850_32_03\":2,\"PLC01/0820_01_79\":1,\"PLC09/0120_41_08/B519_7\":1,\"PLC01/0820_01_77\":1,\"PLC02/0820_91_18\":1,\"PLC02/0820_91_17\":1,\"PLC01/0820_01_75\":1,\"PLC02/0820_91_16\":1,\"PLC01/0820_01_73\":1,\"PLC02/0820_91_15\":1,\"PLC02/0820_91_14\":1,\"FSC10/OFZ_0850_31/CH_0850_31_64\":2,\"PLC01/0820_01_71\":1,\"FSC10/OFZ_0850_31/CH_0850_31_65\":2,\"PLC02/0820_91_13\":1,\"PLC02/0820_91_12\":1,\"FSC10/OFZ_0850_31/CH_0850_31_62\":2,\"FSC10/OFZ_0850_31/CH_0850_31_63\":2,\"FSC10/OFZ_0850_32/CH_0850_32_09\":2,\"FSC10/OFZ_0850_32/CH_0850_32_06\":2,\"FSC10/OFZ_0850_31/CH_0850_31_68\":2,\"FSC10/OFZ_0850_31/CH_0850_31_69\":2,\"FSC10/OFZ_0850_31/CH_0850_31_66\":2,\"PLC26/S01\":4,\"FSC10/OFZ_0850_31/CH_0850_31_67\":2,\"FSC10/TRZ_0850_01/CAS_0850_01_0694\":3,\"FSC10/OFZ_0850_31/CH_0850_31_60\":2,\"FSC10/OFZ_0850_31/CH_0850_31_61\":2,\"PLC02/0820_07_49_BT1/TN20A\":1,\"PLC02/0820_91_36/B4910\":1,\"FSC10/OFZ_0850_32/CH_0850_32_13\":2,\"FSC10/OFZ_0850_32/CH_0850_32_14\":2,\"FSC10/OFZ_0850_31/CH_0850_31_59\":2,\"FSC10/OFZ_0850_32/CH_0850_32_12\":2,\"PLC02/0820_91_08\":1,\"PLC02/0820_91_07\":1,\"FSC10/OFZ_0850_73/CH_0850_73_13\":2,\"PLC02/0820_91_06\":1,\"FSC10/OFZ_0850_32/CH_0850_32_10\":2,\"PLC80/0632_03_06/B106_5\":1,\"FSC10/OFZ_0850_73/CH_0850_73_11\":2,\"PLC09/2210_07_27/B1028_2\":1,\"FSC10/OFZ_0850_31/CH_0850_31_53\":2,\"PLC02/0820_91_02\":1,\"FSC10/OFZ_0850_31/CH_0850_31_54\":2,\"FSC10/OFZ_0850_73/CH_0850_73_18\":2,\"FSC10/OFZ_0850_31/CH_0850_31_51\":2,\"FSC10/OFZ_0850_73/CH_0850_73_15\":2,\"PLC02/0820_05_27/B3903_2\":1,\"FSC10/OFZ_0850_31/CH_0850_31_52\":2,\"FSC10/OFZ_0850_32/CH_0850_32_17\":2,\"PLC02/0820_04_28\":1,\"FSC10/OFZ_0850_31/CH_0850_31_57\":2,\"FSC10/OFZ_0850_31/CH_0850_31_58\":2,\"FSC10/OFZ_0850_32/CH_0850_32_18\":2,\"FSC10/OFZ_0850_32/CH_0850_32_15\":2,\"FSC10/OFZ_0850_73/CH_0850_73_19\":2,\"FSC10/OFZ_0850_31/CH_0850_31_55\":2,\"FSC10/OFZ_0850_31/CH_0850_31_56\":2,\"PLC07/0320_31_20\":1,\"FSC10/OFZ_0850_32/CH_0850_32_16\":2,\"FSC10/OFZ_0850_31/CH_0850_31_50\":2,\"PLC26/0513_03_10/B104_7\":3,\"PLC02/0820_01_07/B3103_2\":1,\"PLC69/0330_07_20\":1,\"FSC10/OFZ_0850_73/CH_0850_73_02\":2,\"FSC10/OFZ_0850_73/CH_0850_73_03\":2,\"FSC10/OFZ_0850_73/CH_0850_73_01\":2,\"PLC02/0820_91_36\":1,\"FSC10/OFZ_0850_73/CH_0850_73_04\":2,\"PLC02/0820_91_33\":1,\"PLC09/0110_13_40/B204_2\":1,\"FSC10/IFZ_0850_68\":2,\"PLC26/0513_03_10\":3,\"FSC10/OFZ_0850_31/CH_0850_31_80\":2,\"PLC09/1210_03_48/B807_7\":3,\"PLC80/0632_03_06\":1,\"PLC02/0820_91_28\":1,\"PLC09/2210_08_60\":1,\"PLC80/0632_03_01\":1,\"FSC10/OFZ_0850_31/CH_0850_31_75\":2,\"FSC10/OFZ_0850_31/CH_0850_31_76\":2,\"FSC10/OFZ_0850_31/CH_0850_31_73\":2,\"FSC10/OFZ_0850_31/CH_0850_31_74\":2,\"FSC10/OFZ_0850_31/CH_0850_31_79\":2,\"FSC10/TRZ_0850_01/CAS_0850_01_0557\":3,\"PLC1000/1000_33_12/B419_3\":1,\"FSC10/OFZ_0850_32/CH_0850_32_37\":2,\"FSC10/TRZ_0850_01/CAS_0850_01_0556\":3,\"FSC10/OFZ_0850_31/CH_0850_31_77\":2,\"FSC10/OFZ_0850_31/CH_0850_31_78\":2,\"FSC10/TRZ_0850_01/CAS_0850_01_0565\":2,\"FSC10/TRZ_0850_01/CAS_0850_01_0564\":2,\"FSC10/OFZ_0850_31/CH_0850_31_71\":2,\"FSC10/OFZ_0850_31/CH_0850_31_72\":2,\"FSC10/TRZ_0850_01/CAS_0850_01_0680\":3,\"FSC10/OFZ_0850_31/CH_0850_31_70\":2,\"PLC02/0820_05_15/B3802_2\":1,\"PLC09/0120_33_10/B426_1\":1,\"PLC09/1210_09_60\":3,\"FSC10/OFZ_0850_32/CH_0850_32_47\":2,\"PLC09/0120_35_26\":1,\"PLC81\":1,\"PLC82\":1,\"FSC10/TRZ_0850_01/CAS_0850_01_0891\":4,\"PLC09/1210_03_30/B805_5\":3,\"PLC09/0110_13_40/B205_1\":1,\"PLC02/0820_91_53\":1,\"PLC09/0110_13_40/B205_0\":1,\"PLC02/0820_91_52\":1,\"PLC09/0110_13_40/B205_2\":1,\"PLC02/0820_91_51\":1,\"PLC09/2210_06_02/B1018_1\":1,\"FSC10/TRZ_0850_01\":4,\"PLC80/0632_01_07\":1,\"PLC09/0110_03_40\":1,\"PLC1000/1000_33_01/B418_0\":1,\"FSC10/OFZ_0850_32/CH_0850_32_54\":2,\"PLC09/0120_35_18\":1,\"FSC10/TRZ_0850_01/CAS_0850_01_0780\":2,\"PLC09/0110_03_40/B105_2\":1,\"PLC09/0110_03_40/B105_0\":1,\"PLC01/0820_01_79/B6403_6\":1,\"PLC09/0110_03_40/B105_1\":1,\"PLC26/0513_32_01/B405_4\":3,\"FSC10/TRZ_0850_01/CAS_0850_01_0300\":2,\"FSC10/TRZ_0850_01/CAS_0850_01_0779\":2,\"PLC09/1210_03_13/B803_4\":3,\"FSC10/OFZ_0850_33/CH_0850_33_43\":2,\"PLC01/0820_01_46/B6200_2\":1,\"PLC09/0110_21_20/B302_3\":1,\"PLC09/0110_21_20/B302_2\":1,\"PLC1000\":1,\"PLC09/0120_35_10\":1,\"PLC09/1210_03_36/B806_3\":3,\"PLC09/1210_02_01\":1,\"PLC09/1210_03_42/B807_1\":3,\"PLC09/2210_06_29/B1021_4\":1,\"PLC09/0120_32_02/B422_1\":1,\"PLC09/0110_03_40/B104_2\":1,\"PLC09/1210_03_25/B805_0\":3,\"PLC02/0820_07_09_BT1/TN4A\":1,\"PLC01/0820_01_63/B6302_6\":1,\"PLC01/0820_02_20/B6603_6\":1,\"PLC09/1210_03_02/B802_1\":3,\"PLC26/S01/A999\":4,\"PLC09/0120_52_01/B526_0\":1,\"PLC01/0820_03_08/B6703_6\":1}", "page_id": "value", "product_metrics": { diff --git a/.resources/9c044264017822b85481d3c3dc9ab1a242ac45450b9633657ec2475d227a298d b/.resources/9c044264017822b85481d3c3dc9ab1a242ac45450b9633657ec2475d227a298d deleted file mode 100644 index 99c639fe..00000000 --- a/.resources/9c044264017822b85481d3c3dc9ab1a242ac45450b9633657ec2475d227a298d +++ /dev/null @@ -1,589 +0,0 @@ -{ - "custom": { - "alarm_message": null, - "covert_mode": true, - "disconnected": false, - "display_icon": true, - "error": false, - "isMatch": 0, - "plc": "value", - "priority": 0, - "priority_string": "No active alarms", - "running_status": 0, - "searchId": "value", - "state": 5, - "state_string": "Unknown" - }, - "params": { - "directionLeft": false, - "forceFaultStatus": null, - "forceRunningStatus": null, - "tagProps": [ - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value" - ] - }, - "propConfig": { - "custom.alarm_message": { - "persistent": true - }, - "custom.covert_mode": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case(\t{value},\r\n\t\t0, {session.custom.alarm_filter.show_running},\r\n\t\t1, True,\r\n\t\t2, True,\r\n\t\t3, {session.custom.alarm_filter.show_low_alarm},\r\n\t\t4, {session.custom.alarm_filter.show_diagnostic},\r\n\t\t5, {session.custom.alarm_filter.show_running},\r\n\t\tFalse)", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.disconnected": { - "binding": { - "config": { - "fallbackDelay": 2.5, - "mode": "indirect", - "references": { - "fc": "{session.custom.fc}", - "plc": "{view.custom.plc}" - }, - "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{plc}/DCN" - }, - "transforms": [ - { - "expression": "if(isNull({value}), False, {value})", - "type": "expression" - } - ], - "type": "tag" - }, - "persistent": true - }, - "custom.display_icon": { - "binding": { - "config": { - "expression": "{this.custom.covert_mode}//||{this.custom.isMatch}\u003e0" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.error": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "0 \u003c {value} \u0026\u0026 {value} \u003c 5", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.isMatch": { - "binding": { - "config": { - "expression": "if({view.params.tagProps[0]}\u003d\"value\",0,\nif({this.custom.searchId}\u003d{view.params.tagProps[0]},100,0))" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.plc": { - "binding": { - "config": { - "path": "view.params.tagProps[0]" - }, - "transforms": [ - { - "expression": "split({value}, \"/\")[0]", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.priority": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "fallback": 0, - "inputType": "scalar", - "mappings": [ - { - "input": 1, - "output": 4 - }, - { - "input": 2, - "output": 3 - }, - { - "input": 3, - "output": 2 - }, - { - "input": 4, - "output": 1 - } - ], - "outputType": "scalar", - "type": "map" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.priority_string": { - "binding": { - "config": { - "expression": "case({view.custom.state},\r\n1, \"High\",\r\n2, \"Medium\",\r\n3, \"Low\",\r\n4, \"Diagnostic\",\r\n5, \"No active alarms\",\r\n\"Unknown\")" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.running_status": { - "binding": { - "config": { - "fallbackDelay": 2.5, - "mode": "indirect", - "references": { - "0": "{view.params.tagProps[0]}", - "fc": "{session.custom.fc}" - }, - "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/STATE" - }, - "transforms": [ - { - "expression": "coalesce({value},{view.params.forceRunningStatus},0)", - "type": "expression" - } - ], - "type": "tag" - }, - "persistent": true - }, - "custom.searchId": { - "binding": { - "config": { - "path": "session.custom.searchId" - }, - "type": "property" - }, - "persistent": true - }, - "custom.state": { - "binding": { - "config": { - "fallbackDelay": 2.5, - "mode": "indirect", - "references": { - "0": "{view.params.tagProps[0]}", - "fc": "{session.custom.fc}" - }, - "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/ALARMST" - }, - "transforms": [ - { - "expression": "coalesce({value},{view.params.forceFaultStatus},0)", - "type": "expression" - }, - { - "fallback": null, - "inputType": "scalar", - "mappings": [ - { - "input": 4, - "output": 1 - }, - { - "input": 3, - "output": 2 - }, - { - "input": 2, - "output": 3 - }, - { - "input": 1, - "output": 4 - }, - { - "input": 0, - "output": 5 - } - ], - "outputType": "scalar", - "type": "map" - } - ], - "type": "tag" - }, - "persistent": true - }, - "custom.state_string": { - "binding": { - "config": { - "expression": "case({view.custom.running_status},\r\n1, \"Faulted\",\r\n2, \"Stopped\",\r\n3, \"Running\",\r\n\"Unknown\")" - }, - "type": "expr" - }, - "persistent": true - }, - "params.directionLeft": { - "paramDirection": "input", - "persistent": true - }, - "params.forceFaultStatus": { - "paramDirection": "input", - "persistent": true - }, - "params.forceRunningStatus": { - "paramDirection": "input", - "persistent": true - }, - "params.tagProps": { - "paramDirection": "inout", - "persistent": true - } - }, - "props": { - "defaultSize": { - "height": 25, - "width": 40 - } - }, - "root": { - "children": [ - { - "meta": { - "name": "Network" - }, - "position": { - "height": 1, - "width": 1 - }, - "propConfig": { - "props.elements[0].fill.paint": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "if({session.custom.colours}[\"state\"+{value}] \u003d null, \r\n{session.custom.colours}[\"Fallback\"],\r\n{session.custom.colours}[\"state\"+{value}])", - "type": "expression" - }, - { - "expression": "if({view.custom.display_icon}\u0026\u0026 {view.custom.isMatch}\u003d0,{value},{value}+\u002700\u0027)", - "type": "expression" - } - ], - "type": "property" - } - }, - "props.style.classes": { - "binding": { - "config": { - "expression": "if({session.custom.colours.colour_impaired} \u003d True \u0026\u0026 {view.custom.isMatch} \u003e 0,\r\n{view.custom.state} + 100 + {view.custom.isMatch},\r\n{view.custom.state} + {view.custom.isMatch})" - }, - "transforms": [ - { - "fallback": "", - "inputType": "scalar", - "mappings": [ - { - "input": 101, - "output": "State-Styles/State101" - }, - { - "input": 102, - "output": "State-Styles/State102" - }, - { - "input": 103, - "output": "State-Styles/State103" - }, - { - "input": 104, - "output": "State-Styles/State104" - }, - { - "input": 105, - "output": "State-Styles/State105" - }, - { - "input": 106, - "output": "State-Styles/State106" - }, - { - "input": 201, - "output": "State-Styles/State201" - }, - { - "input": 202, - "output": "State-Styles/State202" - }, - { - "input": 203, - "output": "State-Styles/State203" - }, - { - "input": 204, - "output": "State-Styles/State204" - }, - { - "input": 205, - "output": "State-Styles/State205" - } - ], - "outputType": "style-list", - "type": "map" - } - ], - "type": "expr" - } - } - }, - "props": { - "elements": [ - { - "d": "m 0,0 c 13.333333,0 26.666667,0 40,0 0,8.3333333 0,16.666667 0,25 C 26.666667,25 13.333333,25 0,25 0,16.666667 0,8.3333333 0,0 Z", - "fill": {}, - "name": "path", - "stroke": { - "paint": "#000000", - "width": 1 - }, - "type": "path" - }, - { - "d": "m 24,6 a 4,4 0 0 1 -4,4 4,4 0 0 1 -4,-4 4,4 0 0 1 4,-4 4,4 0 0 1 4,4 z m 4,12 h 8 v 5 h -8 z m -12,0 h 8 v 5 H 16 Z M 4,18 h 8 v 5 H 4 Z", - "fill": { - "paint": "#000000" - }, - "name": "path", - "stroke": { - "paint": "#000000", - "width": 1 - }, - "type": "path" - }, - { - "d": "m 20,10 c 0,2.666667 0,5.333333 0,8", - "fill": { - "paint": "#000000" - }, - "name": "path", - "stroke": { - "paint": "#000000", - "width": 1 - }, - "type": "path" - }, - { - "d": "m 7.5,14 c 8.333333,0 16.666667,0 25,0", - "fill": { - "paint": "#000000" - }, - "name": "path", - "stroke": { - "paint": "#000000", - "width": 1 - }, - "type": "path" - }, - { - "d": "m 8,14 c 0,1.333333 0,2.666667 0,4", - "fill": { - "paint": "#000000" - }, - "name": "path", - "stroke": { - "paint": "#000000", - "width": 1 - }, - "type": "path" - }, - { - "d": "m 32,14 c 0,1.333333 0,2.666667 0,4", - "fill": { - "paint": "#000000" - }, - "name": "path", - "stroke": { - "paint": "#000000", - "width": 1 - }, - "type": "path" - } - ], - "style": {}, - "viewBox": "-0.5 -0.5 41 26" - }, - "type": "ia.shapes.svg" - } - ], - "events": { - "dom": { - "onClick": { - "config": { - "script": "\tsystem.perspective.openDock(\u0027Docked-East\u0027,params\u003d{\u0027tagProps\u0027:self.view.params.tagProps})" - }, - "scope": "G", - "type": "script" - }, - "onDoubleClick": { - "config": { - "script": "\ttagProps \u003d self.view.params.tagProps\n\tsystem.perspective.openPopup(\"StatusPopUP\", \"PopUp-Views/Controller-Equipment/Information\", params \u003d{\"tagProps\":tagProps})\n\t" - }, - "enabled": false, - "scope": "G", - "type": "script" - }, - "onMouseEnter": { - "config": { - "script": "\tfrom time import sleep\n\t\n\talarm \u003d []\n\tmessage \u003d None\n\t\n\tsleep(0.5)\n\t\n\tif system.tag.exists(\"System/aws_data\"):\n\t\tif self.view.params.tagProps[0] !\u003d \"\":\n\t\t\ttags_to_read \u003d system.tag.readBlocking(\"System/aws_data\")\n\t\t\tdecode_alarm_data \u003d system.util.jsonDecode(tags_to_read[0].value)\n\t\t\talarm \u003d [decode_alarm_data[i] for i in decode_alarm_data\n\t\t\t\t\tif decode_alarm_data[i][\u0027sourceId\u0027].startswith(self.view.params.tagProps[0])]\n\t\tif alarm:\n\t\t\talarm \u003d sorted(alarm, key \u003d lambda t:t[\u0027timestamp\u0027], reverse\u003dTrue)\n\t\t\tmessage \u003d max(alarm, key \u003d lambda p:p[\u0027priority\u0027]).get(\u0027message\u0027)\n\t\t\tif len(alarm) \u003e 1:\n\t\t\t\tmessage +\u003d \" (+\" + str(len(alarm)-1) + \")\"\n\tself.view.custom.alarm_message \u003d message" - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "root", - "tooltip": { - "enabled": true, - "location": "top-left", - "style": {} - } - }, - "propConfig": { - "meta.tooltip.style.backgroundColor": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case({value},\r\n0,{session.custom.colours.state0},\r\n1,{session.custom.colours.state1},\r\n2,{session.custom.colours.state2},\r\n3,{session.custom.colours.state3},\r\n4,{session.custom.colours.state4},\r\n5,{session.custom.colours.state5},\r\n6,{session.custom.colours.state6},\r\n{session.custom.colours.fallback}\r\n)", - "type": "expression" - } - ], - "type": "property" - } - }, - "meta.tooltip.style.classes": { - "binding": { - "config": { - "expression": "{view.custom.priority}" - }, - "transforms": [ - { - "fallback": "Alarms-Styles/NoAlarm", - "inputType": "scalar", - "mappings": [ - { - "input": 1, - "output": "Alarms-Styles/Diagnostic" - }, - { - "input": 2, - "output": "Alarms-Styles/Low" - }, - { - "input": 3, - "output": "Alarms-Styles/Medium" - }, - { - "input": 4, - "output": "Alarms-Styles/High" - } - ], - "outputType": "style-list", - "type": "map" - } - ], - "type": "expr" - } - }, - "meta.tooltip.style.color": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "if({session.custom.colours.colour_impaired},\r\n\t\u0027#000000\u0027,\r\n\tcase(\t{value},\r\n\t\t\t1,\u0027#FFFFFF\u0027,\r\n\t\t\t2,\u0027#000000\u0027,\r\n\t\t\t3,\u0027#000000\u0027,\r\n\t\t\t4,\u0027#FFFFFF\u0027,\r\n\t\t\t5,\u0027#FFFFFF\u0027,\r\n\t\t\t\u0027#000000\u0027)\r\n\t)", - "type": "expression" - } - ], - "type": "property" - } - }, - "meta.tooltip.text": { - "binding": { - "config": { - "expression": "if({view.custom.disconnected} \u003d False,\n\tif(isNull({view.custom.alarm_message}),\n\t\"Source Id: \" + {view.params.tagProps[0]} +\n\t\", Priority: \" + {view.custom.priority_string} +\n\t\", State: \" + {view.custom.state_string},\n\t\"Source Id: \" + {view.params.tagProps[0]} +\n\t\", Alarm: \" + {view.custom.alarm_message} +\n\t\", Priority: \" + {view.custom.priority_string} +\n\t\", State: \" + {view.custom.state_string}),\n\"Source Id: \" +{view.params.tagProps[0]} + \", Priority: Unknown, State: Unknown\")" - }, - "type": "expr" - } - }, - "props.style.classes": { - "binding": { - "config": { - "path": "view.custom.disconnected" - }, - "transforms": [ - { - "fallback": "Disconnects/Device-Connected", - "inputType": "scalar", - "mappings": [ - { - "input": true, - "output": "Disconnects/Device-Disconnected" - }, - { - "input": false, - "output": "Disconnects/Device-Connected" - } - ], - "outputType": "style-list", - "type": "map" - } - ], - "type": "property" - } - } - }, - "props": { - "aspectRatio": "40:25", - "mode": "percent", - "style": { - "cursor": "pointer" - } - }, - "type": "ia.container.coord" - } -} \ No newline at end of file diff --git a/.resources/9c51911ab0e07510c307722e1c1d58f7153b122ed89756fd38518a9b249d0661 b/.resources/9c51911ab0e07510c307722e1c1d58f7153b122ed89756fd38518a9b249d0661 deleted file mode 100644 index 7c241dea..00000000 --- a/.resources/9c51911ab0e07510c307722e1c1d58f7153b122ed89756fd38518a9b249d0661 +++ /dev/null @@ -1,608 +0,0 @@ -{ - "custom": { - "alarm_message": null, - "covert_mode": true, - "disconnected": false, - "display_icon": true, - "error": false, - "isMatch": 0, - "plc": "value", - "priority": 0, - "priority_string": "No active alarms", - "running": false, - "running_status": 0, - "searchId": "value", - "show_error": false, - "show_running": true, - "state": 5, - "state_string": "Unknown" - }, - "params": { - "forceFaultStatus": null, - "forceRunningStatus": null, - "tagProps": [ - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value" - ] - }, - "propConfig": { - "custom.alarm_message": { - "persistent": true - }, - "custom.covert_mode": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case(\t{value},\r\n\t\t0, {session.custom.alarm_filter.show_running},\r\n\t\t1, True,\r\n\t\t2, True,\r\n\t\t3, {session.custom.alarm_filter.show_low_alarm} || {session.custom.alarm_filter.show_running},\r\n\t\t4, {session.custom.alarm_filter.show_diagnostic} || {session.custom.alarm_filter.show_running},\r\n\t\t5, {session.custom.alarm_filter.show_running},\r\n\t\tFalse)", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.disconnected": { - "binding": { - "config": { - "fallbackDelay": 2.5, - "mode": "indirect", - "references": { - "fc": "{session.custom.fc}", - "plc": "{view.custom.plc}" - }, - "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{plc}/DCN" - }, - "transforms": [ - { - "expression": "if(isNull({value}), False, {value})", - "type": "expression" - } - ], - "type": "tag" - }, - "persistent": true - }, - "custom.display_icon": { - "binding": { - "config": { - "expression": "{this.custom.covert_mode}//||{this.custom.isMatch}\u003e0" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.error": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "0 \u003c {value} \u0026\u0026 {value} \u003c 5", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.isMatch": { - "binding": { - "config": { - "expression": "if({view.params.tagProps[0]}\u003d\"value\",0,\nif({this.custom.searchId}\u003d{view.params.tagProps[0]},100,0))" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.plc": { - "binding": { - "config": { - "path": "view.params.tagProps[0]" - }, - "transforms": [ - { - "expression": "split({value}, \"/\")[0]", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.priority": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "fallback": 0, - "inputType": "scalar", - "mappings": [ - { - "input": 1, - "output": 4 - }, - { - "input": 2, - "output": 3 - }, - { - "input": 3, - "output": 2 - }, - { - "input": 4, - "output": 1 - } - ], - "outputType": "scalar", - "type": "map" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.priority_string": { - "binding": { - "config": { - "expression": "case({view.custom.state},\r\n1, \"High\",\r\n2, \"Medium\",\r\n3, \"Low\",\r\n4, \"Diagnostic\",\r\n5, \"No active alarms\",\r\n\"Unknown\")" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.running": { - "binding": { - "config": { - "expression": "{view.custom.running_status} \u003d 3" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.running_status": { - "binding": { - "config": { - "fallbackDelay": 2.5, - "mode": "indirect", - "references": { - "0": "{view.params.tagProps[0]}", - "fc": "{session.custom.fc}" - }, - "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/STATE" - }, - "transforms": [ - { - "expression": "coalesce({value},{view.params.forceRunningStatus},0)", - "type": "expression" - } - ], - "type": "tag" - }, - "persistent": true - }, - "custom.searchId": { - "binding": { - "config": { - "path": "session.custom.searchId" - }, - "type": "property" - }, - "persistent": true - }, - "custom.show_error": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case(\t{value},\r\n\t\t1, True,\r\n\t\t2, True,\r\n\t\t3, {session.custom.alarm_filter.show_low_alarm},\r\n\t\t4, {session.custom.alarm_filter.show_diagnostic},\r\n\t\tFalse)", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.show_running": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case(\t{value},\r\n\t\t1, False,\r\n\t\t2, False,\r\n\t\t{session.custom.alarm_filter.show_running}\r\n\t\t)", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.state": { - "binding": { - "config": { - "fallbackDelay": 2.5, - "mode": "indirect", - "references": { - "0": "{view.params.tagProps[0]}", - "fc": "{session.custom.fc}" - }, - "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/ALARMST" - }, - "transforms": [ - { - "expression": "coalesce({value},{view.params.forceFaultStatus},0)", - "type": "expression" - }, - { - "fallback": null, - "inputType": "scalar", - "mappings": [ - { - "input": 4, - "output": 1 - }, - { - "input": 3, - "output": 2 - }, - { - "input": 2, - "output": 3 - }, - { - "input": 1, - "output": 4 - }, - { - "input": 0, - "output": 5 - } - ], - "outputType": "scalar", - "type": "map" - } - ], - "type": "tag" - }, - "persistent": true - }, - "custom.state_string": { - "binding": { - "config": { - "expression": "case({view.custom.running_status},\r\n1, \"Faulted\",\r\n2, \"Stopped\",\r\n3, \"Running\",\r\n\"Unknown\")" - }, - "type": "expr" - }, - "persistent": true - }, - "params.forceFaultStatus": { - "paramDirection": "input", - "persistent": true - }, - "params.forceRunningStatus": { - "paramDirection": "input", - "persistent": true - }, - "params.tagProps": { - "paramDirection": "inout", - "persistent": true - } - }, - "props": { - "defaultSize": { - "height": 100, - "width": 100 - } - }, - "root": { - "children": [ - { - "meta": { - "name": "AUS" - }, - "position": { - "height": 1, - "width": 1 - }, - "propConfig": { - "props.elements[1].elements[0].elements[0].fill.paint": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "if({session.custom.colours}[\"state\"+{value}] \u003d null, \r\n{session.custom.colours}[\"Fallback\"],\r\n{session.custom.colours}[\"state\"+{value}])", - "type": "expression" - }, - { - "expression": "if({view.custom.display_icon}\u0026\u0026 {view.custom.isMatch}\u003d0,{value},{value}+\u002700\u0027)", - "type": "expression" - } - ], - "type": "property" - } - }, - "props.style.classes": { - "binding": { - "config": { - "expression": "if({session.custom.colours.colour_impaired} \u003d True \u0026\u0026 {view.custom.isMatch} \u003e 0,\r\n{view.custom.state} + 100 + {view.custom.isMatch},\r\n{view.custom.state} + {view.custom.isMatch})" - }, - "transforms": [ - { - "fallback": "", - "inputType": "scalar", - "mappings": [ - { - "input": 101, - "output": "State-Styles/State101" - }, - { - "input": 102, - "output": "State-Styles/State102" - }, - { - "input": 103, - "output": "State-Styles/State103" - }, - { - "input": 104, - "output": "State-Styles/State104" - }, - { - "input": 105, - "output": "State-Styles/State105" - }, - { - "input": 106, - "output": "State-Styles/State106" - }, - { - "input": 201, - "output": "State-Styles/State201" - }, - { - "input": 202, - "output": "State-Styles/State202" - }, - { - "input": 203, - "output": "State-Styles/State203" - }, - { - "input": 204, - "output": "State-Styles/State204" - }, - { - "input": 205, - "output": "State-Styles/State205" - } - ], - "outputType": "style-list", - "type": "map" - } - ], - "type": "expr" - } - } - }, - "props": { - "elements": [ - { - "id": "defs2", - "name": "defs2", - "type": "defs" - }, - { - "elements": [ - { - "elements": [ - { - "cx": "69.035934", - "cy": "129.08073", - "fill": {}, - "id": "path509", - "name": "path509", - "rx": "9.5693493", - "ry": "9.4979048", - "stroke": { - "dasharray": "none", - "linejoin": "round", - "paint": "#000000", - "width": 1 - }, - "style": { - "paintOrder": "stroke fill markers" - }, - "type": "ellipse" - }, - { - "d": "m 64.008851,131.72656 2.143125,-5.29166 h 0.833438 l 2.129896,5.29166 h -0.833438 l -0.502708,-1.30968 h -2.434167 l -0.502708,1.30968 z m 1.600729,-1.9976 h 1.905 l -0.926041,-2.4474 h -0.05292 z m 4.590521,1.9976 v -0.82021 l 3.082396,-3.78354 h -2.844271 v -0.68791 h 3.598334 v 0.83343 l -3.055938,3.77032 h 3.082396 v 0.68791 z m -2.169583,-6.6675 1.27,-1.27 1.27,1.27 z m 1.27,9.31334 -1.27,-1.27 h 2.54 z", - "id": "path6803", - "name": "path6803", - "stroke": { - "width": "0.264583" - }, - "type": "path" - } - ], - "id": "g2552", - "name": "g2552", - "stroke": { - "dasharray": "none", - "width": 1 - }, - "type": "group" - } - ], - "id": "layer1", - "name": "layer1", - "transform": "translate(-58.814035,-118.93028)", - "type": "group" - } - ], - "style": {}, - "viewBox": "0 0 20.443798 20.300909" - }, - "type": "ia.shapes.svg" - } - ], - "events": { - "dom": { - "onClick": { - "config": { - "script": "\tsystem.perspective.openDock(\u0027Docked-East\u0027,params\u003d{\u0027tagProps\u0027:self.view.params.tagProps})" - }, - "scope": "G", - "type": "script" - }, - "onDoubleClick": { - "config": { - "script": "\ttagProps \u003d self.view.params.tagProps\n\tsystem.perspective.openPopup(\"StatusPopUP\", \"PopUp-Views/Controller-Equipment/Information\", params \u003d{\"tagProps\":tagProps})\n\t" - }, - "enabled": false, - "scope": "G", - "type": "script" - }, - "onMouseEnter": { - "config": { - "script": "\tfrom time import sleep\n\t\n\talarm \u003d []\n\tmessage \u003d None\n\t\n\tsleep(0.5)\n\t\n\tif system.tag.exists(\"System/aws_data\"):\n\t\tif self.view.params.tagProps[0] !\u003d \"\":\n\t\t\ttags_to_read \u003d system.tag.readBlocking(\"System/aws_data\")\n\t\t\tdecode_alarm_data \u003d system.util.jsonDecode(tags_to_read[0].value)\n\t\t\talarm \u003d [decode_alarm_data[i] for i in decode_alarm_data\n\t\t\t\t\tif decode_alarm_data[i][\u0027sourceId\u0027].startswith(self.view.params.tagProps[0])]\n\t\tif alarm:\n\t\t\talarm \u003d sorted(alarm, key \u003d lambda t:t[\u0027timestamp\u0027], reverse\u003dTrue)\n\t\t\tmessage \u003d max(alarm, key \u003d lambda p:p[\u0027priority\u0027]).get(\u0027message\u0027)\n\t\t\tif len(alarm) \u003e 1:\n\t\t\t\tmessage +\u003d \" (+\" + str(len(alarm)-1) + \")\"\n\tself.view.custom.alarm_message \u003d message" - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "root", - "tooltip": { - "enabled": true, - "location": "top-left", - "style": {} - } - }, - "propConfig": { - "meta.tooltip.style.backgroundColor": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case({value},\r\n0,{session.custom.colours.state0},\r\n1,{session.custom.colours.state1},\r\n2,{session.custom.colours.state2},\r\n3,{session.custom.colours.state3},\r\n4,{session.custom.colours.state4},\r\n5,{session.custom.colours.state5},\r\n6,{session.custom.colours.state6},\r\n{session.custom.colours.fallback}\r\n)", - "type": "expression" - } - ], - "type": "property" - } - }, - "meta.tooltip.style.classes": { - "binding": { - "config": { - "expression": "{view.custom.priority}" - }, - "transforms": [ - { - "fallback": "Alarms-Styles/NoAlarm", - "inputType": "scalar", - "mappings": [ - { - "input": 1, - "output": "Alarms-Styles/Diagnostic" - }, - { - "input": 2, - "output": "Alarms-Styles/Low" - }, - { - "input": 3, - "output": "Alarms-Styles/Medium" - }, - { - "input": 4, - "output": "Alarms-Styles/High" - } - ], - "outputType": "style-list", - "type": "map" - } - ], - "type": "expr" - } - }, - "meta.tooltip.style.color": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "if({session.custom.colours.colour_impaired},\r\n\t\u0027#000000\u0027,\r\n\tcase(\t{value},\r\n\t\t\t1,\u0027#FFFFFF\u0027,\r\n\t\t\t2,\u0027#000000\u0027,\r\n\t\t\t3,\u0027#000000\u0027,\r\n\t\t\t4,\u0027#FFFFFF\u0027,\r\n\t\t\t5,\u0027#FFFFFF\u0027,\r\n\t\t\t\u0027#000000\u0027)\r\n\t)", - "type": "expression" - } - ], - "type": "property" - } - }, - "meta.tooltip.text": { - "binding": { - "config": { - "expression": "if({view.custom.disconnected} \u003d False,\n\tif(isNull({view.custom.alarm_message}),\n\t\"Source Id: \" + {view.params.tagProps[0]} +\n\t\", Priority: \" + {view.custom.priority_string} +\n\t\", State: \" + {view.custom.state_string},\n\t\"Source Id: \" + {view.params.tagProps[0]} +\n\t\", Alarm: \" + {view.custom.alarm_message} +\n\t\", Priority: \" + {view.custom.priority_string} +\n\t\", State: \" + {view.custom.state_string}),\n\"Source Id: \" +{view.params.tagProps[0]} + \", Priority: Unknown, State: Unknown\")" - }, - "type": "expr" - } - }, - "props.style.classes": { - "binding": { - "config": { - "path": "view.custom.disconnected" - }, - "transforms": [ - { - "fallback": "Disconnects/Device-Connected", - "inputType": "scalar", - "mappings": [ - { - "input": true, - "output": "Disconnects/Device-Disconnected" - }, - { - "input": false, - "output": "Disconnects/Device-Connected" - } - ], - "outputType": "style-list", - "type": "map" - } - ], - "type": "property" - } - } - }, - "props": { - "aspectRatio": "1:1", - "mode": "percent", - "style": { - "cursor": "pointer" - } - }, - "type": "ia.container.coord" - } -} \ No newline at end of file diff --git a/.resources/9cc58bd9d770e83b955a02a963ab41373b5b65552c391da3134e365d0058b9fe b/.resources/9cc58bd9d770e83b955a02a963ab41373b5b65552c391da3134e365d0058b9fe deleted file mode 100644 index 8f4561b5..00000000 Binary files a/.resources/9cc58bd9d770e83b955a02a963ab41373b5b65552c391da3134e365d0058b9fe and /dev/null differ diff --git a/.resources/9cdbd03bfd2fd10a08a5bd534118b89b6441d05cd98c1a51ca02b597b1dafdf7 b/.resources/9cdbd03bfd2fd10a08a5bd534118b89b6441d05cd98c1a51ca02b597b1dafdf7 new file mode 100644 index 00000000..154d306d Binary files /dev/null and b/.resources/9cdbd03bfd2fd10a08a5bd534118b89b6441d05cd98c1a51ca02b597b1dafdf7 differ diff --git a/.resources/9d2dcd0b7a7c3bd6ef7680c7a59dffb6b9c0f267625dcd24dc6018dd7c607a0a b/.resources/9d2dcd0b7a7c3bd6ef7680c7a59dffb6b9c0f267625dcd24dc6018dd7c607a0a new file mode 100644 index 00000000..3040825d --- /dev/null +++ b/.resources/9d2dcd0b7a7c3bd6ef7680c7a59dffb6b9c0f267625dcd24dc6018dd7c607a0a @@ -0,0 +1,640 @@ +{ + "custom": { + "dpm1-dpm2": false, + "dpm2-dpm3": false, + "dpm3-dpm4": false, + "dpm4-mcm": false, + "mcm-dpm1": false + }, + "params": { + "tagProps": [ + "DPM0_TAG", + "DPM1_TAG", + "DPM2_TAG", + "DPM3_TAG", + "DPM4_TAG" + ] + }, + "propConfig": { + "custom.dpm1-dpm2": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "1": "{view.params.tagProps[1]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{1}/STATE" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},1)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": 0, + "output": true + }, + { + "input": 1, + "output": false + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + }, + "persistent": true + }, + "custom.dpm2-dpm3": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "2": "{view.params.tagProps[2]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{2}/STATE" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},1)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": 0, + "output": true + }, + { + "input": 1, + "output": false + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + }, + "persistent": true + }, + "custom.dpm3-dpm4": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "3": "{view.params.tagProps[3]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{3}/STATE" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},1)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": 0, + "output": true + }, + { + "input": 1, + "output": false + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + }, + "persistent": true + }, + "custom.dpm4-mcm": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "4": "{view.params.tagProps[4]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{4}/STATE" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},1)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": 0, + "output": true + }, + { + "input": 1, + "output": false + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + }, + "persistent": true + }, + "custom.mcm-dpm1": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[0]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/STATE" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},1)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": 0, + "output": true + }, + { + "input": 1, + "output": false + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + }, + "persistent": true + }, + "params.tagProps": { + "paramDirection": "input", + "persistent": true + } + }, + "props": { + "defaultSize": { + "height": 894, + "width": 1920 + } + }, + "root": { + "children": [ + { + "events": { + "dom": { + "onClick": { + "config": { + "script": "\tself.session.custom.dpm_view_path = self.props.params.view\n\tself.session.custom.show_dpm_device_view = True" + }, + "scope": "G", + "type": "script" + } + } + }, + "meta": { + "name": "MCM" + }, + "position": { + "height": 0.5, + "width": 0.3333, + "x": 0.6666, + "y": 0.5 + }, + "propConfig": { + "props.params.InOn": { + "binding": { + "config": { + "path": "view.custom.dpm4-mcm" + }, + "type": "property" + } + }, + "props.params.OutOn": { + "binding": { + "config": { + "path": "view.custom.mcm-dpm1" + }, + "type": "property" + } + } + }, + "props": { + "params": { + "InDown": false, + "InLeft": true, + "InUp": false, + "OutDown": false, + "OutRight": false, + "OutUp": true + }, + "path": "Windows/Tabs/Enternet Windows/Components/EN4TR" + }, + "type": "ia.display.view" + }, + { + "events": { + "dom": { + "onClick": { + "config": { + "script": "\tself.session.custom.dpm_view_path = self.props.params.view\n\tself.session.custom.show_dpm_device_view = True" + }, + "scope": "G", + "type": "script" + } + } + }, + "meta": { + "name": "DPM1_PS3-1" + }, + "position": { + "height": 0.5, + "width": 0.3333, + "x": 0.6666 + }, + "propConfig": { + "props.params.InOn": { + "binding": { + "config": { + "path": "view.custom.dpm1-dpm2" + }, + "type": "property" + } + }, + "props.params.OutOn": { + "binding": { + "config": { + "path": "view.custom.mcm-dpm1" + }, + "type": "property" + } + } + }, + "props": { + "params": { + "Down1": false, + "Down2": false, + "Down3": true, + "DownLeft": false, + "DownOn": false, + "DownRight": false, + "InDown": false, + "InLeft": true, + "InUp": false, + "OutDown": true, + "OutRight": false, + "OutUp": false, + "view": "Windows/Tabs/Enternet Windows/DPMs/DPM Devices/MCM03/DPM1_PS3-1" + }, + "path": "Windows/Tabs/Enternet Windows/Components/DPM_BLOCK" + }, + "type": "ia.display.view" + }, + { + "events": { + "dom": { + "onClick": { + "config": { + "script": "\tself.session.custom.dpm_view_path = self.props.params.view\n\tself.session.custom.show_dpm_device_view = True" + }, + "scope": "G", + "type": "script" + } + } + }, + "meta": { + "name": "DPM2_PS3-1" + }, + "position": { + "height": 0.5, + "width": 0.3333, + "x": 0.3333 + }, + "propConfig": { + "props.params.InOn": { + "binding": { + "config": { + "path": "view.custom.dpm2-dpm3" + }, + "type": "property" + } + }, + "props.params.OutOn": { + "binding": { + "config": { + "path": "view.custom.dpm1-dpm2" + }, + "type": "property" + } + } + }, + "props": { + "params": { + "Down1": false, + "Down2": false, + "Down3": false, + "DownLeft": false, + "DownOn": false, + "DownRight": false, + "InDown": false, + "InLeft": true, + "InUp": false, + "OutDown": false, + "OutRight": true, + "OutUp": false, + "view": "Windows/Tabs/Enternet Windows/DPMs/DPM Devices/MCM03/DPM2_PS3-1" + }, + "path": "Windows/Tabs/Enternet Windows/Components/DPM_BLOCK" + }, + "type": "ia.display.view" + }, + { + "events": { + "dom": { + "onClick": { + "config": { + "script": "\tself.session.custom.dpm_view_path = self.props.params.view\n\tself.session.custom.show_dpm_device_view = True" + }, + "scope": "G", + "type": "script" + } + } + }, + "meta": { + "name": "DPM1_PS4-1" + }, + "position": { + "height": 0.5, + "width": 0.3333 + }, + "propConfig": { + "props.params.DownOn": { + "binding": { + "config": { + "path": "view.custom.dpm3-dpm4" + }, + "type": "property" + } + }, + "props.params.InOn": { + "binding": { + "config": { + "path": "view.custom.dpm3-dpm4" + }, + "type": "property" + } + }, + "props.params.OutOn": { + "binding": { + "config": { + "path": "view.custom.dpm2-dpm3" + }, + "type": "property" + } + } + }, + "props": { + "params": { + "Down1": false, + "Down2": true, + "Down3": false, + "DownLeft": false, + "DownRight": false, + "InDown": true, + "InLeft": false, + "InUp": false, + "OutDown": false, + "OutRight": true, + "OutUp": false, + "view": "Windows/Tabs/Enternet Windows/DPMs/DPM Devices/MCM03/DPM1_PS4-1" + }, + "path": "Windows/Tabs/Enternet Windows/Components/DPM_BLOCK" + }, + "type": "ia.display.view" + }, + { + "events": { + "dom": { + "onClick": { + "config": { + "script": "\tself.session.custom.dpm_view_path = self.props.params.view\n\tself.session.custom.show_dpm_device_view = True" + }, + "scope": "G", + "type": "script" + } + } + }, + "meta": { + "name": "DPM2_PS4-1" + }, + "position": { + "height": 0.5, + "width": 0.3333, + "y": 0.5 + }, + "propConfig": { + "props.params.InOn": { + "binding": { + "config": { + "path": "view.custom.dpm3-dpm4" + }, + "type": "property" + } + }, + "props.params.OutOn": { + "binding": { + "config": { + "path": "view.custom.dpm4-mcm" + }, + "type": "property" + } + } + }, + "props": { + "params": { + "Down1": false, + "Down2": false, + "Down3": false, + "DownLeft": false, + "DownOn": false, + "DownRight": false, + "InDown": false, + "InLeft": false, + "InUp": true, + "OutDown": false, + "OutRight": true, + "OutUp": false, + "view": "Windows/Tabs/Enternet Windows/DPMs/DPM Devices/MCM03/DPM2_PS4-1" + }, + "path": "Windows/Tabs/Enternet Windows/Components/DPM_BLOCK" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "DPM1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.65, + "y": 0.1 + }, + "props": { + "text": "DPM1_PS3-1 11.200.1.2", + "textStyle": { + "fontSize": "1vmin" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "DPM2_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.32, + "y": 0.1 + }, + "props": { + "text": "DPM2_PS3-1 11.200.1.3", + "textStyle": { + "fontSize": "1vmin" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "DPM3_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.005, + "y": 0.1 + }, + "props": { + "text": "DPM1_PS4-1 11.200.1.4", + "textStyle": { + "fontSize": "1vmin" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "DPM4_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.005, + "y": 0.6 + }, + "props": { + "text": "DPM2_PS4-1 11.200.1.5", + "textStyle": { + "fontSize": "1vmin" + } + }, + "type": "ia.display.label" + }, + { + "events": { + "dom": { + "onClick": { + "config": { + "script": "\tself.session.custom.dpm_view_path = self.props.params.view\n\tself.session.custom.show_dpm_device_view = True" + }, + "scope": "G", + "type": "script" + } + } + }, + "meta": { + "name": "DEVICE" + }, + "position": { + "height": 0.5, + "width": 0.3333, + "x": 0.3333, + "y": 0.4999 + }, + "propConfig": { + "props.params.On": { + "binding": { + "config": { + "path": "view.custom.dpm4-mcm" + }, + "type": "property" + } + } + }, + "props": { + "params": { + "LR": true, + "LRU": false, + "LU": false, + "RD": false, + "RLD": false, + "RLU": false, + "RU": false + }, + "path": "Windows/Tabs/Enternet Windows/Components/CommLines" + }, + "type": "ia.display.view" + } + ], + "meta": { + "name": "root" + }, + "position": { + "x": 120, + "y": -723 + }, + "props": { + "mode": "percent", + "style": { + "backgroundColor": "#ffffff" + } + }, + "type": "ia.container.coord" + } +} \ No newline at end of file diff --git a/.resources/9d9f7b0e5dbc166d04324b106f78325f9684d81c138352006441011429d63c65 b/.resources/9d9f7b0e5dbc166d04324b106f78325f9684d81c138352006441011429d63c65 deleted file mode 100644 index 8f01e41b..00000000 Binary files a/.resources/9d9f7b0e5dbc166d04324b106f78325f9684d81c138352006441011429d63c65 and /dev/null differ diff --git a/.resources/9e2485351974e4c29f14fe9dc9e7a749db4637ad0085346729b055b5bb8a628a b/.resources/9e2485351974e4c29f14fe9dc9e7a749db4637ad0085346729b055b5bb8a628a deleted file mode 100644 index e2c3bc9b..00000000 Binary files a/.resources/9e2485351974e4c29f14fe9dc9e7a749db4637ad0085346729b055b5bb8a628a and /dev/null differ diff --git a/.resources/9f39f5c6d22831b84b8b46c317e54f7f0ff41b9cf8faf7dc58dcadcc44e4cd6c b/.resources/9f39f5c6d22831b84b8b46c317e54f7f0ff41b9cf8faf7dc58dcadcc44e4cd6c deleted file mode 100644 index 8cca7fc7..00000000 --- a/.resources/9f39f5c6d22831b84b8b46c317e54f7f0ff41b9cf8faf7dc58dcadcc44e4cd6c +++ /dev/null @@ -1,2552 +0,0 @@ -{ - "custom": { - "bucket": "maps.c4.rme.logistics.a2z.com-441697794360", - "current_flow_view": "AFE 1 MINISORTER", - "current_stage": "prod", - "enabled_whids": [ - "ABQ1", - "AGS1", - "AMA1", - "AUS2", - "BDL4", - "BOS3", - "DEN4", - "DEN8", - "DET3", - "DET6", - "ELP1", - "FAR1", - "FAT2", - "FOE1", - "FSD1", - "FTW5", - "FWA6", - "GEG2", - "HOU6", - "HOU8", - "HSV1", - "ICT2", - "IGQ1", - "IGQ2", - "ILG1", - "LFT1", - "LIT1", - "LIT2", - "LUK2", - "MLI1", - "MQY1", - "MTN1", - "OKC2", - "ORD5", - "ORF3", - "PAE2", - "RIC4", - "ROC1", - "SAN3", - "SAT3", - "SAT4", - "SAV4", - "SCK6", - "SMF6", - "STL3", - "SYR1", - "TEB4", - "TLH2", - "TPA4", - "TYS1", - "YEG2", - "YOO1", - "YOW3" - ], - "flow_view": "AFE 1 MINISORTER", - "flow_view_copy_operation": null, - "flow_view_copy_option": "both", - "flow_view_copy_tooltip": "", - "flow_view_destination": "AFE 1 MINISORTER", - "flow_view_destination_options": [ - { - "label": "AFE 1 MINISORTER", - "value": "AFE 1 MINISORTER" - }, - { - "label": "AFE TRAY SORTERS", - "value": "AFE TRAY SORTERS" - }, - { - "label": "AR FIELD", - "value": "AR FIELD" - }, - { - "label": "EMPTY TOTE LANES", - "value": "EMPTY TOTE LANES" - }, - { - "label": "INBOUND SORTER", - "value": "INBOUND SORTER" - }, - { - "label": "OUTBOUND", - "value": "OUTBOUND" - }, - { - "label": "PACK", - "value": "PACK" - }, - { - "label": "RSP LEVEL 2", - "value": "RSP LEVEL 2" - }, - { - "label": "RSP LEVEL 3", - "value": "RSP LEVEL 3" - }, - { - "label": "RSP LEVEL 4", - "value": "RSP LEVEL 4" - }, - { - "label": "RSP LEVEL 5", - "value": "RSP LEVEL 5" - }, - { - "label": "SHIP SORTER", - "value": "SHIP SORTER" - }, - { - "label": "SMARTPAC", - "value": "SMARTPAC" - }, - { - "label": "TOTE SORTER", - "value": "TOTE SORTER" - }, - { - "label": "TRANSHIP SORTER", - "value": "TRANSHIP SORTER" - }, - { - "label": "WASTE", - "value": "WASTE" - } - ], - "flow_view_edit_mode": { - "active": false, - "admin_enabled": true, - "enabled": true, - "reviewer_enabled": true, - "sadmin_enabled": false - }, - "flow_view_file_suffix": "_FlowView.svg", - "flow_view_options": [ - { - "label": "AFE 1 MINISORTER", - "value": "AFE 1 MINISORTER" - }, - { - "label": "AFE TRAY SORTERS", - "value": "AFE TRAY SORTERS" - }, - { - "label": "AR FIELD", - "value": "AR FIELD" - }, - { - "label": "EMPTY TOTE LANES", - "value": "EMPTY TOTE LANES" - }, - { - "label": "INBOUND SORTER", - "value": "INBOUND SORTER" - }, - { - "label": "OUTBOUND", - "value": "OUTBOUND" - }, - { - "label": "PACK", - "value": "PACK" - }, - { - "label": "RSP LEVEL 2", - "value": "RSP LEVEL 2" - }, - { - "label": "RSP LEVEL 3", - "value": "RSP LEVEL 3" - }, - { - "label": "RSP LEVEL 4", - "value": "RSP LEVEL 4" - }, - { - "label": "RSP LEVEL 5", - "value": "RSP LEVEL 5" - }, - { - "label": "SHIP SORTER", - "value": "SHIP SORTER" - }, - { - "label": "SMARTPAC", - "value": "SMARTPAC" - }, - { - "label": "TOTE SORTER", - "value": "TOTE SORTER" - }, - { - "label": "TRANSHIP SORTER", - "value": "TRANSHIP SORTER" - }, - { - "label": "WASTE", - "value": "WASTE" - } - ], - "flow_view_source": "AFE 1 MINISORTER", - "flow_view_source_options": [ - { - "label": "AFE 1 MINISORTER", - "value": "AFE 1 MINISORTER" - }, - { - "label": "AFE TRAY SORTERS", - "value": "AFE TRAY SORTERS" - }, - { - "label": "AR FIELD", - "value": "AR FIELD" - }, - { - "label": "EMPTY TOTE LANES", - "value": "EMPTY TOTE LANES" - }, - { - "label": "INBOUND SORTER", - "value": "INBOUND SORTER" - }, - { - "label": "OUTBOUND", - "value": "OUTBOUND" - }, - { - "label": "PACK", - "value": "PACK" - }, - { - "label": "RSP LEVEL 2", - "value": "RSP LEVEL 2" - }, - { - "label": "RSP LEVEL 3", - "value": "RSP LEVEL 3" - }, - { - "label": "RSP LEVEL 4", - "value": "RSP LEVEL 4" - }, - { - "label": "RSP LEVEL 5", - "value": "RSP LEVEL 5" - }, - { - "label": "SHIP SORTER", - "value": "SHIP SORTER" - }, - { - "label": "SMARTPAC", - "value": "SMARTPAC" - }, - { - "label": "TOTE SORTER", - "value": "TOTE SORTER" - }, - { - "label": "TRANSHIP SORTER", - "value": "TRANSHIP SORTER" - }, - { - "label": "WASTE", - "value": "WASTE" - } - ], - "instances_file_prefix": "na-rme-scada-maps-hc/FlowViews-prod/YEG2/instance_configs/", - "instances_file_suffix": ".json", - "instances_files": [ - { - "ETag": "\"d5ab88e5aac79f0270c4df38fc76211b\"", - "Key": "na-rme-scada-maps-hc/FlowViews-prod/YEG2/instance_configs/AFE 1 MINISORTER.json", - "LastModified": "2023-07-06 19:13:31", - "Size": 169491, - "StorageClass": "STANDARD" - }, - { - "ETag": "\"2d52b3ac56baf2c347b3cc5a83b3ba41\"", - "Key": "na-rme-scada-maps-hc/FlowViews-prod/YEG2/instance_configs/AFE TRAY SORTERS.json", - "LastModified": "2023-07-06 19:11:33", - "Size": 52706, - "StorageClass": "STANDARD" - }, - { - "ETag": "\"aef77756bf27a4660051d2965d7238b4\"", - "Key": "na-rme-scada-maps-hc/FlowViews-prod/YEG2/instance_configs/AR FIELD.json", - "LastModified": "2023-07-08 01:54:18", - "Size": 459044, - "StorageClass": "STANDARD" - }, - { - "ETag": "\"d4824a32702674453e14ea98e98a0392\"", - "Key": "na-rme-scada-maps-hc/FlowViews-prod/YEG2/instance_configs/EMPTY TOTE LANES.json", - "LastModified": "2023-07-06 19:08:48", - "Size": 30929, - "StorageClass": "STANDARD" - }, - { - "ETag": "\"0dc3e31b34b442cc8a32611766ad829b\"", - "Key": "na-rme-scada-maps-hc/FlowViews-prod/YEG2/instance_configs/INBOUND SORTER.json", - "LastModified": "2023-07-07 14:56:13", - "Size": 85953, - "StorageClass": "STANDARD" - }, - { - "ETag": "\"31678c5ee092b6cd6b066fcfe34d0637\"", - "Key": "na-rme-scada-maps-hc/FlowViews-prod/YEG2/instance_configs/OUTBOUND.json", - "LastModified": "2023-07-08 01:53:03", - "Size": 217082, - "StorageClass": "STANDARD" - }, - { - "ETag": "\"897aed13d0ecb923a0642251375ee2e4\"", - "Key": "na-rme-scada-maps-hc/FlowViews-prod/YEG2/instance_configs/PACK.json", - "LastModified": "2023-07-07 14:51:27", - "Size": 96022, - "StorageClass": "STANDARD" - }, - { - "ETag": "\"6b66dcbf14174ef5cb4488beb9c6b95d\"", - "Key": "na-rme-scada-maps-hc/FlowViews-prod/YEG2/instance_configs/RSP LEVEL 2.json", - "LastModified": "2023-07-07 14:46:03", - "Size": 38208, - "StorageClass": "STANDARD" - }, - { - "ETag": "\"03e388834bcb2960fd20a81ba93be712\"", - "Key": "na-rme-scada-maps-hc/FlowViews-prod/YEG2/instance_configs/RSP LEVEL 3.json", - "LastModified": "2023-07-07 14:46:21", - "Size": 38439, - "StorageClass": "STANDARD" - }, - { - "ETag": "\"96b1d70d6b14e9f9a03cbf1fde7f3258\"", - "Key": "na-rme-scada-maps-hc/FlowViews-prod/YEG2/instance_configs/RSP LEVEL 4.json", - "LastModified": "2023-07-07 14:46:34", - "Size": 38333, - "StorageClass": "STANDARD" - }, - { - "ETag": "\"6c8b4a21227a76151bfca40c25abc186\"", - "Key": "na-rme-scada-maps-hc/FlowViews-prod/YEG2/instance_configs/RSP LEVEL 5.json", - "LastModified": "2023-07-07 14:46:46", - "Size": 38273, - "StorageClass": "STANDARD" - }, - { - "ETag": "\"f2c10f54de8dbc30179f8cef737825ec\"", - "Key": "na-rme-scada-maps-hc/FlowViews-prod/YEG2/instance_configs/SHIP SORTER.json", - "LastModified": "2023-07-06 19:10:26", - "Size": 25374, - "StorageClass": "STANDARD" - }, - { - "ETag": "\"99d01fcc3f3c62e32c5a4c98b320b91f\"", - "Key": "na-rme-scada-maps-hc/FlowViews-prod/YEG2/instance_configs/SMARTPAC.json", - "LastModified": "2023-07-06 19:07:29", - "Size": 19099, - "StorageClass": "STANDARD" - }, - { - "ETag": "\"7a117bc9cf00e644518b06981e736f52\"", - "Key": "na-rme-scada-maps-hc/FlowViews-prod/YEG2/instance_configs/TOTE SORTER.json", - "LastModified": "2023-07-07 14:41:36", - "Size": 82727, - "StorageClass": "STANDARD" - }, - { - "ETag": "\"32c23ced5bb7a4ff7d0f166f85f006dd\"", - "Key": "na-rme-scada-maps-hc/FlowViews-prod/YEG2/instance_configs/TRANSHIP SORTER.json", - "LastModified": "2023-07-08 01:47:48", - "Size": 13327, - "StorageClass": "STANDARD" - }, - { - "ETag": "\"f0e92545033d5f070cd8884c7a16dac1\"", - "Key": "na-rme-scada-maps-hc/FlowViews-prod/YEG2/instance_configs/WASTE.json", - "LastModified": "2023-07-08 01:47:36", - "Size": 7784, - "StorageClass": "STANDARD" - } - ], - "loading": false, - "migrate_enabled": false, - "selected_flow_view": "OUTBOUND", - "site_files": [ - { - "ETag": "\"d41d8cd98f00b204e9800998ecf8427e\"", - "Key": "na-rme-scada-maps-hc/FlowViews-prod/YEG2/", - "LastModified": "2023-06-22 15:10:22", - "Size": 0, - "StorageClass": "STANDARD" - }, - { - "ETag": "\"3b31b83ba6617e83ef2a98edcedf9d9d\"", - "Key": "na-rme-scada-maps-hc/FlowViews-prod/YEG2/AFE 1 MINISORTER_FlowView.svg", - "LastModified": "2023-07-06 19:13:31", - "Size": 319635, - "StorageClass": "STANDARD" - }, - { - "ETag": "\"db37b5cb4a0a74b4a46e3c65f968fbbf\"", - "Key": "na-rme-scada-maps-hc/FlowViews-prod/YEG2/AFE TRAY SORTERS_FlowView.svg", - "LastModified": "2023-07-06 19:11:33", - "Size": 105788, - "StorageClass": "STANDARD" - }, - { - "ETag": "\"cdd14f701d2256a26ecad94e7c118f30\"", - "Key": "na-rme-scada-maps-hc/FlowViews-prod/YEG2/AR FIELD_FlowView.svg", - "LastModified": "2023-07-08 01:54:18", - "Size": 448282, - "StorageClass": "STANDARD" - }, - { - "ETag": "\"4086b694863b38489bd980a40a3d686e\"", - "Key": "na-rme-scada-maps-hc/FlowViews-prod/YEG2/EMPTY TOTE LANES_FlowView.svg", - "LastModified": "2023-07-06 19:08:47", - "Size": 47625, - "StorageClass": "STANDARD" - }, - { - "ETag": "\"9974714836554c5aa21683db6d7190a8\"", - "Key": "na-rme-scada-maps-hc/FlowViews-prod/YEG2/INBOUND SORTER_FlowView.svg", - "LastModified": "2023-07-07 14:56:13", - "Size": 170813, - "StorageClass": "STANDARD" - }, - { - "ETag": "\"e86f2757a16dce8aa9160b4508f06257\"", - "Key": "na-rme-scada-maps-hc/FlowViews-prod/YEG2/OUTBOUND_FlowView.svg", - "LastModified": "2023-07-08 01:53:03", - "Size": 410568, - "StorageClass": "STANDARD" - }, - { - "ETag": "\"8f64bed5643c9db4f7c0a57d506fe819\"", - "Key": "na-rme-scada-maps-hc/FlowViews-prod/YEG2/PACK_FlowView.svg", - "LastModified": "2023-07-07 14:51:27", - "Size": 185917, - "StorageClass": "STANDARD" - }, - { - "ETag": "\"f1e70ba02a7b9e66a6391b67fd4a9166\"", - "Key": "na-rme-scada-maps-hc/FlowViews-prod/YEG2/RSP LEVEL 2_FlowView.svg", - "LastModified": "2023-07-07 14:46:03", - "Size": 105170, - "StorageClass": "STANDARD" - }, - { - "ETag": "\"35aa4d02852470107a6af6a5ca87e7d3\"", - "Key": "na-rme-scada-maps-hc/FlowViews-prod/YEG2/RSP LEVEL 3_FlowView.svg", - "LastModified": "2023-07-07 14:46:21", - "Size": 105126, - "StorageClass": "STANDARD" - }, - { - "ETag": "\"f47a62e8f45dc6d322a242ef7a12612a\"", - "Key": "na-rme-scada-maps-hc/FlowViews-prod/YEG2/RSP LEVEL 4_FlowView.svg", - "LastModified": "2023-07-07 14:46:34", - "Size": 105122, - "StorageClass": "STANDARD" - }, - { - "ETag": "\"496a0b6c937eef0bb3fd62a4e35b98da\"", - "Key": "na-rme-scada-maps-hc/FlowViews-prod/YEG2/RSP LEVEL 5_FlowView.svg", - "LastModified": "2023-07-07 14:46:46", - "Size": 105118, - "StorageClass": "STANDARD" - }, - { - "ETag": "\"8f8b7b0fff1b9fb3c6f04b6a8a3ddc7e\"", - "Key": "na-rme-scada-maps-hc/FlowViews-prod/YEG2/SHIP SORTER_FlowView.svg", - "LastModified": "2023-07-06 19:10:26", - "Size": 67640, - "StorageClass": "STANDARD" - }, - { - "ETag": "\"e8f87755974bd51d7e9b287daa1e9c57\"", - "Key": "na-rme-scada-maps-hc/FlowViews-prod/YEG2/SMARTPAC_FlowView.svg", - "LastModified": "2023-07-06 19:07:28", - "Size": 36300, - "StorageClass": "STANDARD" - }, - { - "ETag": "\"2923edb101a98c30ad62429ac22d423c\"", - "Key": "na-rme-scada-maps-hc/FlowViews-prod/YEG2/TOTE SORTER_FlowView.svg", - "LastModified": "2023-07-07 14:41:36", - "Size": 167519, - "StorageClass": "STANDARD" - }, - { - "ETag": "\"6ec75cac9a4da963f90fa05e765c67e5\"", - "Key": "na-rme-scada-maps-hc/FlowViews-prod/YEG2/TRANSHIP SORTER_FlowView.svg", - "LastModified": "2023-07-08 01:47:48", - "Size": 39505, - "StorageClass": "STANDARD" - }, - { - "ETag": "\"62b9a05376699daab936fe799139435f\"", - "Key": "na-rme-scada-maps-hc/FlowViews-prod/YEG2/WASTE_FlowView.svg", - "LastModified": "2023-07-08 01:47:36", - "Size": 19002, - "StorageClass": "STANDARD" - }, - { - "ETag": "\"d41d8cd98f00b204e9800998ecf8427e\"", - "Key": "na-rme-scada-maps-hc/FlowViews-prod/YEG2/instance_configs/", - "LastModified": "2023-06-22 15:10:28", - "Size": 0, - "StorageClass": "STANDARD" - }, - { - "ETag": "\"d5ab88e5aac79f0270c4df38fc76211b\"", - "Key": "na-rme-scada-maps-hc/FlowViews-prod/YEG2/instance_configs/AFE 1 MINISORTER.json", - "LastModified": "2023-07-06 19:13:31", - "Size": 169491, - "StorageClass": "STANDARD" - }, - { - "ETag": "\"2d52b3ac56baf2c347b3cc5a83b3ba41\"", - "Key": "na-rme-scada-maps-hc/FlowViews-prod/YEG2/instance_configs/AFE TRAY SORTERS.json", - "LastModified": "2023-07-06 19:11:33", - "Size": 52706, - "StorageClass": "STANDARD" - }, - { - "ETag": "\"aef77756bf27a4660051d2965d7238b4\"", - "Key": "na-rme-scada-maps-hc/FlowViews-prod/YEG2/instance_configs/AR FIELD.json", - "LastModified": "2023-07-08 01:54:18", - "Size": 459044, - "StorageClass": "STANDARD" - }, - { - "ETag": "\"d4824a32702674453e14ea98e98a0392\"", - "Key": "na-rme-scada-maps-hc/FlowViews-prod/YEG2/instance_configs/EMPTY TOTE LANES.json", - "LastModified": "2023-07-06 19:08:48", - "Size": 30929, - "StorageClass": "STANDARD" - }, - { - "ETag": "\"0dc3e31b34b442cc8a32611766ad829b\"", - "Key": "na-rme-scada-maps-hc/FlowViews-prod/YEG2/instance_configs/INBOUND SORTER.json", - "LastModified": "2023-07-07 14:56:13", - "Size": 85953, - "StorageClass": "STANDARD" - }, - { - "ETag": "\"31678c5ee092b6cd6b066fcfe34d0637\"", - "Key": "na-rme-scada-maps-hc/FlowViews-prod/YEG2/instance_configs/OUTBOUND.json", - "LastModified": "2023-07-08 01:53:03", - "Size": 217082, - "StorageClass": "STANDARD" - }, - { - "ETag": "\"897aed13d0ecb923a0642251375ee2e4\"", - "Key": "na-rme-scada-maps-hc/FlowViews-prod/YEG2/instance_configs/PACK.json", - "LastModified": "2023-07-07 14:51:27", - "Size": 96022, - "StorageClass": "STANDARD" - }, - { - "ETag": "\"6b66dcbf14174ef5cb4488beb9c6b95d\"", - "Key": "na-rme-scada-maps-hc/FlowViews-prod/YEG2/instance_configs/RSP LEVEL 2.json", - "LastModified": "2023-07-07 14:46:03", - "Size": 38208, - "StorageClass": "STANDARD" - }, - { - "ETag": "\"03e388834bcb2960fd20a81ba93be712\"", - "Key": "na-rme-scada-maps-hc/FlowViews-prod/YEG2/instance_configs/RSP LEVEL 3.json", - "LastModified": "2023-07-07 14:46:21", - "Size": 38439, - "StorageClass": "STANDARD" - }, - { - "ETag": "\"96b1d70d6b14e9f9a03cbf1fde7f3258\"", - "Key": "na-rme-scada-maps-hc/FlowViews-prod/YEG2/instance_configs/RSP LEVEL 4.json", - "LastModified": "2023-07-07 14:46:34", - "Size": 38333, - "StorageClass": "STANDARD" - }, - { - "ETag": "\"6c8b4a21227a76151bfca40c25abc186\"", - "Key": "na-rme-scada-maps-hc/FlowViews-prod/YEG2/instance_configs/RSP LEVEL 5.json", - "LastModified": "2023-07-07 14:46:46", - "Size": 38273, - "StorageClass": "STANDARD" - }, - { - "ETag": "\"f2c10f54de8dbc30179f8cef737825ec\"", - "Key": "na-rme-scada-maps-hc/FlowViews-prod/YEG2/instance_configs/SHIP SORTER.json", - "LastModified": "2023-07-06 19:10:26", - "Size": 25374, - "StorageClass": "STANDARD" - }, - { - "ETag": "\"99d01fcc3f3c62e32c5a4c98b320b91f\"", - "Key": "na-rme-scada-maps-hc/FlowViews-prod/YEG2/instance_configs/SMARTPAC.json", - "LastModified": "2023-07-06 19:07:29", - "Size": 19099, - "StorageClass": "STANDARD" - }, - { - "ETag": "\"7a117bc9cf00e644518b06981e736f52\"", - "Key": "na-rme-scada-maps-hc/FlowViews-prod/YEG2/instance_configs/TOTE SORTER.json", - "LastModified": "2023-07-07 14:41:36", - "Size": 82727, - "StorageClass": "STANDARD" - }, - { - "ETag": "\"32c23ced5bb7a4ff7d0f166f85f006dd\"", - "Key": "na-rme-scada-maps-hc/FlowViews-prod/YEG2/instance_configs/TRANSHIP SORTER.json", - "LastModified": "2023-07-08 01:47:48", - "Size": 13327, - "StorageClass": "STANDARD" - }, - { - "ETag": "\"f0e92545033d5f070cd8884c7a16dac1\"", - "Key": "na-rme-scada-maps-hc/FlowViews-prod/YEG2/instance_configs/WASTE.json", - "LastModified": "2023-07-08 01:47:36", - "Size": 7784, - "StorageClass": "STANDARD" - } - ], - "site_folder": "na-rme-scada-maps-hc/FlowViews-prod/YEG2/", - "site_folder_destination": "na-rme-scada-maps-hc/FlowViews-prod/YEG2/", - "site_folder_source": "na-rme-scada-maps-hc/FlowViews-prod/YEG2/", - "stage_destination": "prod", - "stage_map": { - "alpha": { - "endpoint": "https://alpha.rmesdflowview.c4.rme.amazon.dev/", - "region": "us-west-2" - }, - "beta": { - "endpoint": "https://beta.rmesdflowview.c4.rme.amazon.dev/", - "region": "us-east-1" - }, - "prod": { - "endpoint": "https://rmesdflowview.c4.rme.amazon.dev/", - "region": "us-east-2" - } - }, - "stage_options": [ - { - "label": "Prod", - "value": "prod" - }, - { - "label": "Beta", - "value": "beta" - }, - { - "label": "Alpha", - "value": "alpha" - } - ], - "stage_source": "prod", - "title_text": "FlowView Management", - "whid": "YEG2", - "whid_destination": "YEG2", - "whid_destination_options": [ - { - "label": "ABQ1", - "value": "ABQ1" - }, - { - "label": "AGS1", - "value": "AGS1" - }, - { - "label": "AMA1", - "value": "AMA1" - }, - { - "label": "AUS2", - "value": "AUS2" - }, - { - "label": "BDL4", - "value": "BDL4" - }, - { - "label": "BOS3", - "value": "BOS3" - }, - { - "label": "DEN4", - "value": "DEN4" - }, - { - "label": "DEN8", - "value": "DEN8" - }, - { - "label": "DET3", - "value": "DET3" - }, - { - "label": "DET6", - "value": "DET6" - }, - { - "label": "ELP1", - "value": "ELP1" - }, - { - "label": "FAR1", - "value": "FAR1" - }, - { - "label": "FAT2", - "value": "FAT2" - }, - { - "label": "FOE1", - "value": "FOE1" - }, - { - "label": "FSD1", - "value": "FSD1" - }, - { - "label": "FTW5", - "value": "FTW5" - }, - { - "label": "FWA6", - "value": "FWA6" - }, - { - "label": "GEG2", - "value": "GEG2" - }, - { - "label": "HOU6", - "value": "HOU6" - }, - { - "label": "HOU8", - "value": "HOU8" - }, - { - "label": "HSV1", - "value": "HSV1" - }, - { - "label": "ICT2", - "value": "ICT2" - }, - { - "label": "IGQ1", - "value": "IGQ1" - }, - { - "label": "IGQ2", - "value": "IGQ2" - }, - { - "label": "ILG1", - "value": "ILG1" - }, - { - "label": "LFT1", - "value": "LFT1" - }, - { - "label": "LIT1", - "value": "LIT1" - }, - { - "label": "LIT2", - "value": "LIT2" - }, - { - "label": "LUK2", - "value": "LUK2" - }, - { - "label": "MLI1", - "value": "MLI1" - }, - { - "label": "MQY1", - "value": "MQY1" - }, - { - "label": "MTN1", - "value": "MTN1" - }, - { - "label": "OKC2", - "value": "OKC2" - }, - { - "label": "ORD5", - "value": "ORD5" - }, - { - "label": "ORF3", - "value": "ORF3" - }, - { - "label": "PAE2", - "value": "PAE2" - }, - { - "label": "RIC4", - "value": "RIC4" - }, - { - "label": "ROC1", - "value": "ROC1" - }, - { - "label": "SAN3", - "value": "SAN3" - }, - { - "label": "SAT3", - "value": "SAT3" - }, - { - "label": "SAT4", - "value": "SAT4" - }, - { - "label": "SAV4", - "value": "SAV4" - }, - { - "label": "SCK6", - "value": "SCK6" - }, - { - "label": "SMF6", - "value": "SMF6" - }, - { - "label": "STL3", - "value": "STL3" - }, - { - "label": "SYR1", - "value": "SYR1" - }, - { - "label": "TEB4", - "value": "TEB4" - }, - { - "label": "TLH2", - "value": "TLH2" - }, - { - "label": "TPA4", - "value": "TPA4" - }, - { - "label": "TYS1", - "value": "TYS1" - }, - { - "label": "YEG2", - "value": "YEG2" - }, - { - "label": "YOO1", - "value": "YOO1" - }, - { - "label": "YOW3", - "value": "YOW3" - } - ], - "whid_options": [ - { - "label": "ABQ1", - "value": "ABQ1" - }, - { - "label": "AGS1", - "value": "AGS1" - }, - { - "label": "AMA1", - "value": "AMA1" - }, - { - "label": "AUS2", - "value": "AUS2" - }, - { - "label": "BDL4", - "value": "BDL4" - }, - { - "label": "BOS3", - "value": "BOS3" - }, - { - "label": "DEN4", - "value": "DEN4" - }, - { - "label": "DEN8", - "value": "DEN8" - }, - { - "label": "DET3", - "value": "DET3" - }, - { - "label": "DET6", - "value": "DET6" - }, - { - "label": "ELP1", - "value": "ELP1" - }, - { - "label": "FAR1", - "value": "FAR1" - }, - { - "label": "FAT2", - "value": "FAT2" - }, - { - "label": "FOE1", - "value": "FOE1" - }, - { - "label": "FSD1", - "value": "FSD1" - }, - { - "label": "FTW5", - "value": "FTW5" - }, - { - "label": "FWA6", - "value": "FWA6" - }, - { - "label": "GEG2", - "value": "GEG2" - }, - { - "label": "HOU6", - "value": "HOU6" - }, - { - "label": "HOU8", - "value": "HOU8" - }, - { - "label": "HSV1", - "value": "HSV1" - }, - { - "label": "ICT2", - "value": "ICT2" - }, - { - "label": "IGQ1", - "value": "IGQ1" - }, - { - "label": "IGQ2", - "value": "IGQ2" - }, - { - "label": "ILG1", - "value": "ILG1" - }, - { - "label": "LFT1", - "value": "LFT1" - }, - { - "label": "LIT1", - "value": "LIT1" - }, - { - "label": "LIT2", - "value": "LIT2" - }, - { - "label": "LUK2", - "value": "LUK2" - }, - { - "label": "MLI1", - "value": "MLI1" - }, - { - "label": "MQY1", - "value": "MQY1" - }, - { - "label": "MTN1", - "value": "MTN1" - }, - { - "label": "OKC2", - "value": "OKC2" - }, - { - "label": "ORD5", - "value": "ORD5" - }, - { - "label": "ORF3", - "value": "ORF3" - }, - { - "label": "PAE2", - "value": "PAE2" - }, - { - "label": "RIC4", - "value": "RIC4" - }, - { - "label": "ROC1", - "value": "ROC1" - }, - { - "label": "SAN3", - "value": "SAN3" - }, - { - "label": "SAT3", - "value": "SAT3" - }, - { - "label": "SAT4", - "value": "SAT4" - }, - { - "label": "SAV4", - "value": "SAV4" - }, - { - "label": "SCK6", - "value": "SCK6" - }, - { - "label": "SMF6", - "value": "SMF6" - }, - { - "label": "STL3", - "value": "STL3" - }, - { - "label": "SYR1", - "value": "SYR1" - }, - { - "label": "TEB4", - "value": "TEB4" - }, - { - "label": "TLH2", - "value": "TLH2" - }, - { - "label": "TPA4", - "value": "TPA4" - }, - { - "label": "TYS1", - "value": "TYS1" - }, - { - "label": "YEG2", - "value": "YEG2" - }, - { - "label": "YOO1", - "value": "YOO1" - }, - { - "label": "YOW3", - "value": "YOW3" - } - ], - "whid_source": "YEG2", - "whid_source_options": [ - { - "label": "ABQ1", - "value": "ABQ1" - }, - { - "label": "AGS1", - "value": "AGS1" - }, - { - "label": "AMA1", - "value": "AMA1" - }, - { - "label": "AUS2", - "value": "AUS2" - }, - { - "label": "BDL4", - "value": "BDL4" - }, - { - "label": "BOS3", - "value": "BOS3" - }, - { - "label": "DEN4", - "value": "DEN4" - }, - { - "label": "DEN8", - "value": "DEN8" - }, - { - "label": "DET3", - "value": "DET3" - }, - { - "label": "DET6", - "value": "DET6" - }, - { - "label": "ELP1", - "value": "ELP1" - }, - { - "label": "FAR1", - "value": "FAR1" - }, - { - "label": "FAT2", - "value": "FAT2" - }, - { - "label": "FOE1", - "value": "FOE1" - }, - { - "label": "FSD1", - "value": "FSD1" - }, - { - "label": "FTW5", - "value": "FTW5" - }, - { - "label": "FWA6", - "value": "FWA6" - }, - { - "label": "GEG2", - "value": "GEG2" - }, - { - "label": "HOU6", - "value": "HOU6" - }, - { - "label": "HOU8", - "value": "HOU8" - }, - { - "label": "HSV1", - "value": "HSV1" - }, - { - "label": "ICT2", - "value": "ICT2" - }, - { - "label": "IGQ1", - "value": "IGQ1" - }, - { - "label": "IGQ2", - "value": "IGQ2" - }, - { - "label": "ILG1", - "value": "ILG1" - }, - { - "label": "LFT1", - "value": "LFT1" - }, - { - "label": "LIT1", - "value": "LIT1" - }, - { - "label": "LIT2", - "value": "LIT2" - }, - { - "label": "LUK2", - "value": "LUK2" - }, - { - "label": "MLI1", - "value": "MLI1" - }, - { - "label": "MQY1", - "value": "MQY1" - }, - { - "label": "MTN1", - "value": "MTN1" - }, - { - "label": "OKC2", - "value": "OKC2" - }, - { - "label": "ORD5", - "value": "ORD5" - }, - { - "label": "ORF3", - "value": "ORF3" - }, - { - "label": "PAE2", - "value": "PAE2" - }, - { - "label": "RIC4", - "value": "RIC4" - }, - { - "label": "ROC1", - "value": "ROC1" - }, - { - "label": "SAN3", - "value": "SAN3" - }, - { - "label": "SAT3", - "value": "SAT3" - }, - { - "label": "SAT4", - "value": "SAT4" - }, - { - "label": "SAV4", - "value": "SAV4" - }, - { - "label": "SCK6", - "value": "SCK6" - }, - { - "label": "SMF6", - "value": "SMF6" - }, - { - "label": "STL3", - "value": "STL3" - }, - { - "label": "SYR1", - "value": "SYR1" - }, - { - "label": "TEB4", - "value": "TEB4" - }, - { - "label": "TLH2", - "value": "TLH2" - }, - { - "label": "TPA4", - "value": "TPA4" - }, - { - "label": "TYS1", - "value": "TYS1" - }, - { - "label": "YEG2", - "value": "YEG2" - }, - { - "label": "YOO1", - "value": "YOO1" - }, - { - "label": "YOW3", - "value": "YOW3" - } - ] - }, - "events": { - "system": { - "onStartup": { - "config": { - "script": "\t# initialize form via message handler\n\tsystem.perspective.sendMessage(\u0027request_initialize_form\u0027, scope\u003d\u0027view\u0027)\n\t" - }, - "scope": "G", - "type": "script" - } - } - }, - "params": { - "selected_flow_view": "OUTBOUND", - "selected_site": "MTN1", - "selected_stage": "prod" - }, - "propConfig": { - "custom.bucket": { - "binding": { - "config": { - "path": "session.custom.flow_view_config.site_config.s3.bucket_name" - }, - "type": "property" - }, - "persistent": true - }, - "custom.current_flow_view": { - "binding": { - "config": { - "path": "session.custom.flow_view_config.site_config.selected_flow_view" - }, - "type": "property" - }, - "persistent": true - }, - "custom.current_stage": { - "binding": { - "config": { - "path": "session.custom.flow_view_config.stage_config.stage" - }, - "type": "property" - }, - "persistent": true - }, - "custom.enabled_whids": { - "binding": { - "config": { - "path": "session.custom.flow_view_config.site_config.enabled_whids" - }, - "type": "property" - }, - "persistent": true - }, - "custom.flow_view": { - "binding": { - "config": { - "path": "session.custom.flow_view_config.site_config.selected_flow_view" - }, - "type": "property" - }, - "persistent": true - }, - "custom.flow_view_copy_operation": { - "binding": { - "config": { - "expression": "if(isNull({view.custom.stage_source})||!len({view.custom.stage_source})\r\n\t||isNull({view.custom.stage_destination})||!len({view.custom.stage_destination})\r\n//\t||{view.custom.stage_source}\u003d{view.custom.stage_destination}\r\n\t||({view.custom.stage_source}\u003d{view.custom.stage_destination}\r\n\t\t\u0026\u0026{view.custom.whid_source}\u003d{view.custom.whid_destination}\r\n\t\t\u0026\u0026{view.custom.flow_view_source}\u003d{view.custom.flow_view_destination})\r\n\t,null,\r\n\tif({view.custom.whid_source}\u003d\u0027ALL\u0027,\u0027migrate_stages\u0027,\r\n\tif({view.custom.whid_source}\u003d{view.custom.whid_destination}\r\n\t\t\u0026\u0026{view.custom.flow_view_source}\u003d\u0027ALL\u0027,\u0027migrate_stages\u0027,\r\n\tif({view.custom.flow_view_source}\u003d\u0027ALL\u0027,\u0027migrate_sites\u0027,\r\n\t\u0027migrate_flowviews\u0027))))" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.flow_view_copy_option": { - "persistent": true - }, - "custom.flow_view_copy_tooltip": { - "binding": { - "config": { - "expression": "{view.custom.stage_source}+{view.custom.stage_destination}\r\n+{view.custom.whid_source}+{view.custom.whid_destination}\r\n+{view.custom.flow_view_source}+{view.custom.flow_view_destination}\r\n+{view.custom.flow_view_copy_operation}+{view.custom.flow_view_copy_option}" - }, - "transforms": [ - { - "code": "\toperation \u003d self.custom.flow_view_copy_operation\n\tif not operation:\n\t\treturn \u0027\u0027\n\tsrc_stage \u003d self.custom.stage_source\n\tdest_stage \u003d self.custom.stage_destination\n\tsrc_whid \u003d self.custom.whid_source\n\tdest_whid \u003d self.custom.whid_destination\n\tsrc_flowview \u003d self.custom.flow_view_source\n\tdest_flowview \u003d self.custom.flow_view_destination\n\tcopy_option \u003d self.custom.flow_view_copy_option\n\tmsg \u003d \u0027\u0027\n\tif operation \u003d\u003d \u0027migrate_stages\u0027:\n\t\tmsg \u003d (\u0027Migrate all flow view files for whid: %s \\n\u0027\n\t\t\t\u0027From %s stage to %s stage? \\n\u0027\n\t\t\t\u0027This operation may take several minutes\u0027) % (\n\t\t\tsrc_whid, src_stage, dest_stage)\n\telif operation \u003d\u003d \u0027migrate_sites\u0027:\n\t\tmsg \u003d (\u0027Migrate all flow view files for whid: %s to whid: %s \\n\u0027\n\t\t\t\u0027From %s stage to %s stage? \\n\u0027\n\t\t\t\u0027This operation may take several minutes\u0027) % (\n\t\t\tsrc_whid, dest_whid, src_stage, dest_stage)\n\telif operation \u003d\u003d \u0027migrate_flowviews\u0027:\n\t\tif copy_option \u003d\u003d \u0027both\u0027:\n\t\t\tcopy_prompt \u003d \u0027both svg image and config json files\u0027\n\t\telif copy_option \u003d\u003d \u0027svg\u0027:\n\t\t\tcopy_prompt \u003d \u0027svg image file\u0027\n\t\telse:\n\t\t\tcopy_prompt \u003d \u0027config json file\u0027\n\t\tmsg \u003d (\u0027Copy %s for flowview: %s to flowview: %s \\n\u0027\n\t\t\t\u0027From whid: %s to whid: %s \\n\u0027\n\t\t\t\u0027From %s stage to %s stage?\u0027) % (\n\t\t\tcopy_prompt, src_flowview, dest_flowview, \n\t\t\tsrc_whid, dest_whid, src_stage, dest_stage)\n\treturn msg", - "type": "script" - } - ], - "type": "expr" - }, - "persistent": true - }, - "custom.flow_view_destination": { - "persistent": true - }, - "custom.flow_view_destination_options": { - "binding": { - "config": { - "expression": "{view.custom.bucket}+{view.custom.site_folder_destination}" - }, - "transforms": [ - { - "code": "\tfrom s3 import S3API\n\tbucket \u003d self.custom.bucket\n\tprefix \u003d self.custom.site_folder_destination\n\tstage \u003d self.custom.current_stage\n\tusername \u003d self.session.props.auth.user.userName\n\t# DEVNOTE 2023-04-21: force API call to prod\n#\ts3m \u003d S3API(stage, username)\n\t# fetch all files in site folder\n\ts3m \u003d S3API(\u0027prod\u0027, username)\n\tsite_files \u003d s3m.list_objects(prefix\u003dprefix, bucket\u003dbucket)\n\t# parse out flow-view files from the site files\n\tsuffix \u003d self.custom.flow_view_file_suffix\n\tflow_view_files \u003d [x for x in site_files if x[\u0027Key\u0027].startswith(prefix) \n\t\t\t\t\t\tand x[\u0027Key\u0027].endswith(suffix)]\n\t# build-out options from flow-view files, prepending with \u0027ALL\u0027 if user is sadmin\n\tif self.custom.flow_view_edit_mode.sadmin_enabled:\n\t\toptions \u003d [{\u0027value\u0027: \u0027ALL\u0027, \u0027label\u0027: \u0027ALL\u0027}]\n\telse:\n\t\toptions \u003d []\n\toptions.extend([{\u0027value\u0027: x[\u0027Key\u0027].replace(prefix,\u0027\u0027).replace(suffix,\u0027\u0027), \n\t\t\t\u0027label\u0027: x[\u0027Key\u0027].replace(prefix,\u0027\u0027).replace(suffix,\u0027\u0027)} \n\t\t\tfor x in flow_view_files])\n\treturn options", - "type": "script" - } - ], - "type": "expr" - }, - "persistent": true - }, - "custom.flow_view_edit_mode": { - "binding": { - "config": { - "path": "session.custom.flow_view_config.edit_mode" - }, - "type": "property" - }, - "persistent": true - }, - "custom.flow_view_file_suffix": { - "binding": { - "config": { - "path": "session.custom.flow_view_config.site_config.s3.flow_view_file_suffix" - }, - "type": "property" - }, - "persistent": true - }, - "custom.flow_view_files": { - "binding": { - "config": { - "path": "view.custom.site_files" - }, - "transforms": [ - { - "code": "\tprefix \u003d self.custom.site_folder\n\tsuffix \u003d self.custom.flow_view_file_suffix\n\treturn [x for x in value \n\t\tif x.Key.startswith(prefix) and x.Key.endswith(suffix)]", - "type": "script" - } - ], - "type": "property" - } - }, - "custom.flow_view_options": { - "binding": { - "config": { - "path": "view.custom.flow_view_files" - }, - "transforms": [ - { - "code": "\tprefix \u003d self.custom.site_folder\n\tsuffix \u003d self.custom.flow_view_file_suffix\n\tif self.custom.flow_view_edit_mode.sadmin_enabled:\n\t\toptions \u003d [{\u0027value\u0027: \u0027ALL\u0027, \u0027label\u0027: \u0027ALL\u0027}]\n\telse:\n\t\toptions \u003d []\n\toptions.extend([{\u0027value\u0027: x.Key.replace(prefix,\u0027\u0027).replace(suffix,\u0027\u0027), \n\t\t\t\u0027label\u0027: x.Key.replace(prefix,\u0027\u0027).replace(suffix,\u0027\u0027)} \n\t\t\tfor x in value])\n\treturn options", - "type": "script" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.flow_view_source": { - "persistent": true - }, - "custom.flow_view_source_options": { - "binding": { - "config": { - "expression": "{view.custom.bucket}+{view.custom.site_folder_source}" - }, - "transforms": [ - { - "code": "\tfrom s3 import S3API\n\tbucket \u003d self.custom.bucket\n\tprefix \u003d self.custom.site_folder_source\n\tstage \u003d self.custom.current_stage\n\tusername \u003d self.session.props.auth.user.userName\n\t# DEVNOTE 2023-04-21: force API call to prod\n#\ts3m \u003d S3API(stage, username)\n\t# fetch all files in site folder\n\ts3m \u003d S3API(\u0027prod\u0027, username)\n\tsite_files \u003d s3m.list_objects(prefix\u003dprefix, bucket\u003dbucket)\n\t# parse out flow-view files from the site files\n\tsuffix \u003d self.custom.flow_view_file_suffix\n\tflow_view_files \u003d [x for x in site_files if x[\u0027Key\u0027].startswith(prefix) \n\t\t\t\t\t\tand x[\u0027Key\u0027].endswith(suffix)]\n\t# build-out options from flow-view files, prepending with \u0027ALL\u0027 if user is sadmin\n\tif self.custom.flow_view_edit_mode.sadmin_enabled:\n\t\toptions \u003d [{\u0027value\u0027: \u0027ALL\u0027, \u0027label\u0027: \u0027ALL\u0027}]\n\telse:\n\t\toptions \u003d []\n\toptions.extend([{\u0027value\u0027: x[\u0027Key\u0027].replace(prefix,\u0027\u0027).replace(suffix,\u0027\u0027), \n\t\t\t\u0027label\u0027: x[\u0027Key\u0027].replace(prefix,\u0027\u0027).replace(suffix,\u0027\u0027)} \n\t\t\tfor x in flow_view_files])\n\treturn options", - "type": "script" - } - ], - "type": "expr" - }, - "persistent": true - }, - "custom.instances_file_prefix": { - "binding": { - "config": { - "expression": "stringFormat(\u0027%sinstance_configs/\u0027,{view.custom.site_folder})" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.instances_file_suffix": { - "persistent": true - }, - "custom.instances_files": { - "binding": { - "config": { - "path": "view.custom.site_files" - }, - "transforms": [ - { - "code": "\tprefix \u003d self.custom.instances_file_prefix\n\tsuffix \u003d self.custom.instances_file_suffix\n\treturn [x for x in value \n\t\tif x.Key.startswith(prefix) and x.Key.endswith(suffix)]", - "type": "script" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.loading": { - "persistent": true - }, - "custom.migrate_enabled": { - "binding": { - "config": { - "expression": "!isNull({view.custom.flow_view_copy_operation})\r\n\u0026\u0026\r\n({view.custom.flow_view_edit_mode.sadmin_enabled}\r\n||({view.custom.flow_view_edit_mode.admin_enabled}\r\n\t\u0026\u0026{view.custom.flow_view_copy_operation}\u003d\u0027migrate_flowviews\u0027)\r\n)" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.selected_flow_view": { - "persistent": true - }, - "custom.site_files": { - "binding": { - "config": { - "expression": "{view.custom.bucket}+{view.custom.site_folder}" - }, - "transforms": [ - { - "code": "\tfrom s3 import S3API\n\tbucket \u003d self.custom.bucket\n\tobj_key \u003d self.custom.site_folder\n\tstage \u003d self.custom.current_stage\n\tusername \u003d self.session.props.auth.user.userName\n\t# DEVNOTE 2023-04-21: force API call to prod\n#\ts3m \u003d S3API(stage, username)\n\ts3m \u003d S3API(\u0027prod\u0027, username)\n\treturn s3m.list_objects(prefix\u003dobj_key, bucket\u003dbucket)", - "type": "script" - } - ], - "type": "expr" - }, - "persistent": true - }, - "custom.site_folder": { - "binding": { - "config": { - "path": "session.custom.flow_view_config.site_config.s3.site_obj_prefix" - }, - "type": "property" - }, - "persistent": true - }, - "custom.site_folder_destination": { - "binding": { - "config": { - "expression": "stringFormat(\u0027na-rme-scada-maps-hc/FlowViews-%s/%s/\u0027,\r\n\t{view.custom.stage_destination},{view.custom.whid_destination})" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.site_folder_source": { - "binding": { - "config": { - "expression": "stringFormat(\u0027na-rme-scada-maps-hc/FlowViews-%s/%s/\u0027,\r\n\t{view.custom.stage_source},{view.custom.whid_source})" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.stage_destination": { - "persistent": true - }, - "custom.stage_map": { - "binding": { - "config": { - "path": "session.custom.flow_view_config.stage_config.map" - }, - "type": "property" - }, - "persistent": true - }, - "custom.stage_options": { - "binding": { - "config": { - "path": "view.custom.stage_map" - }, - "transforms": [ - { - "code": "\treturn [{\u0027value\u0027: x, \u0027label\u0027: x.capitalize()} for x in value]", - "type": "script" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.stage_source": { - "persistent": true - }, - "custom.title_text": { - "persistent": true - }, - "custom.whid": { - "binding": { - "config": { - "path": "session.custom.flow_view_config.site_config.whid" - }, - "type": "property" - }, - "persistent": true - }, - "custom.whid_destination": { - "persistent": true - }, - "custom.whid_destination_options": { - "binding": { - "config": { - "path": "view.custom.stage_destination" - }, - "transforms": [ - { - "code": "\tfrom s3 import S3API\n\tusername \u003d self.session.props.auth.user.userName\n\t# DEVNOTE 2023-04-21: force API call to prod\n#\ts3m \u003d S3API(api_stage\u003dvalue, username\u003dusername)\n\ts3m \u003d S3API(\u0027prod\u0027, username)\n\tbucket \u003d self.custom.bucket\n\treturn s3m.fetch_site_list_by_stage(bucket, value)\n\t", - "type": "script" - }, - { - "code": "\tif self.custom.flow_view_edit_mode.sadmin_enabled:\n\t\toptions \u003d [{\u0027value\u0027: \u0027ALL\u0027, \u0027label\u0027: \u0027ALL\u0027}]\n\telse:\n\t\toptions \u003d []\n\toptions.extend([{\u0027value\u0027: x, \u0027label\u0027: x} for x in value])\n\treturn options", - "type": "script" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.whid_options": { - "binding": { - "config": { - "path": "view.custom.enabled_whids" - }, - "transforms": [ - { - "code": "\tif self.custom.flow_view_edit_mode.sadmin_enabled:\n\t\toptions \u003d [{\u0027value\u0027: \u0027ALL\u0027, \u0027label\u0027: \u0027ALL\u0027}]\n\telse:\n\t\toptions \u003d []\n\toptions.extend([{\u0027value\u0027: x, \u0027label\u0027: x} for x in value])\n\treturn options\n", - "type": "script" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.whid_source": { - "persistent": true - }, - "custom.whid_source_options": { - "binding": { - "config": { - "path": "view.custom.stage_source" - }, - "transforms": [ - { - "code": "\tfrom s3 import S3API\n\tusername \u003d self.session.props.auth.user.userName\n\t# DEVNOTE 2023-04-21: force API call to prod\n#\ts3m \u003d S3API(api_stage\u003dvalue, username\u003dusername)\n\ts3m \u003d S3API(\u0027prod\u0027, username)\n\tbucket \u003d self.custom.bucket\n\treturn s3m.fetch_site_list_by_stage(bucket, value)\n\t", - "type": "script" - }, - { - "code": "\tif self.custom.flow_view_edit_mode.sadmin_enabled:\n\t\toptions \u003d [{\u0027value\u0027: \u0027ALL\u0027, \u0027label\u0027: \u0027ALL\u0027}]\n\telse:\n\t\toptions \u003d []\n\toptions.extend([{\u0027value\u0027: x, \u0027label\u0027: x} for x in value])\n\treturn options", - "type": "script" - } - ], - "type": "property" - }, - "persistent": true - }, - "params.selected_flow_view": { - "paramDirection": "input", - "persistent": true - }, - "params.selected_site": { - "paramDirection": "input", - "persistent": true - }, - "params.selected_stage": { - "paramDirection": "input", - "persistent": true - } - }, - "props": { - "defaultSize": { - "height": 140, - "width": 900 - } - }, - "root": { - "children": [ - { - "children": [ - { - "children": [ - { - "meta": { - "name": "Label" - }, - "position": { - "basis": "175px", - "shrink": 0 - }, - "props": { - "style": { - "classes": "Framework/Card/Label Text/RightAlign_with_Padding", - "paddingLeft": "5px" - }, - "text": "Source Stage:" - }, - "type": "ia.display.label" - }, - { - "meta": { - "name": "Dropdown", - "tooltip": { - "location": "bottom", - "style": { - "whiteSpace": "pre" - }, - "text": "Click here to select a different \nstage folder to manage" - } - }, - "position": { - "basis": "150px", - "shrink": 0 - }, - "propConfig": { - "props.options": { - "binding": { - "config": { - "path": "view.custom.stage_options" - }, - "type": "property" - } - }, - "props.value": { - "binding": { - "config": { - "bidirectional": true, - "path": "view.custom.stage_source" - }, - "type": "property" - } - } - }, - "props": { - "search": { - "searchParam": "ou" - }, - "style": { - "margin": "2px", - "marginRight": "5px" - } - }, - "type": "ia.input.dropdown" - } - ], - "meta": { - "name": "FlexContainer Source" - }, - "position": { - "basis": "50%", - "shrink": 0 - }, - "type": "ia.container.flex" - }, - { - "children": [ - { - "meta": { - "name": "Label" - }, - "position": { - "basis": "175px", - "shrink": 0 - }, - "props": { - "style": { - "classes": "Framework/Card/Label Text/RightAlign_with_Padding", - "paddingLeft": "5px" - }, - "text": "Destination Stage:" - }, - "type": "ia.display.label" - }, - { - "meta": { - "name": "Dropdown", - "tooltip": { - "location": "bottom", - "style": { - "whiteSpace": "pre" - }, - "text": "Click here to select a different \nstage folder to manage" - } - }, - "position": { - "basis": "150px", - "shrink": 0 - }, - "propConfig": { - "props.enabled": { - "binding": { - "config": { - "expression": "{view.custom.flow_view_edit_mode.admin_enabled}\r\n||{view.custom.flow_view_edit_mode.sadmin_enabled}" - }, - "type": "expr" - } - }, - "props.options": { - "binding": { - "config": { - "path": "view.custom.stage_options" - }, - "type": "property" - } - }, - "props.value": { - "binding": { - "config": { - "bidirectional": true, - "path": "view.custom.stage_destination" - }, - "type": "property" - } - } - }, - "props": { - "search": { - "searchParam": "ou" - }, - "style": { - "margin": "2px", - "marginRight": "5px" - } - }, - "type": "ia.input.dropdown" - } - ], - "meta": { - "name": "FlexContainer Destination" - }, - "position": { - "basis": "50%", - "shrink": 0 - }, - "type": "ia.container.flex" - } - ], - "meta": { - "name": "FlexContainer Stages" - }, - "position": { - "basis": "30px", - "shrink": 0 - }, - "type": "ia.container.flex" - }, - { - "children": [ - { - "children": [ - { - "meta": { - "name": "Label" - }, - "position": { - "basis": "175px", - "shrink": 0 - }, - "props": { - "style": { - "classes": "Framework/Card/Label Text/RightAlign_with_Padding", - "paddingLeft": "5px" - }, - "text": "Source WHID:" - }, - "type": "ia.display.label" - }, - { - "meta": { - "name": "Dropdown", - "tooltip": { - "location": "bottom", - "style": { - "whiteSpace": "pre" - }, - "text": "Click here to select a different \nstage folder to manage" - } - }, - "position": { - "basis": "150px", - "shrink": 0 - }, - "propConfig": { - "props.options": { - "binding": { - "config": { - "path": "view.custom.whid_source_options" - }, - "type": "property" - } - }, - "props.value": { - "binding": { - "config": { - "bidirectional": true, - "path": "view.custom.whid_source" - }, - "type": "property" - }, - "onChange": { - "enabled": null, - "script": "\tif not missedEvents and origin \u003d\u003d \u0027Browser\u0027:\n\t\tif currentValue.value:\n\t\t\tself.view.custom.whid_destination \u003d currentValue.value\n\t\t" - } - } - }, - "props": { - "search": { - "searchParam": "smf" - }, - "style": { - "margin": "2px", - "marginRight": "5px" - } - }, - "type": "ia.input.dropdown" - } - ], - "meta": { - "name": "FlexContainer Source" - }, - "position": { - "basis": "50%", - "shrink": 0 - }, - "type": "ia.container.flex" - }, - { - "children": [ - { - "meta": { - "name": "Label" - }, - "position": { - "basis": "175px", - "shrink": 0 - }, - "props": { - "style": { - "classes": "Framework/Card/Label Text/RightAlign_with_Padding", - "paddingLeft": "5px" - }, - "text": "Destination WHID:" - }, - "type": "ia.display.label" - }, - { - "meta": { - "name": "Dropdown", - "tooltip": { - "location": "bottom", - "style": { - "whiteSpace": "pre" - }, - "text": "Click here to select a different \nstage folder to manage" - } - }, - "position": { - "basis": "150px", - "shrink": 0 - }, - "propConfig": { - "props.enabled": { - "binding": { - "config": { - "path": "view.custom.flow_view_edit_mode.sadmin_enabled" - }, - "type": "property" - } - }, - "props.options": { - "binding": { - "config": { - "path": "view.custom.whid_destination_options" - }, - "type": "property" - } - }, - "props.value": { - "binding": { - "config": { - "bidirectional": true, - "path": "view.custom.whid_destination" - }, - "type": "property" - } - } - }, - "props": { - "search": { - "searchParam": "sm" - }, - "style": { - "margin": "2px", - "marginRight": "5px" - } - }, - "type": "ia.input.dropdown" - } - ], - "meta": { - "name": "FlexContainer Destination" - }, - "position": { - "basis": "50%", - "shrink": 0 - }, - "propConfig": { - "position.display": { - "binding": { - "config": { - "expression": "!isNull({view.custom.whid_source})\r\n\u0026\u0026len({view.custom.whid_source})\r\n\u0026\u0026{view.custom.whid_source}!\u003d\u0027ALL\u0027" - }, - "type": "expr" - } - } - }, - "type": "ia.container.flex" - } - ], - "meta": { - "name": "FlexContainer Whids" - }, - "position": { - "basis": "30px", - "shrink": 0 - }, - "type": "ia.container.flex" - }, - { - "children": [ - { - "children": [ - { - "meta": { - "name": "Label" - }, - "position": { - "basis": "175px", - "shrink": 0 - }, - "props": { - "style": { - "classes": "Framework/Card/Label Text/RightAlign_with_Padding", - "paddingLeft": "5px" - }, - "text": "Source Flowview:" - }, - "type": "ia.display.label" - }, - { - "meta": { - "name": "Dropdown", - "tooltip": { - "location": "bottom", - "style": { - "whiteSpace": "pre" - }, - "text": "Click here to select a different \nstage folder to manage" - } - }, - "position": { - "basis": "250px", - "shrink": 0 - }, - "propConfig": { - "props.options": { - "binding": { - "config": { - "path": "view.custom.flow_view_source_options" - }, - "type": "property" - } - }, - "props.value": { - "binding": { - "config": { - "bidirectional": true, - "path": "view.custom.flow_view_source" - }, - "type": "property" - }, - "onChange": { - "enabled": null, - "script": "\tif not missedEvents and origin \u003d\u003d \u0027Browser\u0027:\n\t\tif currentValue.value:\n\t\t\tself.view.custom.flow_view_destination \u003d currentValue.value\n\t" - } - } - }, - "props": { - "search": { - "searchParam": "ou" - }, - "style": { - "margin": "2px", - "marginRight": "5px" - } - }, - "type": "ia.input.dropdown" - } - ], - "meta": { - "name": "FlexContainer Source" - }, - "position": { - "basis": "50%", - "shrink": 0 - }, - "type": "ia.container.flex" - }, - { - "children": [ - { - "meta": { - "name": "Label" - }, - "position": { - "basis": "175px", - "shrink": 0 - }, - "props": { - "style": { - "classes": "Framework/Card/Label Text/RightAlign_with_Padding", - "paddingLeft": "5px" - }, - "text": "Destination Flowview:" - }, - "type": "ia.display.label" - }, - { - "meta": { - "name": "Dropdown", - "tooltip": { - "location": "bottom", - "style": { - "whiteSpace": "pre" - }, - "text": "Click here to select a different \nstage folder to manage" - } - }, - "position": { - "basis": "250px", - "shrink": 0 - }, - "propConfig": { - "props.enabled": { - "binding": { - "config": { - "path": "view.custom.flow_view_edit_mode.sadmin_enabled" - }, - "type": "property" - } - }, - "props.options": { - "binding": { - "config": { - "path": "view.custom.flow_view_destination_options" - }, - "type": "property" - } - }, - "props.value": { - "binding": { - "config": { - "bidirectional": true, - "path": "view.custom.flow_view_destination" - }, - "type": "property" - } - } - }, - "props": { - "search": { - "searchParam": "ou" - }, - "style": { - "margin": "2px", - "marginRight": "5px" - } - }, - "type": "ia.input.dropdown" - } - ], - "meta": { - "name": "FlexContainer Destination" - }, - "position": { - "basis": "50%", - "shrink": 0 - }, - "propConfig": { - "position.display": { - "binding": { - "config": { - "expression": "!isNull({view.custom.flow_view_source})\r\n\u0026\u0026len({view.custom.flow_view_source})\r\n\u0026\u0026{view.custom.flow_view_source}!\u003d\u0027ALL\u0027" - }, - "type": "expr" - } - } - }, - "type": "ia.container.flex" - } - ], - "meta": { - "name": "FlexContainer Flowviews" - }, - "position": { - "basis": "30px", - "shrink": 0 - }, - "type": "ia.container.flex" - }, - { - "children": [ - { - "children": [ - { - "meta": { - "name": "Label" - }, - "position": { - "shrink": 0 - }, - "props": { - "style": { - "classes": "Framework/Card/Label Text/RightAlign_with_Padding", - "paddingLeft": "5px" - }, - "text": "Copy:" - }, - "type": "ia.display.label" - }, - { - "meta": { - "name": "RadioGroup" - }, - "position": { - "shrink": 0 - }, - "propConfig": { - "position.display": { - "binding": { - "config": { - "expression": "!isNull({view.custom.flow_view_source})\r\n\u0026\u0026len({view.custom.flow_view_source})" - }, - "type": "expr" - } - }, - "props.enabled": { - "binding": { - "config": { - "expression": "{view.custom.flow_view_edit_mode.admin_enabled}\r\n||{view.custom.flow_view_edit_mode.sadmin_enabled}" - }, - "type": "expr" - } - }, - "props.value": { - "binding": { - "config": { - "bidirectional": true, - "path": "view.custom.flow_view_copy_option" - }, - "type": "property" - } - } - }, - "props": { - "radioStyle": { - "fontSize": "12px" - }, - "radios": [ - { - "selected": true, - "text": "Both Files", - "value": "both" - }, - { - "selected": false, - "text": "SVG only", - "value": "svg" - }, - { - "selected": false, - "text": "JSON only", - "value": "json" - } - ] - }, - "type": "ia.input.radio-group" - } - ], - "meta": { - "name": "FlexContainer Radios" - }, - "position": { - "basis": "50%", - "shrink": 0 - }, - "props": { - "justify": "center" - }, - "type": "ia.container.flex" - }, - { - "children": [ - { - "events": { - "component": { - "onActionPerformed": { - "config": { - "script": "\tsystem.perspective.sendMessage(\u0027request_initialize_form\u0027, scope\u003d\u0027view\u0027)\n\t" - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "Clear Form" - }, - "position": { - "shrink": 0 - }, - "props": { - "image": { - "icon": { - "path": "material/refresh" - } - }, - "primary": false, - "style": { - "margin": "2px", - "padding": "4px" - }, - "text": "Reset Form" - }, - "type": "ia.input.button" - }, - { - "events": { - "component": { - "onActionPerformed": { - "config": { - "script": "\t# call-up the confirm dialog to allow the user to decide if they\n\t# really want to copy/migrate the flow-view files in S3\n\tself.show_confirm_dialog({})" - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "Copy Files", - "tooltip": { - "enabled": true, - "location": "bottom", - "style": { - "whiteSpace": "pre" - } - } - }, - "position": { - "shrink": 0 - }, - "propConfig": { - "meta.tooltip.text": { - "binding": { - "config": { - "path": "view.custom.flow_view_copy_tooltip" - }, - "type": "property" - } - }, - "props.enabled": { - "binding": { - "config": { - "path": "view.custom.migrate_enabled" - }, - "type": "property" - } - } - }, - "props": { - "image": { - "height": 20, - "icon": { - "path": "material/file_copy" - }, - "width": 20 - }, - "style": { - "margin": "2px", - "padding": "4px" - }, - "text": "Copy Files" - }, - "scripts": { - "customMethods": [ - { - "name": "show_success_dialog", - "params": [ - "msg\u003dNone" - ], - "script": "\t# ~~ 13 PARAMETERS ~~\n\t# state\t\t\t\t\t(default \u003d info) empty string uses generic gray styling\n\t# title \t\t\t\t(default \u003d Alert Title) empty string sets the title visibility to false\n\t# message \t\t\t\t(default \u003d Alert message goes here.)\n\t# show close button\t\t(default \u003d true) boolean\n\t# btn text primary\t\t(default \u003d \"Primary\")\n\t# btn text secondary\t(default \u003d \"Secondary\")\n\t# btn icon primary \t\t(default \u003d chevron_right) do not include \u0027material/\u0027 in the path, just the icon name\n\t# btn icon secondary \t(default \u003d \"\") do not include \u0027material/\u0027 in the path, just the icon name\n\t# btn icon alignment\t(default \u003d \"right\") left or right\n\t# btn primary action\t(default \u003d \"\") add message handlers on this button to enable other script actions\n\t# btn secondary action\t(default \u003d \"\") add message handlers on this button to enable other script actions\n\t# btn close action\t\t(default \u003d \"\") add message handlers on this icon to enable other script actions\n\t# payload\t\t\t\t(default \u003d {}) add a payload here to return to the target message handler\n\t\n\tAlerts.showAlert(\n\t\t\"success\", \n\t\t\"Flow View Files Copied\", \n\t\tmsg, \n\t\t\"true\",\n\t\t\"OK\", \n\t\t\"CLOSE\", \n\t\t\"\", \n\t\t\"\", \n\t\t\"right\", \n\t\t\"closePopup\", \n\t\t\"closePopup\", \n\t\t\"closePopup\",\n\t\t{}\n\t)\n\t\t\t\t" - }, - { - "name": "show_warning_dialog", - "params": [ - "msg\u003dNone" - ], - "script": "\t# ~~ 13 PARAMETERS ~~\n\t# state\t\t\t\t\t(default \u003d info) empty string uses generic gray styling\n\t# title \t\t\t\t(default \u003d Alert Title) empty string sets the title visibility to false\n\t# message \t\t\t\t(default \u003d Alert message goes here.)\n\t# show close button\t\t(default \u003d true) boolean\n\t# btn text primary\t\t(default \u003d \"Primary\")\n\t# btn text secondary\t(default \u003d \"Secondary\")\n\t# btn icon primary \t\t(default \u003d chevron_right) do not include \u0027material/\u0027 in the path, just the icon name\n\t# btn icon secondary \t(default \u003d \"\") do not include \u0027material/\u0027 in the path, just the icon name\n\t# btn icon alignment\t(default \u003d \"right\") left or right\n\t# btn primary action\t(default \u003d \"\") add message handlers on this button to enable other script actions\n\t# btn secondary action\t(default \u003d \"\") add message handlers on this button to enable other script actions\n\t# btn close action\t\t(default \u003d \"\") add message handlers on this icon to enable other script actions\n\t# payload\t\t\t\t(default \u003d {}) add a payload here to return to the target message handler\n\t\n\tAlerts.showAlert(\n\t\t\"warning\", \n\t\t\"Flow View Files NOT Copied\", \n\t\tmsg, \n\t\t\"true\",\n\t\t\"OK\", \n\t\t\"CLOSE\", \n\t\t\"\", \n\t\t\"\", \n\t\t\"right\", \n\t\t\"closePopup\", \n\t\t\"closePopup\", \n\t\t\"closePopup\",\n\t\t{}\n\t)\n\t\t\t\t\t" - }, - { - "name": "show_error_dialog", - "params": [ - "msg\u003dNone" - ], - "script": "\t# ~~ 13 PARAMETERS ~~\n\t# state\t\t\t\t\t(default \u003d info) empty string uses generic gray styling\n\t# title \t\t\t\t(default \u003d Alert Title) empty string sets the title visibility to false\n\t# message \t\t\t\t(default \u003d Alert message goes here.)\n\t# show close button\t\t(default \u003d true) boolean\n\t# btn text primary\t\t(default \u003d \"Primary\")\n\t# btn text secondary\t(default \u003d \"Secondary\")\n\t# btn icon primary \t\t(default \u003d chevron_right) do not include \u0027material/\u0027 in the path, just the icon name\n\t# btn icon secondary \t(default \u003d \"\") do not include \u0027material/\u0027 in the path, just the icon name\n\t# btn icon alignment\t(default \u003d \"right\") left or right\n\t# btn primary action\t(default \u003d \"\") add message handlers on this button to enable other script actions\n\t# btn secondary action\t(default \u003d \"\") add message handlers on this button to enable other script actions\n\t# btn close action\t\t(default \u003d \"\") add message handlers on this icon to enable other script actions\n\t# payload\t\t\t\t(default \u003d {}) add a payload here to return to the target message handler\n\t\n\tAlerts.showAlert(\n\t\t\"error\", \n\t\t\"Flow View Files Copy Error!\", \n\t\tmsg, \n\t\t\"true\",\n\t\t\"OK\", \n\t\t\"CLOSE\", \n\t\t\"\", \n\t\t\"\", \n\t\t\"right\", \n\t\t\"closePopup\", \n\t\t\"closePopup\", \n\t\t\"closePopup\",\n\t\t{}\n\t)\n\t\t\t\t\t" - }, - { - "name": "update_bindings", - "params": [], - "script": "\t\"\"\"\n\t\tAfter data saved to S3, refresh session and view bindings\n\t\"\"\"\n\tself.view.custom.loading \u003d False\n\t\t" - }, - { - "name": "copy_operation", - "params": [], - "script": "\t\"\"\"\n\t\tCall s3.S3API().migrate_*() method using user selections\n\t* \u003d [\u0027stages\u0027, \u0027sites\u0027, \u0027flowviews\u0027] depending on user selections\n\t\"\"\"\n\tfrom s3 import S3API\n\tfrom pprint import pformat\n\tfrom helper.helper import sanitize_tree\n\t\n\tstage \u003d self.session.custom.flow_view_config.stage_config.stage\n\tusername \u003d self.session.props.auth.user.userName\n\t# DEVNOTE 2023-04-21: force API call to prod\n#\ts3m \u003d S3API(stage, username)\n\ts3m \u003d S3API(\u0027prod\u0027, username)\n\t# grab local variables from view custom props\n\tsrc_stage \u003d self.view.custom.stage_source\n\tdest_stage \u003d self.view.custom.stage_destination\n\tsrc_whid \u003d self.view.custom.whid_source\n\tdest_whid \u003d self.view.custom.whid_destination\n\tsrc_flowview \u003d self.view.custom.flow_view_source\n\tdest_flowview \u003d self.view.custom.flow_view_destination\n\tcopy_option \u003d self.view.custom.flow_view_copy_option\n\toperation \u003d self.view.custom.flow_view_copy_operation\n\t# pack up params based on operation selected\n\tparams \u003d {}\n\tif operation \u003d\u003d \u0027migrate_stages\u0027:\n\t\t# Lambda expects None for whid param if migrating all stage folder contents\n\t\tif src_whid \u003d\u003d \u0027ALL\u0027:\n\t\t\tsrc_whid \u003d None\n\t\tparams \u003d {\u0027src_stage\u0027: src_stage, \u0027dest_stage\u0027: dest_stage, \u0027whid\u0027: src_whid}\n\telif operation \u003d\u003d \u0027migrate_sites\u0027:\n\t\tparams \u003d {\u0027src_stage\u0027: src_stage, \u0027dest_stage\u0027: dest_stage,\n\t\t\t\t\t\u0027src_whid\u0027: src_whid, \u0027dest_whid\u0027: dest_whid}\n\telif operation \u003d\u003d \u0027migrate_flowviews\u0027:\n\t\tparams \u003d {\u0027src_stage\u0027: src_stage, \u0027dest_stage\u0027: dest_stage,\n\t\t\t\t\t\u0027src_whid\u0027: src_whid, \u0027dest_whid\u0027: dest_whid,\n\t\t\t\t\t\u0027src_flowview\u0027: src_flowview, \u0027dest_flowview\u0027: dest_flowview,\n\t\t\t\t\t\u0027copy_option\u0027: copy_option}\n\ttry:\n\t\tresp \u003d getattr(s3m, operation)(**params)\n\t\tmsg \u003d pformat(sanitize_tree(resp))\n\t\tsystem.perspective.print(msg)\n\t\tself.show_success_dialog(msg)\n\t\tself.update_bindings()\n\texcept:\n\t\timport traceback\n\t\tmsg \u003d \u0027Error executing %s operation! \\nError: %s\u0027 % (\n\t\t\t\toperation, traceback.format_exc())\n\t\tsystem.perspective.print(msg)\n\t\tself.show_error_dialog(msg)\n\t" - }, - { - "name": "show_confirm_dialog", - "params": [ - "payload\u003dNone" - ], - "script": "\t# ~~ 13 PARAMETERS ~~\n\t# state\t\t\t\t\t(default \u003d info) empty string uses generic gray styling\n\t# title \t\t\t\t(default \u003d Alert Title) empty string sets the title visibility to false\n\t# message \t\t\t\t(default \u003d Alert message goes here.)\n\t# show close button\t\t(default \u003d true) boolean\n\t# btn text primary\t\t(default \u003d \"Primary\")\n\t# btn text secondary\t(default \u003d \"Secondary\")\n\t# btn icon primary \t\t(default \u003d chevron_right) do not include \u0027material/\u0027 in the path, just the icon name\n\t# btn icon secondary \t(default \u003d \"\") do not include \u0027material/\u0027 in the path, just the icon name\n\t# btn icon alignment\t(default \u003d \"right\") left or right\n\t# btn primary action\t(default \u003d \"\") add message handlers on this button to enable other script actions\n\t# btn secondary action\t(default \u003d \"\") add message handlers on this button to enable other script actions\n\t# btn close action\t\t(default \u003d \"\") add message handlers on this icon to enable other script actions\n\t# payload\t\t\t\t(default \u003d {}) add payload of data to pass to the popup\n\toperation \u003d self.view.custom.flow_view_copy_operation\n\tsrc_stage \u003d self.view.custom.stage_source\n\tdest_stage \u003d self.view.custom.stage_destination\n\tsrc_whid \u003d self.view.custom.whid_source\n\tdest_whid \u003d self.view.custom.whid_destination\n\tsrc_flowview \u003d self.view.custom.flow_view_source\n\tdest_flowview \u003d self.view.custom.flow_view_destination\n\tcopy_option \u003d self.view.custom.flow_view_copy_option\n\tmsg \u003d \u0027\u0027\n\tif operation \u003d\u003d \u0027migrate_stages\u0027:\n\t\tmsg \u003d (\u0027Migrate all flow view files for whid: %s \\n\u0027\n\t\t\t\u0027From %s stage to %s stage? \\n\u0027\n\t\t\t\u0027This operation may take several minutes\u0027) % (\n\t\t\tsrc_whid, src_stage, dest_stage)\n\telif operation \u003d\u003d \u0027migrate_sites\u0027:\n\t\tmsg \u003d (\u0027Migrate all flow view files for whid: %s to whid: %s \\n\u0027\n\t\t\t\u0027From %s stage to %s stage? \\n\u0027\n\t\t\t\u0027This operation may take several minutes\u0027) % (\n\t\t\tsrc_whid, dest_whid, src_stage, dest_stage)\n\telif operation \u003d\u003d \u0027migrate_flowviews\u0027:\n\t\tif copy_option \u003d\u003d \u0027both\u0027:\n\t\t\tcopy_prompt \u003d \u0027both svg image and config json files\u0027\n\t\telif copy_option \u003d\u003d \u0027svg\u0027:\n\t\t\tcopy_prompt \u003d \u0027svg image file\u0027\n\t\telse:\n\t\t\tcopy_prompt \u003d \u0027config json file\u0027\n\t\tmsg \u003d (\u0027Copy %s for flowview: %s to flowview: %s \\n\u0027\n\t\t\t\u0027From whid: %s to whid: %s \\n\u0027\n\t\t\t\u0027From %s stage to %s stage?\u0027) % (\n\t\t\tcopy_prompt, src_flowview, dest_flowview, \n\t\t\tsrc_whid, dest_whid, src_stage, dest_stage)\n\tpayload \u003d {}\t\t\n\tAlerts.showAlert(\n\t\t\"info\", \n\t\t\"Copy Flow View Files?\", \n\t\tmsg, \n\t\t\"true\",\n\t\t\"Continue\", \n\t\t\"Cancel\", \n\t\t\"file_copy\", \n\t\t\"\", \n\t\t\"right\", \n\t\t\"confirm_copy_operation\", \n\t\t\"closePopup\", \n\t\t\"closePopup\",\n\t\tpayload\n\t)\n\t\t\t" - } - ], - "extensionFunctions": null, - "messageHandlers": [ - { - "messageType": "confirm_copy_operation", - "pageScope": true, - "script": "\tsystem.perspective.closePopup(\u0027alertDialog\u0027)\n\t# call the copy_operation custom method\n\tself.copy_operation()\n\t\t", - "sessionScope": true, - "viewScope": false - } - ] - }, - "type": "ia.input.button" - } - ], - "meta": { - "name": "FlexContainer Buttons" - }, - "position": { - "basis": "50%", - "shrink": 0 - }, - "props": { - "justify": "center" - }, - "type": "ia.container.flex" - } - ], - "meta": { - "name": "FlexContainer Controls" - }, - "position": { - "shrink": 0 - }, - "type": "ia.container.flex" - } - ], - "meta": { - "name": "root" - }, - "props": { - "direction": "column" - }, - "scripts": { - "customMethods": [ - { - "name": "update_instance_position", - "params": [ - "payload\u003dNone" - ], - "script": "\t\"\"\"\n\t\tupdate instance position based on payload received\n\t:param payload: dict; payload of values to update from message handler\n\t\"\"\"\n\tfrom helper.helper import sanitize_tree\n\tpos_keys \u003d [\u0027top\u0027,\u0027left\u0027,\u0027width\u0027,\u0027height\u0027]\n\tif not isinstance(payload, dict):\n\t\tmsg \u003d \u0027payload to update_instance_position must be a dictionary object!\u0027\n\t\tsystem.perspective.print(msg)\n\t\tself.show_error_dialog(msg)\n\t\treturn\n\tbad_keys \u003d [k for k in payload.keys() if k not in pos_keys]\n\tif len(bad_keys):\n\t\tmsg \u003d (\u0027Invalid keys: %s found in payload, \u0027,\n\t\t\t\t\u0027cannot be applied to instance.position.\\nValid keys: %s\u0027) % (\n\t\t\t\tbad_keys, pos_keys)\n\t\tsystem.perpsective.print(msg)\n\t\tself.show_error_dialog(msg)\n\t\treturn\n\tinstance \u003d sanitize_tree(self.view.params.instance)\n\tinstance.update(payload)\n\tself.view.params.instance \u003d instance\n\t" - }, - { - "name": "show_confirm_dialog", - "params": [], - "script": "\t# ~~ 12 PARAMETERS ~~\n\t\t# state\t\t\t\t\t(default \u003d info) empty string uses generic gray styling\n\t\t# title \t\t\t\t(default \u003d Alert Title) empty string sets the title visibility to false\n\t\t# message \t\t\t\t(default \u003d Alert message goes here.)\n\t\t# show close button\t\t(default \u003d true) boolean\n\t\t# btn text primary\t\t(default \u003d \"Primary\")\n\t\t# btn text secondary\t(default \u003d \"Secondary\")\n\t\t# btn icon primary \t\t(default \u003d chevron_right) do not include \u0027material/\u0027 in the path, just the icon name\n\t\t# btn icon secondary \t(default \u003d \"\") do not include \u0027material/\u0027 in the path, just the icon name\n\t\t# btn icon alignment\t(default \u003d \"right\") left or right\n\t\t# btn primary action\t(default \u003d \"\") add message handlers on this button to enable other script actions\n\t\t# btn secondary action\t(default \u003d \"\") add message handlers on this button to enable other script actions\n\t\t# btn close action\t\t(default \u003d \"\") add message handlers on this icon to enable other script actions\n\t\n\t\tmsg \u003d \"Update Instance Configuration for MP%s?\" % (self.view.params.instance.viewParams.mhe_id)\n\t\tAlerts.showAlert(\n\t\t\t\"info\", \n\t\t\t\"Update Instance Config?\", \n\t\t\tmsg, \n\t\t\t\"true\",\n\t\t\t\"Continue\", \n\t\t\t\"Cancel\", \n\t\t\t\"chevron_right\", \n\t\t\t\"\", \n\t\t\t\"right\", \n\t\t\t\"confirm_update_instance_config\", \n\t\t\t\"closePopup\", \n\t\t\t\"closePopup\"\n\t\t)\n\t\t" - }, - { - "name": "update_instance_config", - "params": [], - "script": "\t\"\"\"\n\t\tUpdate the instance config on the parent container\n\t\"\"\"\n\tfrom helper.helper import sanitize_tree\n\tfrom pprint import pformat" - }, - { - "name": "show_success_dialog", - "params": [ - "msg\u003dNone" - ], - "script": "\t# ~~ 13 PARAMETERS ~~\n\t# state\t\t\t\t\t(default \u003d info) empty string uses generic gray styling\n\t# title \t\t\t\t(default \u003d Alert Title) empty string sets the title visibility to false\n\t# message \t\t\t\t(default \u003d Alert message goes here.)\n\t# show close button\t\t(default \u003d true) boolean\n\t# btn text primary\t\t(default \u003d \"Primary\")\n\t# btn text secondary\t(default \u003d \"Secondary\")\n\t# btn icon primary \t\t(default \u003d chevron_right) do not include \u0027material/\u0027 in the path, just the icon name\n\t# btn icon secondary \t(default \u003d \"\") do not include \u0027material/\u0027 in the path, just the icon name\n\t# btn icon alignment\t(default \u003d \"right\") left or right\n\t# btn primary action\t(default \u003d \"\") add message handlers on this button to enable other script actions\n\t# btn secondary action\t(default \u003d \"\") add message handlers on this button to enable other script actions\n\t# btn close action\t\t(default \u003d \"\") add message handlers on this icon to enable other script actions\n\t# payload\t\t\t\t(default \u003d {}) add a payload here to return to the target message handler\n\t\n\tAlerts.showAlert(\n\t\t\"success\", \n\t\t\"Instance Updated\", \n\t\tmsg, \n\t\t\"true\",\n\t\t\"OK\", \n\t\t\"CLOSE\", \n\t\t\"\", \n\t\t\"\", \n\t\t\"right\", \n\t\t\"closePopup\", \n\t\t\"closePopup\", \n\t\t\"closePopup\",\n\t\t{}\n\t)\n\t\t" - }, - { - "name": "show_warning_dialog", - "params": [ - "msg\u003dNone" - ], - "script": "\t# ~~ 12 PARAMETERS ~~\n\t# state\t\t\t\t\t(default \u003d info) empty string uses generic gray styling\n\t# title \t\t\t\t(default \u003d Alert Title) empty string sets the title visibility to false\n\t# message \t\t\t\t(default \u003d Alert message goes here.)\n\t# show close button\t\t(default \u003d true) boolean\n\t# btn text primary\t\t(default \u003d \"Primary\")\n\t# btn text secondary\t(default \u003d \"Secondary\")\n\t# btn icon primary \t\t(default \u003d chevron_right) do not include \u0027material/\u0027 in the path, just the icon name\n\t# btn icon secondary \t(default \u003d \"\") do not include \u0027material/\u0027 in the path, just the icon name\n\t# btn icon alignment\t(default \u003d \"right\") left or right\n\t# btn primary action\t(default \u003d \"\") add message handlers on this button to enable other script actions\n\t# btn secondary action\t(default \u003d \"\") add message handlers on this button to enable other script actions\n\t# btn close action\t\t(default \u003d \"\") add message handlers on this icon to enable other script actions\n\n\tAlerts.showAlert(\n\t\t\"warning\", \n\t\t\"Instance Not Updated\", \n\t\tmsg, \n\t\t\"true\",\n\t\t\"OK\", \n\t\t\"CLOSE\", \n\t\t\"\", \n\t\t\"\", \n\t\t\"right\", \n\t\t\"closePopup\", \n\t\t\"closePopup\", \n\t\t\"closePopup\"\n\t)\n\t\t" - }, - { - "name": "show_error_dialog", - "params": [ - "msg\u003dNone" - ], - "script": "\t# ~~ 12 PARAMETERS ~~\n\t# state\t\t\t\t\t(default \u003d info) empty string uses generic gray styling\n\t# title \t\t\t\t(default \u003d Alert Title) empty string sets the title visibility to false\n\t# message \t\t\t\t(default \u003d Alert message goes here.)\n\t# show close button\t\t(default \u003d true) boolean\n\t# btn text primary\t\t(default \u003d \"Primary\")\n\t# btn text secondary\t(default \u003d \"Secondary\")\n\t# btn icon primary \t\t(default \u003d chevron_right) do not include \u0027material/\u0027 in the path, just the icon name\n\t# btn icon secondary \t(default \u003d \"\") do not include \u0027material/\u0027 in the path, just the icon name\n\t# btn icon alignment\t(default \u003d \"right\") left or right\n\t# btn primary action\t(default \u003d \"\") add message handlers on this button to enable other script actions\n\t# btn secondary action\t(default \u003d \"\") add message handlers on this button to enable other script actions\n\t# btn close action\t\t(default \u003d \"\") add message handlers on this icon to enable other script actions\n\n\tAlerts.showAlert(\n\t\t\"error\", \n\t\t\"Instance Update Error!\", \n\t\tmsg, \n\t\t\"true\",\n\t\t\"OK\", \n\t\t\"CLOSE\", \n\t\t\"\", \n\t\t\"\", \n\t\t\"right\", \n\t\t\"closePopup\", \n\t\t\"closePopup\", \n\t\t\"closePopup\"\n\t)\n\t\t" - }, - { - "name": "update_bindings", - "params": [], - "script": "\tself.view.custom.loading \u003d False\n\t\t" - }, - { - "name": "initialize_form", - "params": [], - "script": "\t# initialize flow-view selections\n\tselected_flow_view \u003d self.session.custom.flow_view_config.site_config.selected_flow_view\n\tself.view.custom.flow_view_source \u003d selected_flow_view\n\tself.view.custom.flow_view_destination \u003d selected_flow_view\n\t# initialize WHID selections\n\tselected_whid \u003d self.session.custom.flow_view_config.site_config.whid\n\tself.view.custom.whid_source \u003d selected_whid\n\tself.view.custom.whid_destination \u003d selected_whid\n\t# initialize stage selections\n\tselected_stage \u003d self.session.custom.flow_view_config.stage_config.stage\n\tself.view.custom.stage_source \u003d selected_stage\n\tself.view.custom.stage_destination \u003d selected_stage\n\t# initialize the flow view copy option\n\tself.view.custom.flow_view_copy_option \u003d \u0027both\u0027\n\t\t" - } - ], - "extensionFunctions": null, - "messageHandlers": [ - { - "messageType": "request_initialize_form", - "pageScope": false, - "script": "\t# initialize form on call\n\tself.initialize_form()", - "sessionScope": true, - "viewScope": true - } - ] - }, - "type": "ia.container.flex" - } -} \ No newline at end of file diff --git a/.resources/9f592bbcddeb01a59195eb05c8f9cb072311ba4833bfa2ab734e011f5cc2bb59 b/.resources/9f592bbcddeb01a59195eb05c8f9cb072311ba4833bfa2ab734e011f5cc2bb59 deleted file mode 100644 index c3d30df4..00000000 --- a/.resources/9f592bbcddeb01a59195eb05c8f9cb072311ba4833bfa2ab734e011f5cc2bb59 +++ /dev/null @@ -1,1041 +0,0 @@ -{ - "custom": { - "api_region_name": "eu", - "developer_user": true, - "enable_add_new_site": true, - "enabled_whids": [ - "DNK7", - "EWR4" - ], - "expanded": false, - "loading": false, - "new_site_is_not_in_S3": true, - "new_site_to_add": "EWR4", - "show_add_new_site": false, - "stage_config": { - "account_id": "006306898152", - "api_call_role": "arn:aws:iam::609617486056:role/RMESDScadaS3ManagementAPIcallRole-prod-eu-west-1", - "endpoint": "https://eu-west-1.scada-s3-management.scada.eurme.amazon.dev/", - "lambda_name": "RMESDScadaS3ManagementFlaskLambda-prod", - "region": "eu-west-1", - "repo_bucket": "ignition-image-repo", - "s3_region": "eu-west-1", - "source_bucket": "ignition-image-source" - }, - "whid": "", - "whids_in_s3": [ - "BOS3", - "BRS1", - "CGN9", - "DAO1", - "DAO3", - "DAR2", - "DBE2", - "DBH3", - "DBI7", - "DBT3", - "DCT7", - "DCT9", - "DCZ3", - "DCZ4", - "DEH1", - "DER1", - "DER2", - "DER3", - "DER5", - "DFV1", - "DHA1", - "DHE3", - "DHE4", - "DHE6", - "DIF2", - "DIF6", - "DIP1", - "DLO1", - "DLO2", - "DLO3", - "DLO4", - "DLO5", - "DLO7", - "DLZ1", - "DLZ2", - "DLZ3", - "DMA3", - "DMA4", - "DMA6", - "DMV1", - "DMV3", - "DMZ2", - "DMZ4", - "DNC1", - "DNC2", - "DNE2", - "DNG2", - "DNM7", - "DNP1", - "DNX3", - "DNZ2", - "DPI3", - "DPU1", - "DRM2", - "DSI2", - "DSO2", - "DSY6", - "DTC2", - "DVN1", - "DVN2", - "DVN5", - "DWN2", - "IST2", - "MAD6", - "MAN2", - "QCB6" - ] - }, - "events": { - "system": { - "onStartup": { - "config": { - "script": "\tself.custom.expanded \u003d False\n\tself.custom.new_site_to_add \u003d self.params.selected_whid" - }, - "scope": "G", - "type": "script" - } - } - }, - "params": { - "enables": {}, - "selected_whid": "EWR4" - }, - "propConfig": { - "custom.api_region_name": { - "binding": { - "config": { - "path": "session.custom.aws.prefix" - }, - "type": "property" - }, - "persistent": true - }, - "custom.developer_user": { - "binding": { - "config": { - "expression": "isAuthorized(false, \u0027Authenticated/Roles/eurme-ignition-developers\u0027)" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.enable_add_new_site": { - "binding": { - "config": { - "expression": "isAuthorized(false, \u0027Authenticated/Roles/rme-c4\u0027, \u0027Authenticated/Roles/narme-ignition-developers\u0027,\r\n\t\t\t\u0027Authenticated/Roles/eurme-ignition-developers\u0027)\r\n" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.enabled_whids": { - "binding": { - "config": { - "expression": "{session.custom.fc}" - }, - "transforms": [ - { - "code": "\tchild_projects \u003d config.project_config.get_child_scada_projects()\n\treturn [x.replace(\u0027_SCADA\u0027,\u0027\u0027) for x in child_projects]", - "type": "script" - } - ], - "type": "expr" - }, - "persistent": true - }, - "custom.expanded": { - "persistent": true - }, - "custom.loading": { - "persistent": true - }, - "custom.new_site_is_not_in_S3": { - "binding": { - "config": { - "expression": "{view.custom.new_site_to_add}+toStr({view.custom.whids_in_s3})" - }, - "transforms": [ - { - "code": "\tnew_site \u003d self.custom.new_site_to_add\n\twhids \u003d self.custom.whids_in_s3\n\tif new_site and new_site not in whids:\n\t\treturn True\n\treturn False", - "type": "script" - } - ], - "type": "expr" - }, - "persistent": true - }, - "custom.new_site_to_add": { - "persistent": true - }, - "custom.show_add_new_site": { - "persistent": true - }, - "custom.stage_config": { - "binding": { - "config": { - "expression": "{view.custom.api_region_name}" - }, - "transforms": [ - { - "code": "\treturn AWS.s3.STAGE_CONFIG[\u0027prod\u0027][value]", - "type": "script" - } - ], - "type": "expr" - }, - "persistent": true - }, - "custom.whid": { - "binding": { - "config": { - "path": "session.custom.fc" - }, - "type": "property" - }, - "persistent": true - }, - "custom.whids_in_s3": { - "binding": { - "config": { - "expression": "{session.custom.fc}" - }, - "transforms": [ - { - "code": "\tfrom AWS.s3 import S3Manager\n\t\n\tusername \u003d self.session.props.auth.user.userName\n\tapi_region_name \u003d self.custom.api_region_name\n\t\n\ts3m \u003d S3Manager(\u0027prod\u0027, api_region_name, username)\n\n\tbucket \u003d self.custom.stage_config.repo_bucket\n\treturn s3m.fetch_site_list(bucket)\n", - "type": "script" - } - ], - "type": "expr" - }, - "persistent": true - }, - "params.enables": { - "paramDirection": "input", - "persistent": true - }, - "params.selected_whid": { - "onChange": { - "enabled": null, - "script": "\tself.custom.new_site_to_add \u003d getattr(currentValue, \u0027value\u0027, \u0027\u0027)" - }, - "paramDirection": "input", - "persistent": true - } - }, - "props": { - "defaultSize": { - "height": 330, - "width": 600 - } - }, - "root": { - "children": [ - { - "children": [ - { - "children": [ - { - "meta": { - "name": "Label" - }, - "position": { - "basis": "125px", - "shrink": 0 - }, - "props": { - "style": { - "classes": "Framework/Card/Label Text/RightAlign_with_Padding", - "paddingLeft": "5px" - }, - "text": "S3 Image Bucket:" - }, - "type": "ia.display.label" - }, - { - "meta": { - "name": "label_LeftAlign" - }, - "position": { - "basis": "200px", - "grow": 1 - }, - "propConfig": { - "position.display": { - "binding": { - "config": { - "expression": "!{view.params.enables.bucket}" - }, - "type": "expr" - } - }, - "props.params.text": { - "binding": { - "config": { - "path": "view.custom.stage_config.repo_bucket" - }, - "type": "property" - } - } - }, - "props": { - "path": "Objects/Templates/Labels/label_LeftAlign", - "style": { - "classes": "Framework/Card/Value" - } - }, - "type": "ia.display.view" - } - ], - "meta": { - "name": "FlexContainer Image Bucket" - }, - "position": { - "basis": "26px", - "shrink": 0 - }, - "type": "ia.container.flex" - }, - { - "children": [ - { - "meta": { - "name": "Label" - }, - "position": { - "basis": "125px", - "shrink": 0 - }, - "props": { - "style": { - "classes": "Framework/Card/Label Text/RightAlign_with_Padding", - "paddingLeft": "5px" - }, - "text": "S3 Source Bucket:" - }, - "type": "ia.display.label" - }, - { - "meta": { - "name": "label_LeftAlign" - }, - "position": { - "basis": "200px", - "grow": 1 - }, - "propConfig": { - "position.display": { - "binding": { - "config": { - "expression": "!{view.params.enables.bucket}" - }, - "type": "expr" - } - }, - "props.params.text": { - "binding": { - "config": { - "path": "view.custom.stage_config.source_bucket" - }, - "type": "property" - } - } - }, - "props": { - "path": "Objects/Templates/Labels/label_LeftAlign", - "style": { - "classes": "Framework/Card/Value" - } - }, - "type": "ia.display.view" - } - ], - "meta": { - "name": "FlexContainer Source Bucket" - }, - "position": { - "basis": "26px", - "shrink": 0 - }, - "type": "ia.container.flex" - }, - { - "children": [ - { - "meta": { - "name": "Label" - }, - "position": { - "basis": "125px", - "shrink": 0 - }, - "props": { - "style": { - "classes": "Framework/Card/Label Text/RightAlign_with_Padding", - "paddingLeft": "5px" - }, - "text": "Child Projects:" - }, - "type": "ia.display.label" - }, - { - "meta": { - "name": "label_LeftAlign" - }, - "position": { - "basis": "200px", - "grow": 1 - }, - "propConfig": { - "props.params.text": { - "binding": { - "config": { - "expression": "len({view.custom.enabled_whids})" - }, - "type": "expr" - } - } - }, - "props": { - "path": "Objects/Templates/Labels/label_LeftAlign", - "style": { - "classes": "Framework/Card/Value" - } - }, - "type": "ia.display.view" - }, - { - "meta": { - "name": "Label_0" - }, - "position": { - "basis": "100px", - "shrink": 0 - }, - "props": { - "style": { - "classes": "Framework/Card/Label Text/RightAlign_with_Padding", - "paddingLeft": "5px" - }, - "text": "Sites in S3:" - }, - "type": "ia.display.label" - }, - { - "meta": { - "name": "label_LeftAlign_0" - }, - "position": { - "basis": "200px", - "grow": 1 - }, - "propConfig": { - "props.params.text": { - "binding": { - "config": { - "expression": "len({view.custom.whids_in_s3})" - }, - "type": "expr" - } - } - }, - "props": { - "path": "Objects/Templates/Labels/label_LeftAlign", - "style": { - "classes": "Framework/Card/Value" - } - }, - "type": "ia.display.view" - }, - { - "children": [ - { - "events": { - "component": { - "onActionPerformed": { - "config": { - "script": "\tself.view.custom.expanded \u003d not self.view.custom.expanded" - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "Button" - }, - "propConfig": { - "props.image.icon.path": { - "binding": { - "config": { - "expression": "if({view.custom.expanded}, \u0027material/expand_less\u0027, \u0027material/expand_more\u0027)" - }, - "type": "expr" - } - } - }, - "props": { - "image": { - "icon": {} - }, - "primary": false, - "style": { - "classes": "Input/Button/Secondary_minimal" - }, - "text": "" - }, - "type": "ia.input.button" - } - ], - "meta": { - "name": "FlexContainer" - }, - "position": { - "grow": 1, - "shrink": 0 - }, - "props": { - "justify": "flex-end" - }, - "type": "ia.container.flex" - } - ], - "meta": { - "name": "FlexContainer Sites" - }, - "position": { - "basis": "26px", - "shrink": 0 - }, - "type": "ia.container.flex" - }, - { - "children": [ - { - "children": [ - { - "meta": { - "name": "Label" - }, - "position": { - "basis": "125px", - "shrink": 0 - }, - "props": { - "style": { - "classes": "Framework/Card/Label Text/RightAlign_with_Padding", - "paddingLeft": "5px" - }, - "text": "Site to Add:" - }, - "type": "ia.display.label" - }, - { - "meta": { - "name": "label_LeftAlign" - }, - "position": { - "grow": 1 - }, - "propConfig": { - "props.params.text": { - "binding": { - "config": { - "path": "view.custom.new_site_to_add" - }, - "type": "property" - } - } - }, - "props": { - "path": "Objects/Templates/Labels/label_LeftAlign", - "style": { - "classes": "Framework/Card/Value" - } - }, - "type": "ia.display.view" - }, - { - "events": { - "component": { - "onActionPerformed": { - "config": { - "script": "\t# show confirm dialog for user before adding site\n\tself.show_confirm_dialog()\n" - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "Button Add New Site", - "tooltip": { - "location": "bottom", - "style": { - "whiteSpace": "pre" - } - } - }, - "position": { - "shrink": 0 - }, - "propConfig": { - "meta.tooltip.enabled": { - "binding": { - "config": { - "path": "this.props.enabled" - }, - "type": "property" - } - }, - "meta.tooltip.text": { - "binding": { - "config": { - "expression": "stringFormat(\u0027Add %s site folder to the image and source buckets:\\n[%s, %s]\u0027,\r\n\t{view.custom.new_site_to_add},{view.custom.stage_config.repo_bucket},\r\n\t{view.custom.stage_config.source_bucket})" - }, - "type": "expr" - } - }, - "props.enabled": { - "binding": { - "config": { - "expression": "!isNull({view.custom.new_site_to_add})\r\n\u0026\u0026len({view.custom.new_site_to_add})\r\n\u0026\u0026{view.custom.new_site_is_not_in_S3}\r\n\u0026\u0026{view.custom.developer_user}" - }, - "type": "expr" - } - } - }, - "props": { - "image": { - "icon": { - "path": "material/library_add" - } - }, - "style": { - "margin": "2px" - }, - "text": "Add Site" - }, - "scripts": { - "customMethods": [ - { - "name": "show_success_dialog", - "params": [ - "msg\u003dNone" - ], - "script": "\t# ~~ 13 PARAMETERS ~~\n\t# state\t\t\t\t\t(default \u003d info) empty string uses generic gray styling\n\t# title \t\t\t\t(default \u003d Alert Title) empty string sets the title visibility to false\n\t# message \t\t\t\t(default \u003d Alert message goes here.)\n\t# show close button\t\t(default \u003d true) boolean\n\t# btn text primary\t\t(default \u003d \"Primary\")\n\t# btn text secondary\t(default \u003d \"Secondary\")\n\t# btn icon primary \t\t(default \u003d chevron_right) do not include \u0027material/\u0027 in the path, just the icon name\n\t# btn icon secondary \t(default \u003d \"\") do not include \u0027material/\u0027 in the path, just the icon name\n\t# btn icon alignment\t(default \u003d \"right\") left or right\n\t# btn primary action\t(default \u003d \"\") add message handlers on this button to enable other script actions\n\t# btn secondary action\t(default \u003d \"\") add message handlers on this button to enable other script actions\n\t# btn close action\t\t(default \u003d \"\") add message handlers on this icon to enable other script actions\n\t# payload\t\t\t\t(default \u003d {}) add a payload here to return to the target message handler\n\t\n\tAlerts.showAlert(\n\t\t\"success\", \n\t\t\"New Site Added\", \n\t\tmsg, \n\t\t\"true\",\n\t\t\"OK\", \n\t\t\"CLOSE\", \n\t\t\"\", \n\t\t\"\", \n\t\t\"left\", \n\t\t\"closePopup\", \n\t\t\"closePopup\", \n\t\t\"closePopup\",\n\t\t{}\n\t)\n\t\t\t\t\t" - }, - { - "name": "show_warning_dialog", - "params": [ - "msg\u003dNone" - ], - "script": "\t# ~~ 13 PARAMETERS ~~\n\t# state\t\t\t\t\t(default \u003d info) empty string uses generic gray styling\n\t# title \t\t\t\t(default \u003d Alert Title) empty string sets the title visibility to false\n\t# message \t\t\t\t(default \u003d Alert message goes here.)\n\t# show close button\t\t(default \u003d true) boolean\n\t# btn text primary\t\t(default \u003d \"Primary\")\n\t# btn text secondary\t(default \u003d \"Secondary\")\n\t# btn icon primary \t\t(default \u003d chevron_right) do not include \u0027material/\u0027 in the path, just the icon name\n\t# btn icon secondary \t(default \u003d \"\") do not include \u0027material/\u0027 in the path, just the icon name\n\t# btn icon alignment\t(default \u003d \"right\") left or right\n\t# btn primary action\t(default \u003d \"\") add message handlers on this button to enable other script actions\n\t# btn secondary action\t(default \u003d \"\") add message handlers on this button to enable other script actions\n\t# btn close action\t\t(default \u003d \"\") add message handlers on this icon to enable other script actions\n\t# payload\t\t\t\t(default \u003d {}) add a payload here to return to the target message handler\n\t\n\tAlerts.showAlert(\n\t\t\"warning\", \n\t\t\"New Site NOT Added\", \n\t\tmsg, \n\t\t\"true\",\n\t\t\"OK\", \n\t\t\"CLOSE\", \n\t\t\"\", \n\t\t\"\", \n\t\t\"left\", \n\t\t\"closePopup\", \n\t\t\"closePopup\", \n\t\t\"closePopup\",\n\t\t{}\n\t)\n\t\t\t\t\t" - }, - { - "name": "show_error_dialog", - "params": [ - "msg\u003dNone" - ], - "script": "\t# ~~ 13 PARAMETERS ~~\n\t# state\t\t\t\t\t(default \u003d info) empty string uses generic gray styling\n\t# title \t\t\t\t(default \u003d Alert Title) empty string sets the title visibility to false\n\t# message \t\t\t\t(default \u003d Alert message goes here.)\n\t# show close button\t\t(default \u003d true) boolean\n\t# btn text primary\t\t(default \u003d \"Primary\")\n\t# btn text secondary\t(default \u003d \"Secondary\")\n\t# btn icon primary \t\t(default \u003d chevron_right) do not include \u0027material/\u0027 in the path, just the icon name\n\t# btn icon secondary \t(default \u003d \"\") do not include \u0027material/\u0027 in the path, just the icon name\n\t# btn icon alignment\t(default \u003d \"right\") left or right\n\t# btn primary action\t(default \u003d \"\") add message handlers on this button to enable other script actions\n\t# btn secondary action\t(default \u003d \"\") add message handlers on this button to enable other script actions\n\t# btn close action\t\t(default \u003d \"\") add message handlers on this icon to enable other script actions\n\t# payload\t\t\t\t(default \u003d {}) add a payload here to return to the target message handler\n\t\n\tAlerts.showAlert(\n\t\t\"error\", \n\t\t\"New Site Add Error!\", \n\t\tmsg, \n\t\t\"true\",\n\t\t\"OK\", \n\t\t\"CLOSE\", \n\t\t\"\", \n\t\t\"\", \n\t\t\"left\", \n\t\t\"closePopup\", \n\t\t\"closePopup\", \n\t\t\"closePopup\",\n\t\t{}\n\t)\n\t\t\t\t\t" - }, - { - "name": "show_confirm_dialog", - "params": [ - "payload\u003dNone" - ], - "script": "\t# ~~ 13 PARAMETERS ~~\n\t# state\t\t\t\t\t(default \u003d info) empty string uses generic gray styling\n\t# title \t\t\t\t(default \u003d Alert Title) empty string sets the title visibility to false\n\t# message \t\t\t\t(default \u003d Alert message goes here.)\n\t# show close button\t\t(default \u003d true) boolean\n\t# btn text primary\t\t(default \u003d \"Primary\")\n\t# btn text secondary\t(default \u003d \"Secondary\")\n\t# btn icon primary \t\t(default \u003d chevron_right) do not include \u0027material/\u0027 in the path, just the icon name\n\t# btn icon secondary \t(default \u003d \"\") do not include \u0027material/\u0027 in the path, just the icon name\n\t# btn icon alignment\t(default \u003d \"right\") left or right\n\t# btn primary action\t(default \u003d \"\") add message handlers on this button to enable other script actions\n\t# btn secondary action\t(default \u003d \"\") add message handlers on this button to enable other script actions\n\t# btn close action\t\t(default \u003d \"\") add message handlers on this icon to enable other script actions\n\t# payload\t\t\t\t(default \u003d {}) add payload of data to pass to the popup\n\tmsg \u003d (\u0027Are you sure you want to add %s site to S3? \u0027\n\t\t\u0027\\nThis will create a new folder in the in each of the image repo and source file S3 buckets\u0027) % (\n\t\tself.view.custom.new_site_to_add)\n\tpayload \u003d {}\t\t\n\tAlerts.showAlert(\n\t\t\"info\", \n\t\t\"Add New Site to S3?\", \n\t\tmsg, \n\t\t\"true\",\n\t\t\"Continue\", \n\t\t\"Cancel\", \n\t\t\"library_add\", \n\t\t\"\", \n\t\t\"left\", \n\t\t\"confirm_add_new_site\", \n\t\t\"closePopup\", \n\t\t\"closePopup\",\n\t\tpayload\n\t)\n\t\t\t" - }, - { - "name": "update_bindings", - "params": [], - "script": "\t\"\"\"\n\t\tAfter data saved to S3, refresh session and view bindings\n\t\"\"\"\n\tself.view.refreshBinding(\u0027custom.enabled_whids\u0027)\n\tself.view.refreshBinding(\u0027custom.whids_in_s3\u0027)\n\tproject_table \u003d self.parent.parent.getChild(\"FlexContainer Tables\").getChild(\"FlexContainer Projects\").getChild(\"Table\")\n\tproject_table.refreshBinding(\u0027props.data\u0027)\n\tsystem.perspective.sendMessage(\u0027update_enabled_whids\u0027, {}, scope\u003d\u0027session\u0027)\n\tself.view.custom.new_site_to_add \u003d None\n\tself.view.custom.loading \u003d False\n\t\t" - }, - { - "name": "add_new_site", - "params": [], - "script": "\t\"\"\"\n\t\tCall AWS.s3.S3Manager.add_new_site() method with user selections\n\t\"\"\"\n\tfrom AWS.s3 import S3Manager\n\tfrom pprint import pformat\n\tfrom helper.helper import sanitize_tree\n\t\n\tapi_region_name \u003d self.view.custom.api_region_name\n\tusername \u003d self.session.props.auth.user.userName\n\tsite \u003d self.view.custom.new_site_to_add\n\tself.view.custom.loading \u003d True\n\n\ts3m \u003d S3Manager(\u0027prod\u0027, api_region_name, username)\n\t# Setting `bucket` \u003d \u0027both\u0027 will add the site folder to both the image and source buckets\n\tbucket \u003d \u0027both\u0027\n\toperation \u003d \u0027add_new_site\u0027\n\tparams \u003d {\u0027site\u0027: site, \u0027bucket\u0027: bucket}\n\ttry:\n\t\tresp \u003d getattr(s3m, operation)(**params)\n\t\tmsg \u003d pformat(sanitize_tree(resp))\n\t\tsystem.perspective.print(msg)\n\t\tresp_code \u003d resp.get(\u0027code\u0027, None)\n\t\tif (resp_code and resp_code !\u003d 200) or (not resp_code and \u0027message\u0027 in resp):\n\t\t\t# \u0027code\u0027 in resp indicates API encountered and returned an error\n\t\t\tself.show_error_dialog(msg)\n\t\t\tself.view.custom.loading \u003d False\n\t\telse:\n\t\t\tself.show_success_dialog(msg)\n\t\t\tself.update_bindings()\n\texcept:\n\t\timport traceback\n\t\tmsg \u003d \u0027Error executing %s operation! \\nError: %s\u0027 % (\n\t\t\t\toperation, traceback.format_exc())\n\t\tsystem.perspective.print(msg)\n\t\tself.view.custom.loading \u003d False\n\t\tself.show_error_dialog(msg)\n\t" - } - ], - "extensionFunctions": null, - "messageHandlers": [ - { - "messageType": "confirm_add_new_site", - "pageScope": false, - "script": "\tsystem.perspective.closePopup(\u0027alertDialog\u0027)\n\t# call the add_new_site custom method\n\tself.add_new_site()\n\t\t\t", - "sessionScope": true, - "viewScope": true - } - ] - }, - "type": "ia.input.button" - } - ], - "meta": { - "name": "FlexContainer Add New Site" - }, - "position": { - "basis": "32px", - "shrink": 0 - }, - "propConfig": { - "position.display": { - "binding": { - "config": { - "expression": "{view.custom.developer_user}\r\n\u0026\u0026!isNull({view.custom.new_site_to_add})\r\n\u0026\u0026{view.custom.new_site_is_not_in_S3}" - }, - "type": "expr" - } - } - }, - "type": "ia.container.flex" - }, - { - "children": [ - { - "children": [ - { - "events": { - "component": { - "onSelectionChange": { - "config": { - "script": "\t# validate the selection data is not null\n\tif self.props.selection.data:\n\t\tproject \u003d self.props.selection.data[0].Project\n\t\tif getattr(project, \u0027value\u0027, None):\n\t\t\t# if this returns something, the row is styled, grab the value\n\t\t\tproject \u003d project.get(\u0027value\u0027)\n\t\tproject_site \u003d project.replace(\"_SCADA\", \"\")\n\t\tself.view.custom.new_site_to_add \u003d project_site\n" - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "Table" - }, - "position": { - "basis": "200px", - "shrink": 0 - }, - "propConfig": { - "props.data": { - "binding": { - "config": { - "expression": "toStr({view.custom.enabled_whids})+toStr({view.custom.whids_in_s3})" - }, - "transforms": [ - { - "code": "\tenabled_whids \u003d self.view.custom.enabled_whids\n\twhids_in_s3 \u003d self.view.custom.whids_in_s3\n\tdata \u003d [{\u0027Project\u0027: x + \u0027_SCADA\u0027} for x in enabled_whids]\n\tfor row in data:\n\t\tproject \u003d row[\u0027Project\u0027]\n\t\twhid \u003d project.replace(\u0027_SCADA\u0027,\u0027\u0027)\n\t\tif whid not in whids_in_s3:\n\t\t\tstyle \u003d {\u0027backgroundColor\u0027: \u0027#FFFF00\u0027}\n\t\t\trow[\u0027Project\u0027] \u003d {\u0027value\u0027: project, \u0027style\u0027: style}\n\treturn data", - "type": "script" - } - ], - "type": "expr" - } - }, - "props.filter.enabled": { - "onChange": { - "enabled": null, - "script": "\tif not getattr(currentValue, \u0027value\u0027, None):\n\t\t# clear filter text when filter is disabled\n\t\tself.props.filter.text \u003d \u0027\u0027\n\t\t" - } - } - }, - "props": { - "columns": [ - { - "align": "center", - "boolean": "checkbox", - "dateFormat": "MM/DD/YYYY", - "editable": false, - "field": "Project", - "filter": { - "boolean": { - "condition": "" - }, - "date": { - "condition": "", - "value": "" - }, - "enabled": false, - "number": { - "condition": "", - "value": "" - }, - "string": { - "condition": "", - "value": "" - }, - "visible": "on-hover" - }, - "footer": { - "align": "center", - "justify": "left", - "style": { - "classes": "" - }, - "title": "" - }, - "header": { - "align": "center", - "justify": "center", - "style": { - "classes": "" - }, - "title": "Child Project" - }, - "justify": "center", - "number": "value", - "numberFormat": "0,0.##", - "progressBar": { - "bar": { - "color": "", - "style": { - "classes": "" - } - }, - "max": 100, - "min": 0, - "track": { - "color": "", - "style": { - "classes": "" - } - }, - "value": { - "enabled": true, - "format": "0,0.##", - "justify": "center", - "style": { - "classes": "" - } - } - }, - "render": "auto", - "resizable": true, - "sort": "none", - "sortable": true, - "strictWidth": false, - "style": { - "classes": "" - }, - "toggleSwitch": { - "color": { - "selected": "", - "unselected": "" - } - }, - "viewParams": {}, - "viewPath": "", - "visible": true, - "width": "" - } - ], - "style": { - "margin": "5px" - } - }, - "type": "ia.display.table" - } - ], - "meta": { - "name": "FlexContainer Projects" - }, - "position": { - "basis": "50%", - "grow": 1 - }, - "props": { - "direction": "column" - }, - "type": "ia.container.flex" - }, - { - "children": [ - { - "meta": { - "name": "Table" - }, - "position": { - "basis": "200px", - "shrink": 0 - }, - "propConfig": { - "props.data": { - "binding": { - "config": { - "path": "view.custom.whids_in_s3" - }, - "transforms": [ - { - "code": "\treturn [{\u0027WHID\u0027: x} for x in value]", - "type": "script" - } - ], - "type": "property" - } - }, - "props.filter.enabled": { - "onChange": { - "enabled": null, - "script": "\tif not getattr(currentValue, \u0027value\u0027, None):\n\t\t# clear filter text when filter is disabled\n\t\tself.props.filter.text \u003d \u0027\u0027\n\t\t" - } - } - }, - "props": { - "columns": [ - { - "align": "center", - "boolean": "checkbox", - "dateFormat": "MM/DD/YYYY", - "editable": false, - "field": "WHID", - "filter": { - "boolean": { - "condition": "" - }, - "date": { - "condition": "", - "value": "" - }, - "enabled": false, - "number": { - "condition": "", - "value": "" - }, - "string": { - "condition": "", - "value": "" - }, - "visible": "on-hover" - }, - "footer": { - "align": "center", - "justify": "left", - "style": { - "classes": "" - }, - "title": "" - }, - "header": { - "align": "center", - "justify": "center", - "style": { - "classes": "" - }, - "title": "FC" - }, - "justify": "center", - "number": "value", - "numberFormat": "0,0.##", - "progressBar": { - "bar": { - "color": "", - "style": { - "classes": "" - } - }, - "max": 100, - "min": 0, - "track": { - "color": "", - "style": { - "classes": "" - } - }, - "value": { - "enabled": true, - "format": "0,0.##", - "justify": "center", - "style": { - "classes": "" - } - } - }, - "render": "auto", - "resizable": true, - "sort": "none", - "sortable": true, - "strictWidth": false, - "style": { - "classes": "" - }, - "toggleSwitch": { - "color": { - "selected": "", - "unselected": "" - } - }, - "viewParams": {}, - "viewPath": "", - "visible": true, - "width": "" - } - ], - "style": { - "margin": "5px" - } - }, - "type": "ia.display.table" - } - ], - "meta": { - "name": "FlexContainer Site Folders" - }, - "position": { - "basis": "50%", - "grow": 1 - }, - "props": { - "direction": "column" - }, - "type": "ia.container.flex" - } - ], - "meta": { - "name": "FlexContainer Tables" - }, - "type": "ia.container.flex" - } - ], - "meta": { - "name": "FlexContainer Projects vs Folders" - }, - "propConfig": { - "position.display": { - "binding": { - "config": { - "path": "view.custom.expanded" - }, - "type": "property" - } - } - }, - "props": { - "direction": "column" - }, - "type": "ia.container.flex" - } - ], - "meta": { - "name": "FlexContainer" - }, - "position": { - "basis": "100%", - "grow": 1 - }, - "props": { - "direction": "column" - }, - "type": "ia.container.flex" - } - ], - "meta": { - "name": "root" - }, - "props": { - "direction": "column" - }, - "type": "ia.container.flex" - } -} \ No newline at end of file diff --git a/.resources/9fcd18d755e037b8f7ab8ffbd122823563538651b104d927d27095766ffaf7ea b/.resources/9fcd18d755e037b8f7ab8ffbd122823563538651b104d927d27095766ffaf7ea new file mode 100644 index 00000000..42965085 Binary files /dev/null and b/.resources/9fcd18d755e037b8f7ab8ffbd122823563538651b104d927d27095766ffaf7ea differ diff --git a/.resources/bf4f5dfb708d42671b2f97694315b32ad55a8bded483f631c9cbf6c1c83ad98d b/.resources/a009c0865f35c2e8d8de701d81cd56f159811291d67f63d5f3b57ae24324ea8d similarity index 99% rename from .resources/bf4f5dfb708d42671b2f97694315b32ad55a8bded483f631c9cbf6c1c83ad98d rename to .resources/a009c0865f35c2e8d8de701d81cd56f159811291d67f63d5f3b57ae24324ea8d index 4823f32a..981a9b07 100644 --- a/.resources/bf4f5dfb708d42671b2f97694315b32ad55a8bded483f631c9cbf6c1c83ad98d +++ b/.resources/a009c0865f35c2e8d8de701d81cd56f159811291d67f63d5f3b57ae24324ea8d @@ -9,8 +9,8 @@ "MCM06", "MCM07" ], - "button_type": "Enable", - "type": 4 + "button_type": "UNKNOWN", + "type": 0 }, "params": { "forceFaultStatus": null, @@ -1127,6 +1127,10 @@ { "input": 4, "output": true + }, + { + "input": 3, + "output": true } ], "outputType": "scalar", @@ -1840,7 +1844,7 @@ } }, "props": { - "currentTabIndex": 2, + "currentTabIndex": 1, "menuType": "modern", "tabSize": { "width": 1000 diff --git a/.resources/a0ff27373536c0646b0e72708e40079ceecee5f0c6e216f727b252fd746b9f30 b/.resources/a0ff27373536c0646b0e72708e40079ceecee5f0c6e216f727b252fd746b9f30 deleted file mode 100644 index 14a2b6ca..00000000 --- a/.resources/a0ff27373536c0646b0e72708e40079ceecee5f0c6e216f727b252fd746b9f30 +++ /dev/null @@ -1,727 +0,0 @@ -{ - "custom": { - "alarm_message": null, - "covert_mode": true, - "disconnected": false, - "display_icon": true, - "error": false, - "isMatch": 0, - "plc": "value", - "priority": 0, - "priority_string": "No active alarms", - "running_status": 4, - "searchId": "value", - "state": 5, - "state_string": "Unknown", - "tag_path_to_lookup": "[\"value\"]" - }, - "params": { - "directionLeft": false, - "forceFaultStatus": null, - "forceRunningStatus": null, - "tagProps": [ - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value" - ] - }, - "propConfig": { - "custom.alarm_message": { - "persistent": true - }, - "custom.covert_mode": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case(\t{value},\r\n\t\t0, {session.custom.alarm_filter.show_running},\r\n\t\t1, True,\r\n\t\t2, True,\r\n\t\t3, {session.custom.alarm_filter.show_low_alarm},\r\n\t\t4, {session.custom.alarm_filter.show_diagnostic},\r\n\t\t5, {session.custom.alarm_filter.show_running},\r\n\t\tFalse)", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.disconnected": { - "binding": { - "config": { - "fallbackDelay": 2.5, - "mode": "indirect", - "references": { - "fc": "{session.custom.fc}", - "plc": "{view.custom.plc}" - }, - "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{plc}/DCN" - }, - "transforms": [ - { - "expression": "if(isNull({value}), False, {value})", - "type": "expression" - } - ], - "type": "tag" - }, - "persistent": true - }, - "custom.display_icon": { - "binding": { - "config": { - "expression": "{this.custom.covert_mode}//||{this.custom.isMatch}\u003e0" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.error": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "0 \u003c {value} \u0026\u0026 {value} \u003c 5", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.isMatch": { - "binding": { - "config": { - "expression": "if({view.params.tagProps[0]}\u003d\"value\",0,\nif({this.custom.searchId}\u003d{view.params.tagProps[0]},100,0))" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.plc": { - "binding": { - "config": { - "path": "view.params.tagProps[0]" - }, - "transforms": [ - { - "expression": "split({value}, \"/\")[0]", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.priority": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "fallback": 0, - "inputType": "scalar", - "mappings": [ - { - "input": 1, - "output": 4 - }, - { - "input": 2, - "output": 3 - }, - { - "input": 3, - "output": 2 - }, - { - "input": 4, - "output": 1 - } - ], - "outputType": "scalar", - "type": "map" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.priority_string": { - "binding": { - "config": { - "expression": "case({view.custom.state},\r\n1, \"High\",\r\n2, \"Medium\",\r\n3, \"Low\",\r\n4, \"Diagnostic\",\r\n5, \"No active alarms\",\r\n\"Unknown\")" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.running_status": { - "binding": { - "config": { - "expression": "coalesce(try(jsonGet(jsonGet({session.custom.state_messages},{this.custom.tag_path_to_lookup}),\"state\"),null),{view.params.forceRunningStatus},4)" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.searchId": { - "binding": { - "config": { - "path": "session.custom.searchId" - }, - "type": "property" - }, - "persistent": true - }, - "custom.state": { - "binding": { - "config": { - "fallbackDelay": 2.5, - "mode": "indirect", - "references": { - "0": "{view.params.tagProps[0]}", - "fc": "{session.custom.fc}" - }, - "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/ALARMST" - }, - "transforms": [ - { - "expression": "coalesce({value},{view.params.forceFaultStatus},0)", - "type": "expression" - }, - { - "fallback": null, - "inputType": "scalar", - "mappings": [ - { - "input": 4, - "output": 1 - }, - { - "input": 3, - "output": 2 - }, - { - "input": 2, - "output": 3 - }, - { - "input": 1, - "output": 4 - }, - { - "input": 0, - "output": 5 - } - ], - "outputType": "scalar", - "type": "map" - } - ], - "type": "tag" - }, - "persistent": true - }, - "custom.state_string": { - "binding": { - "config": { - "expression": "case({view.custom.running_status},\r\n1, \"Faulted\",\r\n2, \"Stopped\",\r\n3, \"Running\",\r\n\"Unknown\")" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.tag_path_to_lookup": { - "binding": { - "config": { - "expression": "\"[\\\"\" + {view.params.tagProps[0]} + \"\\\"]\"" - }, - "type": "expr" - }, - "persistent": true - }, - "params.directionLeft": { - "paramDirection": "input", - "persistent": true - }, - "params.forceFaultStatus": { - "paramDirection": "input", - "persistent": true - }, - "params.forceRunningStatus": { - "paramDirection": "input", - "persistent": true - }, - "params.tagProps": { - "paramDirection": "inout", - "persistent": true - } - }, - "props": { - "defaultSize": { - "height": 25, - "width": 40 - } - }, - "root": { - "children": [ - { - "meta": { - "name": "Camera" - }, - "position": { - "height": 1, - "width": 1, - "x": 0.0015, - "y": 0.0004 - }, - "propConfig": { - "meta.visible": { - "binding": { - "config": { - "expression": "!{view.params.directionLeft}" - }, - "type": "expr" - } - }, - "props.elements[0].fill.paint": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case({value},\r\n0,{session.custom.colours.state0},\r\n1,{session.custom.colours.state1},\r\n2,{session.custom.colours.state2},\r\n3,{session.custom.colours.state3},\r\n4,{session.custom.colours.state4},\r\n5,{session.custom.colours.state5},\r\n6,{session.custom.colours.state6},\r\n{session.custom.colours.fallback}\r\n)", - "type": "expression" - }, - { - "expression": "if({view.custom.display_icon}\u0026\u0026 {view.custom.isMatch}\u003d0,{value},{value}+\u002700\u0027)", - "type": "expression" - } - ], - "type": "property" - } - }, - "props.style.classes": { - "binding": { - "config": { - "expression": "if({session.custom.colours.colour_impaired} \u003d True \u0026\u0026 {view.custom.isMatch} \u003e 0,\r\n{view.custom.state} + 100 + {view.custom.isMatch},\r\n{view.custom.state} + {view.custom.isMatch})" - }, - "transforms": [ - { - "fallback": "", - "inputType": "scalar", - "mappings": [ - { - "input": 101, - "output": "State-Styles/State101" - }, - { - "input": 102, - "output": "State-Styles/State102" - }, - { - "input": 103, - "output": "State-Styles/State103" - }, - { - "input": 104, - "output": "State-Styles/State104" - }, - { - "input": 105, - "output": "State-Styles/State105" - }, - { - "input": 106, - "output": "State-Styles/State106" - }, - { - "input": 201, - "output": "State-Styles/State201" - }, - { - "input": 202, - "output": "State-Styles/State202" - }, - { - "input": 203, - "output": "State-Styles/State203" - }, - { - "input": 204, - "output": "State-Styles/State204" - }, - { - "input": 205, - "output": "State-Styles/State205" - } - ], - "outputType": "style-list", - "type": "map" - } - ], - "type": "expr" - } - } - }, - "props": { - "elements": [ - { - "d": "M 0,0 H 39 V 24 H 0 Z", - "fill": {}, - "name": "path", - "stroke": { - "paint": "#000000", - "width": 1 - }, - "type": "path" - }, - { - "d": "M 34,17 26,12 34,7 Z", - "fill": { - "paint": "#000000" - }, - "name": "path", - "stroke": { - "paint": "#000000", - "width": 1 - }, - "type": "path" - }, - { - "d": "M 9.7399998,7 H 25 V 17 H 9.7399998 Z", - "fill": { - "paint": "#000000" - }, - "name": "path", - "stroke": { - "paint": "#000000", - "width": 1 - }, - "type": "path" - }, - { - "d": "m 5,7 h 3 v 5 H 5 Z", - "fill": { - "paint": "#000000" - }, - "name": "path", - "stroke": { - "paint": "#000000", - "width": 1 - }, - "type": "path" - } - ], - "style": {}, - "viewBox": "-0.5 -0.5 40 25" - }, - "type": "ia.shapes.svg" - }, - { - "meta": { - "name": "Camera_Left" - }, - "position": { - "height": 1, - "width": 1, - "x": 0.0015, - "y": 0.0004 - }, - "propConfig": { - "meta.visible": { - "binding": { - "config": { - "expression": "{view.params.directionLeft}" - }, - "type": "expr" - } - }, - "props.elements[0].fill.paint": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case({value},\r\n0,{session.custom.colours.state0},\r\n1,{session.custom.colours.state1},\r\n2,{session.custom.colours.state2},\r\n3,{session.custom.colours.state3},\r\n4,{session.custom.colours.state4},\r\n5,{session.custom.colours.state5},\r\n6,{session.custom.colours.state6},\r\n{session.custom.colours.fallback}\r\n)", - "type": "expression" - }, - { - "expression": "if({view.custom.display_icon}\u0026\u0026 {view.custom.isMatch}\u003d0,{value},{value}+\u002700\u0027)", - "type": "expression" - } - ], - "type": "property" - } - }, - "props.style.classes": { - "binding": { - "config": { - "expression": "if({session.custom.colours.colour_impaired} \u003d True \u0026\u0026 {view.custom.isMatch} \u003e 0,\r\n{view.custom.state} + 100 + {view.custom.isMatch},\r\n{view.custom.state} + {view.custom.isMatch})" - }, - "transforms": [ - { - "fallback": "", - "inputType": "scalar", - "mappings": [ - { - "input": 101, - "output": "State-Styles/State101" - }, - { - "input": 102, - "output": "State-Styles/State102" - }, - { - "input": 103, - "output": "State-Styles/State103" - }, - { - "input": 104, - "output": "State-Styles/State104" - }, - { - "input": 105, - "output": "State-Styles/State105" - }, - { - "input": 106, - "output": "State-Styles/State106" - }, - { - "input": 201, - "output": "State-Styles/State201" - }, - { - "input": 202, - "output": "State-Styles/State202" - }, - { - "input": 203, - "output": "State-Styles/State203" - }, - { - "input": 204, - "output": "State-Styles/State204" - }, - { - "input": 205, - "output": "State-Styles/State205" - } - ], - "outputType": "style-list", - "type": "map" - } - ], - "type": "expr" - } - } - }, - "props": { - "elements": [ - { - "d": "M 0,0 H 39 V 24 H 0 Z", - "fill": {}, - "name": "path", - "stroke": { - "paint": "#000000", - "width": 1 - }, - "type": "path" - }, - { - "d": "m 31,7 h 3 v 5 h -3 z", - "fill": { - "paint": "#000000" - }, - "name": "path", - "stroke": { - "paint": "#000000", - "width": 1 - }, - "type": "path" - }, - { - "d": "M 13.74,7 H 29 V 17 H 13.74 Z", - "fill": { - "paint": "#000000" - }, - "name": "path", - "stroke": { - "paint": "#000000", - "width": 1 - }, - "type": "path" - }, - { - "d": "m 5.556602,17 8,-5 -8,-5 z", - "fill": { - "paint": "#000000" - }, - "name": "path", - "stroke": { - "paint": "#000000", - "width": 1 - }, - "type": "path" - } - ], - "style": {}, - "viewBox": "-0.5 -0.5 40 25" - }, - "type": "ia.shapes.svg" - } - ], - "events": { - "dom": { - "onClick": { - "config": { - "script": "\tsystem.perspective.openDock(\u0027Docked-East\u0027,params\u003d{\u0027tagProps\u0027:self.view.params.tagProps})" - }, - "scope": "G", - "type": "script" - }, - "onDoubleClick": { - "config": { - "script": "\ttagProps \u003d self.view.params.tagProps\n\tsystem.perspective.openPopup(\"StatusPopUP\", \"PopUp-Views/Controller-Equipment/Information\", params \u003d{\"tagProps\":tagProps})\n\t" - }, - "enabled": false, - "scope": "G", - "type": "script" - }, - "onMouseEnter": { - "config": { - "script": "\tfrom time import sleep\n\t\n\talarm \u003d []\n\tmessage \u003d None\n\t\n\tsleep(0.5)\n\t\n\tif system.tag.exists(\"System/aws_data\"):\n\t\tif self.view.params.tagProps[0] !\u003d \"\":\n\t\t\ttags_to_read \u003d system.tag.readBlocking(\"System/aws_data\")\n\t\t\tdecode_alarm_data \u003d system.util.jsonDecode(tags_to_read[0].value)\n\t\t\talarm \u003d [decode_alarm_data[i] for i in decode_alarm_data\n\t\t\t\t\tif decode_alarm_data[i][\u0027sourceId\u0027].startswith(self.view.params.tagProps[0])]\n\t\tif alarm:\n\t\t\talarm \u003d sorted(alarm, key \u003d lambda t:t[\u0027timestamp\u0027], reverse\u003dTrue)\n\t\t\tmessage \u003d max(alarm, key \u003d lambda p:p[\u0027priority\u0027]).get(\u0027message\u0027)\n\t\t\tif len(alarm) \u003e 1:\n\t\t\t\tmessage +\u003d \" (+\" + str(len(alarm)-1) + \")\"\n\tself.view.custom.alarm_message \u003d message" - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "root", - "tooltip": { - "enabled": true, - "location": "top-left", - "style": {} - } - }, - "propConfig": { - "meta.tooltip.style.backgroundColor": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case({value},\r\n0,{session.custom.colours.state0},\r\n1,{session.custom.colours.state1},\r\n2,{session.custom.colours.state2},\r\n3,{session.custom.colours.state3},\r\n4,{session.custom.colours.state4},\r\n5,{session.custom.colours.state5},\r\n6,{session.custom.colours.state6},\r\n{session.custom.colours.fallback}\r\n)", - "type": "expression" - } - ], - "type": "property" - } - }, - "meta.tooltip.style.classes": { - "binding": { - "config": { - "expression": "{view.custom.priority}" - }, - "transforms": [ - { - "fallback": "Alarms-Styles/NoAlarm", - "inputType": "scalar", - "mappings": [ - { - "input": 1, - "output": "Alarms-Styles/Diagnostic" - }, - { - "input": 2, - "output": "Alarms-Styles/Low" - }, - { - "input": 3, - "output": "Alarms-Styles/Medium" - }, - { - "input": 4, - "output": "Alarms-Styles/High" - } - ], - "outputType": "style-list", - "type": "map" - } - ], - "type": "expr" - } - }, - "meta.tooltip.style.color": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "if({session.custom.colours.colour_impaired},\r\n\t\u0027#000000\u0027,\r\n\tcase(\t{value},\r\n\t\t\t1,\u0027#FFFFFF\u0027,\r\n\t\t\t2,\u0027#000000\u0027,\r\n\t\t\t3,\u0027#000000\u0027,\r\n\t\t\t4,\u0027#FFFFFF\u0027,\r\n\t\t\t5,\u0027#FFFFFF\u0027,\r\n\t\t\t\u0027#000000\u0027)\r\n\t)", - "type": "expression" - } - ], - "type": "property" - } - }, - "meta.tooltip.text": { - "binding": { - "config": { - "expression": "if({view.custom.disconnected} \u003d False,\n\tif(isNull({view.custom.alarm_message}),\n\t\"Source Id: \" + {view.params.tagProps[0]} +\n\t\", Priority: \" + {view.custom.priority_string} +\n\t\", State: \" + {view.custom.state_string},\n\t\"Source Id: \" + {view.params.tagProps[0]} +\n\t\", Alarm: \" + {view.custom.alarm_message} +\n\t\", Priority: \" + {view.custom.priority_string} +\n\t\", State: \" + {view.custom.state_string}),\n\"Source Id: \" +{view.params.tagProps[0]} + \", Priority: Unknown, State: Unknown\")" - }, - "type": "expr" - } - }, - "props.style.classes": { - "binding": { - "config": { - "path": "view.custom.disconnected" - }, - "transforms": [ - { - "fallback": "Disconnects/Device-Connected", - "inputType": "scalar", - "mappings": [ - { - "input": true, - "output": "Disconnects/Device-Disconnected" - }, - { - "input": false, - "output": "Disconnects/Device-Connected" - } - ], - "outputType": "style-list", - "type": "map" - } - ], - "type": "property" - } - } - }, - "props": { - "aspectRatio": "40:25", - "mode": "percent", - "style": { - "cursor": "pointer" - } - }, - "type": "ia.container.coord" - } -} \ No newline at end of file diff --git a/.resources/a1184ffe25705f9c43428c0602aedbd6ffd74564a9a0efbdbf21dddeeb726506 b/.resources/a1184ffe25705f9c43428c0602aedbd6ffd74564a9a0efbdbf21dddeeb726506 deleted file mode 100644 index a54fd855..00000000 Binary files a/.resources/a1184ffe25705f9c43428c0602aedbd6ffd74564a9a0efbdbf21dddeeb726506 and /dev/null differ diff --git a/.resources/a28853d221aac1b9e7130c3d6322d8282be4bedff26e9ece7f533975d789e1b5 b/.resources/a28853d221aac1b9e7130c3d6322d8282be4bedff26e9ece7f533975d789e1b5 deleted file mode 100644 index 38ee3c7c..00000000 --- a/.resources/a28853d221aac1b9e7130c3d6322d8282be4bedff26e9ece7f533975d789e1b5 +++ /dev/null @@ -1,578 +0,0 @@ -{ - "custom": { - "FillColour": "value", - "alarm_message": null, - "covert_mode": true, - "disconnected": false, - "display_icon": true, - "error": false, - "isMatch": 0, - "plc": "value", - "priority": 0, - "priority_string": "No active alarms", - "running": false, - "running_status": 0, - "searchId": "value", - "show_error": false, - "show_running": true, - "state": 5, - "state_string": "Unknown" - }, - "params": { - "forceFaultStatus": null, - "forceRunningStatus": null, - "tagProps": [ - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value" - ] - }, - "propConfig": { - "custom.FillColour": { - "persistent": true - }, - "custom.alarm_message": { - "persistent": true - }, - "custom.covert_mode": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case(\t{value},\r\n\t\t0, {session.custom.alarm_filter.show_running},\r\n\t\t1, True,\r\n\t\t2, True,\r\n\t\t3, {session.custom.alarm_filter.show_low_alarm} || {session.custom.alarm_filter.show_running},\r\n\t\t4, {session.custom.alarm_filter.show_diagnostic} || {session.custom.alarm_filter.show_running},\r\n\t\t5, {session.custom.alarm_filter.show_running},\r\n\t\tFalse)", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.disconnected": { - "binding": { - "config": { - "fallbackDelay": 2.5, - "mode": "indirect", - "references": { - "fc": "{session.custom.fc}", - "plc": "{view.custom.plc}" - }, - "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{plc}/DCN" - }, - "transforms": [ - { - "expression": "if(isNull({value}), False, {value})", - "type": "expression" - } - ], - "type": "tag" - }, - "persistent": true - }, - "custom.display_icon": { - "binding": { - "config": { - "expression": "{this.custom.covert_mode}//||{this.custom.isMatch}\u003e0" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.error": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "0 \u003c {value} \u0026\u0026 {value} \u003c 5", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.isMatch": { - "binding": { - "config": { - "expression": "if({view.params.tagProps[0]}\u003d\"value\",0,\nif({this.custom.searchId}\u003d{view.params.tagProps[0]},100,0))" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.plc": { - "binding": { - "config": { - "path": "view.params.tagProps[0]" - }, - "transforms": [ - { - "expression": "split({value}, \"/\")[0]", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.priority": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "fallback": 0, - "inputType": "scalar", - "mappings": [ - { - "input": 1, - "output": 4 - }, - { - "input": 2, - "output": 3 - }, - { - "input": 3, - "output": 2 - }, - { - "input": 4, - "output": 1 - } - ], - "outputType": "scalar", - "type": "map" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.priority_string": { - "binding": { - "config": { - "expression": "case({view.custom.state},\r\n1, \"High\",\r\n2, \"Medium\",\r\n3, \"Low\",\r\n4, \"Diagnostic\",\r\n5, \"No active alarms\",\r\n\"Unknown\")" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.running": { - "binding": { - "config": { - "expression": "{view.custom.running_status} \u003d 3" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.running_status": { - "binding": { - "config": { - "fallbackDelay": 2.5, - "mode": "indirect", - "references": { - "0": "{view.params.tagProps[0]}", - "fc": "{session.custom.fc}" - }, - "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/STATE" - }, - "transforms": [ - { - "expression": "coalesce({value},{view.params.forceRunningStatus},0)", - "type": "expression" - } - ], - "type": "tag" - }, - "persistent": true - }, - "custom.searchId": { - "binding": { - "config": { - "path": "session.custom.searchId" - }, - "type": "property" - }, - "persistent": true - }, - "custom.show_error": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case(\t{value},\r\n\t\t1, True,\r\n\t\t2, True,\r\n\t\t3, {session.custom.alarm_filter.show_low_alarm},\r\n\t\t4, {session.custom.alarm_filter.show_diagnostic},\r\n\t\tFalse)", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.show_running": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case(\t{value},\r\n\t\t1, False,\r\n\t\t2, False,\r\n\t\t{session.custom.alarm_filter.show_running}\r\n\t\t)", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.state": { - "binding": { - "config": { - "fallbackDelay": 2.5, - "mode": "indirect", - "references": { - "0": "{view.params.tagProps[0]}", - "fc": "{session.custom.fc}" - }, - "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/ALARMST" - }, - "transforms": [ - { - "expression": "coalesce({value},{view.params.forceFaultStatus},0)", - "type": "expression" - }, - { - "fallback": null, - "inputType": "scalar", - "mappings": [ - { - "input": 4, - "output": 1 - }, - { - "input": 3, - "output": 2 - }, - { - "input": 2, - "output": 3 - }, - { - "input": 1, - "output": 4 - }, - { - "input": 0, - "output": 5 - } - ], - "outputType": "scalar", - "type": "map" - } - ], - "type": "tag" - }, - "persistent": true - }, - "custom.state_string": { - "binding": { - "config": { - "expression": "case({view.custom.running_status},\r\n1, \"Faulted\",\r\n2, \"Stopped\",\r\n3, \"Running\",\r\n\"Unknown\")" - }, - "type": "expr" - }, - "persistent": true - }, - "params.forceFaultStatus": { - "paramDirection": "input", - "persistent": true - }, - "params.forceRunningStatus": { - "paramDirection": "input", - "persistent": true - }, - "params.tagProps": { - "paramDirection": "inout", - "persistent": true - } - }, - "props": { - "defaultSize": { - "height": 100, - "width": 100 - } - }, - "root": { - "children": [ - { - "meta": { - "name": "Robot" - }, - "position": { - "height": 1, - "width": 1 - }, - "propConfig": { - "props.elements[0].fill.paint": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case({value},\r\n0,{session.custom.colours.state0},\r\n1,{session.custom.colours.state1},\r\n2,{session.custom.colours.state2},\r\n3,{session.custom.colours.state3},\r\n4,{session.custom.colours.state4},\r\n5,{session.custom.colours.state5},\r\n6,{session.custom.colours.state6},\r\n{session.custom.colours.fallback}\r\n)", - "type": "expression" - }, - { - "expression": "if({view.custom.display_icon}\u0026\u0026 {view.custom.isMatch}\u003d0,{value},{value}+\u002700\u0027)", - "type": "expression" - } - ], - "type": "property" - } - }, - "props.style.classes": { - "binding": { - "config": { - "expression": "if({session.custom.colours.colour_impaired} \u003d True \u0026\u0026 {view.custom.isMatch} \u003e 0,\r\n{view.custom.state} + 100 + {view.custom.isMatch},\r\n{view.custom.state} + {view.custom.isMatch})" - }, - "transforms": [ - { - "fallback": "", - "inputType": "scalar", - "mappings": [ - { - "input": 101, - "output": "State-Styles/State101" - }, - { - "input": 102, - "output": "State-Styles/State102" - }, - { - "input": 103, - "output": "State-Styles/State103" - }, - { - "input": 104, - "output": "State-Styles/State104" - }, - { - "input": 105, - "output": "State-Styles/State105" - }, - { - "input": 106, - "output": "State-Styles/State106" - }, - { - "input": 201, - "output": "State-Styles/State201" - }, - { - "input": 202, - "output": "State-Styles/State202" - }, - { - "input": 203, - "output": "State-Styles/State203" - }, - { - "input": 204, - "output": "State-Styles/State204" - }, - { - "input": 205, - "output": "State-Styles/State205" - } - ], - "outputType": "style-list", - "type": "map" - } - ], - "type": "expr" - } - } - }, - "props": { - "elements": [ - { - "d": "m 25,50.5 a 25,25 0 0 1 -25,-25 25,25 0 0 1 25,-25 25,25 0 0 1 25,25 25,25 0 0 1 -25,25 z", - "fill": {}, - "name": "Circle", - "stroke": { - "paint": "#000000", - "width": 1 - }, - "type": "path" - }, - { - "d": "m 44.389999,19.040001 h 1.34 v 5.36 h -1.34 z M 36.349998,27.08 h 5.360001 v 1.34 h -5.360001 z m 4.689681,-7.370001 A 4.0196781,4.0196781 0 0 1 37.02,23.729677 4.0196781,4.0196781 0 0 1 33.000322,19.709999 4.0196781,4.0196781 0 0 1 37.02,15.690321 4.0196781,4.0196781 0 0 1 41.039679,19.709999 Z M 31.989677,12.52 A 4.0196781,4.0196781 0 0 1 27.969999,16.539679 4.0196781,4.0196781 0 0 1 23.950321,12.52 4.0196781,4.0196781 0 0 1 27.969999,8.5003223 4.0196781,4.0196781 0 0 1 31.989677,12.52 Z m 6.46398,5.472982 -3.445342,4.105998 -9.881972,-8.29196 3.445341,-4.1059977 z m -2.103659,1.717017 h 1.340001 v 8.04 H 36.349998 Z M 37.02,19.040001 h 8.04 v 1.34 H 37.02 Z M 20.329678,26.41 A 4.0196781,4.0196781 0 0 1 16.309999,30.429678 4.0196781,4.0196781 0 0 1 12.290321,26.41 4.0196781,4.0196781 0 0 1 16.309999,22.390322 4.0196781,4.0196781 0 0 1 20.329678,26.41 Z m 5.409585,-15.990011 4.105999,3.445342 -11.004525,13.114681 -4.105998,-3.445341 z M 13.63,26.41 h 5.36 V 37.139999 H 13.63 Z M 8.2799997,37.139999 H 24.36 V 42.5 H 8.2799997 Z", - "fill": { - "paint": "#000000" - }, - "name": "Robot", - "type": "path" - } - ], - "style": {}, - "viewBox": "-0.5 -0.5 51 52" - }, - "type": "ia.shapes.svg" - } - ], - "events": { - "dom": { - "onClick": { - "config": { - "script": "\tsystem.perspective.openDock(\u0027Docked-East\u0027,params\u003d{\u0027tagProps\u0027:self.view.params.tagProps})" - }, - "scope": "G", - "type": "script" - }, - "onDoubleClick": { - "config": { - "script": "\ttagProps \u003d self.view.params.tagProps\n\tsystem.perspective.openPopup(\"StatusPopUP\", \"PopUp-Views/Controller-Equipment/Information\", params \u003d{\"tagProps\":tagProps})\n\t" - }, - "enabled": false, - "scope": "G", - "type": "script" - }, - "onMouseEnter": { - "config": { - "script": "\tfrom time import sleep\n\t\n\talarm \u003d []\n\tmessage \u003d None\n\t\n\tsleep(0.5)\n\t\n\tif system.tag.exists(\"System/aws_data\"):\n\t\tif self.view.params.tagProps[0] !\u003d \"\":\n\t\t\ttags_to_read \u003d system.tag.readBlocking(\"System/aws_data\")\n\t\t\tdecode_alarm_data \u003d system.util.jsonDecode(tags_to_read[0].value)\n\t\t\talarm \u003d [decode_alarm_data[i] for i in decode_alarm_data\n\t\t\t\t\tif decode_alarm_data[i][\u0027sourceId\u0027].startswith(self.view.params.tagProps[0])]\n\t\tif alarm:\n\t\t\talarm \u003d sorted(alarm, key \u003d lambda t:t[\u0027timestamp\u0027], reverse\u003dTrue)\n\t\t\tmessage \u003d max(alarm, key \u003d lambda p:p[\u0027priority\u0027]).get(\u0027message\u0027)\n\t\t\tif len(alarm) \u003e 1:\n\t\t\t\tmessage +\u003d \" (+\" + str(len(alarm)-1) + \")\"\n\tself.view.custom.alarm_message \u003d message" - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "root", - "tooltip": { - "enabled": true, - "location": "top-left", - "style": {} - } - }, - "propConfig": { - "meta.tooltip.style.backgroundColor": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case({value},\r\n0,{session.custom.colours.state0},\r\n1,{session.custom.colours.state1},\r\n2,{session.custom.colours.state2},\r\n3,{session.custom.colours.state3},\r\n4,{session.custom.colours.state4},\r\n5,{session.custom.colours.state5},\r\n6,{session.custom.colours.state6},\r\n{session.custom.colours.fallback}\r\n)", - "type": "expression" - } - ], - "type": "property" - } - }, - "meta.tooltip.style.classes": { - "binding": { - "config": { - "expression": "{view.custom.priority}" - }, - "transforms": [ - { - "fallback": "Alarms-Styles/NoAlarm", - "inputType": "scalar", - "mappings": [ - { - "input": 1, - "output": "Alarms-Styles/Diagnostic" - }, - { - "input": 2, - "output": "Alarms-Styles/Low" - }, - { - "input": 3, - "output": "Alarms-Styles/Medium" - }, - { - "input": 4, - "output": "Alarms-Styles/High" - } - ], - "outputType": "style-list", - "type": "map" - } - ], - "type": "expr" - } - }, - "meta.tooltip.style.color": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "if({session.custom.colours.colour_impaired},\r\n\t\u0027#000000\u0027,\r\n\tcase(\t{value},\r\n\t\t\t1,\u0027#FFFFFF\u0027,\r\n\t\t\t2,\u0027#000000\u0027,\r\n\t\t\t3,\u0027#000000\u0027,\r\n\t\t\t4,\u0027#FFFFFF\u0027,\r\n\t\t\t5,\u0027#FFFFFF\u0027,\r\n\t\t\t\u0027#000000\u0027)\r\n\t)", - "type": "expression" - } - ], - "type": "property" - } - }, - "meta.tooltip.text": { - "binding": { - "config": { - "expression": "if({view.custom.disconnected} \u003d False,\n\tif(isNull({view.custom.alarm_message}),\n\t\"Source Id: \" + {view.params.tagProps[0]} +\n\t\", Priority: \" + {view.custom.priority_string} +\n\t\", State: \" + {view.custom.state_string},\n\t\"Source Id: \" + {view.params.tagProps[0]} +\n\t\", Alarm: \" + {view.custom.alarm_message} +\n\t\", Priority: \" + {view.custom.priority_string} +\n\t\", State: \" + {view.custom.state_string}),\n\"Source Id: \" +{view.params.tagProps[0]} + \", Priority: Unknown, State: Unknown\")" - }, - "type": "expr" - } - }, - "props.style.classes": { - "binding": { - "config": { - "path": "view.custom.disconnected" - }, - "transforms": [ - { - "fallback": "Disconnects/Device-Connected", - "inputType": "scalar", - "mappings": [ - { - "input": true, - "output": "Disconnects/Device-Disconnected" - }, - { - "input": false, - "output": "Disconnects/Device-Connected" - } - ], - "outputType": "style-list", - "type": "map" - } - ], - "type": "property" - } - } - }, - "props": { - "aspectRatio": "1:1", - "mode": "percent", - "style": { - "cursor": "pointer" - } - }, - "type": "ia.container.coord" - } -} \ No newline at end of file diff --git a/.resources/a3644ec2695791380b52ff096dcc67cbc932b5d8e642269bb09fb149b24cd55e b/.resources/a3644ec2695791380b52ff096dcc67cbc932b5d8e642269bb09fb149b24cd55e new file mode 100644 index 00000000..582db81e Binary files /dev/null and b/.resources/a3644ec2695791380b52ff096dcc67cbc932b5d8e642269bb09fb149b24cd55e differ diff --git a/.resources/a4228dd7d88a3746b03e7a76ddfbcf1f6353dbe6e5dcd9f2800eb6b5195084fe b/.resources/a4228dd7d88a3746b03e7a76ddfbcf1f6353dbe6e5dcd9f2800eb6b5195084fe deleted file mode 100644 index a13432a1..00000000 --- a/.resources/a4228dd7d88a3746b03e7a76ddfbcf1f6353dbe6e5dcd9f2800eb6b5195084fe +++ /dev/null @@ -1,449 +0,0 @@ -{ - "custom": { - "alarm_message": null, - "covert_mode": true, - "disconnected": false, - "display_icon": true, - "error": false, - "isMatch": 0, - "plc": "value", - "priority": 0, - "priority_string": "No active alarms", - "running_status": 0, - "searchId": "value", - "state": 5, - "state_string": "Unknown" - }, - "params": { - "forceFaultStatus": null, - "forceRunningStatus": null, - "tagProps": [ - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value" - ] - }, - "propConfig": { - "custom.alarm_message": { - "persistent": true - }, - "custom.covert_mode": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case(\t{value},\r\n\t\t0, {session.custom.alarm_filter.show_running},\r\n\t\t1, True,\r\n\t\t2, True,\r\n\t\t3, {session.custom.alarm_filter.show_low_alarm},\r\n\t\t4, {session.custom.alarm_filter.show_diagnostic},\r\n\t\t5, {session.custom.alarm_filter.show_running},\r\n\t\tFalse)", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.disconnected": { - "binding": { - "config": { - "fallbackDelay": 2.5, - "mode": "indirect", - "references": { - "fc": "{session.custom.fc}", - "plc": "{view.custom.plc}" - }, - "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{plc}/DCN" - }, - "transforms": [ - { - "expression": "if(isNull({value}), False, {value})", - "type": "expression" - } - ], - "type": "tag" - }, - "persistent": true - }, - "custom.display_icon": { - "binding": { - "config": { - "expression": "{this.custom.covert_mode}//||{this.custom.isMatch}\u003e0" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.error": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "0 \u003c {value} \u0026\u0026 {value} \u003c 5", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.isMatch": { - "binding": { - "config": { - "expression": "if({view.params.tagProps[0]}\u003d\"value\",0,\nif({this.custom.searchId}\u003d{view.params.tagProps[0]},100,0))" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.plc": { - "binding": { - "config": { - "path": "view.params.tagProps[0]" - }, - "transforms": [ - { - "expression": "split({value}, \"/\")[0]", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.priority": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "fallback": 0, - "inputType": "scalar", - "mappings": [ - { - "input": 1, - "output": 4 - }, - { - "input": 2, - "output": 3 - }, - { - "input": 3, - "output": 2 - }, - { - "input": 4, - "output": 1 - } - ], - "outputType": "scalar", - "type": "map" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.priority_string": { - "binding": { - "config": { - "expression": "case({view.custom.state},\r\n1, \"High\",\r\n2, \"Medium\",\r\n3, \"Low\",\r\n4, \"Diagnostic\",\r\n5, \"No active alarms\",\r\n\"Unknown\")" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.running_status": { - "binding": { - "config": { - "expression": "coalesce(try(jsonGet(jsonGet({session.custom.state_messages},{this.custom.tag_path_to_lookup}),\"state\"),null),{view.params.forceRunningStatus},0)" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.searchId": { - "binding": { - "config": { - "path": "session.custom.searchId" - }, - "type": "property" - }, - "persistent": true - }, - "custom.state": { - "binding": { - "config": { - "fallbackDelay": 2.5, - "mode": "indirect", - "references": { - "0": "{view.params.tagProps[0]}", - "fc": "{session.custom.fc}" - }, - "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/ALARMST" - }, - "transforms": [ - { - "expression": "coalesce({value},{view.params.forceFaultStatus},0)", - "type": "expression" - }, - { - "fallback": null, - "inputType": "scalar", - "mappings": [ - { - "input": 4, - "output": 1 - }, - { - "input": 3, - "output": 2 - }, - { - "input": 2, - "output": 3 - }, - { - "input": 1, - "output": 4 - }, - { - "input": 0, - "output": 5 - } - ], - "outputType": "scalar", - "type": "map" - } - ], - "type": "tag" - }, - "persistent": true - }, - "custom.state_string": { - "binding": { - "config": { - "expression": "case({view.custom.running_status},\r\n1, \"Faulted\",\r\n2, \"Stopped\",\r\n3, \"Running\",\r\n\"Unknown\")" - }, - "type": "expr" - }, - "persistent": true - }, - "params.forceFaultStatus": { - "paramDirection": "input", - "persistent": true - }, - "params.forceRunningStatus": { - "paramDirection": "input", - "persistent": true - }, - "params.tagProps": { - "paramDirection": "input", - "persistent": true - } - }, - "props": { - "defaultSize": { - "height": 48, - "width": 48 - } - }, - "root": { - "children": [ - { - "meta": { - "name": "RFID_0" - }, - "position": { - "height": 1, - "width": 1 - }, - "propConfig": { - "props.elements[0].fill.paint": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case({value},\r\n0,{session.custom.colours.state0},\r\n1,{session.custom.colours.state1},\r\n2,{session.custom.colours.state2},\r\n3,{session.custom.colours.state3},\r\n4,{session.custom.colours.state4},\r\n5,{session.custom.colours.state5},\r\n6,{session.custom.colours.state6},\r\n{session.custom.colours.fallback}\r\n)", - "type": "expression" - }, - { - "expression": "if({view.custom.display_icon}\u0026\u0026 {view.custom.isMatch}\u003d0,{value},{value}+\u002700\u0027)", - "type": "expression" - } - ], - "type": "property" - } - }, - "props.style.classes": { - "binding": { - "config": { - "expression": "if({session.custom.colours.colour_impaired} \u003d True \u0026\u0026 {view.custom.isMatch} \u003e 0,\r\n{view.custom.state} + 100 + {view.custom.isMatch},\r\n{view.custom.state} + {view.custom.isMatch})" - }, - "transforms": [ - { - "fallback": "", - "inputType": "scalar", - "mappings": [ - { - "input": 101, - "output": "State-Styles/State101" - }, - { - "input": 102, - "output": "State-Styles/State102" - }, - { - "input": 103, - "output": "State-Styles/State103" - }, - { - "input": 104, - "output": "State-Styles/State104" - }, - { - "input": 105, - "output": "State-Styles/State105" - }, - { - "input": 106, - "output": "State-Styles/State106" - }, - { - "input": 201, - "output": "State-Styles/State201" - }, - { - "input": 202, - "output": "State-Styles/State202" - }, - { - "input": 203, - "output": "State-Styles/State203" - }, - { - "input": 204, - "output": "State-Styles/State204" - }, - { - "input": 205, - "output": "State-Styles/State205" - } - ], - "outputType": "style-list", - "type": "map" - } - ], - "type": "expr" - } - } - }, - "props": { - "elements": [ - { - "elements": [ - { - "d": "M6.35 0.2507 C4.0842 0.2507 1.9091 1.5163 0.3079 3.7675 L1.174 4.9681 C2.6039 2.9621 4.477 1.9591 6.35 1.9591 C8.223 1.9591 10.0961 2.9621 11.526 4.9681 L12.3921 3.7675 C10.7909 1.5163 8.6158 0.2507 6.35 0.2507 ZM6.35 3.6831 C4.7961 3.6831 3.2421 4.5117 2.0526 6.1688 L2.8834 7.4219 C3.7997 6.1213 5.0484 5.3909 6.35 5.3909 C7.6516 5.3909 8.9003 6.1213 9.8166 7.4219 L10.6474 6.1688 C9.4579 4.5117 7.9039 3.6831 6.35 3.6831 ZM6.35 7.1155 C5.4135 7.1155 4.477 7.617 3.762 8.6201 L4.6179 9.8557 C5.0761 9.2079 5.698 8.8427 6.35 8.8427 C7.002 8.8427 7.6239 9.2079 8.0821 9.8557 L8.938 8.6201 C8.223 7.617 7.2865 7.1155 6.35 7.1155 ZM6.35 10.5667 C6.0416 10.5667 5.7332 10.7299 5.4966 11.0563 L6.35 12.257 L7.2034 11.0563 C6.9668 10.7299 6.6584 10.5667 6.35 10.5667 Z", - "name": "path", - "stroke": { - "paint": "transparent" - }, - "type": "path" - } - ], - "fill": { - "opacity": 1 - }, - "name": "group", - "stroke": { - "opacity": "0.502", - "paint": "rgb(128,128,128)" - }, - "type": "group" - } - ], - "style": {}, - "viewBox": "0 0 12.7 12.7" - }, - "type": "ia.shapes.svg" - } - ], - "events": { - "dom": { - "onMouseEnter": { - "config": { - "script": "\tfrom time import sleep\n\t\n\talarm \u003d []\n\tmessage \u003d None\n\t\n\tsleep(0.5)\n\t\n\tif system.tag.exists(\"System/aws_data\"):\n\t\tif self.view.params.tagProps[0] !\u003d \"\":\n\t\t\ttags_to_read \u003d system.tag.readBlocking(\"System/aws_data\")\n\t\t\tdecode_alarm_data \u003d system.util.jsonDecode(tags_to_read[0].value)\n\t\t\talarm \u003d [decode_alarm_data[i] for i in decode_alarm_data\n\t\t\t\t\tif decode_alarm_data[i][\u0027sourceId\u0027].startswith(self.view.params.tagProps[0])]\n\t\tif alarm:\n\t\t\talarm \u003d sorted(alarm, key \u003d lambda t:t[\u0027timestamp\u0027], reverse\u003dTrue)\n\t\t\tmessage \u003d max(alarm, key \u003d lambda p:p[\u0027priority\u0027]).get(\u0027message\u0027)\n\t\t\tif len(alarm) \u003e 1:\n\t\t\t\tmessage +\u003d \" (+\" + str(len(alarm)-1) + \")\"\n\tself.view.custom.alarm_message \u003d message" - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "root", - "tooltip": {} - }, - "propConfig": { - "meta.tooltip.text": { - "binding": { - "config": { - "expression": "if({view.custom.disconnected} \u003d False,\n\tif(isNull({view.custom.alarm_message}),\n\t\"Source Id: \" + {view.params.tagProps[0]} +\n\t\", Priority: \" + {view.custom.priority_string} +\n\t\", State: \" + {view.custom.state_string},\n\t\"Source Id: \" + {view.params.tagProps[0]} +\n\t\", Alarm: \" + {view.custom.alarm_message} +\n\t\", Priority: \" + {view.custom.priority_string} +\n\t\", State: \" + {view.custom.state_string}),\n\"Source Id: \" +{view.params.tagProps[0]} + \", Priority: Unknown, State: Unknown\")" - }, - "type": "expr" - } - }, - "meta.visible": { - "binding": { - "config": { - "expression": "{view.custom.display_icon}" - }, - "type": "expr" - } - }, - "props.style.classes": { - "binding": { - "config": { - "path": "view.custom.disconnected" - }, - "transforms": [ - { - "fallback": "Disconnects/Device-Connected", - "inputType": "scalar", - "mappings": [ - { - "input": true, - "output": "Disconnects/Device-Disconnected" - }, - { - "input": false, - "output": "Disconnects/Device-Connected" - } - ], - "outputType": "style-list", - "type": "map" - } - ], - "type": "property" - } - } - }, - "props": { - "mode": "percent", - "style": { - "cursor": "pointer" - } - }, - "type": "ia.container.coord" - } -} \ No newline at end of file diff --git a/.resources/a67f3f91c7568cef5e92dd79273dd4303c499e7964efa4ae0ef4b1f6fe733b6a b/.resources/a67f3f91c7568cef5e92dd79273dd4303c499e7964efa4ae0ef4b1f6fe733b6a deleted file mode 100644 index ccc615e2..00000000 Binary files a/.resources/a67f3f91c7568cef5e92dd79273dd4303c499e7964efa4ae0ef4b1f6fe733b6a and /dev/null differ diff --git a/.resources/a709c9132e34af66ee12d24c22c79fd73d7e1d14e3b46d34a39c581f17f1e6ad b/.resources/a709c9132e34af66ee12d24c22c79fd73d7e1d14e3b46d34a39c581f17f1e6ad deleted file mode 100644 index 7fa2854b..00000000 --- a/.resources/a709c9132e34af66ee12d24c22c79fd73d7e1d14e3b46d34a39c581f17f1e6ad +++ /dev/null @@ -1,144 +0,0 @@ -{ - "custom": { - "numeric_val": 0 - }, - "params": { - "align": "left", - "enabled": true, - "number_format": "0,0.##", - "target_message_handler": null, - "use_right_margin": true, - "val": "" - }, - "propConfig": { - "custom.numeric_val": { - "binding": { - "config": { - "expression": "toFloat({view.params.val}, 0)" - }, - "overlayOptOut": true, - "type": "expr" - }, - "persistent": true - }, - "params.align": { - "paramDirection": "input", - "persistent": true - }, - "params.enabled": { - "paramDirection": "input", - "persistent": true - }, - "params.number_format": { - "paramDirection": "input", - "persistent": true - }, - "params.target_message_handler": { - "paramDirection": "input", - "persistent": true - }, - "params.use_right_margin": { - "paramDirection": "input", - "persistent": true - }, - "params.val": { - "onChange": { - "enabled": false, - "script": "\tval \u003d currentValue.value\n\tif val:\n\t\tif self.params.target_message_handler:\n\t\t\tsystem.perspective.sendMessage(\n\t\t\t\tself.params.target_message_handler,\n\t\t\t\t{\u0027value\u0027: val},\n\t\t\t\tscope\u003d\u0027session\u0027\n\t\t\t)\n" - }, - "paramDirection": "input", - "persistent": true - } - }, - "props": { - "defaultSize": { - "height": 32, - "width": 200 - } - }, - "root": { - "children": [ - { - "events": { - "component": { - "onActionPerformed": { - "config": { - "script": "\t# transform user entry into a string and send to view param\n\tval \u003d self.props.value\n\tself.view.params.val \u003d val\n\tif val:\n\t\tif self.view.params.target_message_handler:\n\t\t\tsystem.perspective.sendMessage(\n\t\t\t\tself.view.params.target_message_handler,\n\t\t\t\t{\u0027value\u0027: val},\n\t\t\t\tscope\u003d\u0027session\u0027\n\t\t\t)" - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "NumericEntryField" - }, - "position": { - "basis": "172px", - "grow": 1 - }, - "propConfig": { - "props.align": { - "binding": { - "config": { - "path": "view.params.align" - }, - "overlayOptOut": true, - "type": "property" - } - }, - "props.containerStyle.marginRight": { - "binding": { - "config": { - "expression": "if({view.params.use_right_margin},\u002726px\u0027,\u00272px\u0027)" - }, - "overlayOptOut": true, - "type": "expr" - } - }, - "props.enabled": { - "binding": { - "config": { - "path": "view.params.enabled" - }, - "type": "property" - } - }, - "props.format": { - "binding": { - "config": { - "path": "view.params.number_format" - }, - "type": "property" - } - }, - "props.value": { - "binding": { - "config": { - "path": "view.custom.numeric_val" - }, - "overlayOptOut": true, - "type": "property" - } - } - }, - "props": { - "containerStyle": { - "margin": "2px" - } - }, - "type": "ia.input.numeric-entry-field" - } - ], - "meta": { - "name": "root" - }, - "props": { - "justify": "center", - "style": { - "overflow": "hidden" - } - }, - "type": "ia.container.flex" - } -} \ No newline at end of file diff --git a/.resources/a941d025b21938b99d4fb60313d803c3e97ad38083d81df2e6817641dd5683a3 b/.resources/a941d025b21938b99d4fb60313d803c3e97ad38083d81df2e6817641dd5683a3 new file mode 100644 index 00000000..a36324f8 --- /dev/null +++ b/.resources/a941d025b21938b99d4fb60313d803c3e97ad38083d81df2e6817641dd5683a3 @@ -0,0 +1,982 @@ +{ + "custom": {}, + "params": { + "tagProps": [ + "TAG0", + "TAG1", + "TAG2", + "TAG3", + "TAG4", + "TAG5", + "TAG6", + "TAG7", + "TAG8", + "TAG9", + "TAG10", + "TAG11", + "TAG12" + ] + }, + "props": { + "defaultSize": { + "height": 1080, + "width": 1920 + } + }, + "root": { + "children": [ + { + "meta": { + "name": "DPM" + }, + "position": { + "height": 1, + "width": 1 + }, + "propConfig": { + "props.params.con_lines[0]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[0]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[10]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[10]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[11]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[11]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[12]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[12]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[1]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[1]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[2]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[2]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[3]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[3]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[4]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[4]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[5]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[5]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[6]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[6]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[7]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[7]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[8]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[8]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[9]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[9]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + } + }, + "props": { + "params": { + "con_lines": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "con_lines_visible": [ + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "in": false, + "out": false + }, + "path": "Windows/Tabs/Enternet Windows/Components/DPM_TO_HUB" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC2_1_TIPPER" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0232, + "y": 0.4991 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC2_1_TIPPER_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.0094, + "y": 0.5394 + }, + "props": { + "text": "ULC2_1_TIPPER 11.200.1.50", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "ULC2_3" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.023, + "y": 0.6677 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC2_3_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.0068, + "y": 0.7315 + }, + "props": { + "text": "ULC2_3_VFD1 11.200.1.51", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "ULC2_4" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0216, + "y": 0.8333 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC2_4_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.0068, + "y": 0.8981 + }, + "props": { + "text": "ULC2_4_VFD1 11.200.1.52", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "ULC2_5" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0229, + "y": 0.3333 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC2_5_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.0068, + "y": 0.3986 + }, + "props": { + "text": "ULC2_5_VFD1 11.200.1.53", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "ULC2_6" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0229, + "y": 0.1667 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC2_6_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.0068, + "y": 0.2324 + }, + "props": { + "text": "ULC2_6_VFD1 11.200.1.54", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "ULC2_7" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0244 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC2_7_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.0068, + "y": 0.0653 + }, + "props": { + "text": "ULC2_7_VFD1 11.200.1.55", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "ULC2_8" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.5 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC2_8_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.5117, + "y": 0.1662 + }, + "props": { + "text": "ULC2_8_VFD1 11.200.1.56", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "ULC2_9A" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.625 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC2_9A_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.6312, + "y": 0.1664 + }, + "props": { + "text": "ULC2_9A_VFD1 11.200.1.57", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "ULC2_9B" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.75 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC2_9B_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.75, + "y": 0.1664 + }, + "props": { + "text": "ULC2_9B_VFD1 11.200.1.58", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "ULC2_10" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.375 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC2_10_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.3864, + "y": 0.1664 + }, + "props": { + "text": "ULC2_10_VFD1 11.200.1.59", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "ULC2_11" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.2516, + "y": 0.0019 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC2_11_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.315, + "y": 0.1682 + }, + "props": { + "text": "ULC2_11_VFD1 11.200.1.60", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "ULC2_12" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.1245 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC2_12_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.2072, + "y": 0.1646 + }, + "props": { + "text": "ULC2_12_VFD1 11.200.1.61", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "ULC2_04_FIO1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.8389, + "y": 0.3332 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/FIO_SIO" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "ULC2_04_FIO1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.9349999999999999, + "y": 0.3943 + }, + "props": { + "text": "ULC2_04_FIO1 11.200.1.62", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "DPM_label" + }, + "position": { + "height": 0.0694, + "width": 0.101, + "x": 0.5831, + "y": 0.6342 + }, + "props": { + "text": "DPM1_ULC2_8 11.200.1.2", + "textStyle": { + "fontSize": "2vmin" + } + }, + "type": "ia.display.label" + } + ], + "meta": { + "name": "root" + }, + "position": { + "x": 0.6348, + "y": -0.1546 + }, + "props": { + "mode": "percent" + }, + "type": "ia.container.coord" + } +} \ No newline at end of file diff --git a/.resources/aa1fdc1a0a1e3485757b199c9b918284eecc950d22660fd248f0e9381ccd9e6c b/.resources/aa1fdc1a0a1e3485757b199c9b918284eecc950d22660fd248f0e9381ccd9e6c deleted file mode 100644 index 78419307..00000000 --- a/.resources/aa1fdc1a0a1e3485757b199c9b918284eecc950d22660fd248f0e9381ccd9e6c +++ /dev/null @@ -1,172 +0,0 @@ -{ - "custom": {}, - "params": { - "active": false, - "color": "", - "id": "", - "text": "" - }, - "propConfig": { - "params.active": { - "paramDirection": "inout", - "persistent": true - }, - "params.color": { - "paramDirection": "input", - "persistent": true - }, - "params.id": { - "paramDirection": "input", - "persistent": true - }, - "params.text": { - "paramDirection": "input", - "persistent": true - } - }, - "props": { - "defaultSize": { - "height": 28, - "width": 183 - } - }, - "root": { - "children": [ - { - "events": { - "dom": { - "onClick": { - "config": { - "script": "\tsystem.perspective.sendMessage(\u0027activate-filter\u0027, payload \u003d {\u0027id\u0027:self.view.params.id}, scope \u003d \u0027page\u0027)\n\tself.view.params.active \u003d True " - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "AddButton" - }, - "position": { - "basis": "30px" - }, - "propConfig": { - "position.display": { - "binding": { - "config": { - "expression": "!{view.params.active}" - }, - "type": "expr" - } - }, - "props.color": { - "binding": { - "config": { - "path": "view.params.color" - }, - "type": "property" - } - } - }, - "props": { - "path": "material/add", - "style": { - "cursor": "pointer" - } - }, - "type": "ia.display.icon" - }, - { - "events": { - "dom": { - "onClick": { - "config": { - "script": "\tsystem.perspective.sendMessage(\u0027deactivate-filter\u0027, payload \u003d {\u0027id\u0027:self.view.params.id}, scope \u003d \u0027page\u0027)\n\tself.view.params.active \u003d False " - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "RemoveButton" - }, - "position": { - "basis": "30px" - }, - "propConfig": { - "position.display": { - "binding": { - "config": { - "expression": "{view.params.active}" - }, - "type": "expr" - } - }, - "props.color": { - "binding": { - "config": { - "path": "view.params.color" - }, - "type": "property" - } - } - }, - "props": { - "path": "material/remove", - "style": { - "cursor": "pointer" - } - }, - "type": "ia.display.icon" - }, - { - "meta": { - "name": "FilterText" - }, - "position": { - "basis": "153px" - }, - "propConfig": { - "props.text": { - "binding": { - "config": { - "path": "view.params.text" - }, - "type": "property" - } - } - }, - "props": { - "style": { - "classes": "Page/Text", - "fontSize": 12 - } - }, - "type": "ia.display.label" - } - ], - "meta": { - "name": "root" - }, - "props": { - "style": { - "overflow": "hidden" - } - }, - "scripts": { - "customMethods": [], - "extensionFunctions": null, - "messageHandlers": [ - { - "messageType": "deactivate-filter", - "pageScope": true, - "script": "\t# implement your handler here\n\tif payload[\u0027id\u0027] \u003d\u003d self.view.params.id or payload[\u0027id\u0027] \u003d\u003d -1:\n\t\tself.view.params.active \u003d False", - "sessionScope": false, - "viewScope": false - } - ] - }, - "type": "ia.container.flex" - } -} \ No newline at end of file diff --git a/.resources/ab7e4b7ca537808fff70141d3ca8fe91bba8992f9a64e0d5d535b7b7c548c989 b/.resources/ab7e4b7ca537808fff70141d3ca8fe91bba8992f9a64e0d5d535b7b7c548c989 deleted file mode 100644 index 62a1fbfc..00000000 Binary files a/.resources/ab7e4b7ca537808fff70141d3ca8fe91bba8992f9a64e0d5d535b7b7c548c989 and /dev/null differ diff --git a/.resources/ac128e260d017304a8b2445c5259d6aa01acc21658d5b3ef08323b23893d9bd8 b/.resources/ac128e260d017304a8b2445c5259d6aa01acc21658d5b3ef08323b23893d9bd8 new file mode 100644 index 00000000..f9e848cf --- /dev/null +++ b/.resources/ac128e260d017304a8b2445c5259d6aa01acc21658d5b3ef08323b23893d9bd8 @@ -0,0 +1,2863 @@ +{ + "custom": {}, + "params": { + "Down1": false, + "Down2": false, + "Down3": false, + "DownLeft": false, + "DownOn": false, + "DownRight": false, + "InDown": false, + "InLeft": false, + "InOn": false, + "InUp": false, + "OutDown": false, + "OutOn": false, + "OutRight": false, + "OutUp": false + }, + "propConfig": { + "params.Down1": { + "paramDirection": "input", + "persistent": true + }, + "params.Down2": { + "paramDirection": "input", + "persistent": true + }, + "params.Down3": { + "paramDirection": "input", + "persistent": true + }, + "params.DownLeft": { + "paramDirection": "input", + "persistent": true + }, + "params.DownOn": { + "paramDirection": "input", + "persistent": true + }, + "params.DownRight": { + "paramDirection": "input", + "persistent": true + }, + "params.InDown": { + "paramDirection": "input", + "persistent": true + }, + "params.InLeft": { + "paramDirection": "input", + "persistent": true + }, + "params.InOn": { + "paramDirection": "input", + "persistent": true + }, + "params.InUp": { + "paramDirection": "input", + "persistent": true + }, + "params.OutDown": { + "paramDirection": "input", + "persistent": true + }, + "params.OutOn": { + "paramDirection": "input", + "persistent": true + }, + "params.OutRight": { + "paramDirection": "input", + "persistent": true + }, + "params.OutUp": { + "paramDirection": "input", + "persistent": true + } + }, + "props": { + "defaultSize": { + "height": 540, + "width": 640 + } + }, + "root": { + "children": [ + { + "meta": { + "name": "DPM_361" + }, + "position": { + "basis": "640px", + "grow": 1 + }, + "propConfig": { + "props.elements[10].stroke.paint": { + "binding": { + "config": { + "path": "view.params.InOn" + }, + "transforms": [ + { + "fallback": "#FF0000", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "#00FF00" + }, + { + "input": false, + "output": "#FF0000" + } + ], + "outputType": "color", + "type": "map" + } + ], + "type": "property" + } + }, + "props.elements[10].visibility": { + "binding": { + "config": { + "path": "view.params.InDown" + }, + "transforms": [ + { + "fallback": "hidden", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "visible" + }, + { + "input": false, + "output": "hidden" + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "property" + } + }, + "props.elements[11].stroke.paint": { + "binding": { + "config": { + "path": "view.params.InOn" + }, + "transforms": [ + { + "fallback": "#FF0000", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "#00FF00" + }, + { + "input": false, + "output": "#FF0000" + } + ], + "outputType": "color", + "type": "map" + } + ], + "type": "property" + } + }, + "props.elements[11].visibility": { + "binding": { + "config": { + "path": "view.params.InLeft" + }, + "transforms": [ + { + "fallback": "hidden", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "visible" + }, + { + "input": false, + "output": "hidden" + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "property" + } + }, + "props.elements[12].stroke.paint": { + "binding": { + "config": { + "path": "view.params.InOn" + }, + "transforms": [ + { + "fallback": "#FF0000", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "#00FF00" + }, + { + "input": false, + "output": "#FF0000" + } + ], + "outputType": "color", + "type": "map" + } + ], + "type": "property" + } + }, + "props.elements[12].visibility": { + "binding": { + "config": { + "path": "view.params.InUp" + }, + "transforms": [ + { + "fallback": "hidden", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "visible" + }, + { + "input": false, + "output": "hidden" + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "property" + } + }, + "props.elements[13].stroke.paint": { + "binding": { + "config": { + "path": "view.params.DownOn" + }, + "transforms": [ + { + "fallback": "#FF0000", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "#00FF00" + }, + { + "input": false, + "output": "#FF0000" + } + ], + "outputType": "color", + "type": "map" + } + ], + "type": "property" + } + }, + "props.elements[13].visibility": { + "binding": { + "config": { + "path": "view.params.Down1" + }, + "transforms": [ + { + "fallback": "hidden", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "visible" + }, + { + "input": false, + "output": "hidden" + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "property" + } + }, + "props.elements[14].stroke.paint": { + "binding": { + "config": { + "path": "view.params.DownOn" + }, + "transforms": [ + { + "fallback": "#FF0000", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "#00FF00" + }, + { + "input": false, + "output": "#FF0000" + } + ], + "outputType": "color", + "type": "map" + } + ], + "type": "property" + } + }, + "props.elements[14].visibility": { + "binding": { + "config": { + "path": "view.params.Down2" + }, + "transforms": [ + { + "fallback": "hidden", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "visible" + }, + { + "input": false, + "output": "hidden" + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "property" + } + }, + "props.elements[15].stroke.paint": { + "binding": { + "config": { + "path": "view.params.DownOn" + }, + "transforms": [ + { + "fallback": "#FF0000", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "#00FF00" + }, + { + "input": false, + "output": "#FF0000" + } + ], + "outputType": "color", + "type": "map" + } + ], + "type": "property" + } + }, + "props.elements[15].visibility": { + "binding": { + "config": { + "path": "view.params.Down3" + }, + "transforms": [ + { + "fallback": "hidden", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "visible" + }, + { + "input": false, + "output": "hidden" + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "property" + } + }, + "props.elements[16].stroke.paint": { + "binding": { + "config": { + "path": "view.params.DownOn" + }, + "transforms": [ + { + "fallback": "#FF0000", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "#00FF00" + }, + { + "input": false, + "output": "#FF0000" + } + ], + "outputType": "color", + "type": "map" + } + ], + "type": "property" + } + }, + "props.elements[16].visibility": { + "binding": { + "config": { + "path": "view.params.DownRight" + }, + "transforms": [ + { + "fallback": "hidden", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "visible" + }, + { + "input": false, + "output": "hidden" + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "property" + } + }, + "props.elements[17].stroke.paint": { + "binding": { + "config": { + "path": "view.params.DownOn" + }, + "transforms": [ + { + "fallback": "#FF0000", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "#00FF00" + }, + { + "input": false, + "output": "#FF0000" + } + ], + "outputType": "color", + "type": "map" + } + ], + "type": "property" + } + }, + "props.elements[17].visibility": { + "binding": { + "config": { + "path": "view.params.DownLeft" + }, + "transforms": [ + { + "fallback": "hidden", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "visible" + }, + { + "input": false, + "output": "hidden" + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "property" + } + }, + "props.elements[1].stroke.paint": { + "binding": { + "config": { + "path": "view.params.OutOn" + }, + "transforms": [ + { + "fallback": "#FF0000", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "#00FF00" + }, + { + "input": false, + "output": "#FF0000" + } + ], + "outputType": "color", + "type": "map" + } + ], + "type": "property" + } + }, + "props.elements[2].stroke.paint": { + "binding": { + "config": { + "path": "view.params.InOn" + }, + "transforms": [ + { + "fallback": "#FF0000", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "#00FF00" + }, + { + "input": false, + "output": "#FF0000" + } + ], + "outputType": "color", + "type": "map" + } + ], + "type": "property" + } + }, + "props.elements[3].stroke.paint": { + "binding": { + "config": { + "path": "view.params.OutOn" + }, + "transforms": [ + { + "fallback": "#FF0000", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "#00FF00" + }, + { + "input": false, + "output": "#FF0000" + } + ], + "outputType": "color", + "type": "map" + } + ], + "type": "property" + } + }, + "props.elements[4].stroke.paint": { + "binding": { + "config": { + "path": "view.params.OutOn" + }, + "transforms": [ + { + "fallback": "#00000000", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "#00FF00" + }, + { + "input": false, + "output": "#FF0000" + } + ], + "outputType": "color", + "type": "map" + } + ], + "type": "property" + } + }, + "props.elements[5].stroke.paint": { + "binding": { + "config": { + "path": "view.params.OutOn" + }, + "transforms": [ + { + "fallback": "#FF0000", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "#00FF00" + }, + { + "input": false, + "output": "#FF0000" + } + ], + "outputType": "color", + "type": "map" + } + ], + "type": "property" + } + }, + "props.elements[5].visibility": { + "binding": { + "config": { + "path": "view.params.OutDown" + }, + "transforms": [ + { + "fallback": "hidden", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "visible" + }, + { + "input": false, + "output": "hidden" + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "property" + } + }, + "props.elements[6].stroke.paint": { + "binding": { + "config": { + "path": "view.params.OutOn" + }, + "transforms": [ + { + "fallback": "#FF0000", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "#00FF00" + }, + { + "input": false, + "output": "#FF0000" + } + ], + "outputType": "color", + "type": "map" + } + ], + "type": "property" + } + }, + "props.elements[6].visibility": { + "binding": { + "config": { + "path": "view.params.OutRight" + }, + "transforms": [ + { + "fallback": "hidden", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "visible" + }, + { + "input": false, + "output": "hidden" + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "property" + } + }, + "props.elements[7].stroke.paint": { + "binding": { + "config": { + "path": "view.params.OutOn" + }, + "transforms": [ + { + "fallback": "#FF0000", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "#00FF00" + }, + { + "input": false, + "output": "#FF0000" + } + ], + "outputType": "color", + "type": "map" + } + ], + "type": "property" + } + }, + "props.elements[7].visibility": { + "binding": { + "config": { + "path": "view.params.OutUp" + }, + "transforms": [ + { + "fallback": "hidden", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "visible" + }, + { + "input": false, + "output": "hidden" + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "property" + } + }, + "props.elements[8].stroke.paint": { + "binding": { + "config": { + "path": "view.params.InOn" + }, + "transforms": [ + { + "fallback": "#FF0000", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "#00FF00" + }, + { + "input": false, + "output": "#FF0000" + } + ], + "outputType": "color", + "type": "map" + } + ], + "type": "property" + } + }, + "props.elements[9].stroke.paint": { + "binding": { + "config": { + "path": "view.params.InOn" + }, + "transforms": [ + { + "fallback": "#FF0000", + "inputType": "scalar", + "mappings": [ + { + "input": true, + "output": "#00FF00" + }, + { + "input": false, + "output": "#FF0000" + } + ], + "outputType": "color", + "type": "map" + } + ], + "type": "property" + } + } + }, + "props": { + "elements": [ + { + "elements": [ + { + "d": "m 74.541388,43.698219 h -0.232437 v -1.936962 h -0.43217 v -0.264292 c 0.18079,-0.03874 0.296148,-0.07834 0.341789,-0.129143 0.05765,-0.05853 0.116205,-0.193701 0.160972,-0.414073 h 0.161846 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path1", + "name": "path1", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 40.340817,75.05145 c 0,-3.202491 -2.479357,-5.681795 -5.681821,-5.681795 -3.202463,0 -5.785114,2.479304 -5.785114,5.681795 0,3.202463 2.582651,5.785088 5.785114,5.785088 3.202464,0 5.681821,-2.582625 5.681821,-5.785088 M 35.588742,32.696209 c 0,-1.033065 -0.929746,-1.962811 -1.962811,-1.962811 -1.136333,0 -2.066079,0.929746 -2.066079,1.962811 0,1.136333 0.929746,2.066079 2.066079,2.066079 1.033065,0 1.962811,-0.929746 1.962811,-2.066079 m 30.268518,0 c 0,-1.033065 -0.929746,-1.962811 -1.962811,-1.962811 -1.136359,0 -2.066131,0.929746 -2.066131,1.962811 0,1.136333 0.929772,2.066079 2.066131,2.066079 1.033065,0 1.962811,-0.929746 1.962811,-2.066079 M 81.972899,156.97269 V 12.448308 M 40.96063,32.696209 c 0,-1.033065 -0.929745,-1.962811 -1.962811,-1.962811 -1.136359,0 -2.066105,0.929746 -2.066105,1.962811 0,1.136333 0.929746,2.066079 2.066105,2.066079 1.033066,0 1.962811,-0.929746 1.962811,-2.066079 m 5.371889,0 c 0,-1.033065 -0.929746,-1.962811 -1.962812,-1.962811 -1.136359,0 -2.066105,0.929746 -2.066105,1.962811 0,1.136333 0.929746,2.066079 2.066105,2.066079 1.033066,0 1.962812,-0.929746 1.962812,-2.066079 m 5.371888,0 c 0,-1.033065 -0.826426,-1.962811 -1.962812,-1.962811 -1.033039,0 -1.962811,0.929746 -1.962811,1.962811 0,1.136333 0.929772,2.066079 1.962811,2.066079 1.136386,0 1.962812,-0.929746 1.962812,-2.066079 m -11.36359,75.206381 c 0,-3.20246 -2.479357,-5.78511 -5.681821,-5.78511 -3.202463,0 -5.785114,2.58265 -5.785114,5.78511 0,3.20247 2.582651,5.78512 5.785114,5.78512 3.202464,0 5.681821,-2.58265 5.681821,-5.78512 m 0,32.74785 c 0,-3.20249 -2.479357,-5.68179 -5.681821,-5.68179 -3.202463,0 -5.785114,2.4793 -5.785114,5.68179 0,3.20246 2.582651,5.78509 5.785114,5.78509 3.202464,0 5.681821,-2.58263 5.681821,-5.78509 M 65.85726,19.266462 c 0,-1.136359 -0.929746,-1.962785 -1.962811,-1.962785 -1.136359,0 -2.066131,0.826426 -2.066131,1.962785 0,1.033066 0.929772,1.962812 2.066131,1.962812 1.033065,0 1.962811,-0.929746 1.962811,-1.962812 m 0,8.987578 c 0,-1.136359 -0.929746,-1.962811 -1.962811,-1.962811 -1.136359,0 -2.066131,0.826452 -2.066131,1.962811 0,1.033066 0.929772,1.962812 2.066131,1.962812 1.033065,0 1.962811,-0.929746 1.962811,-1.962812 m 0,-4.545435 c 0,-1.03304 -0.929746,-1.962785 -1.962811,-1.962785 -1.136359,0 -2.066131,0.929745 -2.066131,1.962785 0,1.136359 0.929772,2.066104 2.066131,2.066104 1.033065,0 1.962811,-0.929745 1.962811,-2.066104 M 81.972899,12.448308 H 24.121833 m -0.826426,0.929773 V 156.04295 M 24.225126,12.448308 c -0.516519,0 -0.929719,0.309933 -0.929719,0.826453 m 0.826426,143.697929 h 57.851066 m -58.677492,-0.92974 c 0,0.51652 0.4132,0.92974 0.929719,0.92974 m 48.037062,-49.0701 c 0,-3.20246 -2.479305,-5.78511 -5.681795,-5.78511 -3.20249,0 -5.785088,2.58265 -5.785088,5.78511 0,3.20247 2.582598,5.78512 5.785088,5.78512 3.20249,0 5.681795,-2.58265 5.681795,-5.78512 m 0,32.74785 c 0,-3.20249 -2.479305,-5.68179 -5.681795,-5.68179 -3.20249,0 -5.785088,2.4793 -5.785088,5.68179 0,3.20246 2.582598,5.78509 5.785088,5.78509 3.20249,0 5.681795,-2.58263 5.681795,-5.78509 M 10.175593,93.749739 c 0,-1.342972 -0.51652,-2.582651 -1.4462922,-3.409104 m -5.7850881,0 c -1.0330656,0.929773 -1.6528785,2.272745 -1.5495852,3.615717 0.1033198,1.446265 0.8264525,2.685944 1.9628114,3.409077 m 4.8553423,0 c 1.2396787,-0.723133 1.9628118,-2.169425 1.9628118,-3.61569 m -0.6198398,0 c 0,-0.929746 -0.3099064,-1.756199 -0.9297458,-2.479331 m -5.6817947,0 c -1.3429721,1.652878 -1.1363589,3.925596 0.4132262,5.268595 m 4.8553423,0 c 0.8264525,-0.61984 1.342972,-1.756199 1.342972,-2.789264 m 0.2066132,0 c 0,-1.033066 -0.3099065,-2.066132 -1.0330656,-2.789264 m -5.7850881,0 c -0.8264525,0.826452 -1.2396787,1.962811 -1.1363589,3.09917 0.1032933,1.136359 0.6198393,2.169425 1.5495851,2.789264 m 4.8553423,0 c 1.0330656,-0.723133 1.5495852,-1.859518 1.5495852,-3.09917 M 283.10872,90.960475 V 153.87355 M 282.9021,90.960475 v 62.913075 m 0.20662,-62.913075 h -0.20662 m 0,0 v -0.413226 -0.309907 -0.10332 l 0.1033,-0.103293 m 0,0 h 0.20661 m 0,0 v 0.103293 l -0.10329,0.10332 v 0.309907 0.413226 M 283.21201,154.7 h -0.20661 m 0,0 h -0.1033 v -0.20661 -0.30993 -0.30991 m 0,0 h 0.20662 m 0,0 v 0.30991 0.30993 l 0.10329,0.20661 m 1.03306,0 h -1.03306 m 1.03306,0 v -0.82645 m 0,-63.842821 h -1.03306 m 1.03306,0.929746 v -0.929746 m 0,63.842821 V 90.857181 M 20.816076,107.28275 h -0.10332 m -0.206613,-0.82642 h -3.512397 m 3.71901,0.82642 v -0.3099 l -0.103293,-0.30991 v -0.20661 h -0.10332 m 0,0 h 0.10332 m 0,0 h 0.103293 v 0.20661 l 0.10332,0.30991 v 0.3099 m -0.309933,49.68994 h -3.512397 m 3.615717,0 h -0.10332 m 0.206613,-0.92974 v -48.7602 m -0.206613,49.68994 0.10332,-0.10332 v -0.20661 l 0.103293,-0.20659 v -0.41322 m 0.10332,0 v -48.7602 m -0.10332,48.7602 h 0.10332 m 0,0 v 0.41322 l -0.10332,0.20659 v 0.20661 l -0.103293,0.10332 m -3.615717,-50.51636 v 0.20661 l -0.103293,0.30991 v 0.3099 m 0,48.7602 v -48.7602 m 0,48.7602 v 0.41322 l 0.103293,0.20659 v 0.20661 0.10332 M 65.444034,19.266462 c 0,-0.929746 -0.723133,-1.549585 -1.549585,-1.549585 -0.929746,0 -1.652905,0.619839 -1.652905,1.549585 0,0.826453 0.723159,1.549612 1.652905,1.549612 0.826452,0 1.549585,-0.723159 1.549585,-1.549612 M 35.175516,32.696209 c 0,-0.826452 -0.723133,-1.549585 -1.549585,-1.549585 -0.92972,0 -1.652879,0.723133 -1.652879,1.549585 0,0.92972 0.723159,1.652852 1.652879,1.652852 0.826452,0 1.549585,-0.723132 1.549585,-1.652852 M 98.08859,39.20443 c -0.309933,0 -0.61984,0.10332 -0.826453,0.206613 m 1.033066,-0.619839 c -0.516546,0 -1.033066,0.10332 -1.446292,0.309933 m -1.239679,1.136359 c -0.826426,1.136359 -0.929745,2.789237 -0.103293,3.925596 0.826453,1.239679 2.272718,1.859492 3.718983,1.549585 1.446268,-0.309906 2.479328,-1.446292 2.789268,-2.892557 m -5.165279,-3.718983 c -0.516519,0.309906 -0.929746,0.619839 -1.239679,1.136359 m 0.309933,-0.103294 c -0.929772,1.033039 -1.033065,2.582598 -0.309933,3.822277 0.61984,1.239679 2.066132,1.859492 3.512371,1.652905 1.342967,-0.309933 2.479357,-1.342999 2.685967,-2.789264 m 0,0.103293 h 0.20662 m -6.404958,-2.685917 0.309933,-0.103294 m 0.929746,-0.723159 V 39.20443 m 1.549585,-0.309906 c -0.516519,0 -1.033065,0.206613 -1.549585,0.413226 m 1.446292,-0.516546 0.103293,0.206613 m 2.892534,3.822303 0.51654,0.103293 m -0.41322,-1.033012 -0.10332,0.929719 m 0.51654,-0.826426 -0.41322,-0.103293 m 0.41322,0 c -0.10332,-1.239679 -0.92977,-2.376038 -2.169421,-2.789264 m -1.136359,0.413226 1.136359,-0.309933 m -1.239653,-0.206613 0.103294,0.516546 m -1.549586,0.309906 -0.103293,-0.413226 m -0.929746,0.723159 1.033039,-0.309933 m 4.028916,2.272745 c 0,-0.309933 -0.10332,-0.61984 -0.20661,-0.929773 m -0.72314,1.239653 0.92975,-0.30988 m -0.92975,0.206586 c -0.516541,0.103294 -0.929767,0.723133 -0.723154,1.342972 m 0.309933,1.549586 -0.309933,-1.446292 m -0.51652,1.652905 c 0.309907,-0.10332 0.619839,-0.10332 0.929746,-0.206613 m -1.342946,-1.239679 0.4132,1.446292 M 98.50179,43.853186 c -0.206587,-0.516546 -0.826426,-0.929773 -1.446266,-0.72316 m -1.446292,0.413227 1.446292,-0.413227 m -1.652905,-0.516519 c 0,0.309906 0.10332,0.619839 0.206613,0.929746 m 1.239679,-1.239653 -1.446292,0.4132 m 1.446292,-0.4132 c 0.619839,-0.206586 0.929746,-0.826426 0.826453,-1.446265 m -0.413227,-1.342972 0.413227,1.446265 m 0.826426,-0.206613 -0.4132,-1.549585 m 0.4132,1.446292 c 0.103319,0.619839 0.723132,0.929746 1.342972,0.826452 m 0.929748,-0.206613 -0.929748,0.206613 m 0.103293,-2.376037 c -0.51652,-0.309933 -1.033066,-0.413227 -1.652852,-0.309933 m 3.718987,3.099197 c -0.10332,-1.239679 -0.92978,-2.272745 -2.066135,-2.789264 m 2.066135,3.718983 v -0.929719 m 0,0.103293 h -0.20662 M 99.638149,39.20443 99.948055,39.101137 M 98.708403,42.3036 c 0,-0.103293 -0.103294,-0.206586 -0.206613,-0.206586 -0.103294,0 -0.206587,0.103293 -0.206587,0.206586 0,0.103294 0.103293,0.206587 0.206587,0.206587 0.103319,0 0.206613,-0.103293 0.206613,-0.206587 m -1.446266,-1.136359 c 0,-0.309906 -0.309933,-0.619839 -0.723132,-0.619839 -0.309933,0 -0.61984,0.309933 -0.61984,0.619839 0,0.413227 0.309907,0.72316 0.61984,0.72316 0.413199,0 0.723132,-0.309933 0.723132,-0.72316 m 2.995853,-0.826426 c 0,-0.309933 -0.309935,-0.619839 -0.723161,-0.619839 -0.309907,0 -0.61984,0.309906 -0.61984,0.619839 0,0.4132 0.309933,0.723133 0.61984,0.723133 0.413226,0 0.723161,-0.309933 0.723161,-0.723133 m 0.82642,2.995825 c 0,-0.309907 -0.3099,-0.61984 -0.72313,-0.61984 -0.30991,0 -0.619838,0.309933 -0.619838,0.61984 0,0.413226 0.309928,0.723132 0.619838,0.723132 0.41323,0 0.72313,-0.309906 0.72313,-0.723132 m -2.99582,0.826452 c 0,-0.309906 -0.309933,-0.619839 -0.723159,-0.619839 -0.309907,0 -0.61984,0.309933 -0.61984,0.619839 0,0.413226 0.309933,0.723133 0.61984,0.723133 0.413226,0 0.723159,-0.309907 0.723159,-0.723133 m -0.206613,0 c 0,-0.206613 -0.206613,-0.413226 -0.516546,-0.413226 -0.206613,0 -0.413227,0.206613 -0.413227,0.413226 0,0.309906 0.206614,0.51652 0.413227,0.51652 0.309933,0 0.516546,-0.206614 0.516546,-0.51652 M 100.8778,43.33664 c 0,-0.206614 -0.20661,-0.413227 -0.51652,-0.413227 -0.20661,0 -0.413225,0.206613 -0.413225,0.413227 0,0.309932 0.206615,0.516546 0.413225,0.516546 0.30991,0 0.51652,-0.206614 0.51652,-0.516546 m -0.82643,-2.995825 c 0,-0.206613 -0.206608,-0.413226 -0.516541,-0.413226 -0.206613,0 -0.413226,0.206613 -0.413226,0.413226 0,0.309907 0.206613,0.51652 0.413226,0.51652 0.309933,0 0.516541,-0.206613 0.516541,-0.51652 m -2.995846,0.826426 c 0,-0.206613 -0.206613,-0.413226 -0.516519,-0.413226 -0.206613,0 -0.413227,0.206613 -0.413227,0.413226 0,0.309933 0.206614,0.516546 0.413227,0.516546 0.309906,0 0.516519,-0.206613 0.516519,-0.516546 m -1.652905,0.516546 h 0.10332 m 0,0 0.206613,0.723107 m 0,0 0.103293,-0.103294 m 0,0 0.10332,0.103294 m 0,0 -0.10332,0.103293 m 0,0 -0.206613,0.10332 m 0,0 -0.206613,-0.92972 m 2.789264,3.305758 0.10332,0.206613 m 0,0 -0.10332,0.103293 m 0,0 -0.103293,-0.309906 m 0,0 h -0.10332 m 0,0 v -0.10332 m 0,0 h 0.10332 m 0,0 -0.10332,-0.103294 m 0,0 h 0.10332 m 0,0 0.103293,0.103294 m 0,0 0.309907,-0.103294 m 0,0 0.103319,0.103294 m 0,0 -0.206613,0.723159 m 0,0 h -0.103293 m 0,0 0.103293,-0.723159 m 0,0 -0.206613,0.10332 m 1.549559,0 0.10332,0.103293 h 0.206608 m 0,0 h 0.1033 m 0,0 c 0.10332,-0.103293 0.20661,-0.206613 0.10332,-0.309907 m 0,0.103294 h -0.10332 m -0.1033,0 c 0.1033,0 0.1033,0 0.1033,-0.103294 m -0.206615,0.103294 v 0 c 0,0.10332 0.103315,0.10332 0.103315,0 m -0.206608,0 0.103293,-0.103294 m 0,0 h 0.103315 m 0,0 v -0.103319 m 0,0 h -0.103315 m -0.103293,-0.206614 v 0.10332 h 0.103293 m -0.103293,-0.206613 v 0 c -0.10332,0 -0.10332,0.103293 0,0.103293 m 0,-0.103293 h 0.103293 l 0.103315,0.103293 m 0,0 0.1033,-0.103293 m 0,0 -0.1033,-0.10332 h -0.206608 m 0,0 -0.206613,0.10332 v 0.206613 m 0,0 c 0,0.103294 0.103293,0.103294 0.206613,0.103294 m 0,0.103319 -0.10332,0.103294 v 0.10332 m 1.136358,-4.752049 -0.51652,0.103319 m 0,0 v 0.103294 m 0,0 h 0.41323 m 0,0 -0.20662,0.413226 m 0,-0.10332 c 0,0.10332 0,0.206613 0.1033,0.309933 0.10332,0.103293 0.20661,0.103293 0.20661,0 0.10332,0 0.20661,-0.10332 0.10332,-0.206613 m 0,0 h -0.10332 m -0.20661,0 v 0.103293 c 0.10332,0.10332 0.10332,0.10332 0.20661,0 0,0 0.10332,-0.103293 0,-0.103293 m -0.20661,0 0.20661,-0.51652 m 0,0 v -0.103319 m -2.78921,31.714783 c -0.309933,0.103294 -0.61984,0.103294 -0.826453,0.206587 m 1.033066,-0.619813 c -0.516546,0 -1.033066,0.206613 -1.446292,0.413226 m -1.239679,1.033039 c -0.826426,1.239679 -0.929745,2.789264 -0.103293,4.028943 0.826453,1.239652 2.272718,1.859492 3.718983,1.549585 1.446268,-0.309933 2.479328,-1.446292 2.789268,-2.892584 m -5.165279,-3.718983 c -0.516519,0.206587 -0.929746,0.619813 -1.239679,1.033039 m 0.309933,-0.103293 c -0.929772,1.136359 -1.033065,2.685944 -0.309933,3.925623 0.61984,1.239652 2.066132,1.859492 3.512371,1.549585 1.342967,-0.206613 2.479357,-1.342972 2.685967,-2.685971 m 0,0 h 0.20662 m -6.404958,-2.582624 0.309933,-0.10332 m 0.929746,-0.826452 v -0.206587 m 1.549585,-0.206613 c -0.516519,0 -1.033065,0.103293 -1.549585,0.309907 m 1.446292,-0.51652 0.103293,0.206613 m 2.892534,3.925596 h 0.51654 m -0.41322,-0.929745 -0.10332,0.929745 m 0.51654,-0.929745 h -0.41322 m 0.41322,0 c -0.10332,-1.342972 -0.92977,-2.376038 -2.169421,-2.789238 m -1.136359,0.309907 1.136359,-0.309907 m -1.239653,-0.206613 0.103294,0.51652 m -1.549586,0.413226 -0.103293,-0.516546 m -0.929746,0.826452 1.033039,-0.309906 m 4.028916,2.169424 c 0,-0.309932 -0.10332,-0.516546 -0.20661,-0.826452 m -0.72314,1.136359 0.92975,-0.206613 m -0.92975,0.10332 c -0.516541,0.206613 -0.929767,0.826426 -0.723154,1.446265 m 0.309933,1.446292 -0.309933,-1.446292 m -0.51652,1.652905 c 0.309907,0 0.619839,-0.10332 0.929746,-0.206613 m -1.342946,-1.239679 0.4132,1.549585 M 98.50179,76.704328 c -0.206587,-0.619839 -0.826426,-0.929746 -1.446266,-0.826452 m -1.446292,0.516546 1.446292,-0.413227 m -1.652905,-0.516519 c 0,0.309906 0.10332,0.619813 0.206613,0.826426 m 1.239679,-1.136359 -1.446292,0.309933 m 1.446292,-0.413226 c 0.619839,-0.10332 0.929746,-0.72316 0.826453,-1.342973 m -0.413227,-1.446291 0.413227,1.446291 m 0.826426,-0.206613 -0.4132,-1.446291 m 0.4132,1.446291 c 0.103319,0.51652 0.723132,0.929746 1.342972,0.723133 m 0.929748,-0.206613 -0.929748,0.309906 m 0.103293,-2.479331 c -0.51652,-0.206613 -1.033066,-0.309906 -1.652852,-0.309906 m 3.718987,3.202464 c -0.10332,-1.239653 -0.92978,-2.376038 -2.066135,-2.892558 m 2.066135,3.822303 v -0.929745 m 0,0 h -0.20662 m -2.169421,-2.789238 0.309906,-0.10332 m 2.685945,0.929746 c 0,0 0.10332,0 0,0 m -3.925597,2.272745 c 0,-0.10332 -0.103294,-0.206614 -0.206613,-0.206614 -0.103294,0 -0.206587,0.103294 -0.206587,0.206614 0,0.103293 0.103293,0.309906 0.206587,0.309906 0.103319,0 0.206613,-0.206613 0.206613,-0.309906 m -1.446266,-1.033066 c 0,-0.413226 -0.309933,-0.723133 -0.723132,-0.723133 -0.309933,0 -0.61984,0.309907 -0.61984,0.723133 0,0.309906 0.309907,0.723133 0.61984,0.723133 0.413199,0 0.723132,-0.413227 0.723132,-0.723133 m 2.995853,-0.826453 c 0,-0.413226 -0.309935,-0.723132 -0.723161,-0.723132 -0.309907,0 -0.61984,0.309906 -0.61984,0.723132 0,0.309933 0.309933,0.723133 0.61984,0.723133 0.413226,0 0.723161,-0.4132 0.723161,-0.723133 m 0.82642,2.995878 c 0,-0.413227 -0.3099,-0.723133 -0.72313,-0.723133 -0.30991,0 -0.619838,0.309906 -0.619838,0.723133 0,0.309906 0.309928,0.723132 0.619838,0.723132 0.41323,0 0.72313,-0.413226 0.72313,-0.723132 m -2.99582,0.826452 c 0,-0.413226 -0.309933,-0.723159 -0.723159,-0.723159 -0.309907,0 -0.61984,0.309933 -0.61984,0.723159 0,0.309906 0.309933,0.723133 0.61984,0.723133 0.413226,0 0.723159,-0.413227 0.723159,-0.723133 m -0.206613,0 c 0,-0.309933 -0.206613,-0.516546 -0.516546,-0.516546 -0.206613,0 -0.413227,0.206613 -0.413227,0.516546 0,0.206613 0.206614,0.51652 0.413227,0.51652 0.309933,0 0.516546,-0.309907 0.516546,-0.51652 m 2.995823,-0.826452 c 0,-0.309933 -0.20661,-0.516547 -0.51652,-0.516547 -0.20661,0 -0.413225,0.206614 -0.413225,0.516547 0,0.206613 0.206615,0.516519 0.413225,0.516519 0.30991,0 0.51652,-0.309906 0.51652,-0.516519 m -0.82643,-2.995878 c 0,-0.309906 -0.206608,-0.516519 -0.516541,-0.516519 -0.206613,0 -0.413226,0.206613 -0.413226,0.516519 0,0.206614 0.206613,0.516546 0.413226,0.516546 0.309933,0 0.516541,-0.309932 0.516541,-0.516546 m -2.995846,0.826453 c 0,-0.309907 -0.206613,-0.51652 -0.516519,-0.51652 -0.206613,0 -0.413227,0.206613 -0.413227,0.51652 0,0.206613 0.206614,0.51652 0.413227,0.51652 0.309906,0 0.516519,-0.309907 0.516519,-0.51652 m -1.652905,0.51652 0.10332,-0.103294 m 0,0 0.206613,0.826453 m 0,0 0.103293,-0.206613 m 0,0 0.10332,0.206613 m 0,0 -0.10332,0.103293 m 0,0 h -0.206613 m 0,0 -0.206613,-0.826452 m 2.789264,3.20249 0.10332,0.309906 m 0,0 h -0.10332 m 0,0 -0.103293,-0.206613 m 0,0 h -0.10332 m 0,0 v -0.103293 m 0,0 h 0.10332 m 0,0 -0.10332,-0.206613 m 0,0 h 0.10332 m 0,0 0.103293,0.103293 m 0,0 0.309907,-0.103293 m 0,0 0.103319,0.206613 m 0,0 -0.206613,0.619839 m 0,0 -0.103293,0.103293 m 0,0 0.103293,-0.723132 m 0,0 h -0.206613 m 1.549559,0 0.10332,0.103293 0.206608,0.10332 m 0,0 h 0.1033 m 0,-0.10332 c 0.10332,0 0.20661,-0.206613 0.10332,-0.309906 m 0,0.103293 h -0.10332 m -0.1033,0.10332 c 0.1033,0 0.1033,-0.10332 0.1033,-0.10332 m -0.206615,0 v 0.10332 h 0.103315 m -0.206608,0 0.103293,-0.10332 v -0.103293 m 0,0 h 0.103315 m 0,0 v -0.10332 m 0,0 h -0.103315 m -0.103293,-0.103294 v 0.103294 h 0.103293 m -0.103293,-0.309907 v 0.10332 c -0.10332,0 -0.10332,0 0,0.103293 m 0,-0.103293 h 0.103293 0.103315 m 0,0 h 0.1033 m 0,0 -0.1033,-0.10332 -0.206608,-0.103293 m 0,0 -0.206613,0.206613 v 0.206587 m 0,-0.103294 c 0,0.103294 0.103293,0.206614 0.206613,0.206614 m 0,0 -0.10332,0.103293 v 0.10332 m 1.136358,-4.648756 -0.51652,0.103293 m 0,0 v 0.10332 m 0,0 0.41323,-0.10332 m 0,0 -0.20662,0.413227 m 0,0 c 0,0.103319 0,0.206613 0.1033,0.206613 0.10332,0.103293 0.20661,0.103293 0.20661,0.103293 0.10332,-0.103293 0.20661,-0.206587 0.10332,-0.309906 m 0,0.103319 h -0.10332 m -0.20661,-0.103319 v 0.206613 h 0.20661 c 0,0 0.10332,-0.103294 0,-0.206613 m -0.20661,0.103319 0.20661,-0.516546 m 0,0 v -0.103293 m -2.78921,31.714782 c -0.309933,0 -0.61984,0.10332 -0.826453,0.20661 m 1.033066,-0.61983 c -0.516546,0 -1.033066,0.10332 -1.446292,0.30993 m -1.239679,1.13636 c -0.826426,1.13636 -0.929745,2.78923 -0.103293,3.92559 0.826453,1.23966 2.272718,1.8595 3.718983,1.54959 1.446268,-0.30993 2.479328,-1.44629 2.789268,-2.89256 m -5.165279,-3.71898 c -0.516519,0.3099 -0.929746,0.61984 -1.239679,1.13636 m 0.309933,-0.10332 c -0.929772,1.03306 -1.033065,2.58262 -0.309933,3.8223 0.61984,1.23965 2.066132,1.85949 3.512371,1.65288 1.342967,-0.30991 2.479357,-1.34297 2.685967,-2.78924 m 0,0.10329 h 0.20662 m -6.404958,-2.68591 0.309933,-0.10332 m 0.929746,-0.72314 v -0.20661 m 1.549585,-0.3099 c -0.516519,0 -1.033065,0.20661 -1.549585,0.41322 m 1.446292,-0.51654 0.103293,0.20661 m 2.892534,3.92559 h 0.51654 m -0.41322,-1.03303 -0.10332,1.03303 m 0.51654,-0.92971 -0.41322,-0.10332 m 0.41322,0 c -0.10332,-1.23966 -0.92977,-2.37602 -2.169421,-2.78924 m -1.136359,0.41322 1.136359,-0.30993 m -1.239653,-0.20661 0.103294,0.51654 m -1.549586,0.4132 -0.103293,-0.51652 m -0.929746,0.72314 1.033039,-0.20662 m 4.028916,2.16943 c 0,-0.30991 -0.10332,-0.61981 -0.20661,-0.92975 m -0.72314,1.23968 0.92975,-0.30993 m -0.92975,0.20661 c -0.516541,0.10332 -0.929767,0.72313 -0.723154,1.34295 m 0.309933,1.54958 -0.309933,-1.44626 m -0.51652,1.65288 c 0.309907,-0.1033 0.619839,-0.1033 0.929746,-0.20662 m -1.342946,-1.23965 0.4132,1.44627 m -0.309906,-1.54959 c -0.206587,-0.51652 -0.826426,-0.92975 -1.446266,-0.72313 m -1.446292,0.41322 1.446292,-0.41322 m -1.652905,-0.5165 c 0,0.30988 0.10332,0.61982 0.206613,0.92972 m 1.239679,-1.23965 -1.446292,0.4132 m 1.446292,-0.4132 c 0.619839,-0.20661 0.929746,-0.82642 0.826453,-1.44626 m -0.413227,-1.34298 0.413227,1.44627 m 0.826426,-0.20661 -0.4132,-1.54959 m 0.4132,1.44629 c 0.103319,0.61984 0.723132,0.92975 1.342972,0.82646 m 0.929748,-0.20662 -0.929748,0.20662 m 0.103293,-2.37604 c -0.51652,-0.30993 -1.033066,-0.41323 -1.652852,-0.30993 m 3.718987,3.09917 c -0.10332,-1.23966 -0.92978,-2.27272 -2.066135,-2.78924 m 2.066135,3.71898 v -0.92974 m 0,0.10332 h -0.20662 m -2.169421,-2.78927 0.309906,-0.10329 m 2.685945,0.92974 c 0,0 0.10332,-0.10332 0,-0.10332 m -3.925597,2.37604 c 0,-0.10329 -0.103294,-0.20661 -0.206613,-0.20661 -0.103294,0 -0.206587,0.10332 -0.206587,0.20661 0,0.10332 0.103293,0.20662 0.206587,0.20662 0.103319,0 0.206613,-0.1033 0.206613,-0.20662 m -1.446266,-1.13636 c 0,-0.3099 -0.309933,-0.61984 -0.723132,-0.61984 -0.309933,0 -0.61984,0.30994 -0.61984,0.61984 0,0.41323 0.309907,0.72314 0.61984,0.72314 0.413199,0 0.723132,-0.30991 0.723132,-0.72314 m 2.995853,-0.82645 c 0,-0.30991 -0.309935,-0.61981 -0.723161,-0.61981 -0.309907,0 -0.61984,0.3099 -0.61984,0.61981 0,0.41323 0.309933,0.72316 0.61984,0.72316 0.413226,0 0.723161,-0.30993 0.723161,-0.72316 m 0.82642,2.99585 c 0,-0.30991 -0.3099,-0.61984 -0.72313,-0.61984 -0.30991,0 -0.619838,0.30993 -0.619838,0.61984 0,0.41323 0.309928,0.72313 0.619838,0.72313 0.41323,0 0.72313,-0.3099 0.72313,-0.72313 m -2.99582,0.82645 c 0,-0.30993 -0.309933,-0.61984 -0.723159,-0.61984 -0.309907,0 -0.61984,0.30991 -0.61984,0.61984 0,0.41323 0.309933,0.72314 0.61984,0.72314 0.413226,0 0.723159,-0.30991 0.723159,-0.72314 m -0.206613,0 c 0,-0.20661 -0.206613,-0.41322 -0.516546,-0.41322 -0.206613,0 -0.413227,0.20661 -0.413227,0.41322 0,0.30991 0.206614,0.51652 0.413227,0.51652 0.309933,0 0.516546,-0.20661 0.516546,-0.51652 m 2.995823,-0.82645 c 0,-0.20661 -0.20661,-0.41323 -0.51652,-0.41323 -0.20661,0 -0.413225,0.20662 -0.413225,0.41323 0,0.30991 0.206615,0.51652 0.413225,0.51652 0.30991,0 0.51652,-0.20661 0.51652,-0.51652 m -0.82643,-2.99585 c 0,-0.20661 -0.206608,-0.41323 -0.516541,-0.41323 -0.206613,0 -0.413226,0.20662 -0.413226,0.41323 0,0.30993 0.206613,0.51655 0.413226,0.51655 0.309933,0 0.516541,-0.20662 0.516541,-0.51655 m -2.995846,0.82645 c 0,-0.20661 -0.206613,-0.41322 -0.516519,-0.41322 -0.206613,0 -0.413227,0.20661 -0.413227,0.41322 0,0.30994 0.206614,0.51652 0.413227,0.51652 0.309906,0 0.516519,-0.20658 0.516519,-0.51652 m -1.652905,0.51652 h 0.10332 m 0,0 0.206613,0.72316 m 0,0 0.103293,-0.10332 m 0,0 0.10332,0.10332 m 0,0 -0.10332,0.1033 m 0,0 -0.206613,0.10331 m 0,0 -0.206613,-0.92977 m 2.789264,3.30579 0.10332,0.20658 m 0,0 -0.10332,0.10332 m 0,0 -0.103293,-0.3099 m 0,0 h -0.10332 m 0,0 v -0.10332 m 0,0 h 0.10332 m 0,0 -0.10332,-0.1033 m 0,0 h 0.10332 m 0,0 0.103293,0.1033 m 0,0 0.309907,-0.1033 m 0,0 0.103319,0.1033 m 0,0 -0.206613,0.72313 m 0,0 h -0.103293 m 0,0 0.103293,-0.72313 m 0,0 -0.206613,0.10332 m 1.549559,0 0.10332,0.10329 h 0.206608 m 0,0 h 0.1033 m 0,0 c 0.10332,-0.10329 0.20661,-0.20661 0.10332,-0.30991 m 0,0.1033 h -0.10332 m -0.1033,0.10332 c 0.1033,0 0.1033,-0.10332 0.1033,-0.10332 m -0.206615,0 v 0 c 0,0.10332 0.103315,0.10332 0.103315,0 m -0.206608,0 0.103293,-0.1033 m 0,0 h 0.103315 m 0,0 v -0.10332 m 0,0 h -0.103315 m -0.103293,-0.20661 v 0.10332 c 0,0.10329 0.103293,0.10329 0.103293,0 m -0.103293,-0.20661 v 0 c -0.10332,0 -0.10332,0.10329 0,0.10329 m 0,-0.10329 h 0.103293 l 0.103315,0.10329 m 0,0 0.1033,-0.10329 m 0,0 -0.1033,-0.10332 h -0.206608 m 0,0 -0.206613,0.10332 v 0.20661 m 0,0 c 0,0.10329 0.103293,0.10329 0.206613,0.10329 m 0,0.10332 -0.10332,0.1033 v 0.10332 m 1.136358,-4.75205 -0.51652,0.10329 m 0,0 v 0.10332 m 0,0 h 0.41323 m 0,0 -0.20662,0.41323 m 0,-0.10332 c 0,0.10332 0,0.20661 0.1033,0.30993 0.10332,0.10329 0.20661,0.10329 0.20661,0 0.10332,0 0.20661,-0.10332 0.10332,-0.20661 m 0,0 h -0.10332 m -0.20661,0 v 0.10329 c 0.10332,0.10332 0.10332,0.10332 0.20661,0 0,0 0.10332,-0.10329 0,-0.10329 m -0.20661,0 0.20661,-0.51655 m 0,0 v -0.10329 m -2.78921,31.71475 c -0.309933,0.10332 -0.61984,0.10332 -0.826453,0.20662 m 1.033066,-0.61982 c -0.516546,0 -1.033066,0.20659 -1.446292,0.4132 m -1.239679,1.03307 c -0.826426,1.23968 -0.929745,2.78926 -0.103293,4.02892 0.826453,1.23967 2.272718,1.85951 3.718983,1.54961 1.446268,-0.30994 2.479328,-1.44629 2.789268,-2.89259 m -5.165279,-3.71901 c -0.516519,0.20662 -0.929746,0.61984 -1.239679,1.03307 m 0.309933,-0.10329 c -0.929772,1.13636 -1.033065,2.68594 -0.309933,3.92562 0.61984,1.23965 2.066132,1.85949 3.512371,1.54958 1.342967,-0.20661 2.479357,-1.34299 2.685967,-2.68597 m 0,0 h 0.20662 m -6.404958,-2.58262 0.309933,-0.10332 m 0.929746,-0.82645 v -0.20662 m 1.549585,-0.20661 c -0.516519,0 -1.033065,0.10332 -1.549585,0.30993 m 1.446292,-0.51652 0.103293,0.20659 m 2.892534,3.92562 h 0.51654 m -0.41322,-0.92974 -0.10332,0.92974 m 0.51654,-0.92974 h -0.41322 m 0.41322,0 c -0.10332,-1.34297 -0.92977,-2.37604 -2.169421,-2.78927 m -1.136359,0.30994 1.136359,-0.30994 m -1.239653,-0.20661 0.103294,0.51655 m -1.549586,0.41322 -0.103293,-0.51654 m -0.929746,0.82645 1.033039,-0.30991 m 4.028916,2.16943 c 0,-0.30993 -0.10332,-0.51655 -0.20661,-0.82645 m -0.72314,1.13635 0.92975,-0.20661 m -0.92975,0.10332 c -0.516541,0.20659 -0.929767,0.82643 -0.723154,1.44627 m 0.309933,1.44629 -0.309933,-1.44629 m -0.51652,1.6529 c 0.309907,0 0.619839,-0.10332 0.929746,-0.20661 m -1.342946,-1.23968 0.4132,1.54958 m -0.309906,-1.54958 c -0.206587,-0.61984 -0.826426,-0.92975 -1.446266,-0.82645 m -1.446292,0.51654 1.446292,-0.41322 m -1.652905,-0.51655 c 0,0.30993 0.10332,0.61984 0.206613,0.82645 m 1.239679,-1.13636 -1.446292,0.30991 m 1.446292,-0.4132 c 0.619839,-0.10332 0.929746,-0.72316 0.826453,-1.343 m -0.413227,-1.44626 0.413227,1.44626 m 0.826426,-0.20661 -0.4132,-1.44627 m 0.4132,1.44627 c 0.103319,0.51655 0.723132,0.92977 1.342972,0.72316 m 0.929748,-0.20661 -0.929748,0.3099 m 0.103293,-2.47933 c -0.51652,-0.20661 -1.033066,-0.30991 -1.652852,-0.30991 m 3.718987,3.20247 c -0.10332,-1.23968 -0.92978,-2.37604 -2.066135,-2.89256 m 2.066135,3.8223 v -0.92974 m 0,0 h -0.20662 m -2.169421,-2.78927 0.309906,-0.10329 m 2.685945,0.92975 c 0,0 0.10332,0 0,0 m -3.925597,2.27274 c 0,-0.10332 -0.103294,-0.20661 -0.206613,-0.20661 -0.103294,0 -0.206587,0.10329 -0.206587,0.20661 0,0.10329 0.103293,0.30991 0.206587,0.30991 0.103319,0 0.206613,-0.20662 0.206613,-0.30991 m -1.446266,-1.03306 c 0,-0.41323 -0.309933,-0.72314 -0.723132,-0.72314 -0.309933,0 -0.61984,0.30991 -0.61984,0.72314 0,0.3099 0.309907,0.72313 0.61984,0.72313 0.413199,0 0.723132,-0.41323 0.723132,-0.72313 m 2.995853,-0.82646 c 0,-0.41322 -0.309935,-0.72313 -0.723161,-0.72313 -0.309907,0 -0.61984,0.30991 -0.61984,0.72313 0,0.30991 0.309933,0.72314 0.61984,0.72314 0.413226,0 0.723161,-0.41323 0.723161,-0.72314 m 0.82642,2.99588 c 0,-0.41323 -0.3099,-0.72316 -0.72313,-0.72316 -0.30991,0 -0.619838,0.30993 -0.619838,0.72316 0,0.30991 0.309928,0.72313 0.619838,0.72313 0.41323,0 0.72313,-0.41322 0.72313,-0.72313 m -2.99582,0.82643 c 0,-0.4132 -0.309933,-0.72314 -0.723159,-0.72314 -0.309907,0 -0.61984,0.30994 -0.61984,0.72314 0,0.30993 0.309933,0.72316 0.61984,0.72316 0.413226,0 0.723159,-0.41323 0.723159,-0.72316 m -0.206613,0 c 0,-0.30991 -0.206613,-0.51652 -0.516546,-0.51652 -0.206613,0 -0.413227,0.20661 -0.413227,0.51652 0,0.20661 0.206614,0.51654 0.413227,0.51654 0.309933,0 0.516546,-0.30993 0.516546,-0.51654 m 2.995823,-0.82643 c 0,-0.30993 -0.20661,-0.51655 -0.51652,-0.51655 -0.20661,0 -0.413225,0.20662 -0.413225,0.51655 0,0.20661 0.206615,0.51652 0.413225,0.51652 0.30991,0 0.51652,-0.30991 0.51652,-0.51652 m -0.82643,-2.99588 c 0,-0.3099 -0.206608,-0.51652 -0.516541,-0.51652 -0.206613,0 -0.413226,0.20662 -0.413226,0.51652 0,0.20662 0.206613,0.51652 0.413226,0.51652 0.309933,0 0.516541,-0.3099 0.516541,-0.51652 m -2.995846,0.82646 c 0,-0.30994 -0.206613,-0.51655 -0.516519,-0.51655 -0.206613,0 -0.413227,0.20661 -0.413227,0.51655 0,0.20661 0.206614,0.51652 0.413227,0.51652 0.309906,0 0.516519,-0.30991 0.516519,-0.51652 m -1.652905,0.51652 h 0.10332 m 0,0 0.206613,0.72313 m 0,0 0.103293,-0.20659 m 0,0 0.10332,0.20659 m 0,0 -0.10332,0.10332 m 0,0 h -0.206613 m 0,0 -0.206613,-0.82645 m 2.789264,3.20249 0.10332,0.3099 m 0,0 h -0.10332 m 0,0 -0.103293,-0.20661 m 0,0 h -0.10332 m 0,0 v -0.10329 m 0,0 h 0.10332 m 0,0 -0.10332,-0.20662 m 0,0 h 0.10332 m 0,0 0.103293,0.1033 m 0,0 0.309907,-0.1033 m 0,0 0.103319,0.20662 m 0,0 -0.206613,0.61983 m 0,0 -0.103293,0.1033 m 0,0 0.103293,-0.72313 m 0,0 h -0.206613 m 1.549559,0 0.10332,0.10329 0.206608,0.10332 m 0,0 h 0.1033 m 0,-0.10332 c 0.10332,0 0.20661,-0.20661 0.10332,-0.30991 m 0,0.1033 h -0.10332 m -0.1033,0.10332 c 0.1033,0 0.1033,0 0.1033,-0.10332 m -0.206615,0 v 0.10332 h 0.103315 m -0.206608,0 0.103293,-0.10332 v -0.1033 m 0,0 h 0.103315 m 0,0 v -0.10332 m 0,0 h -0.103315 m -0.103293,-0.10329 v 0.10329 h 0.103293 m -0.103293,-0.3099 v 0.10329 c -0.10332,0 -0.10332,0 0,0.10332 m 0,-0.10332 h 0.103293 0.103315 m 0,0 h 0.1033 m 0,0 -0.1033,-0.10329 -0.206608,-0.10332 m 0,0 -0.206613,0.20661 v 0.20661 m 0,-0.10329 c 0,0.10329 0.103293,0.20661 0.206613,0.20661 m 0,0 -0.10332,0.1033 v 0.10332 m 1.136358,-4.64876 -0.51652,0.10329 m 0,0 v 0.10332 m 0,0 0.41323,-0.10332 m 0,0 -0.20662,0.41323 m 0,0 c 0,0.10329 0,0.20661 0.1033,0.20661 0.10332,0.1033 0.20661,0.1033 0.20661,0.1033 0.10332,-0.1033 0.20661,-0.20662 0.10332,-0.30991 m 0,0.10329 h -0.10332 m -0.20661,-0.10329 v 0.20661 h 0.20661 c 0,0 0.10332,-0.10332 0,-0.20661 m -0.20661,0.10329 0.20661,-0.51652 m 0,0 v -0.10329 M 33.109411,71.952279 v 0 m 1.239652,-0.413226 c 0,0 -0.103293,0.103293 0,0.103293 m -0.826452,0.723133 c 0.10332,0.10332 0.309933,0.206613 0.413226,0.10332 0.206613,0 0.309933,-0.10332 0.413226,-0.309933 m 0,0 v -0.309907 m 0.61984,6.301661 c 0.309906,0 0.619839,-0.10332 0.929746,-0.206613 m -2.789238,-6.095048 c -1.652878,0.826453 -2.479331,2.789264 -1.756172,4.442143 0.619813,1.756198 2.479305,2.68597 4.235503,2.169424 1.756198,-0.413226 2.789264,-2.169424 2.582651,-3.925622 -0.309933,-1.859492 -1.962812,-3.099171 -3.82233,-2.995851 m 0,0 c -0.413226,0 -0.826452,0.206613 -1.239652,0.309906 m 0.103293,0.10332 c -1.549558,0.723133 -2.376011,2.582625 -1.756171,4.23553 0.619839,1.652878 2.376011,2.58265 4.028889,2.169424 1.756199,-0.516546 2.789264,-2.169424 2.479358,-3.925623 -0.309933,-1.652905 -1.859518,-2.892557 -3.615717,-2.685944 m -0.103293,0.103293 v -0.103293 m 0.413226,1.756198 -0.413226,-1.239678 m 0.413226,1.239678 c 0.103294,0.51652 0.723133,0.929746 1.342972,0.723133 m 1.446266,-0.309933 -1.446266,0.413226 m 1.756199,0.413227 c -0.10332,-0.309907 -0.10332,-0.61984 -0.206613,-0.929746 m -0.413227,1.136359 0.51652,-0.206613 m -0.51652,0.206613 h 0.103294 l 0.103319,0.10332 m 0,0 v 0.103293 0.10332 m 0,0 0.103294,0.103293 v 0.10332 m 0,0 v 0.206586 l -0.103294,0.10332 m 0,0 h -0.206613 l -0.10332,-0.10332 m 0,0 0.10332,-0.103293 m 0,0 v 0.103293 h 0.103294 m 0,0 0.103319,-0.103293 v -0.103293 m 0,0 v -0.10332 h -0.103319 m 0,0 h -0.103294 m 0,0 v -0.103293 m 0,0 h 0.103294 v -0.10332 m 0,0 V 75.05145 h -0.103294 m 0,0 h -0.10332 v 0.103293 m 0,0 h -0.103293 m 0,0 V 75.05145 l 0.103293,-0.10332 m -0.826426,0.206613 0.826426,-0.206613 m -0.826426,0.10332 c -0.516546,0.206613 -0.929772,0.826426 -0.723159,1.446265 m 0.309933,1.446292 -0.413226,-1.446292 m -0.826453,0.206613 0.413227,1.549585 m -0.309907,-1.549585 c -0.206613,-0.619839 -0.826452,-0.929746 -1.446292,-0.826452 m -1.446265,0.516546 1.446265,-0.413227 m -1.652852,-0.516519 c 0,0.309906 0.103294,0.619813 0.206587,0.826426 m 1.239652,-1.136359 -1.549558,0.309933 m 1.549558,-0.413226 c 0.61984,-0.10332 0.929746,-0.72316 0.826453,-1.342973 m -0.413226,-1.239678 0.309906,1.239678 m -0.4132,-1.549611 c 0,0.10332 0.103294,0.206613 0.206587,0.206613 m -0.309907,-0.309906 v 0.103293 m -0.619813,4.752075 -0.413226,0.10332 m 0,0 v -0.10332 m 0,0 0.10332,-0.723132 m 0,0 h 0.206613 m 0,0 -0.206613,0.619839 m 0,0 h 0.309906 m 0,0 -0.103293,-0.309933 m 0,0 h 0.103293 m 0,0 0.10332,0.309933 m 0,0 v -0.10332 m 0,0 0.103294,0.10332 m 0,0 -0.103294,0.103293 m 0,0 v 0.10332 m 0,0 h -0.10332 m 0,0 v -0.10332 m -0.516519,-1.962811 -0.206613,0.10332 m 0,0 -0.10332,-0.72316 m 0,0 -0.103293,0.10332 m 0,0 -0.103294,-0.10332 m 0,0 0.103294,-0.206613 m 0,0 h 0.103293 m 0,0 0.309933,0.826453 m 5.061955,-1.342972 -0.516519,0.206613 m 0,0 -0.10332,-0.206613 m 0,0 0.309933,-0.413227 m 0,-0.103293 c 0.103293,0 0.103293,-0.10332 0,-0.10332 m 0,0.10332 -0.10332,-0.10332 h -0.103293 m 0,0 -0.10332,0.10332 m 0,0 -0.103293,0.103293 m 0,0 v -0.206613 l 0.206613,-0.103293 m 0,0 h 0.206613 l 0.103293,0.103293 m 0,0 v 0.206613 m 0,0 -0.206613,0.413227 m 0,0 0.309906,-0.103294 m 0,0 0.10332,0.103294 m -2.789264,-2.066105 v 0 m -1.136359,0.413226 v 0.103294 m 0,-0.103294 c 0,0 -0.103293,-0.10332 -0.103293,0 m 4.028916,2.995851 h -0.10332 m -2.169398,0.10332 c 0,-0.10332 -0.103319,-0.206614 -0.206613,-0.206614 -0.10332,0 -0.309933,0.103294 -0.309933,0.206614 0,0.103293 0.206613,0.309906 0.309933,0.309906 0.103294,0 0.206613,-0.206613 0.206613,-0.309906 m 1.549586,-1.859519 c 0,-0.413226 -0.309933,-0.723132 -0.72316,-0.723132 -0.309906,0 -0.723132,0.309906 -0.723132,0.723132 0,0.309933 0.413226,0.723133 0.723132,0.723133 0.413227,0 0.72316,-0.4132 0.72316,-0.723133 m 0.826426,2.995878 c 0,-0.413227 -0.309907,-0.723133 -0.723133,-0.723133 -0.309907,0 -0.723133,0.309906 -0.723133,0.723133 0,0.309906 0.413226,0.723132 0.723133,0.723132 0.413226,0 0.723133,-0.413226 0.723133,-0.723132 m -2.995851,0.826452 c 0,-0.413226 -0.309933,-0.723159 -0.723159,-0.723159 -0.309907,0 -0.723106,0.309933 -0.723106,0.723159 0,0.309906 0.413199,0.723133 0.723106,0.723133 0.413226,0 0.723159,-0.413227 0.723159,-0.723133 m -0.826452,-2.995877 c 0,-0.413226 -0.309907,-0.723133 -0.723107,-0.723133 -0.309933,0 -0.723159,0.309907 -0.723159,0.723133 0,0.309906 0.413226,0.723133 0.723159,0.723133 0.4132,0 0.723107,-0.413227 0.723107,-0.723133 m -0.206614,0 c 0,-0.309907 -0.206613,-0.51652 -0.516493,-0.51652 -0.206613,0 -0.516546,0.206613 -0.516546,0.51652 0,0.206613 0.309933,0.51652 0.516546,0.51652 0.30988,0 0.516493,-0.309907 0.516493,-0.51652 m 0.826453,2.995877 c 0,-0.309933 -0.206613,-0.516546 -0.516546,-0.516546 -0.206587,0 -0.51652,0.206613 -0.51652,0.516546 0,0.206613 0.309933,0.51652 0.51652,0.51652 0.309933,0 0.516546,-0.309907 0.516546,-0.51652 m 2.99585,-0.826452 c 0,-0.309933 -0.206586,-0.516547 -0.516519,-0.516547 -0.206613,0 -0.51652,0.206614 -0.51652,0.516547 0,0.206613 0.309907,0.516519 0.51652,0.516519 0.309933,0 0.516519,-0.309906 0.516519,-0.516519 m -0.826426,-2.995878 c 0,-0.309906 -0.206613,-0.516519 -0.516546,-0.516519 -0.206613,0 -0.516519,0.206613 -0.516519,0.516519 0,0.206614 0.309906,0.516546 0.516519,0.516546 0.309933,0 0.516546,-0.309932 0.516546,-0.516546 m -2.892557,31.714809 c 0,0.10329 0.103294,0.20661 0.206587,0.30991 m 0,0 c 0.10332,0.10332 0.309933,0.10332 0.413226,0.10332 0.206613,-0.10332 0.309933,-0.20662 0.413226,-0.30994 m 0,0 v -0.41322 m -1.136359,0.30993 v -0.10332 m 0,0.10332 v 0.10329 m 1.136359,-0.61983 c -0.413226,0 -0.826452,0.10332 -1.239652,0.30993 m 0.103293,0.10329 c -1.549558,0.72313 -2.376011,2.58265 -1.756171,4.2355 0.619839,1.65291 2.376011,2.58266 4.028889,2.06614 1.756199,-0.41323 2.789264,-2.06614 2.479358,-3.82231 -0.309933,-1.7562 -1.859518,-2.89255 -3.615717,-2.78923 m -0.103293,0.20661 v -0.10332 m 0.413226,1.7562 -0.413226,-1.34298 m 0.413226,1.23968 c 0.103294,0.61984 0.723133,0.92975 1.342972,0.82646 m 1.446266,-0.41323 -1.446266,0.41323 m 1.756199,0.4132 c -0.10332,-0.30991 -0.10332,-0.61982 -0.206613,-0.82643 m -1.342973,1.34297 1.446266,-0.41322 m -1.446266,0.3099 c -0.516546,0.10332 -0.929772,0.72313 -0.723159,1.34295 m 0.309933,1.54958 -0.413226,-1.44626 m -0.413226,1.65288 c 0.309906,-0.1033 0.619839,-0.1033 0.929746,-0.20662 m -1.342973,-1.23965 0.413227,1.44627 m -0.309907,-1.54959 c -0.206613,-0.51652 -0.826452,-0.92975 -1.446292,-0.72313 m -1.446265,0.41322 1.446265,-0.41322 m -1.652852,-0.5165 c 0,0.30988 0.103294,0.61982 0.206587,0.92972 m 1.239652,-1.23965 -1.549558,0.4132 m 1.549558,-0.4132 c 0.61984,-0.20661 0.929746,-0.82642 0.826453,-1.44626 m -0.413226,-1.23968 0.309906,1.34297 m 0.516546,3.20246 c 0,-0.30993 -0.309933,-0.61984 -0.723159,-0.61984 -0.309907,0 -0.723106,0.30991 -0.723106,0.61984 0,0.41323 0.413199,0.72314 0.723106,0.72314 0.413226,0 0.723159,-0.30991 0.723159,-0.72314 m 2.995851,-0.72316 c 0,-0.4132 -0.309907,-0.72313 -0.723133,-0.72313 -0.309907,0 -0.723133,0.30993 -0.723133,0.72313 0,0.30994 0.413226,0.72316 0.723133,0.72316 0.413226,0 0.723133,-0.41322 0.723133,-0.72316 m -3.822303,-2.27269 c 0,-0.3099 -0.309907,-0.61984 -0.723107,-0.61984 -0.309933,0 -0.723159,0.30994 -0.723159,0.61984 0,0.41323 0.413226,0.72314 0.723159,0.72314 0.4132,0 0.723107,-0.30991 0.723107,-0.72314 m 2.995877,-0.82645 c 0,-0.30991 -0.309933,-0.61981 -0.61984,-0.61981 -0.413226,0 -0.723132,0.3099 -0.723132,0.61981 0,0.41323 0.309906,0.72316 0.723132,0.72316 0.309907,0 0.61984,-0.30993 0.61984,-0.72316 m -1.342972,1.96281 c 0,-0.3099 -0.206614,-0.51652 -0.413227,-0.51652 -0.309933,0 -0.516546,0.20662 -0.516546,0.51652 0,0.20662 0.206613,0.51652 0.516546,0.51652 0.206613,0 0.413227,-0.3099 0.413227,-0.51652 m -0.826453,-3.30578 v -0.10329 m -1.033066,0.3099 v -0.10329 h -0.103293 m 0,0 c -1.652878,0.82642 -2.479331,2.68594 -1.756172,4.44211 0.619813,1.65288 2.479305,2.58266 4.235503,2.16943 1.756198,-0.51655 2.789264,-2.27275 2.582651,-4.02892 -0.309933,-1.7562 -1.962812,-3.09917 -3.82233,-2.89255 m 0,0 v 0 c 0,0 -0.103293,0 0,0 m -0.309906,5.37188 c 0,-0.20661 -0.206613,-0.41322 -0.516546,-0.41322 -0.206587,0 -0.51652,0.20661 -0.51652,0.41322 0,0.30991 0.309933,0.51652 0.51652,0.51652 0.309933,0 0.516546,-0.20661 0.516546,-0.51652 m 2.99585,-0.72316 c 0,-0.3099 -0.206586,-0.51652 -0.516519,-0.51652 -0.206613,0 -0.51652,0.20662 -0.51652,0.51652 0,0.20662 0.309907,0.51655 0.51652,0.51655 0.309933,0 0.516519,-0.30993 0.516519,-0.51655 m -3.822303,-2.27269 c 0,-0.20661 -0.206613,-0.41322 -0.516493,-0.41322 -0.206613,0 -0.516546,0.20661 -0.516546,0.41322 0,0.30994 0.309933,0.51652 0.516546,0.51652 0.30988,0 0.516493,-0.20658 0.516493,-0.51652 m 2.995877,-0.82645 c 0,-0.20661 -0.206613,-0.41323 -0.413226,-0.41323 -0.309933,0 -0.516546,0.20662 -0.516546,0.41323 0,0.30993 0.206613,0.51655 0.516546,0.51655 0.206613,0 0.413226,-0.20662 0.413226,-0.51655 m 29.855292,37.80983 c 0.103294,-0.20661 0.103294,-0.41322 0.103294,-0.61984 m -0.103294,-4.33885 c 0.103294,-0.20661 0.103294,-0.41322 0.103294,-0.61984 m -2.685944,3.71901 c 0,0.30994 0.309906,0.61984 0.619839,0.61984 0.309906,0 0.51652,-0.3099 0.51652,-0.61984 m -1.136359,-2.47933 c 0,0.30991 0.309906,0.61984 0.619839,0.61984 0.309906,0 0.51652,-0.30993 0.51652,-0.61984 m 0.103319,-1.23968 c 0,0.30994 0.309907,0.61984 0.619813,0.61984 0.309933,0 0.516546,-0.3099 0.516546,-0.61984 m 1.342972,0 c 0,0.30994 0.309907,0.61984 0.61984,0.61984 0.309906,0 0.516519,-0.3099 0.516519,-0.61984 m 0.10332,1.23968 c 0,0.30991 0.309906,0.61984 0.619813,0.61984 0.309933,0 0.516546,-0.30993 0.516546,-0.61984 m -1.136359,2.47933 c 0,0.30994 0.309906,0.61984 0.619813,0.61984 0.309933,0 0.516546,-0.3099 0.516546,-0.61984 m -2.376038,1.23968 c 0,0.30991 0.309907,0.61984 0.61984,0.61984 0.309906,0 0.516519,-0.30993 0.516519,-0.61984 m -3.61569,0 c 0,0.30991 0.309907,0.61984 0.619813,0.61984 0.309933,0 0.516546,-0.30993 0.516546,-0.61984 m 4.338849,-2.47933 c 0,-0.30993 0,-0.72316 -0.103319,-1.03306 m -7.024794,0 c -0.103293,0.3099 -0.206613,0.72313 -0.206613,1.03306 m 4.752076,-3.5124 c -0.72316,-0.10332 -1.446292,-0.10332 -2.066132,0 m 0,0 c -1.239652,0.4132 -2.169424,1.34298 -2.479331,2.47934 m 0,0 c 0,0.10329 -0.103293,0.10329 -0.103293,0.10329 m 0,0 c 0,0.20661 0.206613,0.41323 0.4132,0.41323 m 2.582651,-2.58266 c 0,-0.10329 0,-0.20661 -0.103294,-0.3099 -0.10332,0 -0.206613,-0.1033 -0.309933,0 m 4.545463,2.37604 c -0.413227,-1.13636 -1.342973,-2.06614 -2.479331,-2.47934 m 0,0.1033 c -0.10332,-0.1033 -0.309933,0 -0.309933,0 -0.103294,0.10329 -0.206613,0.20661 -0.206613,0.3099 m 2.58265,2.58266 c 0.10332,0 0.206613,-0.1033 0.309933,-0.20662 0,0 0.103294,-0.20661 0,-0.3099 m -2.892583,4.23552 c 0,0.10332 0.103319,0.20662 0.206613,0.30994 0,0 0.206613,0.10329 0.309933,0 m 0,0 c 1.136358,-0.30994 2.066104,-1.23968 2.479331,-2.47936 m -0.103294,0 c 0.103294,-0.10329 0,-0.20661 0,-0.30991 -0.10332,-0.10332 -0.206613,-0.10332 -0.309933,-0.10332 m -6.611567,0.41323 c 0.309907,1.23968 1.239679,2.16942 2.479331,2.47936 m 0,0 c 0.10332,0.10329 0.206613,0 0.309933,0 0.103294,-0.10332 0.103294,-0.20662 0.103294,-0.30994 m -2.582651,-2.58265 c -0.206587,0 -0.4132,0.10332 -0.4132,0.30994 m 0,0 c 0,0.10329 0.103293,0.10329 0.103293,0.10329 m -0.206613,-1.03304 c 0,0.4132 0.10332,0.72313 0.206613,1.03304 m 7.024794,0 c 0.103319,-0.30991 0.103319,-0.61984 0.103319,-1.03304 m -4.648782,3.5124 c 0.61984,0.20658 1.342972,0.20658 2.066132,0 m -1.756199,-1.03307 c 0,-0.30993 -0.206613,-0.51654 -0.516546,-0.51654 -0.309906,0 -0.619813,0.20661 -0.619813,0.51654 m 3.61569,0 c 0,-0.30993 -0.206613,-0.51654 -0.516519,-0.51654 -0.309933,0 -0.61984,0.20661 -0.61984,0.51654 m 2.376038,-1.23968 c 0,-0.3099 -0.206613,-0.51652 -0.516546,-0.51652 -0.309907,0 -0.619813,0.20662 -0.619813,0.51652 m 1.136359,-2.47933 c 0,-0.30993 -0.206613,-0.51652 -0.516546,-0.51652 -0.309907,0 -0.619813,0.20659 -0.619813,0.51652 m -0.10332,-1.23968 c 0,-0.3099 -0.206613,-0.51652 -0.516519,-0.51652 -0.309933,0 -0.61984,0.20662 -0.61984,0.51652 m -1.342972,0 c 0,-0.3099 -0.206613,-0.51652 -0.516546,-0.51652 -0.309906,0 -0.619813,0.20662 -0.619813,0.51652 m -0.103319,1.23968 c 0,-0.30993 -0.206614,-0.51652 -0.51652,-0.51652 -0.309933,0 -0.619839,0.20659 -0.619839,0.51652 m 1.136359,2.47933 c 0,-0.3099 -0.206614,-0.51652 -0.51652,-0.51652 -0.309933,0 -0.619839,0.20662 -0.619839,0.51652 m 0,-1.65288 h -0.10332 m 3.615716,3.61569 v -0.10329 m -1.033065,0 v 0.10329 m -2.582651,-2.58265 h 0.10332 m 0,-1.13635 c 0.413226,0.30993 0.826452,0.30993 1.136359,0 m 1.033065,0.10331 h -1.033065 m 1.033065,-0.10331 c 0.206613,0 0.309907,-0.1033 0.309907,-0.30991 m 0,-1.03307 v 1.03307 m 0.206613,-1.65291 c 0,-0.20661 0,-0.41322 -0.103294,-0.51652 m 1.03304,0 c -0.309907,0.30991 -0.309907,0.72314 0,1.13636 m -0.103294,1.03307 v -1.03307 m 0.103294,1.03307 c 0,0.20661 0.103319,0.30991 0.309932,0.30991 m 1.033066,0.10331 h -1.033066 m 1.033066,-0.10331 c 0.4132,0.30993 0.826426,0.30993 1.136359,0 m 0,1.03306 c -0.309933,-0.20661 -0.723159,-0.20661 -1.136359,0 m -0.413226,0.10329 h 0.413226 m -0.309933,0 c -0.103293,0 -0.206613,0 -0.206613,0.10332 m 0,0.51652 v -0.41322 m -0.206613,0.61984 c 0.10332,0 0.206613,-0.1033 0.206613,-0.20662 m -0.723133,0.20662 h 0.51652 m -0.413226,0 c -0.103294,0 -0.206613,0 -0.206613,0.10332 m -0.103294,0.4132 v -0.30991 m 0.103294,0.30991 c -0.309907,0.30993 -0.309907,0.72316 0,1.13638 m -0.929746,-0.61984 c 0,-0.20661 0,-0.41322 -0.103294,-0.51654 m -0.103319,-1.03304 v 1.03304 m 0,-1.03304 c 0,-0.20662 -0.103294,-0.30994 -0.309907,-0.30994 m -1.033065,0 h 1.033065 m -1.033065,-0.10329 c -0.309907,-0.20661 -0.723133,-0.20661 -1.136359,0 m 1.033065,0 h 2.066105 m 0,0 v 2.58265 m 0,0 h 0.206613 m 0,0 v -0.51654 m 0.206613,-0.61984 c -0.10332,0.10332 -0.206613,0.30993 -0.206613,0.51654 m 0.206613,-0.41322 v -2.16943 m 0,0 h 2.479331 m 0,0 v -0.10329 m 0,0 h -0.516519 m -0.51652,-0.20662 c 0.206587,0.1033 0.4132,0.20662 0.619813,0.20662 m -0.619813,-0.20662 H 66.37378 m 0,0 v -2.47935 m 0,0 h -0.206613 m 0,0 v 0.51654 m -0.103294,0.51652 c 0.103294,-0.20661 0.206613,-0.41322 0.206613,-0.61984 m -0.206613,0.61984 v 2.06611 m 0,0 h -2.58265 m 0,0 v 0.20661 m 0,0 h 0.516519 m 0.61984,0.10332 c -0.103294,-0.10332 -0.309907,-0.20661 -0.51652,-0.20661 m 2.479331,2.78926 H 66.4771 m 2.99585,-3.20249 v 0.20661 m -3.09917,-2.99587 h 0.10332 m -2.995877,3.09917 v -0.1033 m 0,0 h 2.58265 m 0.413227,-2.99587 v 2.47935 m 2.99585,0.51652 h -2.479331 m -0.516519,2.99588 v -2.58265 m -0.413227,-30.26852 c 0.103294,-0.10332 0.103294,-0.3099 0.103294,-0.51652 m -0.103294,-4.44214 c 0.103294,-0.10329 0.103294,-0.30991 0.103294,-0.51652 m -2.685944,3.71898 c 0,0.30991 0.309906,0.61984 0.619839,0.61984 0.309906,0 0.51652,-0.30993 0.51652,-0.61984 m -1.136359,-2.4793 c 0,0.30991 0.309906,0.61981 0.619839,0.61981 0.309906,0 0.51652,-0.3099 0.51652,-0.61981 m 0.103319,-1.23968 c 0,0.30991 0.309907,0.61984 0.619813,0.61984 0.309933,0 0.516546,-0.30993 0.516546,-0.61984 m 1.342972,0 c 0,0.30991 0.309907,0.61984 0.61984,0.61984 0.309906,0 0.516519,-0.30993 0.516519,-0.61984 m 0.10332,1.23968 c 0,0.30991 0.309906,0.61981 0.619813,0.61981 0.309933,0 0.516546,-0.3099 0.516546,-0.61981 m -1.136359,2.4793 c 0,0.30991 0.309906,0.61984 0.619813,0.61984 0.309933,0 0.516546,-0.30993 0.516546,-0.61984 m -2.376038,1.23968 c 0,0.30991 0.309907,0.61982 0.61984,0.61982 0.309906,0 0.516519,-0.30991 0.516519,-0.61982 m -3.61569,0 c 0,0.30991 0.309907,0.61982 0.619813,0.61982 0.309933,0 0.516546,-0.30991 0.516546,-0.61982 m 4.338849,-2.47933 c 0,-0.41322 0,-0.72313 -0.103319,-1.03304 m -7.024794,0 c -0.103293,0.30991 -0.206613,0.61982 -0.206613,1.03304 m 4.752076,-3.51239 c -0.72316,-0.20662 -1.446292,-0.20662 -2.066132,0 m 0,0 c -1.239652,0.30993 -2.169424,1.23967 -2.479331,2.47935 m 0,0 c 0,0 -0.103293,0 -0.103293,0.1033 m 0,0 c 0,0.20661 0.206613,0.41322 0.4132,0.41322 m 2.582651,-2.58265 c 0,-0.10329 0,-0.3099 -0.103294,-0.3099 -0.10332,-0.10332 -0.206613,-0.10332 -0.309933,-0.10332 m 4.545463,2.47935 c -0.413227,-1.23968 -1.342973,-2.16942 -2.479331,-2.47935 m 0,0 c -0.10332,0 -0.309933,0 -0.309933,0.10332 -0.103294,0 -0.206613,0.20661 -0.206613,0.3099 m 2.58265,2.58265 c 0.10332,0 0.206613,-0.10332 0.309933,-0.20661 0,-0.10329 0.103294,-0.20661 0,-0.30991 m -2.892583,4.13219 c 0,0.10332 0.103319,0.20661 0.206613,0.30993 0,0 0.206613,0.10329 0.309933,0 m 0,0.10329 c 1.136358,-0.41322 2.066104,-1.34297 2.479331,-2.47933 m -0.103294,0 c 0.103294,-0.10329 0,-0.30991 0,-0.30991 -0.10332,-0.10332 -0.206613,-0.20661 -0.309933,-0.20661 m -6.611567,0.51652 c 0.309907,1.13636 1.239679,2.06611 2.479331,2.47933 m 0,-0.10329 c 0.10332,0.10329 0.206613,0 0.309933,0 0.103294,-0.10332 0.103294,-0.20661 0.103294,-0.30993 m -2.582651,-2.58263 c -0.206587,0 -0.4132,0.20661 -0.4132,0.41323 m 0,0 c 0,0 0.103293,0 0.103293,0.10329 m -0.206613,-1.03304 c 0,0.30993 0.10332,0.72313 0.206613,1.03304 m 7.024794,0 c 0.103319,-0.30991 0.103319,-0.72311 0.103319,-1.03304 m -4.648782,3.51237 c 0.61984,0.10332 1.342972,0.10332 2.066132,0 m -1.756199,-1.03304 c 0,-0.30993 -0.206613,-0.61984 -0.516546,-0.61984 -0.309906,0 -0.619813,0.30991 -0.619813,0.61984 m 3.61569,0 c 0,-0.30993 -0.206613,-0.61984 -0.516519,-0.61984 -0.309933,0 -0.61984,0.30991 -0.61984,0.61984 m 2.376038,-1.23968 c 0,-0.3099 -0.206613,-0.61984 -0.516546,-0.61984 -0.309907,0 -0.619813,0.30994 -0.619813,0.61984 m 1.136359,-2.4793 c 0,-0.30993 -0.206613,-0.61984 -0.516546,-0.61984 -0.309907,0 -0.619813,0.30991 -0.619813,0.61984 m -0.10332,-1.23968 c 0,-0.30991 -0.206613,-0.61984 -0.516519,-0.61984 -0.309933,0 -0.61984,0.30993 -0.61984,0.61984 m -1.342972,0 c 0,-0.30991 -0.206613,-0.61984 -0.516546,-0.61984 -0.309906,0 -0.619813,0.30993 -0.619813,0.61984 m -0.103319,1.23968 c 0,-0.30993 -0.206614,-0.61984 -0.51652,-0.61984 -0.309933,0 -0.619839,0.30991 -0.619839,0.61984 m 1.136359,2.4793 c 0,-0.3099 -0.206614,-0.61984 -0.51652,-0.61984 -0.309933,0 -0.619839,0.30994 -0.619839,0.61984 m 0,-1.75617 h -0.10332 m 2.582651,-2.58265 v 0.10332 m 1.033065,0 v -0.10332 m -3.615716,3.61569 h 0.10332 m 0,-1.03304 c 0.413226,0.20662 0.826452,0.20662 1.136359,0 m 1.033065,0 h -1.033065 m 1.033065,0 c 0.206613,0 0.309907,-0.20661 0.309907,-0.41322 m 0,-0.92975 v 1.03307 m 0.206613,-1.65291 c 0,-0.20661 0,-0.41323 -0.103294,-0.61984 m 1.03304,0 c -0.309907,0.41323 -0.309907,0.82645 0,1.13636 m -0.103294,1.13639 v -1.03307 m 0.103294,0.92975 c 0,0.20661 0.103319,0.41322 0.309932,0.41322 m 1.033066,0 h -1.033066 m 1.033066,0 c 0.4132,0.20662 0.826426,0.20662 1.136359,0 m 0,1.03304 c -0.309933,-0.3099 -0.723159,-0.3099 -1.136359,0 m -0.413226,0 h 0.413226 m -0.309933,0 c -0.103293,0 -0.206613,0.10329 -0.206613,0.20661 m 0,0.51652 v -0.51652 m -0.206613,0.61982 c 0.10332,0 0.206613,-0.1033 0.206613,-0.20662 m -0.723133,0.30994 h 0.51652 m -0.413226,-0.10332 c -0.103294,0 -0.206613,0.10332 -0.206613,0.20661 m -0.103294,0.41323 v -0.41323 m 0.103294,0.30993 c -0.309907,0.41323 -0.309907,0.82646 0,1.13636 m -0.929746,-0.51652 c 0,-0.20661 0,-0.41322 -0.103294,-0.61984 m -0.103319,-0.92974 v 1.03304 m 0,-1.13636 c 0,-0.20662 -0.103294,-0.30991 -0.309907,-0.30991 m -1.033065,0 h 1.033065 m -1.033065,0 c -0.309907,-0.3099 -0.723133,-0.3099 -1.136359,0 m 1.033065,0 h 2.066105 m 0,0 v 2.47933 m 0,0 h 0.206613 m 0,0 v -0.51652 m 0.206613,-0.61984 c -0.10332,0.20662 -0.206613,0.41323 -0.206613,0.61984 m 0.206613,-0.51654 v -2.06608 m 0,0 h 2.479331 m 0,0 v -0.20661 m 0,0 h -0.516519 m -0.51652,-0.20662 c 0.206587,0.1033 0.4132,0.20662 0.619813,0.20662 m -0.619813,-0.10332 H 66.37378 m 0,0 v -2.58263 m 0,0 h -0.206613 m 0,0 v 0.51652 m -0.103294,0.51652 c 0.103294,-0.10329 0.206613,-0.30991 0.206613,-0.51652 m -0.206613,0.61984 v 2.06611 m 0,0 h -2.58265 m 0,0 v 0.10331 m 0,0 h 0.516519 m 0.61984,0.10327 c -0.103294,-0.10327 -0.309907,-0.10327 -0.51652,-0.10327 m 2.479331,2.68592 H 66.4771 m 2.99585,-3.09914 v 0.10329 m -3.09917,-2.99585 h 0.10332 m -2.995877,3.20247 v -0.20662 m 0,0 h 2.58265 m 0.413227,-2.99585 v 2.58263 m 2.99585,0.41322 h -2.479331 m -0.516519,2.99585 v -2.47933 m 63.53286,-69.21468 c -0.30991,0 -0.61984,0.10332 -0.82645,0.206613 m 1.03306,-0.619839 c -0.51652,0 -1.03306,0.10332 -1.44629,0.309933 m -1.23965,1.136359 c -0.82643,1.136359 -0.92972,2.789237 -0.10332,3.925596 0.82645,1.239679 2.27274,1.859492 3.71901,1.549585 1.44629,-0.309906 2.47936,-1.446292 2.78926,-2.892557 m -5.1653,-3.718983 c -0.51652,0.309906 -0.92974,0.619839 -1.23965,1.136359 m 0.30991,-0.103294 c -0.92972,1.033039 -1.03304,2.582598 -0.30991,3.822277 0.61984,1.239679 2.0661,1.859492 3.5124,1.652905 1.34297,-0.309933 2.47933,-1.342999 2.68594,-2.789264 m 0,0.103293 h 0.10329 m -6.30163,-2.685917 0.20661,-0.103294 m 1.03304,-0.723159 V 39.20443 m 1.54959,-0.309906 c -0.51652,0 -1.03304,0.206613 -1.54959,0.413226 m 1.44629,-0.516546 0.1033,0.206613 m 2.89258,3.822303 0.51652,0.103293 m -0.41323,-1.033012 -0.10329,0.929719 m 0.51652,-0.826426 -0.41323,-0.103293 m 0.41323,0 c -0.10329,-1.239679 -0.92975,-2.376038 -2.16942,-2.789264 m -1.13636,0.413226 1.13636,-0.309933 m -1.23968,-0.206613 0.10332,0.516546 m -1.54959,0.309906 -0.10332,-0.413226 m -1.03304,0.723159 1.13636,-0.309933 m 4.02892,2.272745 c 0,-0.309933 -0.1033,-0.61984 -0.20662,-0.929773 m -0.72313,1.239653 0.92975,-0.30988 m -0.92975,0.206586 c -0.61984,0.103294 -0.92974,0.723133 -0.82645,1.342972 m 0.41323,1.549586 -0.30991,-1.446292 m -0.51655,1.652905 c 0.30994,-0.10332 0.61984,-0.10332 0.92978,-0.206613 m -1.343,-1.239679 0.41322,1.446292 m -0.41322,-1.549585 c -0.1033,-0.516546 -0.72314,-0.929773 -1.34298,-0.72316 m -1.44626,0.413227 1.44626,-0.413227 m -1.65287,-0.516519 c 0,0.309906 0.10329,0.619839 0.20661,0.929746 m 1.23965,-1.239653 -1.44626,0.4132 m 1.44626,-0.4132 c 0.61984,-0.206586 0.92977,-0.826426 0.82645,-1.446265 m -0.41322,-1.342972 0.41322,1.446265 m 0.82646,-0.206613 -0.41323,-1.549585 m 0.41323,1.446292 c 0.10329,0.619839 0.72313,0.929746 1.34297,0.826452 m 0.92974,-0.206613 -0.92974,0.206613 m 0.10332,-2.376037 c -0.51655,-0.309933 -1.03307,-0.413227 -1.65291,-0.309933 m 3.71901,3.099197 c -0.10332,-1.239679 -0.92974,-2.272745 -2.0661,-2.789264 m 2.0661,3.718983 v -0.929719 m 0,0.103293 h -0.20661 m -2.16942,-2.789264 0.30993,-0.103293 M 130.6298,42.3036 c 0,-0.103293 -0.10332,-0.206586 -0.20661,-0.206586 -0.10332,0 -0.20662,0.103293 -0.20662,0.206586 0,0.103294 0.1033,0.206587 0.20662,0.206587 0.10329,0 0.20661,-0.103293 0.20661,-0.206587 m -1.44629,-1.136359 c 0,-0.309906 -0.30991,-0.619839 -0.72314,-0.619839 -0.3099,0 -0.61983,0.309933 -0.61983,0.619839 0,0.413227 0.30993,0.72316 0.61983,0.72316 0.41323,0 0.72314,-0.309933 0.72314,-0.72316 m 2.99587,-0.826426 c 0,-0.309933 -0.3099,-0.619839 -0.72313,-0.619839 -0.30993,0 -0.61984,0.309906 -0.61984,0.619839 0,0.4132 0.30991,0.723133 0.61984,0.723133 0.41323,0 0.72313,-0.309933 0.72313,-0.723133 m 0.82646,2.995825 c 0,-0.309907 -0.41323,-0.61984 -0.72316,-0.61984 -0.4132,0 -0.72313,0.309933 -0.72313,0.61984 0,0.413226 0.30993,0.723132 0.72313,0.723132 0.30993,0 0.72316,-0.309906 0.72316,-0.723132 m -2.99588,0.826452 c 0,-0.309906 -0.41323,-0.619839 -0.72313,-0.619839 -0.41323,0 -0.72316,0.309933 -0.72316,0.619839 0,0.413226 0.30993,0.723133 0.72316,0.723133 0.3099,0 0.72313,-0.309907 0.72313,-0.723133 m -0.20661,0 c 0,-0.206613 -0.30991,-0.413226 -0.51652,-0.413226 -0.30994,0 -0.51655,0.206613 -0.51655,0.413226 0,0.309906 0.20661,0.51652 0.51655,0.51652 0.20661,0 0.51652,-0.206614 0.51652,-0.51652 m 2.99587,-0.826452 c 0,-0.206614 -0.30993,-0.413227 -0.51654,-0.413227 -0.30991,0 -0.51652,0.206613 -0.51652,0.413227 0,0.309932 0.20661,0.516546 0.51652,0.516546 0.20661,0 0.51654,-0.206614 0.51654,-0.516546 m -0.82645,-2.995825 c 0,-0.206613 -0.20661,-0.413226 -0.51652,-0.413226 -0.20661,0 -0.41322,0.206613 -0.41322,0.413226 0,0.309907 0.20661,0.51652 0.41322,0.51652 0.30991,0 0.51652,-0.206613 0.51652,-0.51652 m -2.99588,0.826426 c 0,-0.206613 -0.20661,-0.413226 -0.51652,-0.413226 -0.20661,0 -0.41322,0.206613 -0.41322,0.413226 0,0.309933 0.20661,0.516546 0.41322,0.516546 0.30991,0 0.51652,-0.206613 0.51652,-0.516546 m -1.65287,0.516546 h 0.10329 m 0,0 0.20661,0.723107 m 0,0 0.10332,-0.103294 m 0,0 v 0.103294 m 0,0 v 0.103293 m 0,0 -0.20661,0.10332 m 0,0 -0.20661,-0.92972 m 2.78926,3.305758 0.10329,0.206613 m 0,0 -0.20661,0.103293 m 0,0 v -0.309906 m 0,0 h -0.10329 m 0,0 v -0.10332 m 0,0 h 0.10329 m 0,0 -0.10329,-0.103294 m 0,0 h 0.10329 m 0,0 0.10332,0.103294 m 0,0 0.30991,-0.103294 m 0,0 v 0.103294 m 0,0 -0.10332,0.723159 m 0,0 h -0.1033 m 0,0 0.1033,-0.723159 m 0,0 -0.20659,0.10332 m 1.54959,0 0.10329,0.103293 h 0.20661 m 0,0 h 0.10329 m 0,0 c 0.10332,-0.103293 0.10332,-0.206613 0.10332,-0.309907 m 0,0.103294 h -0.10332 m -0.10329,0 c 0.10329,0 0.10329,0 0.10329,-0.103294 m -0.20658,0.103294 v 0 c 0,0.10332 0.10329,0.10332 0.10329,0 m -0.20661,0 v -0.103294 h 0.10332 m 0,0 h 0.10329 m 0,0 -0.10329,-0.103319 m -0.10332,-0.206614 v 0.10332 h 0.10332 m -0.10332,-0.206613 v 0 c -0.10329,0 -0.10329,0.103293 0,0.103293 m 0,-0.103293 h 0.10332 l 0.10329,0.103293 m 0,0 0.10329,-0.103293 m 0,0 -0.10329,-0.10332 h -0.20661 m 0,0 -0.20661,0.10332 v 0.206613 m 0,0 c 0,0.103294 0.10332,0.103294 0.20661,0.103294 m 0,0.103319 -0.10329,0.103294 v 0.10332 m 1.13635,-4.752049 -0.51654,0.103319 m 0,0 v 0.103294 m 0,0 h 0.30993 m 0,0 -0.10332,0.413226 m 0,-0.10332 c -0.10329,0.10332 0,0.206613 0,0.309933 0.10332,0.103293 0.20661,0.103293 0.30993,0 0.1033,0 0.1033,-0.10332 0.1033,-0.206613 m 0,0 h -0.1033 m -0.20661,0 c -0.10332,0 -0.10332,0.103293 0,0.103293 0,0.10332 0.10329,0.10332 0.10329,0 0.10332,0 0.10332,-0.103293 0.10332,-0.103293 m -0.20661,0 0.20661,-0.51652 m 0,0 v -0.103319 m -2.78926,64.565924 c -0.30991,0 -0.61984,0.10332 -0.82645,0.20661 m 1.03306,-0.61983 c -0.51652,0 -1.03306,0.10332 -1.44629,0.30993 m -1.23965,1.13636 c -0.82643,1.13636 -0.92972,2.78923 -0.10332,3.92559 0.82645,1.23966 2.27274,1.8595 3.71901,1.54959 1.44629,-0.30993 2.47936,-1.44629 2.78926,-2.89256 m -5.1653,-3.71898 c -0.51652,0.3099 -0.92974,0.61984 -1.23965,1.13636 m 0.30991,-0.10332 c -0.92972,1.03306 -1.03304,2.58262 -0.30991,3.8223 0.61984,1.23965 2.0661,1.85949 3.5124,1.65288 1.34297,-0.30991 2.47933,-1.34297 2.68594,-2.78924 m 0,0.10329 h 0.10329 m -6.30163,-2.68591 0.20661,-0.10332 m 1.03304,-0.72314 v -0.20661 m 1.54959,-0.3099 c -0.51652,0 -1.03304,0.20661 -1.54959,0.41322 m 1.44629,-0.51654 0.1033,0.20661 m 2.89258,3.92559 h 0.51652 m -0.41323,-1.03303 -0.10329,1.03303 m 0.51652,-0.92971 -0.41323,-0.10332 m 0.41323,0 c -0.10329,-1.23966 -0.92975,-2.37602 -2.16942,-2.78924 m -1.13636,0.41322 1.13636,-0.30993 m -1.23968,-0.20661 0.10332,0.51654 m -1.54959,0.4132 -0.10332,-0.51652 m -1.03304,0.72314 1.13636,-0.20662 m 4.02892,2.16943 c 0,-0.30991 -0.1033,-0.61981 -0.20662,-0.92975 m -0.72313,1.23968 0.92975,-0.30993 m -0.92975,0.20661 c -0.61984,0.10332 -0.92974,0.72313 -0.82645,1.34295 m 0.41323,1.54958 -0.30991,-1.44626 m -0.51655,1.65288 c 0.30994,-0.1033 0.61984,-0.1033 0.92978,-0.20662 m -1.343,-1.23965 0.41322,1.44627 m -0.41322,-1.54959 c -0.1033,-0.51652 -0.72314,-0.92975 -1.34298,-0.72313 m -1.44626,0.41322 1.44626,-0.41322 m -1.65287,-0.5165 c 0,0.30988 0.10329,0.61982 0.20661,0.92972 m 1.23965,-1.23965 -1.44626,0.4132 m 1.44626,-0.4132 c 0.61984,-0.20661 0.92977,-0.82642 0.82645,-1.44626 m -0.41322,-1.34298 0.41322,1.44627 m 0.82646,-0.20661 -0.41323,-1.54959 m 0.41323,1.44629 c 0.10329,0.61984 0.72313,0.92975 1.34297,0.82646 m 0.92974,-0.20662 -0.92974,0.20662 m 0.10332,-2.37604 c -0.51655,-0.30993 -1.03307,-0.41323 -1.65291,-0.30993 m 3.71901,3.09917 c -0.10332,-1.23966 -0.92974,-2.27272 -2.0661,-2.78924 m 2.0661,3.71898 v -0.92974 m 0,0.10332 h -0.20661 m -2.16942,-2.78927 0.30993,-0.10329 m 2.68594,0.92974 c 0,0 0.1033,-0.10332 0,-0.10332 m -3.92562,2.37604 c 0,-0.10329 -0.10332,-0.20661 -0.20661,-0.20661 -0.10332,0 -0.20662,0.10332 -0.20662,0.20661 0,0.10332 0.1033,0.20662 0.20662,0.20662 0.10329,0 0.20661,-0.1033 0.20661,-0.20662 m -1.44629,-1.13636 c 0,-0.3099 -0.30991,-0.61984 -0.72314,-0.61984 -0.3099,0 -0.61983,0.30994 -0.61983,0.61984 0,0.41323 0.30993,0.72314 0.61983,0.72314 0.41323,0 0.72314,-0.30991 0.72314,-0.72314 m 2.99587,-0.82645 c 0,-0.30991 -0.3099,-0.61981 -0.72313,-0.61981 -0.30993,0 -0.61984,0.3099 -0.61984,0.61981 0,0.41323 0.30991,0.72316 0.61984,0.72316 0.41323,0 0.72313,-0.30993 0.72313,-0.72316 m 0.82646,2.99585 c 0,-0.30991 -0.41323,-0.61984 -0.72316,-0.61984 -0.4132,0 -0.72313,0.30993 -0.72313,0.61984 0,0.41323 0.30993,0.72313 0.72313,0.72313 0.30993,0 0.72316,-0.3099 0.72316,-0.72313 m -2.99588,0.82645 c 0,-0.30993 -0.41323,-0.61984 -0.72313,-0.61984 -0.41323,0 -0.72316,0.30991 -0.72316,0.61984 0,0.41323 0.30993,0.72314 0.72316,0.72314 0.3099,0 0.72313,-0.30991 0.72313,-0.72314 m -0.20661,0 c 0,-0.20661 -0.30991,-0.41322 -0.51652,-0.41322 -0.30994,0 -0.51655,0.20661 -0.51655,0.41322 0,0.30991 0.20661,0.51652 0.51655,0.51652 0.20661,0 0.51652,-0.20661 0.51652,-0.51652 m 2.99587,-0.82645 c 0,-0.20661 -0.30993,-0.41323 -0.51654,-0.41323 -0.30991,0 -0.51652,0.20662 -0.51652,0.41323 0,0.30991 0.20661,0.51652 0.51652,0.51652 0.20661,0 0.51654,-0.20661 0.51654,-0.51652 m -0.82645,-2.99585 c 0,-0.20661 -0.20661,-0.41323 -0.51652,-0.41323 -0.20661,0 -0.41322,0.20662 -0.41322,0.41323 0,0.30993 0.20661,0.51655 0.41322,0.51655 0.30991,0 0.51652,-0.20662 0.51652,-0.51655 m -2.99588,0.82645 c 0,-0.20661 -0.20661,-0.41322 -0.51652,-0.41322 -0.20661,0 -0.41322,0.20661 -0.41322,0.41322 0,0.30994 0.20661,0.51652 0.41322,0.51652 0.30991,0 0.51652,-0.20658 0.51652,-0.51652 m -1.65287,0.51652 h 0.10329 m 0,0 0.20661,0.72316 m 0,0 0.10332,-0.10332 m 0,0 v 0.10332 m 0,0 v 0.1033 m 0,0 -0.20661,0.10331 m 0,0 -0.20661,-0.92977 m 2.78926,3.30579 0.10329,0.20658 m 0,0 -0.20661,0.10332 m 0,0 v -0.3099 m 0,0 h -0.10329 m 0,0 v -0.10332 m 0,0 h 0.10329 m 0,0 -0.10329,-0.1033 m 0,0 h 0.10329 m 0,0 0.10332,0.1033 m 0,0 0.30991,-0.1033 m 0,0 v 0.1033 m 0,0 -0.10332,0.72313 m 0,0 h -0.1033 m 0,0 0.1033,-0.72313 m 0,0 -0.20659,0.10332 m 1.54959,0 0.10329,0.10329 h 0.20661 m 0,0 h 0.10329 m 0,0 c 0.10332,-0.10329 0.10332,-0.20661 0.10332,-0.30991 m 0,0.1033 h -0.10332 m -0.10329,0.10332 c 0.10329,0 0.10329,-0.10332 0.10329,-0.10332 m -0.20658,0 v 0 c 0,0.10332 0.10329,0.10332 0.10329,0 m -0.20661,0 v -0.1033 h 0.10332 m 0,0 h 0.10329 m 0,0 -0.10329,-0.10332 m -0.10332,-0.20661 v 0.10332 c 0,0.10329 0.10332,0.10329 0.10332,0 m -0.10332,-0.20661 v 0 c -0.10329,0 -0.10329,0.10329 0,0.10329 m 0,-0.10329 h 0.10332 l 0.10329,0.10329 m 0,0 0.10329,-0.10329 m 0,0 -0.10329,-0.10332 h -0.20661 m 0,0 -0.20661,0.10332 v 0.20661 m 0,0 c 0,0.10329 0.10332,0.10329 0.20661,0.10329 m 0,0.10332 -0.10329,0.1033 v 0.10332 m 1.13635,-4.75205 -0.51654,0.10329 m 0,0 v 0.10332 m 0,0 h 0.30993 m 0,0 -0.10332,0.41323 m 0,-0.10332 c -0.10329,0.10332 0,0.20661 0,0.30993 0.10332,0.10329 0.20661,0.10329 0.30993,0 0.1033,0 0.1033,-0.10332 0.1033,-0.20661 m 0,0 h -0.1033 m -0.20661,0 c -0.10332,0 -0.10332,0.10329 0,0.10329 0,0.10332 0.10329,0.10332 0.10329,0 0.10332,0 0.10332,-0.10329 0.10332,-0.10329 m -0.20661,0 0.20661,-0.51655 m 0,0 v -0.10329 m -2.78926,31.71475 c -0.30991,0.10332 -0.61984,0.10332 -0.82645,0.20662 m 1.03306,-0.61982 c -0.51652,0 -1.03306,0.20659 -1.44629,0.4132 m -1.23965,1.03307 c -0.82643,1.23968 -0.92972,2.78926 -0.10332,4.02892 0.82645,1.23967 2.27274,1.85951 3.71901,1.54961 1.44629,-0.30994 2.47936,-1.44629 2.78926,-2.89259 m -5.1653,-3.71901 c -0.51652,0.20662 -0.92974,0.61984 -1.23965,1.03307 m 0.30991,-0.10329 c -0.92972,1.13636 -1.03304,2.68594 -0.30991,3.92562 0.61984,1.23965 2.0661,1.85949 3.5124,1.54958 1.34297,-0.20661 2.47933,-1.34299 2.68594,-2.68597 m 0,0 h 0.10329 m -6.30163,-2.58262 0.20661,-0.10332 m 1.03304,-0.82645 v -0.20662 m 1.54959,-0.20661 c -0.51652,0 -1.03304,0.10332 -1.54959,0.30993 m 1.44629,-0.51652 0.1033,0.20659 m 2.89258,3.92562 h 0.51652 m -0.41323,-0.92974 -0.10329,0.92974 m 0.51652,-0.92974 h -0.41323 m 0.41323,0 c -0.10329,-1.34297 -0.92975,-2.37604 -2.16942,-2.78927 m -1.13636,0.30994 1.13636,-0.30994 m -1.23968,-0.20661 0.10332,0.51655 m -1.54959,0.41322 -0.10332,-0.51654 m -1.03304,0.82645 1.13636,-0.30991 m 4.02892,2.16943 c 0,-0.30993 -0.1033,-0.51655 -0.20662,-0.82645 m -0.72313,1.13635 0.92975,-0.20661 m -0.92975,0.10332 c -0.61984,0.20659 -0.92974,0.82643 -0.82645,1.44627 m 0.41323,1.44629 -0.30991,-1.44629 m -0.51655,1.6529 c 0.30994,0 0.61984,-0.10332 0.92978,-0.20661 m -1.343,-1.23968 0.41322,1.54958 m -0.41322,-1.54958 c -0.1033,-0.61984 -0.72314,-0.92975 -1.34298,-0.82645 m -1.44626,0.51654 1.44626,-0.41322 m -1.65287,-0.51655 c 0,0.30993 0.10329,0.61984 0.20661,0.82645 m 1.23965,-1.13636 -1.44626,0.30991 m 1.44626,-0.4132 c 0.61984,-0.10332 0.92977,-0.72316 0.82645,-1.343 m -0.41322,-1.44626 0.41322,1.44626 m 0.82646,-0.20661 -0.41323,-1.44627 m 0.41323,1.44627 c 0.10329,0.51655 0.72313,0.92977 1.34297,0.72316 m 0.92974,-0.20661 -0.92974,0.3099 m 0.10332,-2.47933 c -0.51655,-0.20661 -1.03307,-0.30991 -1.65291,-0.30991 m 3.71901,3.20247 c -0.10332,-1.23968 -0.92974,-2.37604 -2.0661,-2.89256 m 2.0661,3.8223 v -0.92974 m 0,0 h -0.20661 m -2.16942,-2.78927 0.30993,-0.10329 m 2.68594,0.92975 c 0,0 0.1033,0 0,0 m -3.92562,2.27274 c 0,-0.10332 -0.10332,-0.20661 -0.20661,-0.20661 -0.10332,0 -0.20662,0.10329 -0.20662,0.20661 0,0.10329 0.1033,0.30991 0.20662,0.30991 0.10329,0 0.20661,-0.20662 0.20661,-0.30991 m -1.44629,-1.03306 c 0,-0.41323 -0.30991,-0.72314 -0.72314,-0.72314 -0.3099,0 -0.61983,0.30991 -0.61983,0.72314 0,0.3099 0.30993,0.72313 0.61983,0.72313 0.41323,0 0.72314,-0.41323 0.72314,-0.72313 m 2.99587,-0.82646 c 0,-0.41322 -0.3099,-0.72313 -0.72313,-0.72313 -0.30993,0 -0.61984,0.30991 -0.61984,0.72313 0,0.30991 0.30991,0.72314 0.61984,0.72314 0.41323,0 0.72313,-0.41323 0.72313,-0.72314 m 0.82646,2.99588 c 0,-0.41323 -0.41323,-0.72316 -0.72316,-0.72316 -0.4132,0 -0.72313,0.30993 -0.72313,0.72316 0,0.30991 0.30993,0.72313 0.72313,0.72313 0.30993,0 0.72316,-0.41322 0.72316,-0.72313 m -2.99588,0.82643 c 0,-0.4132 -0.41323,-0.72314 -0.72313,-0.72314 -0.41323,0 -0.72316,0.30994 -0.72316,0.72314 0,0.30993 0.30993,0.72316 0.72316,0.72316 0.3099,0 0.72313,-0.41323 0.72313,-0.72316 m -0.20661,0 c 0,-0.30991 -0.30991,-0.51652 -0.51652,-0.51652 -0.30994,0 -0.51655,0.20661 -0.51655,0.51652 0,0.20661 0.20661,0.51654 0.51655,0.51654 0.20661,0 0.51652,-0.30993 0.51652,-0.51654 m 2.99587,-0.82643 c 0,-0.30993 -0.30993,-0.51655 -0.51654,-0.51655 -0.30991,0 -0.51652,0.20662 -0.51652,0.51655 0,0.20661 0.20661,0.51652 0.51652,0.51652 0.20661,0 0.51654,-0.30991 0.51654,-0.51652 m -0.82645,-2.99588 c 0,-0.3099 -0.20661,-0.51652 -0.51652,-0.51652 -0.20661,0 -0.41322,0.20662 -0.41322,0.51652 0,0.20662 0.20661,0.51652 0.41322,0.51652 0.30991,0 0.51652,-0.3099 0.51652,-0.51652 m -2.99588,0.82646 c 0,-0.30994 -0.20661,-0.51655 -0.51652,-0.51655 -0.20661,0 -0.41322,0.20661 -0.41322,0.51655 0,0.20661 0.20661,0.51652 0.41322,0.51652 0.30991,0 0.51652,-0.30991 0.51652,-0.51652 m -1.65287,0.51652 h 0.10329 m 0,0 0.20661,0.72313 m 0,0 0.10332,-0.20659 m 0,0 v 0.20659 m 0,0 v 0.10332 m 0,0 h -0.20661 m 0,0 -0.20661,-0.82645 m 2.78926,3.20249 0.10329,0.3099 m 0,0 h -0.20661 m 0,0 v -0.20661 m 0,0 h -0.10329 m 0,0 v -0.10329 m 0,0 h 0.10329 m 0,0 -0.10329,-0.20662 m 0,0 h 0.10329 m 0,0 0.10332,0.1033 m 0,0 0.30991,-0.1033 m 0,0 v 0.20662 m 0,0 -0.10332,0.61983 m 0,0 -0.1033,0.1033 m 0,0 0.1033,-0.72313 m 0,0 h -0.20659 m 1.54959,0 0.10329,0.10329 0.20661,0.10332 m 0,0 h 0.10329 m 0,-0.10332 c 0.10332,0 0.10332,-0.20661 0.10332,-0.30991 m 0,0.1033 h -0.10332 m -0.10329,0.10332 c 0.10329,0 0.10329,0 0.10329,-0.10332 m -0.20658,0 v 0.10332 h 0.10329 m -0.20661,0 v -0.10332 l 0.10332,-0.1033 m 0,0 h 0.10329 m 0,0 -0.10329,-0.10332 m -0.10332,-0.10329 v 0.10329 h 0.10332 m -0.10332,-0.3099 v 0.10329 c -0.10329,0 -0.10329,0 0,0.10332 m 0,-0.10332 h 0.10332 0.10329 m 0,0 h 0.10329 m 0,0 -0.10329,-0.10329 -0.20661,-0.10332 m 0,0 -0.20661,0.20661 v 0.20661 m 0,-0.10329 c 0,0.10329 0.10332,0.20661 0.20661,0.20661 m 0,0 -0.10329,0.1033 v 0.10332 m 1.13635,-4.64876 -0.51654,0.10329 m 0,0 v 0.10332 m 0,0 0.30993,-0.10332 m 0,0 -0.10332,0.41323 m 0,0 c -0.10329,0.10329 0,0.20661 0,0.20661 0.10332,0.1033 0.20661,0.1033 0.30993,0.1033 0.1033,-0.1033 0.1033,-0.20662 0.1033,-0.30991 m 0,0.10329 h -0.1033 m -0.20661,-0.10329 c -0.10332,0.10329 -0.10332,0.10329 0,0.20661 h 0.10329 c 0.10332,0 0.10332,-0.10332 0.10332,-0.20661 m -0.20661,0.10329 0.20661,-0.51652 m 0,0 v -0.10329 m 29.13214,-99.4832 c -0.30991,0 -0.61982,0.10332 -0.92975,0.206613 m 1.13636,-0.619839 c -0.51652,0 -1.03304,0.10332 -1.54959,0.309933 m -1.23965,1.136359 c -0.82645,1.136359 -0.82645,2.789237 0,3.925596 0.72314,1.239679 2.27272,1.859492 3.61569,1.549585 1.44629,-0.309906 2.58263,-1.446292 2.78924,-2.892557 m -5.16528,-3.718983 c -0.41322,0.309906 -0.82642,0.619839 -1.23965,1.136359 m 0.30991,-0.103294 c -0.92975,1.033039 -1.03307,2.582598 -0.30991,3.822277 0.72314,1.239679 2.16943,1.859492 3.5124,1.652905 1.44626,-0.309933 2.4793,-1.342999 2.78921,-2.789264 m 0,0.103293 h 0.10332 m -6.30163,-2.685917 0.20661,-0.103294 m 1.03306,-0.723159 V 39.20443 m 1.44627,-0.309906 c -0.51652,0 -1.03304,0.206613 -1.44627,0.413226 m 1.44627,-0.516546 v 0.206613 m 2.99585,3.822303 0.51652,0.103293 m -0.51652,-1.033012 v 0.929719 m 0.51652,-0.826426 -0.51652,-0.103293 m 0.51652,0 c -0.20661,-1.239679 -1.03301,-2.376038 -2.16937,-2.789264 m -1.13639,0.413226 1.13639,-0.309933 m -1.343,-0.206613 0.20661,0.516546 m -1.54958,0.309906 -0.1033,-0.413226 m -1.03306,0.723159 1.13636,-0.309933 m 3.92559,2.272745 c 0,-0.309933 -0.10326,-0.61984 -0.20658,-0.929773 m -0.61984,1.239653 0.92974,-0.30988 m -0.92974,0.206586 c -0.61981,0.103294 -0.92975,0.723133 -0.82643,1.342972 m 0.41323,1.549586 -0.41323,-1.446292 m -0.41322,1.652905 c 0.3099,-0.10332 0.61984,-0.10332 0.82645,-0.206613 m -1.23968,-1.239679 0.41323,1.446292 m -0.41323,-1.549585 c -0.10332,-0.516546 -0.72313,-0.929773 -1.34297,-0.72316 m -1.44629,0.413227 1.44629,-0.413227 m -1.7562,-0.516519 c 0.10329,0.309906 0.10329,0.619839 0.20661,0.929746 m 1.34297,-1.239653 -1.44629,0.4132 m 1.44629,-0.4132 c 0.61984,-0.206586 0.92975,-0.826426 0.82646,-1.446265 m -0.41323,-1.342972 0.30991,1.446265 m 0.92974,-0.206613 -0.41322,-1.549585 m 0.41322,1.446292 c 0.10332,0.619839 0.72316,0.929746 1.34298,0.826452 m 0.92977,-0.206613 -0.92977,0.206613 m 0,-2.376037 c -0.51652,-0.309933 -1.03304,-0.413227 -1.54959,-0.309933 m 3.61569,3.099197 c -0.10332,-1.239679 -0.92975,-2.272745 -2.0661,-2.789264 m 2.0661,3.718983 c 0.10329,-0.309933 0.10329,-0.619813 0,-0.929719 m 0.10329,0.103293 h -0.20661 m -2.16937,-2.789264 0.3099,-0.103293 M 162.5512,42.3036 c 0,-0.103293 -0.20662,-0.206586 -0.30991,-0.206586 -0.10332,0 -0.20661,0.103293 -0.20661,0.206586 0,0.103294 0.10329,0.206587 0.20661,0.206587 0.10329,0 0.30991,-0.103293 0.30991,-0.206587 m -1.44627,-1.136359 c 0,-0.309906 -0.30993,-0.619839 -0.72316,-0.619839 -0.3099,0 -0.61981,0.309933 -0.61981,0.619839 0,0.413227 0.30991,0.72316 0.61981,0.72316 0.41323,0 0.72316,-0.309933 0.72316,-0.72316 m 2.99585,-0.826426 c 0,-0.309933 -0.30991,-0.619839 -0.72313,-0.619839 -0.30991,0 -0.61984,0.309906 -0.61984,0.619839 0,0.4132 0.30993,0.723133 0.61984,0.723133 0.41322,0 0.72313,-0.309933 0.72313,-0.723133 m 0.82643,2.995825 c 0,-0.309907 -0.4132,-0.61984 -0.72311,-0.61984 -0.41323,0 -0.72313,0.309933 -0.72313,0.61984 0,0.413226 0.3099,0.723132 0.72313,0.723132 0.30991,0 0.72311,-0.309906 0.72311,-0.723132 m -2.99585,0.826452 c 0,-0.309906 -0.4132,-0.619839 -0.72314,-0.619839 -0.41322,0 -0.72313,0.309933 -0.72313,0.619839 0,0.413226 0.30991,0.723133 0.72313,0.723133 0.30994,0 0.72314,-0.309907 0.72314,-0.723133 m -0.20659,0 c 0,-0.206613 -0.30993,-0.413226 -0.51655,-0.413226 -0.3099,0 -0.51652,0.206613 -0.51652,0.413226 0,0.309906 0.20662,0.51652 0.51652,0.51652 0.20662,0 0.51655,-0.206614 0.51655,-0.51652 m 2.99582,-0.826452 c 0,-0.206614 -0.30988,-0.413227 -0.51649,-0.413227 -0.30993,0 -0.51654,0.206613 -0.51654,0.413227 0,0.309932 0.20661,0.516546 0.51654,0.516546 0.20661,0 0.51649,-0.206614 0.51649,-0.516546 m -0.82642,-2.995825 c 0,-0.206613 -0.20661,-0.413226 -0.51652,-0.413226 -0.20661,0 -0.41323,0.206613 -0.41323,0.413226 0,0.309907 0.20662,0.51652 0.41323,0.51652 0.30991,0 0.51652,-0.206613 0.51652,-0.51652 m -2.99585,0.826426 c 0,-0.206613 -0.20662,-0.413226 -0.51655,-0.413226 -0.20661,0 -0.4132,0.206613 -0.4132,0.413226 0,0.309933 0.20659,0.516546 0.4132,0.516546 0.30993,0 0.51655,-0.206613 0.51655,-0.516546 m -1.65291,0.516546 h 0.10332 m 0,0 0.20662,0.723107 m 0,0 0.10329,-0.103294 m 0,0 v 0.103294 m 0,0 -0.10329,0.103293 m 0,0 -0.10332,0.10332 m 0,0 -0.20662,-0.92972 m 2.78927,3.305758 0.10329,0.206613 m 0,0 -0.20661,0.103293 m 0,0 v -0.309906 m 0,0 h -0.1033 m 0,0 v -0.10332 m 0,0 v -0.103294 m 0,0 h 0.1033 m 0,0 0.10332,0.103294 m 0,0 0.3099,-0.103294 m 0,0 v 0.103294 m 0,0 -0.10329,0.723159 m 0,0 h -0.10332 m 0,0 0.10332,-0.723159 m 0,0 -0.20661,0.10332 m 1.54958,0 0.1033,0.103293 h 0.10331 m 0,0 h 0.20662 m 0,0 c 0.10329,-0.103293 0.10329,-0.206613 0.10329,-0.309907 m 0,0.103294 h -0.10329 m -0.10332,0 c 0,0 0.10332,0 0,-0.103294 m -0.20661,0.103294 h 0.10331 c 0,0.10332 0,0.10332 0.1033,0 m -0.20661,0 v -0.103294 h 0.10331 m 0,0 h 0.1033 m 0,0 -0.1033,-0.103319 m -0.20661,-0.206614 c 0,0 0,0.10332 0.1033,0.10332 h 0.10331 m -0.10331,-0.206613 h -0.1033 v 0.103293 m 0.1033,-0.103293 h 0.10331 l 0.1033,0.103293 m 0,0 0.10332,-0.103293 m 0,0 -0.10332,-0.10332 h -0.20661 m 0,0 -0.20659,0.10332 v 0.206613 m 0,0 c 0,0.103294 0.10329,0.103294 0.20659,0.103294 m -0.1033,0.103319 v 0.103294 0.10332 m 1.13633,-4.752049 -0.51649,0.103319 m 0,0 v 0.103294 m 0,0 h 0.30991 m 0,0 -0.1033,0.413226 m 0,-0.10332 c -0.10332,0.10332 0,0.206613 0,0.309933 0.1033,0.103293 0.20662,0.103293 0.30988,0 0.10332,0 0.10332,-0.10332 0.10332,-0.206613 m 0,0 h -0.10332 m -0.20658,0 c -0.1033,0 -0.1033,0.103293 0,0.103293 0,0.10332 0.10332,0.10332 0.10332,0 0.10326,0 0.10326,-0.103293 0.10326,-0.103293 m -0.20658,0 0.20658,-0.51652 m 0,0 v -0.103319 m -2.78923,31.714783 c -0.30991,0.103294 -0.61982,0.103294 -0.92975,0.206587 m 1.13636,-0.619813 c -0.51652,0 -1.03304,0.206613 -1.54959,0.413226 m -1.23965,1.033039 c -0.82645,1.239679 -0.82645,2.789264 0,4.028943 0.72314,1.239652 2.27272,1.859492 3.61569,1.549585 1.44629,-0.309933 2.58263,-1.446292 2.78924,-2.892584 m -5.16528,-3.718983 c -0.41322,0.206587 -0.82642,0.619813 -1.23965,1.033039 m 0.30991,-0.103293 c -0.92975,1.136359 -1.03307,2.685944 -0.30991,3.925623 0.72314,1.239652 2.16943,1.859492 3.5124,1.549585 1.44626,-0.206613 2.4793,-1.342972 2.78921,-2.685971 m 0,0 h 0.10332 m -6.30163,-2.582624 0.20661,-0.10332 m 1.03306,-0.826452 v -0.206587 m 1.44627,-0.206613 c -0.51652,0 -1.03304,0.103293 -1.44627,0.309907 m 1.44627,-0.51652 v 0.206613 m 2.99585,3.925596 h 0.51652 m -0.51652,-0.929745 v 0.929745 m 0.51652,-0.929745 h -0.51652 m 0.51652,0 c -0.20661,-1.342972 -1.03301,-2.376038 -2.16937,-2.789238 m -1.13639,0.309907 1.13639,-0.309907 m -1.343,-0.206613 0.20661,0.51652 m -1.54958,0.413226 -0.1033,-0.516546 m -1.03306,0.826452 1.13636,-0.309906 m 3.92559,2.169424 c 0,-0.309932 -0.10326,-0.516546 -0.20658,-0.826452 m -0.61984,1.136359 0.92974,-0.206613 m -0.92974,0.10332 c -0.61981,0.206613 -0.92975,0.826426 -0.82643,1.446265 m 0.41323,1.446292 -0.41323,-1.446292 m -0.41322,1.652905 c 0.3099,0 0.61984,-0.10332 0.82645,-0.206613 m -1.23968,-1.239679 0.41323,1.549585 m -0.41323,-1.549585 c -0.10332,-0.619839 -0.72313,-0.929746 -1.34297,-0.826452 m -1.44629,0.516546 1.44629,-0.413227 m -1.7562,-0.516519 c 0.10329,0.309906 0.10329,0.619813 0.20661,0.826426 m 1.34297,-1.136359 -1.44629,0.309933 m 1.44629,-0.413226 c 0.61984,-0.10332 0.92975,-0.72316 0.82646,-1.342973 m -0.41323,-1.446291 0.30991,1.446291 m 0.92974,-0.206613 -0.41322,-1.446291 m 0.41322,1.446291 c 0.10332,0.51652 0.72316,0.929746 1.34298,0.723133 m 0.92977,-0.206613 -0.92977,0.309906 m 0,-2.479331 c -0.51652,-0.206613 -1.03304,-0.309906 -1.54959,-0.309906 m 3.61569,3.202464 c -0.10332,-1.239653 -0.92975,-2.376038 -2.0661,-2.892558 m 2.0661,3.822303 c 0.10329,-0.309906 0.10329,-0.619812 0,-0.929745 m 0.10329,0 h -0.20661 m -2.16937,-2.789238 0.3099,-0.10332 m -1.23967,3.202491 c 0,-0.10332 -0.20662,-0.206614 -0.30991,-0.206614 -0.10332,0 -0.20661,0.103294 -0.20661,0.206614 0,0.103293 0.10329,0.309906 0.20661,0.309906 0.10329,0 0.30991,-0.206613 0.30991,-0.309906 m -1.44627,-1.033066 c 0,-0.413226 -0.30993,-0.723133 -0.72316,-0.723133 -0.3099,0 -0.61981,0.309907 -0.61981,0.723133 0,0.309906 0.30991,0.723133 0.61981,0.723133 0.41323,0 0.72316,-0.413227 0.72316,-0.723133 m 2.99585,-0.826453 c 0,-0.413226 -0.30991,-0.723132 -0.72313,-0.723132 -0.30991,0 -0.61984,0.309906 -0.61984,0.723132 0,0.309933 0.30993,0.723133 0.61984,0.723133 0.41322,0 0.72313,-0.4132 0.72313,-0.723133 m 0.82643,2.995878 c 0,-0.413227 -0.4132,-0.723133 -0.72311,-0.723133 -0.41323,0 -0.72313,0.309906 -0.72313,0.723133 0,0.309906 0.3099,0.723132 0.72313,0.723132 0.30991,0 0.72311,-0.413226 0.72311,-0.723132 m -2.99585,0.826452 c 0,-0.413226 -0.4132,-0.723159 -0.72314,-0.723159 -0.41322,0 -0.72313,0.309933 -0.72313,0.723159 0,0.309906 0.30991,0.723133 0.72313,0.723133 0.30994,0 0.72314,-0.413227 0.72314,-0.723133 m -0.20659,0 c 0,-0.309933 -0.30993,-0.516546 -0.51655,-0.516546 -0.3099,0 -0.51652,0.206613 -0.51652,0.516546 0,0.206613 0.20662,0.51652 0.51652,0.51652 0.20662,0 0.51655,-0.309907 0.51655,-0.51652 m 2.99582,-0.826452 c 0,-0.309933 -0.30988,-0.516547 -0.51649,-0.516547 -0.30993,0 -0.51654,0.206614 -0.51654,0.516547 0,0.206613 0.20661,0.516519 0.51654,0.516519 0.20661,0 0.51649,-0.309906 0.51649,-0.516519 m -0.82642,-2.995878 c 0,-0.309906 -0.20661,-0.516519 -0.51652,-0.516519 -0.20661,0 -0.41323,0.206613 -0.41323,0.516519 0,0.206614 0.20662,0.516546 0.41323,0.516546 0.30991,0 0.51652,-0.309932 0.51652,-0.516546 m -2.99585,0.826453 c 0,-0.309907 -0.20662,-0.51652 -0.51655,-0.51652 -0.20661,0 -0.4132,0.206613 -0.4132,0.51652 0,0.206613 0.20659,0.51652 0.4132,0.51652 0.30993,0 0.51655,-0.309907 0.51655,-0.51652 m -1.65291,0.51652 0.10332,-0.103294 m 0,0 0.20662,0.826453 m 0,0 0.10329,-0.206613 m 0,0 v 0.206613 m 0,0 -0.10329,0.103293 m 0,0 h -0.10332 m 0,0 -0.20662,-0.826452 m 2.78927,3.20249 0.10329,0.309906 m 0,0 h -0.20661 m 0,0 v -0.206613 m 0,0 h -0.1033 m 0,0 v -0.103293 m 0,0 v -0.206613 m 0,0 h 0.1033 m 0,0 0.10332,0.103293 m 0,0 0.3099,-0.103293 m 0,0 v 0.206613 m 0,0 -0.10329,0.619839 m 0,0 -0.10332,0.103293 m 0,0 0.10332,-0.723132 m 0,0 h -0.20661 m 1.54958,0 0.1033,0.103293 0.10331,0.10332 m 0,0 h 0.20662 m 0,-0.10332 c 0.10329,0 0.10329,-0.206613 0.10329,-0.309906 m 0,0.103293 h -0.10329 m -0.10332,0.10332 c 0,0 0.10332,-0.10332 0,-0.10332 m -0.20661,0 c 0,0 0,0.10332 0.10331,0.10332 h 0.1033 m -0.20661,0 v -0.10332 l 0.10331,-0.103293 m 0,0 h 0.1033 m 0,0 -0.1033,-0.10332 m -0.20661,-0.103294 c 0,0 0,0.103294 0.1033,0.103294 h 0.10331 m -0.10331,-0.309907 c 0,0 -0.1033,0 -0.1033,0.10332 v 0.103293 m 0.1033,-0.103293 h 0.10331 0.1033 m 0,0 h 0.10332 m 0,0 -0.10332,-0.10332 -0.20661,-0.103293 m 0,0 -0.20659,0.206613 v 0.206587 m 0,-0.103294 c 0,0.103294 0.10329,0.206614 0.20659,0.206614 m -0.1033,0 v 0.103293 0.10332 m 1.13633,-4.648756 -0.51649,0.103293 m 0,0 v 0.10332 m 0,0 0.30991,-0.10332 m 0,0 -0.1033,0.413227 m 0,0 c -0.10332,0.103319 0,0.206613 0,0.206613 0.1033,0.103293 0.20662,0.103293 0.30988,0.103293 0.10332,-0.103293 0.10332,-0.206587 0.10332,-0.309906 m 0,0.103319 h -0.10332 m -0.20658,-0.103319 c -0.1033,0.103319 -0.1033,0.103319 0,0.206613 h 0.10332 c 0.10326,0 0.10326,-0.103294 0.10326,-0.206613 m -0.20658,0.103319 0.20658,-0.516546 m 0,0 v -0.103293 m -2.78923,31.714782 c -0.30991,0 -0.61982,0.10332 -0.92975,0.20661 m 1.13636,-0.61983 c -0.51652,0 -1.03304,0.10332 -1.54959,0.30993 m -1.23965,1.13636 c -0.82645,1.13636 -0.82645,2.78923 0,3.92559 0.72314,1.23966 2.27272,1.8595 3.61569,1.54959 1.44629,-0.30993 2.58263,-1.44629 2.78924,-2.89256 m -5.16528,-3.71898 c -0.41322,0.3099 -0.82642,0.61984 -1.23965,1.13636 m 0.30991,-0.10332 c -0.92975,1.03306 -1.03307,2.58262 -0.30991,3.8223 0.72314,1.23965 2.16943,1.85949 3.5124,1.65288 1.44626,-0.30991 2.4793,-1.34297 2.78921,-2.78924 m 0,0.10329 h 0.10332 m -6.30163,-2.68591 0.20661,-0.10332 m 1.03306,-0.72314 v -0.20661 m 1.44627,-0.3099 c -0.51652,0 -1.03304,0.20661 -1.44627,0.41322 m 1.44627,-0.51654 v 0.20661 m 2.99585,3.92559 h 0.51652 m -0.51652,-1.03303 v 1.03303 m 0.51652,-0.92971 -0.51652,-0.10332 m 0.51652,0 c -0.20661,-1.23966 -1.03301,-2.37602 -2.16937,-2.78924 m -1.13639,0.41322 1.13639,-0.30993 m -1.343,-0.20661 0.20661,0.51654 m -1.54958,0.4132 -0.1033,-0.51652 m -1.03306,0.72314 1.13636,-0.20662 m 3.92559,2.16943 c 0,-0.30991 -0.10326,-0.61981 -0.20658,-0.92975 m -0.61984,1.23968 0.92974,-0.30993 m -0.92974,0.20661 c -0.61981,0.10332 -0.92975,0.72313 -0.82643,1.34295 m 0.41323,1.54958 -0.41323,-1.44626 m -0.41322,1.65288 c 0.3099,-0.1033 0.61984,-0.1033 0.82645,-0.20662 m -1.23968,-1.23965 0.41323,1.44627 m -0.41323,-1.54959 c -0.10332,-0.51652 -0.72313,-0.92975 -1.34297,-0.72313 m -1.44629,0.41322 1.44629,-0.41322 m -1.7562,-0.5165 c 0.10329,0.30988 0.10329,0.61982 0.20661,0.92972 m 1.34297,-1.23965 -1.44629,0.4132 m 1.44629,-0.4132 c 0.61984,-0.20661 0.92975,-0.82642 0.82646,-1.44626 m -0.41323,-1.34298 0.30991,1.44627 m 0.92974,-0.20661 -0.41322,-1.54959 m 0.41322,1.44629 c 0.10332,0.61984 0.72316,0.92975 1.34298,0.82646 m 0.92977,-0.20662 -0.92977,0.20662 m 0,-2.37604 c -0.51652,-0.30993 -1.03304,-0.41323 -1.54959,-0.30993 m 3.61569,3.09917 c -0.10332,-1.23966 -0.92975,-2.27272 -2.0661,-2.78924 m 2.0661,3.71898 c 0.10329,-0.3099 0.10329,-0.61981 0,-0.92974 m 0.10329,0.10332 h -0.20661 m -2.16937,-2.78927 0.3099,-0.10329 m -6.19834,2.27272 h -0.10332 m 5.06199,0.92974 c 0,-0.10329 -0.20662,-0.20661 -0.30991,-0.20661 -0.10332,0 -0.20661,0.10332 -0.20661,0.20661 0,0.10332 0.10329,0.20662 0.20661,0.20662 0.10329,0 0.30991,-0.1033 0.30991,-0.20662 m -1.44627,-1.13636 c 0,-0.3099 -0.30993,-0.61984 -0.72316,-0.61984 -0.3099,0 -0.61981,0.30994 -0.61981,0.61984 0,0.41323 0.30991,0.72314 0.61981,0.72314 0.41323,0 0.72316,-0.30991 0.72316,-0.72314 m 2.99585,-0.82645 c 0,-0.30991 -0.30991,-0.61981 -0.72313,-0.61981 -0.30991,0 -0.61984,0.3099 -0.61984,0.61981 0,0.41323 0.30993,0.72316 0.61984,0.72316 0.41322,0 0.72313,-0.30993 0.72313,-0.72316 m 0.82643,2.99585 c 0,-0.30991 -0.4132,-0.61984 -0.72311,-0.61984 -0.41323,0 -0.72313,0.30993 -0.72313,0.61984 0,0.41323 0.3099,0.72313 0.72313,0.72313 0.30991,0 0.72311,-0.3099 0.72311,-0.72313 m -2.99585,0.82645 c 0,-0.30993 -0.4132,-0.61984 -0.72314,-0.61984 -0.41322,0 -0.72313,0.30991 -0.72313,0.61984 0,0.41323 0.30991,0.72314 0.72313,0.72314 0.30994,0 0.72314,-0.30991 0.72314,-0.72314 m -0.20659,0 c 0,-0.20661 -0.30993,-0.41322 -0.51655,-0.41322 -0.3099,0 -0.51652,0.20661 -0.51652,0.41322 0,0.30991 0.20662,0.51652 0.51652,0.51652 0.20662,0 0.51655,-0.20661 0.51655,-0.51652 m 2.99582,-0.82645 c 0,-0.20661 -0.30988,-0.41323 -0.51649,-0.41323 -0.30993,0 -0.51654,0.20662 -0.51654,0.41323 0,0.30991 0.20661,0.51652 0.51654,0.51652 0.20661,0 0.51649,-0.20661 0.51649,-0.51652 m -0.82642,-2.99585 c 0,-0.20661 -0.20661,-0.41323 -0.51652,-0.41323 -0.20661,0 -0.41323,0.20662 -0.41323,0.41323 0,0.30993 0.20662,0.51655 0.41323,0.51655 0.30991,0 0.51652,-0.20662 0.51652,-0.51655 m -2.99585,0.82645 c 0,-0.20661 -0.20662,-0.41322 -0.51655,-0.41322 -0.20661,0 -0.4132,0.20661 -0.4132,0.41322 0,0.30994 0.20659,0.51652 0.4132,0.51652 0.30993,0 0.51655,-0.20658 0.51655,-0.51652 m -1.65291,0.51652 h 0.10332 m 0,0 0.20662,0.72316 m 0,0 0.10329,-0.10332 m 0,0 v 0.10332 m 0,0 -0.10329,0.1033 m 0,0 -0.10332,0.10331 m 0,0 -0.20662,-0.92977 m 2.78927,3.30579 0.10329,0.20658 m 0,0 -0.20661,0.10332 m 0,0 v -0.3099 m 0,0 h -0.1033 m 0,0 v -0.10332 m 0,0 v -0.1033 m 0,0 h 0.1033 m 0,0 0.10332,0.1033 m 0,0 0.3099,-0.1033 m 0,0 v 0.1033 m 0,0 -0.10329,0.72313 m 0,0 h -0.10332 m 0,0 0.10332,-0.72313 m 0,0 -0.20661,0.10332 m 1.54958,0 0.1033,0.10329 h 0.10331 m 0,0 h 0.20662 m 0,0 c 0.10329,-0.10329 0.10329,-0.20661 0.10329,-0.30991 m 0,0.1033 h -0.10329 m -0.10332,0.10332 c 0,0 0.10332,-0.10332 0,-0.10332 m -0.20661,0 h 0.10331 c 0,0.10332 0,0.10332 0.1033,0 m -0.20661,0 v -0.1033 h 0.10331 m 0,0 h 0.1033 m 0,0 -0.1033,-0.10332 m -0.20661,-0.20661 c 0,0.10332 0,0.10332 0.1033,0.10332 0,0.10329 0,0.10329 0.10331,0 m -0.10331,-0.20661 h -0.1033 v 0.10329 m 0.1033,-0.10329 h 0.10331 l 0.1033,0.10329 m 0,0 0.10332,-0.10329 m 0,0 -0.10332,-0.10332 h -0.20661 m 0,0 -0.20659,0.10332 v 0.20661 m 0,0 c 0,0.10329 0.10329,0.10329 0.20659,0.10329 m -0.1033,0.10332 v 0.1033 0.10332 m 1.13633,-4.75205 -0.51649,0.10329 m 0,0 v 0.10332 m 0,0 h 0.30991 m 0,0 -0.1033,0.41323 m 0,-0.10332 c -0.10332,0.10332 0,0.20661 0,0.30993 0.1033,0.10329 0.20662,0.10329 0.30988,0 0.10332,0 0.10332,-0.10332 0.10332,-0.20661 m 0,0 h -0.10332 m -0.20658,0 c -0.1033,0 -0.1033,0.10329 0,0.10329 0,0.10332 0.10332,0.10332 0.10332,0 0.10326,0 0.10326,-0.10329 0.10326,-0.10329 m -0.20658,0 0.20658,-0.51655 m 0,0 v -0.10329 m -2.78923,31.71475 c -0.30991,0.10332 -0.61982,0.10332 -0.92975,0.20662 m 1.13636,-0.61982 c -0.51652,0 -1.03304,0.20659 -1.54959,0.4132 m -1.23965,1.03307 c -0.82645,1.23968 -0.82645,2.78926 0,4.02892 0.72314,1.23967 2.27272,1.85951 3.61569,1.54961 1.44629,-0.30994 2.58263,-1.44629 2.78924,-2.89259 m -5.16528,-3.71901 c -0.41322,0.20662 -0.82642,0.61984 -1.23965,1.03307 m 0.30991,-0.10329 c -0.92975,1.13636 -1.03307,2.68594 -0.30991,3.92562 0.72314,1.23965 2.16943,1.85949 3.5124,1.54958 1.44626,-0.20661 2.4793,-1.34299 2.78921,-2.68597 m 0,0 h 0.10332 m -6.30163,-2.58262 0.20661,-0.10332 m 1.03306,-0.82645 v -0.20662 m 1.44627,-0.20661 c -0.51652,0 -1.03304,0.10332 -1.44627,0.30993 m 1.44627,-0.51652 v 0.20659 m 2.99585,3.92562 h 0.51652 m -0.51652,-0.92974 v 0.92974 m 0.51652,-0.92974 h -0.51652 m 0.51652,0 c -0.20661,-1.34297 -1.03301,-2.37604 -2.16937,-2.78927 m -1.13639,0.30994 1.13639,-0.30994 m -1.343,-0.20661 0.20661,0.51655 m -1.54958,0.41322 -0.1033,-0.51654 m -1.03306,0.82645 1.13636,-0.30991 m 3.92559,2.16943 c 0,-0.30993 -0.10326,-0.51655 -0.20658,-0.82645 m -0.61984,1.13635 0.92974,-0.20661 m -0.92974,0.10332 c -0.61981,0.20659 -0.92975,0.82643 -0.82643,1.44627 m 0.41323,1.44629 -0.41323,-1.44629 m -0.41322,1.6529 c 0.3099,0 0.61984,-0.10332 0.82645,-0.20661 m -1.23968,-1.23968 0.41323,1.54958 m -0.41323,-1.54958 c -0.10332,-0.61984 -0.72313,-0.92975 -1.34297,-0.82645 m -1.44629,0.51654 1.44629,-0.41322 m -1.7562,-0.51655 c 0.10329,0.30993 0.10329,0.61984 0.20661,0.82645 m 1.34297,-1.13636 -1.44629,0.30991 m 1.44629,-0.4132 c 0.61984,-0.10332 0.92975,-0.72316 0.82646,-1.343 m -0.41323,-1.44626 0.30991,1.44626 m 0.92974,-0.20661 -0.41322,-1.44627 m 0.41322,1.44627 c 0.10332,0.51655 0.72316,0.92977 1.34298,0.72316 m 0.92977,-0.20661 -0.92977,0.3099 m 0,-2.47933 c -0.51652,-0.20661 -1.03304,-0.30991 -1.54959,-0.30991 m 3.61569,3.20247 c -0.10332,-1.23968 -0.92975,-2.37604 -2.0661,-2.89256 m 2.0661,3.8223 c 0.10329,-0.3099 0.10329,-0.61981 0,-0.92974 m 0.10329,0 h -0.20661 m -2.16937,-2.78927 0.3099,-0.10329 m -6.19834,2.37604 h -0.10332 m 5.06199,0.82645 c 0,-0.10332 -0.20662,-0.20661 -0.30991,-0.20661 -0.10332,0 -0.20661,0.10329 -0.20661,0.20661 0,0.10329 0.10329,0.30991 0.20661,0.30991 0.10329,0 0.30991,-0.20662 0.30991,-0.30991 m -1.44627,-1.03306 c 0,-0.41323 -0.30993,-0.72314 -0.72316,-0.72314 -0.3099,0 -0.61981,0.30991 -0.61981,0.72314 0,0.3099 0.30991,0.72313 0.61981,0.72313 0.41323,0 0.72316,-0.41323 0.72316,-0.72313 m 2.99585,-0.82646 c 0,-0.41322 -0.30991,-0.72313 -0.72313,-0.72313 -0.30991,0 -0.61984,0.30991 -0.61984,0.72313 0,0.30991 0.30993,0.72314 0.61984,0.72314 0.41322,0 0.72313,-0.41323 0.72313,-0.72314 m 0.82643,2.99588 c 0,-0.41323 -0.4132,-0.72316 -0.72311,-0.72316 -0.41323,0 -0.72313,0.30993 -0.72313,0.72316 0,0.30991 0.3099,0.72313 0.72313,0.72313 0.30991,0 0.72311,-0.41322 0.72311,-0.72313 m -2.99585,0.82643 c 0,-0.4132 -0.4132,-0.72314 -0.72314,-0.72314 -0.41322,0 -0.72313,0.30994 -0.72313,0.72314 0,0.30993 0.30991,0.72316 0.72313,0.72316 0.30994,0 0.72314,-0.41323 0.72314,-0.72316 m -0.20659,0 c 0,-0.30991 -0.30993,-0.51652 -0.51655,-0.51652 -0.3099,0 -0.51652,0.20661 -0.51652,0.51652 0,0.20661 0.20662,0.51654 0.51652,0.51654 0.20662,0 0.51655,-0.30993 0.51655,-0.51654 m 2.99582,-0.82643 c 0,-0.30993 -0.30988,-0.51655 -0.51649,-0.51655 -0.30993,0 -0.51654,0.20662 -0.51654,0.51655 0,0.20661 0.20661,0.51652 0.51654,0.51652 0.20661,0 0.51649,-0.30991 0.51649,-0.51652 m -0.82642,-2.99588 c 0,-0.3099 -0.20661,-0.51652 -0.51652,-0.51652 -0.20661,0 -0.41323,0.20662 -0.41323,0.51652 0,0.20662 0.20662,0.51652 0.41323,0.51652 0.30991,0 0.51652,-0.3099 0.51652,-0.51652 m -2.99585,0.82646 c 0,-0.30994 -0.20662,-0.51655 -0.51655,-0.51655 -0.20661,0 -0.4132,0.20661 -0.4132,0.51655 0,0.20661 0.20659,0.51652 0.4132,0.51652 0.30993,0 0.51655,-0.30991 0.51655,-0.51652 m -1.65291,0.51652 h 0.10332 m 0,0 0.20662,0.72313 m 0,0 0.10329,-0.20659 m 0,0 v 0.20659 m 0,0 -0.10329,0.10332 m 0,0 h -0.10332 m 0,0 -0.20662,-0.82645 m 2.78927,3.20249 0.10329,0.3099 m 0,0 h -0.20661 m 0,0 v -0.20661 m 0,0 h -0.1033 m 0,0 v -0.10329 m 0,0 v -0.20662 m 0,0 h 0.1033 m 0,0 0.10332,0.1033 m 0,0 0.3099,-0.1033 m 0,0 v 0.20662 m 0,0 -0.10329,0.61983 m 0,0 -0.10332,0.1033 m 0,0 0.10332,-0.72313 m 0,0 h -0.20661 m 1.54958,0 0.1033,0.10329 0.10331,0.10332 m 0,0 h 0.20662 m 0,-0.10332 c 0.10329,0 0.10329,-0.20661 0.10329,-0.30991 m 0,0.1033 h -0.10329 m -0.10332,0.10332 c 0,0 0.10332,0 0,-0.10332 m -0.20661,0 c 0,0 0,0.10332 0.10331,0.10332 h 0.1033 m -0.20661,0 v -0.10332 l 0.10331,-0.1033 m 0,0 h 0.1033 m 0,0 -0.1033,-0.10332 m -0.20661,-0.10329 c 0,0 0,0.10329 0.1033,0.10329 h 0.10331 m -0.10331,-0.3099 c 0,0 -0.1033,0 -0.1033,0.10329 v 0.10332 m 0.1033,-0.10332 h 0.10331 0.1033 m 0,0 h 0.10332 m 0,0 -0.10332,-0.10329 -0.20661,-0.10332 m 0,0 -0.20659,0.20661 v 0.20661 m 0,-0.10329 c 0,0.10329 0.10329,0.20661 0.20659,0.20661 m -0.1033,0 v 0.1033 0.10332 m 1.13633,-4.64876 -0.51649,0.10329 m 0,0 v 0.10332 m 0,0 0.30991,-0.10332 m 0,0 -0.1033,0.41323 m 0,0 c -0.10332,0.10329 0,0.20661 0,0.20661 0.1033,0.1033 0.20662,0.1033 0.30988,0.1033 0.10332,-0.1033 0.10332,-0.20662 0.10332,-0.30991 m 0,0.10329 h -0.10332 m -0.20658,-0.10329 c -0.1033,0.10329 -0.1033,0.10329 0,0.20661 h 0.10332 c 0.10326,0 0.10326,-0.10332 0.10326,-0.20661 m -0.20658,0.10329 0.20658,-0.51652 m 0,0 v -0.10329 m 29.13217,-99.4832 c -0.30992,0 -0.61983,0.10332 -0.92975,0.206613 m 1.13636,-0.619839 c -0.51653,0 -1.03305,0.10332 -1.54958,0.309933 m -1.23967,1.136359 c -0.82644,1.136359 -0.82644,2.789237 0,3.925596 0.72314,1.239679 2.27272,1.859492 3.6157,1.549585 1.44627,-0.309906 2.58263,-1.446292 2.78924,-2.892557 m -5.16527,-3.718983 c -0.41322,0.309906 -0.82645,0.619839 -1.23967,1.136359 m 0.30992,-0.103294 c -0.92975,1.033039 -1.03305,2.582598 -0.30992,3.822277 0.72314,1.239679 2.16942,1.859492 3.51239,1.652905 1.44628,-0.309933 2.47933,-1.342999 2.78925,-2.789264 m 0,0.103293 h 0.1033 m -6.30163,-2.685917 0.20661,-0.103294 m 1.03305,-0.723159 -0.1033,-0.206613 m 1.54958,-0.309906 c -0.51653,0 -1.03305,0.206613 -1.44628,0.413226 m 1.44628,-0.516546 v 0.206613 m 2.99586,3.822303 0.51653,0.103293 m -0.51653,-1.033012 v 0.929719 m 0.51653,-0.826426 -0.51653,-0.103293 m 0.51653,0 c -0.20661,-1.239679 -1.03306,-2.376038 -2.16942,-2.789264 m -1.13636,0.413226 1.13636,-0.309933 m -1.34297,-0.206613 0.20661,0.516546 m -1.54958,0.309906 -0.10331,-0.413226 m -1.03305,0.723159 1.13636,-0.309933 m 3.92561,2.272745 c 0,-0.309933 -0.10331,-0.61984 -0.20661,-0.929773 m -0.61984,1.239653 0.92976,-0.30988 m -0.92976,0.206586 c -0.61983,0.103294 -0.92974,0.723133 -0.82644,1.342972 m 0.41322,1.549586 -0.41322,-1.446292 m -0.41322,1.652905 c 0.30992,-0.10332 0.61983,-0.10332 0.82644,-0.206613 m -1.23966,-1.239679 0.41322,1.446292 m -0.41322,-1.549585 c -0.10331,-0.516546 -0.72314,-0.929773 -1.34297,-0.72316 m -1.44628,0.413227 1.44628,-0.413227 m -1.7562,-0.516519 c 0.10331,0.309906 0.10331,0.619839 0.20661,0.929746 m 1.34297,-1.239653 -1.44627,0.4132 m 1.44627,-0.4132 c 0.51653,-0.206586 0.92975,-0.826426 0.72314,-1.446265 m -0.30991,-1.342972 0.30991,1.446265 m 0.92975,-0.206613 -0.41322,-1.549585 m 0.30992,1.446292 c 0.20661,0.619839 0.82644,0.929746 1.44627,0.826452 m 0.92975,-0.206613 -0.92975,0.206613 m 0,-2.376037 c -0.51652,-0.309933 -1.03305,-0.413227 -1.54958,-0.309933 m 3.61569,3.099197 c -0.1033,-1.239679 -0.92974,-2.272745 -2.06611,-2.789264 m 2.06611,3.718983 c 0.10331,-0.309933 0.10331,-0.619813 0,-0.929719 m 0.10331,0.103293 h -0.20661 m -2.16942,-2.789264 0.20661,-0.103293 m -1.13636,3.202463 c 0,-0.103293 -0.20661,-0.206586 -0.30991,-0.206586 -0.10331,0 -0.20661,0.103293 -0.20661,0.206586 0,0.103294 0.1033,0.206587 0.20661,0.206587 0.1033,0 0.30991,-0.103293 0.30991,-0.206587 m -1.44627,-1.136359 c 0,-0.309906 -0.41323,-0.619839 -0.72314,-0.619839 -0.41322,0 -0.72314,0.309933 -0.72314,0.619839 0,0.413227 0.30992,0.72316 0.72314,0.72316 0.30991,0 0.72314,-0.309933 0.72314,-0.72316 m 2.99586,-0.826426 c 0,-0.309933 -0.41323,-0.619839 -0.72314,-0.619839 -0.41322,0 -0.72314,0.309906 -0.72314,0.619839 0,0.4132 0.30992,0.723133 0.72314,0.723133 0.30991,0 0.72314,-0.309933 0.72314,-0.723133 m 0.82644,2.995825 c 0,-0.309907 -0.41322,-0.61984 -0.72314,-0.61984 -0.41322,0 -0.72314,0.309933 -0.72314,0.61984 0,0.413226 0.30992,0.723132 0.72314,0.723132 0.30992,0 0.72314,-0.309906 0.72314,-0.723132 m -2.99586,0.826452 c 0,-0.309906 -0.41322,-0.619839 -0.72314,-0.619839 -0.41322,0 -0.72313,0.309933 -0.72313,0.619839 0,0.413226 0.30991,0.723133 0.72313,0.723133 0.30992,0 0.72314,-0.309907 0.72314,-0.723133 m -0.20661,0 c 0,-0.206613 -0.30992,-0.413226 -0.51653,-0.413226 -0.30991,0 -0.51653,0.206613 -0.51653,0.413226 0,0.309906 0.20662,0.51652 0.51653,0.51652 0.20661,0 0.51653,-0.206614 0.51653,-0.51652 m 2.99586,-0.826452 c 0,-0.206614 -0.30992,-0.413227 -0.51653,-0.413227 -0.30992,0 -0.51653,0.206613 -0.51653,0.413227 0,0.309932 0.20661,0.516546 0.51653,0.516546 0.20661,0 0.51653,-0.206614 0.51653,-0.516546 m -0.82645,-2.995825 c 0,-0.206613 -0.30991,-0.413226 -0.51652,-0.413226 -0.30992,0 -0.51653,0.206613 -0.51653,0.413226 0,0.309907 0.20661,0.51652 0.51653,0.51652 0.20661,0 0.51652,-0.206613 0.51652,-0.51652 m -2.99585,0.826426 c 0,-0.206613 -0.30992,-0.413226 -0.51653,-0.413226 -0.30992,0 -0.51653,0.206613 -0.51653,0.413226 0,0.309933 0.20661,0.516546 0.51653,0.516546 0.20661,0 0.51653,-0.206613 0.51653,-0.516546 m -1.65289,0.516546 h 0.1033 m 0,0 0.20661,0.723107 m 0,0 0.10331,-0.103294 m 0,0 v 0.103294 m 0,0 -0.10331,0.103293 m 0,0 -0.1033,0.10332 m 0,0 -0.20661,-0.92972 m 2.78925,3.305758 v 0.206613 m 0,0 -0.10331,0.103293 m 0,0 v -0.309906 m 0,0 h -0.10331 m 0,0 v -0.10332 m 0,0 v -0.103294 m 0,0 h 0.10331 m 0,0 0.10331,0.103294 m 0,0 0.30991,-0.103294 m 0,0 v 0.103294 m 0,0 -0.1033,0.723159 m 0,0 h -0.10331 m 0,0 0.10331,-0.723159 m 0,0 -0.20661,0.10332 m 1.54958,0 0.1033,0.103293 h 0.10331 m 0,0 h 0.20661 m 0,0 c 0.10331,-0.103293 0.10331,-0.206613 0.10331,-0.309907 m 0,0.103294 h -0.10331 m -0.10331,0 c 0,0 0.10331,0 0,-0.103294 m -0.20661,0.103294 h 0.10331 c 0,0.10332 0,0.10332 0.1033,0 m -0.20661,0 v -0.103294 h 0.10331 m 0,0 h 0.1033 m 0,0 -0.1033,-0.103319 m -0.20661,-0.206614 c 0,0 0,0.10332 0.1033,0.10332 h 0.10331 m -0.10331,-0.206613 h -0.1033 v 0.103293 m 0.1033,-0.103293 h 0.10331 l 0.1033,0.103293 m 0,0 0.10331,-0.103293 m 0,0 -0.10331,-0.10332 h -0.20661 m 0,0 -0.20661,0.10332 v 0.206613 m 0,0 c 0,0.103294 0.10331,0.103294 0.20661,0.103294 m -0.1033,0.103319 v 0.103294 0.10332 m 1.13636,-4.752049 -0.51653,0.103319 m 0,0 v 0.103294 m 0,0 h 0.30992 m 0,0 -0.20661,0.413226 m 0.1033,-0.10332 c -0.1033,0.10332 0,0.206613 0,0.309933 0.10331,0.103293 0.20661,0.103293 0.30992,0 0.10331,0 0.10331,-0.10332 0.10331,-0.206613 m 0,0 h -0.10331 m -0.20661,0 c -0.10331,0 -0.10331,0.103293 0,0.103293 0,0.10332 0.1033,0.10332 0.1033,0 0.10331,0 0.10331,-0.103293 0.10331,-0.103293 m -0.20661,0 0.20661,-0.51652 m 0,0 v -0.103319 m -2.78925,31.714783 c -0.30992,0.103294 -0.61983,0.103294 -0.92975,0.206587 m 1.13636,-0.619813 c -0.51653,0 -1.03305,0.206613 -1.54958,0.413226 m -1.23967,1.033039 c -0.82644,1.239679 -0.82644,2.789264 0,4.028943 0.72314,1.239652 2.27272,1.859492 3.6157,1.549585 1.44627,-0.309933 2.58263,-1.446292 2.78924,-2.892584 m -5.16527,-3.718983 c -0.41322,0.206587 -0.82645,0.619813 -1.23967,1.033039 m 0.30992,-0.103293 c -0.92975,1.136359 -1.03305,2.685944 -0.30992,3.925623 0.72314,1.239652 2.16942,1.859492 3.51239,1.549585 1.44628,-0.206613 2.47933,-1.342972 2.78925,-2.685971 m 0,0 h 0.1033 m -6.30163,-2.582624 0.20661,-0.10332 m 1.03305,-0.826452 -0.1033,-0.206587 m 1.54958,-0.206613 c -0.51653,0 -1.03305,0.103293 -1.44628,0.309907 m 1.44628,-0.51652 v 0.206613 m 2.99586,3.925596 h 0.51653 m -0.51653,-0.929745 v 0.929745 m 0.51653,-0.929745 h -0.51653 m 0.51653,0 c -0.20661,-1.342972 -1.03306,-2.376038 -2.16942,-2.789238 m -1.13636,0.309907 1.13636,-0.309907 m -1.34297,-0.206613 0.20661,0.51652 m -1.54958,0.413226 -0.10331,-0.516546 m -1.03305,0.826452 1.13636,-0.309906 m 3.92561,2.169424 c 0,-0.309932 -0.10331,-0.516546 -0.20661,-0.826452 m -0.61984,1.136359 0.92976,-0.206613 m -0.92976,0.10332 c -0.61983,0.206613 -0.92974,0.826426 -0.82644,1.446265 m 0.41322,1.446292 -0.41322,-1.446292 m -0.41322,1.652905 c 0.30992,0 0.61983,-0.10332 0.82644,-0.206613 m -1.23966,-1.239679 0.41322,1.549585 m -0.41322,-1.549585 c -0.10331,-0.619839 -0.72314,-0.929746 -1.34297,-0.826452 m -1.44628,0.516546 1.44628,-0.413227 m -1.7562,-0.516519 c 0.10331,0.309906 0.10331,0.619813 0.20661,0.826426 m 1.34297,-1.136359 -1.44627,0.309933 m 1.44627,-0.413226 c 0.51653,-0.10332 0.92975,-0.72316 0.72314,-1.342973 m -0.30991,-1.446291 0.30991,1.446291 m 0.92975,-0.206613 -0.41322,-1.446291 m 0.30992,1.446291 c 0.20661,0.51652 0.82644,0.929746 1.44627,0.723133 m 0.92975,-0.206613 -0.92975,0.309906 m 0,-2.479331 c -0.51652,-0.206613 -1.03305,-0.309906 -1.54958,-0.309906 m 3.61569,3.202464 c -0.1033,-1.239653 -0.92974,-2.376038 -2.06611,-2.892558 m 2.06611,3.822303 c 0.10331,-0.309906 0.10331,-0.619812 0,-0.929745 m 0.10331,0 h -0.20661 m -2.16942,-2.789238 0.20661,-0.10332 m -1.13636,3.202491 c 0,-0.10332 -0.20661,-0.206614 -0.30991,-0.206614 -0.10331,0 -0.20661,0.103294 -0.20661,0.206614 0,0.103293 0.1033,0.309906 0.20661,0.309906 0.1033,0 0.30991,-0.206613 0.30991,-0.309906 m -1.44627,-1.033066 c 0,-0.413226 -0.41323,-0.723133 -0.72314,-0.723133 -0.41322,0 -0.72314,0.309907 -0.72314,0.723133 0,0.309906 0.30992,0.723133 0.72314,0.723133 0.30991,0 0.72314,-0.413227 0.72314,-0.723133 m 2.99586,-0.826453 c 0,-0.413226 -0.41323,-0.723132 -0.72314,-0.723132 -0.41322,0 -0.72314,0.309906 -0.72314,0.723132 0,0.309933 0.30992,0.723133 0.72314,0.723133 0.30991,0 0.72314,-0.4132 0.72314,-0.723133 m 0.82644,2.995878 c 0,-0.413227 -0.41322,-0.723133 -0.72314,-0.723133 -0.41322,0 -0.72314,0.309906 -0.72314,0.723133 0,0.309906 0.30992,0.723132 0.72314,0.723132 0.30992,0 0.72314,-0.413226 0.72314,-0.723132 m -2.99586,0.826452 c 0,-0.413226 -0.41322,-0.723159 -0.72314,-0.723159 -0.41322,0 -0.72313,0.309933 -0.72313,0.723159 0,0.309906 0.30991,0.723133 0.72313,0.723133 0.30992,0 0.72314,-0.413227 0.72314,-0.723133 m -0.20661,0 c 0,-0.309933 -0.30992,-0.516546 -0.51653,-0.516546 -0.30991,0 -0.51653,0.206613 -0.51653,0.516546 0,0.206613 0.20662,0.51652 0.51653,0.51652 0.20661,0 0.51653,-0.309907 0.51653,-0.51652 m 2.99586,-0.826452 c 0,-0.309933 -0.30992,-0.516547 -0.51653,-0.516547 -0.30992,0 -0.51653,0.206614 -0.51653,0.516547 0,0.206613 0.20661,0.516519 0.51653,0.516519 0.20661,0 0.51653,-0.309906 0.51653,-0.516519 m -0.82645,-2.995878 c 0,-0.309906 -0.30991,-0.516519 -0.51652,-0.516519 -0.30992,0 -0.51653,0.206613 -0.51653,0.516519 0,0.206614 0.20661,0.516546 0.51653,0.516546 0.20661,0 0.51652,-0.309932 0.51652,-0.516546 m -2.99585,0.826453 c 0,-0.309907 -0.30992,-0.51652 -0.51653,-0.51652 -0.30992,0 -0.51653,0.206613 -0.51653,0.51652 0,0.206613 0.20661,0.51652 0.51653,0.51652 0.20661,0 0.51653,-0.309907 0.51653,-0.51652 m -1.65289,0.51652 0.1033,-0.103294 m 0,0 0.20661,0.826453 m 0,0 0.10331,-0.206613 m 0,0 v 0.206613 m 0,0 -0.10331,0.103293 m 0,0 h -0.1033 m 0,0 -0.20661,-0.826452 m 2.78925,3.20249 V 78.0473 m 0,0 h -0.10331 m 0,0 v -0.206613 m 0,0 h -0.10331 m 0,0 v -0.103293 m 0,0 v -0.206613 m 0,0 h 0.10331 m 0,0 0.10331,0.103293 m 0,0 0.30991,-0.103293 m 0,0 v 0.206613 m 0,0 -0.1033,0.619839 m 0,0 -0.10331,0.103293 m 0,0 0.10331,-0.723132 m 0,0 h -0.20661 m 1.54958,0 0.1033,0.103293 0.10331,0.10332 m 0,0 h 0.20661 m 0,-0.10332 c 0.10331,0 0.10331,-0.206613 0.10331,-0.309906 m 0,0.103293 h -0.10331 m -0.10331,0.10332 c 0,0 0.10331,-0.10332 0,-0.10332 m -0.20661,0 c 0,0 0,0.10332 0.10331,0.10332 h 0.1033 m -0.20661,0 v -0.10332 l 0.10331,-0.103293 m 0,0 h 0.1033 m 0,0 -0.1033,-0.10332 m -0.20661,-0.103294 c 0,0 0,0.103294 0.1033,0.103294 h 0.10331 m -0.10331,-0.309907 c 0,0 -0.1033,0 -0.1033,0.10332 v 0.103293 m 0.1033,-0.103293 h 0.10331 0.1033 m 0,0 h 0.10331 m 0,0 -0.10331,-0.10332 -0.20661,-0.103293 m 0,0 -0.20661,0.206613 v 0.206587 m 0,-0.103294 c 0,0.103294 0.10331,0.206614 0.20661,0.206614 m -0.1033,0 v 0.103293 0.10332 m 1.13636,-4.648756 -0.51653,0.103293 m 0,0 v 0.10332 m 0,0 0.30992,-0.10332 m 0,0 -0.20661,0.413227 m 0.1033,0 c -0.1033,0.103319 0,0.206613 0,0.206613 0.10331,0.103293 0.20661,0.103293 0.30992,0.103293 0.10331,-0.103293 0.10331,-0.206587 0.10331,-0.309906 m 0,0.103319 h -0.10331 m -0.20661,-0.103319 c -0.10331,0.103319 -0.10331,0.103319 0,0.206613 h 0.1033 c 0.10331,0 0.10331,-0.103294 0.10331,-0.206613 m -0.20661,0.103319 0.20661,-0.516546 m 0,0 v -0.103293 m -2.78925,31.714782 c -0.30992,0 -0.61983,0.10332 -0.92975,0.20661 m 1.13636,-0.61983 c -0.51653,0 -1.03305,0.10332 -1.54958,0.30993 m -1.23967,1.13636 c -0.82644,1.13636 -0.82644,2.78923 0,3.92559 0.72314,1.23966 2.27272,1.8595 3.6157,1.54959 1.44627,-0.30993 2.58263,-1.44629 2.78924,-2.89256 m -5.16527,-3.71898 c -0.41322,0.3099 -0.82645,0.61984 -1.23967,1.13636 m 0.30992,-0.10332 c -0.92975,1.03306 -1.03305,2.58262 -0.30992,3.8223 0.72314,1.23965 2.16942,1.85949 3.51239,1.65288 1.44628,-0.30991 2.47933,-1.34297 2.78925,-2.78924 m 0,0.10329 h 0.1033 m -6.30163,-2.68591 0.20661,-0.10332 m 1.03305,-0.72314 -0.1033,-0.20661 m 1.54958,-0.3099 c -0.51653,0 -1.03305,0.20661 -1.44628,0.41322 m 1.44628,-0.51654 v 0.20661 m 2.99586,3.92559 h 0.51653 m -0.51653,-1.03303 v 1.03303 m 0.51653,-0.92971 -0.51653,-0.10332 m 0.51653,0 c -0.20661,-1.23966 -1.03306,-2.37602 -2.16942,-2.78924 m -1.13636,0.41322 1.13636,-0.30993 m -1.34297,-0.20661 0.20661,0.51654 m -1.54958,0.4132 -0.10331,-0.51652 m -1.03305,0.72314 1.13636,-0.20662 m 3.92561,2.16943 c 0,-0.30991 -0.10331,-0.61981 -0.20661,-0.92975 m -0.61984,1.23968 0.92976,-0.30993 m -0.92976,0.20661 c -0.61983,0.10332 -0.92974,0.72313 -0.82644,1.34295 m 0.41322,1.54958 -0.41322,-1.44626 m -0.41322,1.65288 c 0.30992,-0.1033 0.61983,-0.1033 0.82644,-0.20662 m -1.23966,-1.23965 0.41322,1.44627 m -0.41322,-1.54959 c -0.10331,-0.51652 -0.72314,-0.92975 -1.34297,-0.72313 m -1.44628,0.41322 1.44628,-0.41322 m -1.7562,-0.5165 c 0.10331,0.30988 0.10331,0.61982 0.20661,0.92972 m 1.34297,-1.23965 -1.44627,0.4132 m 1.44627,-0.4132 c 0.51653,-0.20661 0.92975,-0.82642 0.72314,-1.44626 m -0.30991,-1.34298 0.30991,1.44627 m 0.92975,-0.20661 -0.41322,-1.54959 m 0.30992,1.44629 c 0.20661,0.61984 0.82644,0.92975 1.44627,0.82646 m 0.92975,-0.20662 -0.92975,0.20662 m 0,-2.37604 c -0.51652,-0.30993 -1.03305,-0.41323 -1.54958,-0.30993 m 3.61569,3.09917 c -0.1033,-1.23966 -0.92974,-2.27272 -2.06611,-2.78924 m 2.06611,3.71898 c 0.10331,-0.3099 0.10331,-0.61981 0,-0.92974 m 0.10331,0.10332 h -0.20661 m -2.16942,-2.78927 0.20661,-0.10329 m -6.09502,2.27272 h -0.10331 m 5.06197,0.92974 c 0,-0.10329 -0.20661,-0.20661 -0.30991,-0.20661 -0.10331,0 -0.20661,0.10332 -0.20661,0.20661 0,0.10332 0.1033,0.20662 0.20661,0.20662 0.1033,0 0.30991,-0.1033 0.30991,-0.20662 m -1.44627,-1.13636 c 0,-0.3099 -0.41323,-0.61984 -0.72314,-0.61984 -0.41322,0 -0.72314,0.30994 -0.72314,0.61984 0,0.41323 0.30992,0.72314 0.72314,0.72314 0.30991,0 0.72314,-0.30991 0.72314,-0.72314 m 2.99586,-0.82645 c 0,-0.30991 -0.41323,-0.61981 -0.72314,-0.61981 -0.41322,0 -0.72314,0.3099 -0.72314,0.61981 0,0.41323 0.30992,0.72316 0.72314,0.72316 0.30991,0 0.72314,-0.30993 0.72314,-0.72316 m 0.82644,2.99585 c 0,-0.30991 -0.41322,-0.61984 -0.72314,-0.61984 -0.41322,0 -0.72314,0.30993 -0.72314,0.61984 0,0.41323 0.30992,0.72313 0.72314,0.72313 0.30992,0 0.72314,-0.3099 0.72314,-0.72313 m -2.99586,0.82645 c 0,-0.30993 -0.41322,-0.61984 -0.72314,-0.61984 -0.41322,0 -0.72313,0.30991 -0.72313,0.61984 0,0.41323 0.30991,0.72314 0.72313,0.72314 0.30992,0 0.72314,-0.30991 0.72314,-0.72314 m -0.20661,0 c 0,-0.20661 -0.30992,-0.41322 -0.51653,-0.41322 -0.30991,0 -0.51653,0.20661 -0.51653,0.41322 0,0.30991 0.20662,0.51652 0.51653,0.51652 0.20661,0 0.51653,-0.20661 0.51653,-0.51652 m 2.99586,-0.82645 c 0,-0.20661 -0.30992,-0.41323 -0.51653,-0.41323 -0.30992,0 -0.51653,0.20662 -0.51653,0.41323 0,0.30991 0.20661,0.51652 0.51653,0.51652 0.20661,0 0.51653,-0.20661 0.51653,-0.51652 m -0.82645,-2.99585 c 0,-0.20661 -0.30991,-0.41323 -0.51652,-0.41323 -0.30992,0 -0.51653,0.20662 -0.51653,0.41323 0,0.30993 0.20661,0.51655 0.51653,0.51655 0.20661,0 0.51652,-0.20662 0.51652,-0.51655 m -2.99585,0.82645 c 0,-0.20661 -0.30992,-0.41322 -0.51653,-0.41322 -0.30992,0 -0.51653,0.20661 -0.51653,0.41322 0,0.30994 0.20661,0.51652 0.51653,0.51652 0.20661,0 0.51653,-0.20658 0.51653,-0.51652 m -1.65289,0.51652 h 0.1033 m 0,0 0.20661,0.72316 m 0,0 0.10331,-0.10332 m 0,0 v 0.10332 m 0,0 -0.10331,0.1033 m 0,0 -0.1033,0.10331 m 0,0 -0.20661,-0.92977 m 2.78925,3.30579 v 0.20658 m 0,0 -0.10331,0.10332 m 0,0 v -0.3099 m 0,0 h -0.10331 m 0,0 v -0.10332 m 0,0 v -0.1033 m 0,0 h 0.10331 m 0,0 0.10331,0.1033 m 0,0 0.30991,-0.1033 m 0,0 v 0.1033 m 0,0 -0.1033,0.72313 m 0,0 h -0.10331 m 0,0 0.10331,-0.72313 m 0,0 -0.20661,0.10332 m 1.54958,0 0.1033,0.10329 h 0.10331 m 0,0 h 0.20661 m 0,0 c 0.10331,-0.10329 0.10331,-0.20661 0.10331,-0.30991 m 0,0.1033 h -0.10331 m -0.10331,0.10332 c 0,0 0.10331,-0.10332 0,-0.10332 m -0.20661,0 h 0.10331 c 0,0.10332 0,0.10332 0.1033,0 m -0.20661,0 v -0.1033 h 0.10331 m 0,0 h 0.1033 m 0,0 -0.1033,-0.10332 m -0.20661,-0.20661 c 0,0.10332 0,0.10332 0.1033,0.10332 0,0.10329 0,0.10329 0.10331,0 m -0.10331,-0.20661 h -0.1033 v 0.10329 m 0.1033,-0.10329 h 0.10331 l 0.1033,0.10329 m 0,0 0.10331,-0.10329 m 0,0 -0.10331,-0.10332 h -0.20661 m 0,0 -0.20661,0.10332 v 0.20661 m 0,0 c 0,0.10329 0.10331,0.10329 0.20661,0.10329 m -0.1033,0.10332 v 0.1033 0.10332 m 1.13636,-4.75205 -0.51653,0.10329 m 0,0 v 0.10332 m 0,0 h 0.30992 m 0,0 -0.20661,0.41323 m 0.1033,-0.10332 c -0.1033,0.10332 0,0.20661 0,0.30993 0.10331,0.10329 0.20661,0.10329 0.30992,0 0.10331,0 0.10331,-0.10332 0.10331,-0.20661 m 0,0 h -0.10331 m -0.20661,0 c -0.10331,0 -0.10331,0.10329 0,0.10329 0,0.10332 0.1033,0.10332 0.1033,0 0.10331,0 0.10331,-0.10329 0.10331,-0.10329 m -0.20661,0 0.20661,-0.51655 m 0,0 v -0.10329 m -2.78925,31.71475 c -0.30992,0.10332 -0.61983,0.10332 -0.92975,0.20662 m 1.13636,-0.61982 c -0.51653,0 -1.03305,0.20659 -1.54958,0.4132 m -1.23967,1.03307 c -0.82644,1.23968 -0.82644,2.78926 0,4.02892 0.72314,1.23967 2.27272,1.85951 3.6157,1.54961 1.44627,-0.30994 2.58263,-1.44629 2.78924,-2.89259 m -5.16527,-3.71901 c -0.41322,0.20662 -0.82645,0.61984 -1.23967,1.03307 m 0.30992,-0.10329 c -0.92975,1.13636 -1.03305,2.68594 -0.30992,3.92562 0.72314,1.23965 2.16942,1.85949 3.51239,1.54958 1.44628,-0.20661 2.47933,-1.34299 2.78925,-2.68597 m 0,0 h 0.1033 m -6.30163,-2.58262 0.20661,-0.10332 m 1.03305,-0.82645 -0.1033,-0.20662 m 1.54958,-0.20661 c -0.51653,0 -1.03305,0.10332 -1.44628,0.30993 m 1.44628,-0.51652 v 0.20659 m 2.99586,3.92562 h 0.51653 m -0.51653,-0.92974 v 0.92974 m 0.51653,-0.92974 h -0.51653 m 0.51653,0 c -0.20661,-1.34297 -1.03306,-2.37604 -2.16942,-2.78927 m -1.13636,0.30994 1.13636,-0.30994 m -1.34297,-0.20661 0.20661,0.51655 m -1.54958,0.41322 -0.10331,-0.51654 m -1.03305,0.82645 1.13636,-0.30991 m 3.92561,2.16943 c 0,-0.30993 -0.10331,-0.51655 -0.20661,-0.82645 m -0.61984,1.13635 0.92976,-0.20661 m -0.92976,0.10332 c -0.61983,0.20659 -0.92974,0.82643 -0.82644,1.44627 m 0.41322,1.44629 -0.41322,-1.44629 m -0.41322,1.6529 c 0.30992,0 0.61983,-0.10332 0.82644,-0.20661 m -1.23966,-1.23968 0.41322,1.54958 m -0.41322,-1.54958 c -0.10331,-0.61984 -0.72314,-0.92975 -1.34297,-0.82645 m -1.44628,0.51654 1.44628,-0.41322 m -1.7562,-0.51655 c 0.10331,0.30993 0.10331,0.61984 0.20661,0.82645 m 1.34297,-1.13636 -1.44627,0.30991 m 1.44627,-0.4132 c 0.51653,-0.10332 0.92975,-0.72316 0.72314,-1.343 m -0.30991,-1.44626 0.30991,1.44626 m 0.92975,-0.20661 -0.41322,-1.44627 m 0.30992,1.44627 c 0.20661,0.51655 0.82644,0.92977 1.44627,0.72316 m 0.92975,-0.20661 -0.92975,0.3099 m 0,-2.47933 c -0.51652,-0.20661 -1.03305,-0.30991 -1.54958,-0.30991 m 3.61569,3.20247 c -0.1033,-1.23968 -0.92974,-2.37604 -2.06611,-2.89256 m 2.06611,3.8223 c 0.10331,-0.3099 0.10331,-0.61981 0,-0.92974 m 0.10331,0 h -0.20661 m -2.16942,-2.78927 0.20661,-0.10329 m -6.09502,2.37604 h -0.10331 m 5.06197,0.82645 c 0,-0.10332 -0.20661,-0.20661 -0.30991,-0.20661 -0.10331,0 -0.20661,0.10329 -0.20661,0.20661 0,0.10329 0.1033,0.30991 0.20661,0.30991 0.1033,0 0.30991,-0.20662 0.30991,-0.30991 m -1.44627,-1.03306 c 0,-0.41323 -0.41323,-0.72314 -0.72314,-0.72314 -0.41322,0 -0.72314,0.30991 -0.72314,0.72314 0,0.3099 0.30992,0.72313 0.72314,0.72313 0.30991,0 0.72314,-0.41323 0.72314,-0.72313 m 2.99586,-0.82646 c 0,-0.41322 -0.41323,-0.72313 -0.72314,-0.72313 -0.41322,0 -0.72314,0.30991 -0.72314,0.72313 0,0.30991 0.30992,0.72314 0.72314,0.72314 0.30991,0 0.72314,-0.41323 0.72314,-0.72314 m 0.82644,2.99588 c 0,-0.41323 -0.41322,-0.72316 -0.72314,-0.72316 -0.41322,0 -0.72314,0.30993 -0.72314,0.72316 0,0.30991 0.30992,0.72313 0.72314,0.72313 0.30992,0 0.72314,-0.41322 0.72314,-0.72313 m -2.99586,0.82643 c 0,-0.4132 -0.41322,-0.72314 -0.72314,-0.72314 -0.41322,0 -0.72313,0.30994 -0.72313,0.72314 0,0.30993 0.30991,0.72316 0.72313,0.72316 0.30992,0 0.72314,-0.41323 0.72314,-0.72316 m -0.20661,0 c 0,-0.30991 -0.30992,-0.51652 -0.51653,-0.51652 -0.30991,0 -0.51653,0.20661 -0.51653,0.51652 0,0.20661 0.20662,0.51654 0.51653,0.51654 0.20661,0 0.51653,-0.30993 0.51653,-0.51654 m 2.99586,-0.82643 c 0,-0.30993 -0.30992,-0.51655 -0.51653,-0.51655 -0.30992,0 -0.51653,0.20662 -0.51653,0.51655 0,0.20661 0.20661,0.51652 0.51653,0.51652 0.20661,0 0.51653,-0.30991 0.51653,-0.51652 m -0.82645,-2.99588 c 0,-0.3099 -0.30991,-0.51652 -0.51652,-0.51652 -0.30992,0 -0.51653,0.20662 -0.51653,0.51652 0,0.20662 0.20661,0.51652 0.51653,0.51652 0.20661,0 0.51652,-0.3099 0.51652,-0.51652 m -2.99585,0.82646 c 0,-0.30994 -0.30992,-0.51655 -0.51653,-0.51655 -0.30992,0 -0.51653,0.20661 -0.51653,0.51655 0,0.20661 0.20661,0.51652 0.51653,0.51652 0.20661,0 0.51653,-0.30991 0.51653,-0.51652 m -1.65289,0.51652 h 0.1033 m 0,0 0.20661,0.72313 m 0,0 0.10331,-0.20659 m 0,0 v 0.20659 m 0,0 -0.10331,0.10332 m 0,0 h -0.1033 m 0,0 -0.20661,-0.82645 m 2.78925,3.20249 v 0.3099 m 0,0 h -0.10331 m 0,0 v -0.20661 m 0,0 h -0.10331 m 0,0 v -0.10329 m 0,0 v -0.20662 m 0,0 h 0.10331 m 0,0 0.10331,0.1033 m 0,0 0.30991,-0.1033 m 0,0 v 0.20662 m 0,0 -0.1033,0.61983 m 0,0 -0.10331,0.1033 m 0,0 0.10331,-0.72313 m 0,0 h -0.20661 m 1.54958,0 0.1033,0.10329 0.10331,0.10332 m 0,0 h 0.20661 m 0,-0.10332 c 0.10331,0 0.10331,-0.20661 0.10331,-0.30991 m 0,0.1033 h -0.10331 m -0.10331,0.10332 c 0,0 0.10331,0 0,-0.10332 m -0.20661,0 c 0,0 0,0.10332 0.10331,0.10332 h 0.1033 m -0.20661,0 v -0.10332 l 0.10331,-0.1033 m 0,0 h 0.1033 m 0,0 -0.1033,-0.10332 m -0.20661,-0.10329 c 0,0 0,0.10329 0.1033,0.10329 h 0.10331 m -0.10331,-0.3099 c 0,0 -0.1033,0 -0.1033,0.10329 v 0.10332 m 0.1033,-0.10332 h 0.10331 0.1033 m 0,0 h 0.10331 m 0,0 -0.10331,-0.10329 -0.20661,-0.10332 m 0,0 -0.20661,0.20661 v 0.20661 m 0,-0.10329 c 0,0.10329 0.10331,0.20661 0.20661,0.20661 m -0.1033,0 v 0.1033 0.10332 m 1.13636,-4.64876 -0.51653,0.10329 m 0,0 v 0.10332 m 0,0 0.30992,-0.10332 m 0,0 -0.20661,0.41323 m 0.1033,0 c -0.1033,0.10329 0,0.20661 0,0.20661 0.10331,0.1033 0.20661,0.1033 0.30992,0.1033 0.10331,-0.1033 0.10331,-0.20662 0.10331,-0.30991 m 0,0.10329 h -0.10331 m -0.20661,-0.10329 c -0.10331,0.10329 -0.10331,0.10329 0,0.20661 h 0.1033 c 0.10331,0 0.10331,-0.10332 0.10331,-0.20661 m -0.20661,0.10329 0.20661,-0.51652 m 0,0 v -0.10329 M 130.00996,71.952279 c -0.30991,0.103294 -0.61984,0.103294 -0.82645,0.206587 m 1.03306,-0.619813 c -0.51652,0 -1.03306,0.206613 -1.44629,0.413226 m -1.23965,1.033039 c -0.82643,1.239679 -0.92972,2.789264 -0.10332,4.028943 0.82645,1.239652 2.27274,1.859492 3.71901,1.549585 1.44629,-0.309933 2.47936,-1.446292 2.78926,-2.892584 m -5.1653,-3.718983 c -0.51652,0.206587 -0.92974,0.619813 -1.23965,1.033039 m 0.30991,-0.103293 c -0.92972,1.136359 -1.03304,2.685944 -0.30991,3.925623 0.61984,1.239652 2.0661,1.859492 3.5124,1.549585 1.34297,-0.206613 2.47933,-1.342972 2.68594,-2.685971 m 0,0 h 0.10329 m -6.30163,-2.582624 0.20661,-0.10332 m 1.03304,-0.826452 v -0.206587 m 1.54959,-0.206613 c -0.51652,0 -1.03304,0.103293 -1.54959,0.309907 m 1.44629,-0.51652 0.1033,0.206613 m 2.89258,3.925596 h 0.51652 m -0.41323,-0.929745 -0.10329,0.929745 m 0.51652,-0.929745 h -0.41323 m 0.41323,0 c -0.10329,-1.342972 -0.92975,-2.376038 -2.16942,-2.789238 m -1.13636,0.309907 1.13636,-0.309907 m -1.23968,-0.206613 0.10332,0.51652 m -1.54959,0.413226 -0.10332,-0.516546 m -1.03304,0.826452 1.13636,-0.309906 m 4.02892,2.169424 c 0,-0.309932 -0.1033,-0.516546 -0.20662,-0.826452 m -0.72313,1.136359 0.92975,-0.206613 m -0.92975,0.10332 c -0.61984,0.206613 -0.92974,0.826426 -0.82645,1.446265 m 0.41323,1.446292 -0.30991,-1.446292 m -0.51655,1.652905 c 0.30994,0 0.61984,-0.10332 0.92978,-0.206613 m -1.343,-1.239679 0.41322,1.549585 m -0.41322,-1.549585 c -0.1033,-0.619839 -0.72314,-0.929746 -1.34298,-0.826452 m -1.44626,0.516546 1.44626,-0.413227 m -1.65287,-0.516519 c 0,0.309906 0.10329,0.619813 0.20661,0.826426 m 1.23965,-1.136359 -1.44626,0.309933 m 1.44626,-0.413226 c 0.61984,-0.10332 0.92977,-0.72316 0.82645,-1.342973 m -0.41322,-1.446291 0.41322,1.446291 m 0.82646,-0.206613 -0.41323,-1.446291 m 0.41323,1.446291 c 0.10329,0.51652 0.72313,0.929746 1.34297,0.723133 m 0.92974,-0.206613 -0.92974,0.309906 m 0.10332,-2.479331 c -0.51655,-0.206613 -1.03307,-0.309906 -1.65291,-0.309906 m 3.71901,3.202464 c -0.10332,-1.239653 -0.92974,-2.376038 -2.0661,-2.892558 m 2.0661,3.822303 v -0.929745 m 0,0 h -0.20661 m -2.16942,-2.789238 0.30993,-0.10332 m 2.68594,0.929746 c 0,0 0.1033,0 0,0 m -3.92562,2.272745 c 0,-0.10332 -0.10332,-0.206614 -0.20661,-0.206614 -0.10332,0 -0.20662,0.103294 -0.20662,0.206614 0,0.103293 0.1033,0.309906 0.20662,0.309906 0.10329,0 0.20661,-0.206613 0.20661,-0.309906 m -1.44629,-1.033066 c 0,-0.413226 -0.30991,-0.723133 -0.72314,-0.723133 -0.3099,0 -0.61983,0.309907 -0.61983,0.723133 0,0.309906 0.30993,0.723133 0.61983,0.723133 0.41323,0 0.72314,-0.413227 0.72314,-0.723133 m 2.99587,-0.826453 c 0,-0.413226 -0.3099,-0.723132 -0.72313,-0.723132 -0.30993,0 -0.61984,0.309906 -0.61984,0.723132 0,0.309933 0.30991,0.723133 0.61984,0.723133 0.41323,0 0.72313,-0.4132 0.72313,-0.723133 m 0.82646,2.995878 c 0,-0.413227 -0.41323,-0.723133 -0.72316,-0.723133 -0.4132,0 -0.72313,0.309906 -0.72313,0.723133 0,0.309906 0.30993,0.723132 0.72313,0.723132 0.30993,0 0.72316,-0.413226 0.72316,-0.723132 m -2.99588,0.826452 c 0,-0.413226 -0.41323,-0.723159 -0.72313,-0.723159 -0.41323,0 -0.72316,0.309933 -0.72316,0.723159 0,0.309906 0.30993,0.723133 0.72316,0.723133 0.3099,0 0.72313,-0.413227 0.72313,-0.723133 m -0.20661,0 c 0,-0.309933 -0.30991,-0.516546 -0.51652,-0.516546 -0.30994,0 -0.51655,0.206613 -0.51655,0.516546 0,0.206613 0.20661,0.51652 0.51655,0.51652 0.20661,0 0.51652,-0.309907 0.51652,-0.51652 m 2.99587,-0.826452 c 0,-0.309933 -0.30993,-0.516547 -0.51654,-0.516547 -0.30991,0 -0.51652,0.206614 -0.51652,0.516547 0,0.206613 0.20661,0.516519 0.51652,0.516519 0.20661,0 0.51654,-0.309906 0.51654,-0.516519 m -0.82645,-2.995878 c 0,-0.309906 -0.20661,-0.516519 -0.51652,-0.516519 -0.20661,0 -0.41322,0.206613 -0.41322,0.516519 0,0.206614 0.20661,0.516546 0.41322,0.516546 0.30991,0 0.51652,-0.309932 0.51652,-0.516546 m -2.99588,0.826453 c 0,-0.309907 -0.20661,-0.51652 -0.51652,-0.51652 -0.20661,0 -0.41322,0.206613 -0.41322,0.51652 0,0.206613 0.20661,0.51652 0.41322,0.51652 0.30991,0 0.51652,-0.309907 0.51652,-0.51652 m -1.65287,0.51652 0.10329,-0.103294 m 0,0 0.20661,0.826453 m 0,0 0.10332,-0.206613 m 0,0 v 0.206613 m 0,0 v 0.103293 m 0,0 h -0.20661 m 0,0 -0.20661,-0.826452 m 2.78926,3.20249 0.10329,0.309906 m 0,0 h -0.20661 m 0,0 v -0.206613 m 0,0 h -0.10329 m 0,0 v -0.103293 m 0,0 h 0.10329 m 0,0 -0.10329,-0.206613 m 0,0 h 0.10329 m 0,0 0.10332,0.103293 m 0,0 0.30991,-0.103293 m 0,0 v 0.206613 m 0,0 -0.10332,0.619839 m 0,0 -0.1033,0.103293 m 0,0 0.1033,-0.723132 m 0,0 h -0.20659 m 1.54959,0 0.10329,0.103293 0.20661,0.10332 m 0,0 h 0.10329 m 0,-0.10332 c 0.10332,0 0.10332,-0.206613 0.10332,-0.309906 m 0,0.103293 h -0.10332 m -0.10329,0.10332 c 0.10329,0 0.10329,-0.10332 0.10329,-0.10332 m -0.20658,0 v 0.10332 h 0.10329 m -0.20661,0 v -0.10332 l 0.10332,-0.103293 m 0,0 h 0.10329 m 0,0 -0.10329,-0.10332 m -0.10332,-0.103294 v 0.103294 h 0.10332 m -0.10332,-0.309907 v 0.10332 c -0.10329,0 -0.10329,0 0,0.103293 m 0,-0.103293 h 0.10332 0.10329 m 0,0 h 0.10329 m 0,0 -0.10329,-0.10332 -0.20661,-0.103293 m 0,0 -0.20661,0.206613 v 0.206587 m 0,-0.103294 c 0,0.103294 0.10332,0.206614 0.20661,0.206614 m 0,0 -0.10329,0.103293 v 0.10332 m 1.13635,-4.648756 -0.51654,0.103293 m 0,0 v 0.10332 m 0,0 0.30993,-0.10332 m 0,0 -0.10332,0.413227 m 0,0 c -0.10329,0.103319 0,0.206613 0,0.206613 0.10332,0.103293 0.20661,0.103293 0.30993,0.103293 0.1033,-0.103293 0.1033,-0.206587 0.1033,-0.309906 m 0,0.103319 h -0.1033 m -0.20661,-0.103319 c -0.10332,0.103319 -0.10332,0.103319 0,0.206613 h 0.10329 c 0.10332,0 0.10332,-0.103294 0.10332,-0.206613 m -0.20661,0.103319 0.20661,-0.516546 m 0,0 V 73.088638 M 33.935837,142.61323 c 0,-0.30991 -0.103293,-0.4132 -0.413226,-0.4132 -0.206587,0 -0.4132,0.10329 -0.4132,0.4132 0,0.20661 0.206613,0.41322 0.4132,0.41322 0.309933,0 0.413226,-0.20661 0.413226,-0.41322 m -0.206613,0 c 0,-0.1033 -0.103293,-0.20659 -0.206613,-0.20659 -0.103293,0 -0.206587,0.10329 -0.206587,0.20659 0,0.10332 0.103294,0.20661 0.206587,0.20661 0.10332,0 0.206613,-0.10329 0.206613,-0.20661 m -0.619813,-2.99585 c 0,-0.30994 -0.10332,-0.41323 -0.4132,-0.41323 -0.206613,0 -0.413226,0.10329 -0.413226,0.41323 0,0.20661 0.206613,0.41322 0.413226,0.41322 0.30988,0 0.4132,-0.20661 0.4132,-0.41322 m -0.206587,0 c 0,-0.10332 -0.103319,-0.20662 -0.206613,-0.20662 -0.10332,0 -0.206613,0.1033 -0.206613,0.20662 0,0.10329 0.103293,0.20661 0.206613,0.20661 0.103294,0 0.206613,-0.10332 0.206613,-0.20661 m 4.02889,2.16942 c 0,-0.20661 -0.103293,-0.41323 -0.413226,-0.41323 -0.206613,0 -0.413226,0.20662 -0.413226,0.41323 0,0.30991 0.206613,0.51652 0.413226,0.51652 0.309933,0 0.413226,-0.20661 0.413226,-0.51652 m -0.206613,0 c 0,-0.10332 -0.103293,-0.10332 -0.206613,-0.10332 -0.103293,0 -0.206613,0 -0.206613,0.10332 0,0.10329 0.10332,0.20661 0.206613,0.20661 0.10332,0 0.206613,-0.10332 0.206613,-0.20661 m -1.652878,-1.13636 c 0,-0.20661 -0.206614,-0.41323 -0.413227,-0.41323 -0.309933,0 -0.516546,0.20662 -0.516546,0.41323 0,0.30991 0.206613,0.51652 0.516546,0.51652 0.206613,0 0.413227,-0.20661 0.413227,-0.51652 m -0.309933,0 c 0,-0.10332 0,-0.10332 -0.103294,-0.10332 -0.10332,0 -0.206613,0 -0.206613,0.10332 0,0.10329 0.103293,0.20659 0.206613,0.20659 0.103294,0 0.103294,-0.1033 0.103294,-0.20659 m 1.446291,-1.85952 c 0,-0.3099 -0.206613,-0.41322 -0.413226,-0.41322 -0.309933,0 -0.516546,0.10332 -0.516546,0.41322 0,0.20662 0.206613,0.41323 0.516546,0.41323 0.206613,0 0.413226,-0.20661 0.413226,-0.41323 m -0.309932,0 c 0,-0.10329 0,-0.20661 -0.103294,-0.20661 -0.10332,0 -0.206613,0.10332 -0.206613,0.20661 0,0.10332 0.103293,0.20662 0.206613,0.20662 0.103294,0 0.103294,-0.1033 0.103294,-0.20662 m 2.892557,1.85952 c 0,-2.27274 -1.859492,-4.13223 -4.13221,-4.13223 -2.376011,0 -4.235529,1.85949 -4.235529,4.13223 0,2.37601 1.859518,4.23553 4.235529,4.23553 2.272718,0 4.13221,-1.85952 4.13221,-4.23553 m -0.51652,0 c 0,-1.96281 -1.652878,-3.61572 -3.61569,-3.61572 -2.066105,0 -3.718983,1.65291 -3.718983,3.61572 0,2.06611 1.652878,3.71898 3.718983,3.71898 1.962812,0 3.61569,-1.65287 3.61569,-3.71898 m -0.516519,-0.20661 0.516519,-0.10332 m -0.723132,-1.03307 c -0.309933,0.10332 -0.516547,0.41323 -0.413227,0.72316 0.103294,0.20661 0.413227,0.41323 0.723133,0.30991 m -0.413226,-0.92975 0.516546,-0.10332 m 219.73078,-34.50402 c -0.30991,0 -0.61984,0.10332 -0.92975,0.20661 m 1.13636,-0.61983 c -0.51652,0 -1.03306,0.10332 -1.54958,0.30993 m -1.23968,1.13636 c -0.82645,1.13636 -0.82645,2.78923 0,3.92559 0.72313,1.23966 2.27274,1.8595 3.61571,1.54959 1.44626,-0.30993 2.58262,-1.44629 2.78923,-2.89256 m -5.16526,-3.71898 c -0.41323,0.3099 -0.82645,0.61984 -1.23968,1.13636 m 0.30994,-0.10332 c -0.92977,1.03306 -1.03307,2.58262 -0.30994,3.8223 0.72313,1.23965 2.16942,1.85949 3.51239,1.65288 1.44629,-0.30991 2.47933,-1.34297 2.78926,-2.78924 m -0.10332,0.10329 h 0.20661 m -6.40494,-2.68591 0.30994,-0.10332 m 0.92974,-0.72314 v -0.20661 m 1.54958,-0.3099 c -0.51652,0 -1.03306,0.20661 -1.44629,0.41322 m 1.34297,-0.51654 0.10332,0.20661 m 2.89255,3.92559 h 0.51652 m -0.4132,-1.03303 -0.10332,1.03303 m 0.51652,-0.92971 -0.4132,-0.10332 m 0.51652,0 c -0.20662,-1.23966 -1.03307,-2.37602 -2.16942,-2.78924 m -1.23968,0.41322 1.13639,-0.30993 m -1.23968,-0.20661 0.10329,0.51654 m -1.44626,0.4132 -0.20661,-0.51652 m -0.92974,0.72314 1.13635,-0.20662 m 3.92561,2.16943 c 0,-0.30991 -0.10332,-0.61981 -0.20661,-0.92975 m -0.72316,1.23968 0.92977,-0.30993 m -0.82645,0.20661 c -0.61983,0.10332 -0.92974,0.72313 -0.82645,1.34295 m 0.41323,1.54958 -0.41323,-1.44626 m -0.41322,1.65288 c 0.30993,-0.1033 0.61984,-0.1033 0.82645,-0.20662 m -1.34297,-1.23965 0.41323,1.44627 m -0.30994,-1.54959 c -0.10329,-0.51652 -0.72313,-0.92975 -1.34297,-0.72313 m -1.54958,0.41322 1.44629,-0.41322 m -1.6529,-0.5165 c 0.10332,0.30988 0.10332,0.61982 0.20661,0.92972 m 1.23968,-1.23965 -1.44629,0.4132 m 1.54958,-0.4132 c 0.51655,-0.20661 0.92977,-0.82642 0.72316,-1.44626 m -0.41323,-1.34298 0.41323,1.44627 m 0.82642,-0.20661 -0.41322,-1.54959 m 0.41322,1.44629 c 0.20662,0.61984 0.82645,0.92975 1.44629,0.82646 m 0.82645,-0.20662 -0.92977,0.20662 m 0.10332,-2.37604 c -0.51652,-0.30993 -1.03306,-0.41323 -1.54958,-0.30993 m 3.61568,3.09917 c -0.10329,-1.23966 -0.92974,-2.27272 -2.0661,-2.78924 m 2.0661,3.71898 c 0.10332,-0.3099 0.10332,-0.61981 0,-0.92974 m 0,0.10332 h -0.20661 m -2.16939,-2.78927 0.3099,-0.10329 m -1.23967,3.20246 c 0,-0.10329 -0.1033,-0.20661 -0.20662,-0.20661 -0.10329,0 -0.20661,0.10332 -0.20661,0.20661 0,0.10332 0.10332,0.20662 0.20661,0.20662 0.10332,0 0.20662,-0.1033 0.20662,-0.20662 m -1.44627,-1.13636 c 0,-0.3099 -0.30993,-0.61984 -0.61983,-0.61984 -0.41323,0 -0.72313,0.30994 -0.72313,0.61984 0,0.41323 0.3099,0.72314 0.72313,0.72314 0.3099,0 0.61983,-0.30991 0.61983,-0.72314 m 2.99585,-0.82645 c 0,-0.30991 -0.30991,-0.61981 -0.61981,-0.61981 -0.41323,0 -0.72316,0.3099 -0.72316,0.61981 0,0.41323 0.30993,0.72316 0.72316,0.72316 0.3099,0 0.61981,-0.30993 0.61981,-0.72316 m 0.82645,2.99585 c 0,-0.30991 -0.30991,-0.61984 -0.61984,-0.61984 -0.41323,0 -0.72313,0.30993 -0.72313,0.61984 0,0.41323 0.3099,0.72313 0.72313,0.72313 0.30993,0 0.61984,-0.3099 0.61984,-0.72313 m -2.99587,0.82645 c 0,-0.30993 -0.30991,-0.61984 -0.61981,-0.61984 -0.41323,0 -0.72316,0.30991 -0.72316,0.61984 0,0.41323 0.30993,0.72314 0.72316,0.72314 0.3099,0 0.61981,-0.30991 0.61981,-0.72314 m -0.20659,0 c 0,-0.20661 -0.20661,-0.41322 -0.41322,-0.41322 -0.30994,0 -0.51655,0.20661 -0.51655,0.41322 0,0.30991 0.20661,0.51652 0.51655,0.51652 0.20661,0 0.41322,-0.20661 0.41322,-0.51652 m 2.99584,-0.82645 c 0,-0.20661 -0.20661,-0.41323 -0.41322,-0.41323 -0.30991,0 -0.51652,0.20662 -0.51652,0.41323 0,0.30991 0.20661,0.51652 0.51652,0.51652 0.20661,0 0.41322,-0.20661 0.41322,-0.51652 m -0.82645,-2.99585 c 0,-0.20661 -0.20661,-0.41323 -0.41319,-0.41323 -0.30994,0 -0.51655,0.20662 -0.51655,0.41323 0,0.30993 0.20661,0.51655 0.51655,0.51655 0.20658,0 0.41319,-0.20662 0.41319,-0.51655 m -2.99584,0.82645 c 0,-0.20661 -0.20661,-0.41322 -0.41322,-0.41322 -0.30994,0 -0.51652,0.20661 -0.51652,0.41322 0,0.30994 0.20658,0.51652 0.51652,0.51652 0.20661,0 0.41322,-0.20658 0.41322,-0.51652 m -1.6529,0.51652 h 0.10332 m 0,0 0.20661,0.72316 m 0,0 0.1033,-0.10332 m 0,0 0.10332,0.10332 m 0,0 -0.10332,0.1033 m 0,0 -0.1033,0.10331 m 0,0 -0.30993,-0.92977 m 2.78926,3.30579 0.10329,0.20658 m 0,0 -0.10329,0.10332 m 0,0 -0.10332,-0.3099 m 0,0 h -0.1033 m 0,0 v -0.10332 m 0,0 h 0.1033 m 0,0 -0.1033,-0.1033 m 0,0 h 0.20662 m 0,0 v 0.1033 m 0,0 0.3099,-0.1033 m 0,0 0.10332,0.1033 m 0,0 -0.20661,0.72313 m 0,0 h -0.10332 m 0,0 0.10332,-0.72313 m 0,0 -0.20661,0.10332 m 1.54958,0 0.10329,0.10329 h 0.20661 m 0,0 h 0.10332 m 0.1033,0 c 0.10332,-0.10329 0.10332,-0.20661 0.10332,-0.30991 m -0.10332,0.1033 h -0.1033 m 0,0.10332 c 0,0 0.1033,-0.10332 0,-0.10332 m -0.20661,0 h 0.10329 c 0,0.10332 0,0.10332 0.10332,0 m -0.30993,0 0.10332,-0.1033 m 0,0 h 0.10329 m 0,0 v -0.10332 m 0,0 h -0.10329 m -0.10332,-0.20661 c 0,0.10332 0,0.10332 0.10332,0.10332 0,0.10329 0,0.10329 0.10329,0 m -0.10329,-0.20661 h -0.10332 v 0.10329 m 0,-0.10329 h 0.10332 l 0.10329,0.10329 m 0,0 0.10332,-0.10329 m 0,0 -0.10332,-0.10332 h -0.20661 m 0,0 -0.20658,0.10332 v 0.20661 m 0.10329,0 c 0,0.10329 0,0.10329 0.10329,0.10329 m 0,0.10332 -0.10329,0.1033 v 0.10332 m 1.13635,-4.75205 -0.51651,0.10329 m 0,0 v 0.10332 m 0,0 h 0.41322 m 0,0 -0.20661,0.41323 m 0.10329,-0.10332 c -0.10329,0.10332 0,0.20661 0,0.30993 0.10332,0.10329 0.20661,0.10329 0.30993,0 0.1033,0 0.1033,-0.10332 0.1033,-0.20661 m -0.1033,0 h -0.10332 m -0.10329,0 c -0.10332,0 -0.10332,0.10329 0,0.10329 0,0.10332 0.10329,0.10332 0.10329,0 0.10332,0 0.10332,-0.10329 0.10332,-0.10329 m -0.30993,0 0.20661,-0.51655 m 0,0 v -0.10329 m -2.68593,31.71475 c -0.30991,0.10332 -0.61984,0.10332 -0.92975,0.20662 m 1.13636,-0.61982 c -0.51652,0 -1.03306,0.20659 -1.54958,0.4132 m -1.23968,1.03307 c -0.82645,1.23968 -0.82645,2.78926 0,4.02892 0.72313,1.23967 2.27274,1.85951 3.61571,1.54961 1.44626,-0.30994 2.58262,-1.44629 2.78923,-2.89259 m -5.16526,-3.71901 c -0.41323,0.20662 -0.82645,0.61984 -1.23968,1.03307 m 0.30994,-0.10329 c -0.92977,1.13636 -1.03307,2.68594 -0.30994,3.92562 0.72313,1.23965 2.16942,1.85949 3.51239,1.54958 1.44629,-0.20661 2.47933,-1.34299 2.78926,-2.68597 m -0.10332,0 h 0.20661 m -6.40494,-2.58262 0.30994,-0.10332 m 0.92974,-0.82645 v -0.20662 m 1.54958,-0.20661 c -0.51652,0 -1.03306,0.10332 -1.44629,0.30993 m 1.34297,-0.51652 0.10332,0.20659 m 2.89255,3.92562 h 0.51652 m -0.4132,-0.92974 -0.10332,0.92974 m 0.51652,-0.92974 h -0.4132 m 0.51652,0 c -0.20662,-1.34297 -1.03307,-2.37604 -2.16942,-2.78927 m -1.23968,0.30994 1.13639,-0.30994 m -1.23968,-0.20661 0.10329,0.51655 m -1.44626,0.41322 -0.20661,-0.51654 m -0.92974,0.82645 1.13635,-0.30991 m 3.92561,2.16943 c 0,-0.30993 -0.10332,-0.51655 -0.20661,-0.82645 m -0.72316,1.13635 0.92977,-0.20661 m -0.82645,0.10332 c -0.61983,0.20659 -0.92974,0.82643 -0.82645,1.44627 m 0.41323,1.44629 -0.41323,-1.44629 m -0.41322,1.6529 c 0.30993,0 0.61984,-0.10332 0.82645,-0.20661 m -1.34297,-1.23968 0.41323,1.54958 m -0.30994,-1.54958 c -0.10329,-0.61984 -0.72313,-0.92975 -1.34297,-0.82645 m -1.54958,0.51654 1.44629,-0.41322 m -1.6529,-0.51655 c 0.10332,0.30993 0.10332,0.61984 0.20661,0.82645 m 1.23968,-1.13636 -1.44629,0.30991 m 1.54958,-0.4132 c 0.51655,-0.10332 0.92977,-0.72316 0.72316,-1.343 m -0.41323,-1.44626 0.41323,1.44626 m 0.82642,-0.20661 -0.41322,-1.44627 m 0.41322,1.44627 c 0.20662,0.51655 0.82645,0.92977 1.44629,0.72316 m 0.82645,-0.20661 -0.92977,0.3099 m 0.10332,-2.47933 c -0.51652,-0.20661 -1.03306,-0.30991 -1.54958,-0.30991 m 3.61568,3.20247 c -0.10329,-1.23968 -0.92974,-2.37604 -2.0661,-2.89256 m 2.0661,3.8223 c 0.10332,-0.3099 0.10332,-0.61981 0,-0.92974 m 0,0 h -0.20661 m -2.16939,-2.78927 0.3099,-0.10329 m -1.23967,3.20249 c 0,-0.10332 -0.1033,-0.20661 -0.20662,-0.20661 -0.10329,0 -0.20661,0.10329 -0.20661,0.20661 0,0.10329 0.10332,0.30991 0.20661,0.30991 0.10332,0 0.20662,-0.20662 0.20662,-0.30991 m -1.44627,-1.03306 c 0,-0.41323 -0.30993,-0.72314 -0.61983,-0.72314 -0.41323,0 -0.72313,0.30991 -0.72313,0.72314 0,0.3099 0.3099,0.72313 0.72313,0.72313 0.3099,0 0.61983,-0.41323 0.61983,-0.72313 m 2.99585,-0.82646 c 0,-0.41322 -0.30991,-0.72313 -0.61981,-0.72313 -0.41323,0 -0.72316,0.30991 -0.72316,0.72313 0,0.30991 0.30993,0.72314 0.72316,0.72314 0.3099,0 0.61981,-0.41323 0.61981,-0.72314 m 0.82645,2.99588 c 0,-0.41323 -0.30991,-0.72316 -0.61984,-0.72316 -0.41323,0 -0.72313,0.30993 -0.72313,0.72316 0,0.30991 0.3099,0.72313 0.72313,0.72313 0.30993,0 0.61984,-0.41322 0.61984,-0.72313 m -2.99587,0.82643 c 0,-0.4132 -0.30991,-0.72314 -0.61981,-0.72314 -0.41323,0 -0.72316,0.30994 -0.72316,0.72314 0,0.30993 0.30993,0.72316 0.72316,0.72316 0.3099,0 0.61981,-0.41323 0.61981,-0.72316 m -0.20659,0 c 0,-0.30991 -0.20661,-0.51652 -0.41322,-0.51652 -0.30994,0 -0.51655,0.20661 -0.51655,0.51652 0,0.20661 0.20661,0.51654 0.51655,0.51654 0.20661,0 0.41322,-0.30993 0.41322,-0.51654 m 2.99584,-0.82643 c 0,-0.30993 -0.20661,-0.51655 -0.41322,-0.51655 -0.30991,0 -0.51652,0.20662 -0.51652,0.51655 0,0.20661 0.20661,0.51652 0.51652,0.51652 0.20661,0 0.41322,-0.30991 0.41322,-0.51652 m -0.82645,-2.99588 c 0,-0.3099 -0.20661,-0.51652 -0.41319,-0.51652 -0.30994,0 -0.51655,0.20662 -0.51655,0.51652 0,0.20662 0.20661,0.51652 0.51655,0.51652 0.20658,0 0.41319,-0.3099 0.41319,-0.51652 m -2.99584,0.82646 c 0,-0.30994 -0.20661,-0.51655 -0.41322,-0.51655 -0.30994,0 -0.51652,0.20661 -0.51652,0.51655 0,0.20661 0.20658,0.51652 0.51652,0.51652 0.20661,0 0.41322,-0.30991 0.41322,-0.51652 m -1.6529,0.51652 h 0.10332 m 0,0 0.20661,0.72313 m 0,0 0.1033,-0.20659 m 0,0 0.10332,0.20659 m 0,0 -0.10332,0.10332 m 0,0 h -0.1033 m 0,0 -0.30993,-0.82645 m 2.78926,3.20249 0.10329,0.3099 m 0,0 h -0.10329 m 0,0 -0.10332,-0.20661 m 0,0 h -0.1033 m 0,0 v -0.10329 m 0,0 h 0.1033 m 0,0 -0.1033,-0.20662 m 0,0 h 0.20662 m 0,0 v 0.1033 m 0,0 0.3099,-0.1033 m 0,0 0.10332,0.20662 m 0,0 -0.20661,0.61983 m 0,0 -0.10332,0.1033 m 0,0 0.10332,-0.72313 m 0,0 h -0.20661 m 1.54958,0 0.10329,0.10329 0.20661,0.10332 m 0,0 h 0.10332 m 0.1033,-0.10332 c 0.10332,0 0.10332,-0.20661 0.10332,-0.30991 m -0.10332,0.1033 h -0.1033 m 0,0.10332 c 0,0 0.1033,0 0,-0.10332 m -0.20661,0 c 0,0 0,0.10332 0.10329,0.10332 h 0.10332 m -0.30993,0 0.10332,-0.10332 v -0.1033 m 0,0 h 0.10329 m 0,0 v -0.10332 m 0,0 h -0.10329 m -0.10332,-0.10329 c 0,0 0,0.10329 0.10332,0.10329 h 0.10329 m -0.10329,-0.3099 c 0,0 -0.10332,0 -0.10332,0.10329 v 0.10332 m 0,-0.10332 h 0.10332 0.10329 m 0,0 h 0.10332 m 0,0 -0.10332,-0.10329 -0.20661,-0.10332 m 0,0 -0.20658,0.20661 v 0.20661 m 0.10329,-0.10329 c 0,0.10329 0,0.20661 0.10329,0.20661 m 0,0 -0.10329,0.1033 v 0.10332 m 1.13635,-4.64876 -0.51651,0.10329 m 0,0 v 0.10332 m 0,0 0.41322,-0.10332 m 0,0 -0.20661,0.41323 m 0.10329,0 c -0.10329,0.10329 0,0.20661 0,0.20661 0.10332,0.1033 0.20661,0.1033 0.30993,0.1033 0.1033,-0.1033 0.1033,-0.20662 0.1033,-0.30991 m -0.1033,0.10329 h -0.10332 m -0.10329,-0.10329 c -0.10332,0.10329 -0.10332,0.10329 0,0.20661 h 0.10329 c 0.10332,0 0.10332,-0.10332 0.10332,-0.20661 m -0.30993,0.10329 0.20661,-0.51652 m 0,0 v -0.10329 m -2.68593,-66.735351 c -0.30991,0.103294 -0.61984,0.103294 -0.92975,0.206587 m 1.13636,-0.619813 c -0.51652,0 -1.03306,0.206613 -1.54958,0.413226 m -1.23968,1.033039 c -0.82645,1.239679 -0.82645,2.789264 0,4.028943 0.72313,1.239652 2.27274,1.859492 3.61571,1.549585 1.44626,-0.309933 2.58262,-1.446292 2.78923,-2.892584 m -5.16526,-3.718983 c -0.41323,0.206587 -0.82645,0.619813 -1.23968,1.033039 m 0.30994,-0.103293 c -0.92977,1.136359 -1.03307,2.685944 -0.30994,3.925623 0.72313,1.239652 2.16942,1.859492 3.51239,1.549585 1.44629,-0.206613 2.47933,-1.342972 2.78926,-2.685971 m -0.10332,0 h 0.20661 m -6.40494,-2.582624 0.30994,-0.10332 m 0.92974,-0.826452 v -0.206587 m 1.54958,-0.206613 c -0.51652,0 -1.03306,0.103293 -1.44629,0.309907 m 1.34297,-0.51652 0.10332,0.206613 m 2.89255,3.925596 h 0.51652 m -0.4132,-0.929745 -0.10332,0.929745 m 0.51652,-0.929745 h -0.4132 m 0.51652,0 c -0.20662,-1.342972 -1.03307,-2.376038 -2.16942,-2.789238 m -1.23968,0.309907 1.13639,-0.309907 m -1.23968,-0.206613 0.10329,0.51652 m -1.44626,0.413226 -0.20661,-0.516546 m -0.92974,0.826452 1.13635,-0.309906 m 3.92561,2.169424 c 0,-0.309932 -0.10332,-0.516546 -0.20661,-0.826452 m -0.72316,1.136359 0.92977,-0.206613 m -0.82645,0.10332 c -0.61983,0.206613 -0.92974,0.826426 -0.82645,1.446265 m 0.41323,1.446292 -0.41323,-1.446292 m -0.41322,1.652905 c 0.30993,0 0.61984,-0.10332 0.82645,-0.206613 m -1.34297,-1.239679 0.41323,1.549585 m -0.30994,-1.549585 c -0.10329,-0.619839 -0.72313,-0.929746 -1.34297,-0.826452 m -1.54958,0.516546 1.44629,-0.413227 m -1.6529,-0.516519 c 0.10332,0.309906 0.10332,0.619813 0.20661,0.826426 m 1.23968,-1.136359 -1.44629,0.309933 m 1.54958,-0.413226 c 0.51655,-0.10332 0.92977,-0.72316 0.72316,-1.342973 m -0.41323,-1.446291 0.41323,1.446291 m 0.82642,-0.206613 -0.41322,-1.446291 m 0.41322,1.446291 c 0.20662,0.51652 0.82645,0.929746 1.44629,0.723133 m 0.82645,-0.206613 -0.92977,0.309906 m 0.10332,-2.479331 c -0.51652,-0.206613 -1.03306,-0.309906 -1.54958,-0.309906 m 3.61568,3.202464 c -0.10329,-1.239653 -0.92974,-2.376038 -2.0661,-2.892558 m 2.0661,3.822303 c 0.10332,-0.309906 0.10332,-0.619812 0,-0.929745 m 0,0 h -0.20661 m -2.16939,-2.789238 0.3099,-0.10332 m -1.23967,3.202491 c 0,-0.10332 -0.1033,-0.206614 -0.20662,-0.206614 -0.10329,0 -0.20661,0.103294 -0.20661,0.206614 0,0.103293 0.10332,0.309906 0.20661,0.309906 0.10332,0 0.20662,-0.206613 0.20662,-0.309906 m -1.44627,-1.033066 c 0,-0.413226 -0.30993,-0.723133 -0.61983,-0.723133 -0.41323,0 -0.72313,0.309907 -0.72313,0.723133 0,0.309906 0.3099,0.723133 0.72313,0.723133 0.3099,0 0.61983,-0.413227 0.61983,-0.723133 m 2.99585,-0.826453 c 0,-0.413226 -0.30991,-0.723132 -0.61981,-0.723132 -0.41323,0 -0.72316,0.309906 -0.72316,0.723132 0,0.309933 0.30993,0.723133 0.72316,0.723133 0.3099,0 0.61981,-0.4132 0.61981,-0.723133 m 0.82645,2.995878 c 0,-0.413227 -0.30991,-0.723133 -0.61984,-0.723133 -0.41323,0 -0.72313,0.309906 -0.72313,0.723133 0,0.309906 0.3099,0.723132 0.72313,0.723132 0.30993,0 0.61984,-0.413226 0.61984,-0.723132 m -2.99587,0.826452 c 0,-0.413226 -0.30991,-0.723159 -0.61981,-0.723159 -0.41323,0 -0.72316,0.309933 -0.72316,0.723159 0,0.309906 0.30993,0.723133 0.72316,0.723133 0.3099,0 0.61981,-0.413227 0.61981,-0.723133 m -0.20659,0 c 0,-0.309933 -0.20661,-0.516546 -0.41322,-0.516546 -0.30994,0 -0.51655,0.206613 -0.51655,0.516546 0,0.206613 0.20661,0.51652 0.51655,0.51652 0.20661,0 0.41322,-0.309907 0.41322,-0.51652 m 2.99584,-0.826452 c 0,-0.309933 -0.20661,-0.516547 -0.41322,-0.516547 -0.30991,0 -0.51652,0.206614 -0.51652,0.516547 0,0.206613 0.20661,0.516519 0.51652,0.516519 0.20661,0 0.41322,-0.309906 0.41322,-0.516519 m -0.82645,-2.995878 c 0,-0.309906 -0.20661,-0.516519 -0.41319,-0.516519 -0.30994,0 -0.51655,0.206613 -0.51655,0.516519 0,0.206614 0.20661,0.516546 0.51655,0.516546 0.20658,0 0.41319,-0.309932 0.41319,-0.516546 m -2.99584,0.826453 c 0,-0.309907 -0.20661,-0.51652 -0.41322,-0.51652 -0.30994,0 -0.51652,0.206613 -0.51652,0.51652 0,0.206613 0.20658,0.51652 0.51652,0.51652 0.20661,0 0.41322,-0.309907 0.41322,-0.51652 m -1.6529,0.51652 0.10332,-0.103294 m 0,0 0.20661,0.826453 m 0,0 0.1033,-0.206613 m 0,0 0.10332,0.206613 m 0,0 -0.10332,0.103293 m 0,0 h -0.1033 m 0,0 -0.30993,-0.826452 m 2.78926,3.20249 0.10329,0.309906 m 0,0 h -0.10329 m 0,0 -0.10332,-0.206613 m 0,0 h -0.1033 m 0,0 v -0.103293 m 0,0 h 0.1033 m 0,0 -0.1033,-0.206613 m 0,0 h 0.20662 m 0,0 v 0.103293 m 0,0 0.3099,-0.103293 m 0,0 0.10332,0.206613 m 0,0 -0.20661,0.619839 m 0,0 -0.10332,0.103293 m 0,0 0.10332,-0.723132 m 0,0 h -0.20661 m 1.54958,0 0.10329,0.103293 0.20661,0.10332 m 0,0 h 0.10332 m 0.1033,-0.10332 c 0.10332,0 0.10332,-0.206613 0.10332,-0.309906 m -0.10332,0.103293 h -0.1033 m 0,0.10332 c 0,0 0.1033,-0.10332 0,-0.10332 m -0.20661,0 c 0,0 0,0.10332 0.10329,0.10332 h 0.10332 m -0.30993,0 0.10332,-0.10332 v -0.103293 m 0,0 h 0.10329 m 0,0 v -0.10332 m 0,0 h -0.10329 m -0.10332,-0.103294 c 0,0 0,0.103294 0.10332,0.103294 h 0.10329 m -0.10329,-0.309907 c 0,0 -0.10332,0 -0.10332,0.10332 v 0.103293 m 0,-0.103293 h 0.10332 0.10329 m 0,0 h 0.10332 m 0,0 -0.10332,-0.10332 -0.20661,-0.103293 m 0,0 -0.20658,0.206613 v 0.206587 m 0.10329,-0.103294 c 0,0.103294 0,0.206614 0.10329,0.206614 m 0,0 -0.10329,0.103293 v 0.10332 m 1.13635,-4.648756 -0.51651,0.103293 m 0,0 v 0.10332 m 0,0 0.41322,-0.10332 m 0,0 -0.20661,0.413227 m 0.10329,0 c -0.10329,0.103319 0,0.206613 0,0.206613 0.10332,0.103293 0.20661,0.103293 0.30993,0.103293 0.1033,-0.103293 0.1033,-0.206587 0.1033,-0.309906 m -0.1033,0.103319 h -0.10332 m -0.10329,-0.103319 c -0.10332,0.103319 -0.10332,0.103319 0,0.206613 h 0.10329 c 0.10332,0 0.10332,-0.103294 0.10332,-0.206613 m -0.30993,0.103319 0.20661,-0.516546 m 0,0 V 73.088638 M 257.69556,39.20443 c -0.30991,0 -0.61984,0.10332 -0.92975,0.206613 m 1.13636,-0.619839 c -0.51652,0 -1.03306,0.10332 -1.54958,0.309933 m -1.23968,1.136359 c -0.82645,1.136359 -0.82645,2.789237 0,3.925596 0.72313,1.239679 2.27274,1.859492 3.61571,1.549585 1.44626,-0.309906 2.58262,-1.446292 2.78923,-2.892557 m -5.16526,-3.718983 c -0.41323,0.309906 -0.82645,0.619839 -1.23968,1.136359 m 0.30994,-0.103294 c -0.92977,1.033039 -1.03307,2.582598 -0.30994,3.822277 0.72313,1.239679 2.16942,1.859492 3.51239,1.652905 1.44629,-0.309933 2.47933,-1.342999 2.78926,-2.789264 m -0.10332,0.103293 h 0.20661 m -6.40494,-2.685917 0.30994,-0.103294 m 0.92974,-0.723159 V 39.20443 m 1.54958,-0.309906 c -0.51652,0 -1.03306,0.206613 -1.44629,0.413226 m 1.34297,-0.516546 0.10332,0.206613 m 2.89255,3.822303 0.51652,0.103293 m -0.4132,-1.033012 -0.10332,0.929719 m 0.51652,-0.826426 -0.4132,-0.103293 m 0.51652,0 c -0.20662,-1.239679 -1.03307,-2.376038 -2.16942,-2.789264 m -1.23968,0.413226 1.13639,-0.309933 m -1.23968,-0.206613 0.10329,0.516546 m -1.44626,0.309906 -0.20661,-0.413226 m -0.92974,0.723159 1.13635,-0.309933 m 3.92561,2.272745 c 0,-0.309933 -0.10332,-0.61984 -0.20661,-0.929773 m -0.72316,1.239653 0.92977,-0.30988 m -0.82645,0.206586 c -0.61983,0.103294 -0.92974,0.723133 -0.82645,1.342972 m 0.41323,1.549586 -0.41323,-1.446292 m -0.41322,1.652905 c 0.30993,-0.10332 0.61984,-0.10332 0.82645,-0.206613 m -1.34297,-1.239679 0.41323,1.446292 m -0.30994,-1.549585 c -0.10329,-0.516546 -0.72313,-0.929773 -1.34297,-0.72316 m -1.54958,0.413227 1.44629,-0.413227 m -1.6529,-0.516519 c 0.10332,0.309906 0.10332,0.619839 0.20661,0.929746 m 1.23968,-1.239653 -1.44629,0.4132 m 1.54958,-0.4132 c 0.51655,-0.206586 0.92977,-0.826426 0.72316,-1.446265 m -0.41323,-1.342972 0.41323,1.446265 m 0.82642,-0.206613 -0.41322,-1.549585 m 0.41322,1.446292 c 0.20662,0.619839 0.82645,0.929746 1.44629,0.826452 m 0.82645,-0.206613 -0.92977,0.206613 m 0.10332,-2.376037 c -0.51652,-0.309933 -1.03306,-0.413227 -1.54958,-0.309933 m 3.61568,3.099197 c -0.10329,-1.239679 -0.92974,-2.272745 -2.0661,-2.789264 m 2.0661,3.718983 c 0.10332,-0.309933 0.10332,-0.619813 0,-0.929719 m 0,0.103293 h -0.20661 m -2.16939,-2.789264 0.3099,-0.103293 m -1.23967,3.202463 c 0,-0.103293 -0.1033,-0.206586 -0.20662,-0.206586 -0.10329,0 -0.20661,0.103293 -0.20661,0.206586 0,0.103294 0.10332,0.206587 0.20661,0.206587 0.10332,0 0.20662,-0.103293 0.20662,-0.206587 m -1.44627,-1.136359 c 0,-0.309906 -0.30993,-0.619839 -0.61983,-0.619839 -0.41323,0 -0.72313,0.309933 -0.72313,0.619839 0,0.413227 0.3099,0.72316 0.72313,0.72316 0.3099,0 0.61983,-0.309933 0.61983,-0.72316 m 2.99585,-0.826426 c 0,-0.309933 -0.30991,-0.619839 -0.61981,-0.619839 -0.41323,0 -0.72316,0.309906 -0.72316,0.619839 0,0.4132 0.30993,0.723133 0.72316,0.723133 0.3099,0 0.61981,-0.309933 0.61981,-0.723133 m 0.82645,2.995825 c 0,-0.309907 -0.30991,-0.61984 -0.61984,-0.61984 -0.41323,0 -0.72313,0.309933 -0.72313,0.61984 0,0.413226 0.3099,0.723132 0.72313,0.723132 0.30993,0 0.61984,-0.309906 0.61984,-0.723132 m -2.99587,0.826452 c 0,-0.309906 -0.30991,-0.619839 -0.61981,-0.619839 -0.41323,0 -0.72316,0.309933 -0.72316,0.619839 0,0.413226 0.30993,0.723133 0.72316,0.723133 0.3099,0 0.61981,-0.309907 0.61981,-0.723133 m -0.20659,0 c 0,-0.206613 -0.20661,-0.413226 -0.41322,-0.413226 -0.30994,0 -0.51655,0.206613 -0.51655,0.413226 0,0.309906 0.20661,0.51652 0.51655,0.51652 0.20661,0 0.41322,-0.206614 0.41322,-0.51652 m 2.99584,-0.826452 c 0,-0.206614 -0.20661,-0.413227 -0.41322,-0.413227 -0.30991,0 -0.51652,0.206613 -0.51652,0.413227 0,0.309932 0.20661,0.516546 0.51652,0.516546 0.20661,0 0.41322,-0.206614 0.41322,-0.516546 m -0.82645,-2.995825 c 0,-0.206613 -0.20661,-0.413226 -0.41319,-0.413226 -0.30994,0 -0.51655,0.206613 -0.51655,0.413226 0,0.309907 0.20661,0.51652 0.51655,0.51652 0.20658,0 0.41319,-0.206613 0.41319,-0.51652 m -2.99584,0.826426 c 0,-0.206613 -0.20661,-0.413226 -0.41322,-0.413226 -0.30994,0 -0.51652,0.206613 -0.51652,0.413226 0,0.309933 0.20658,0.516546 0.51652,0.516546 0.20661,0 0.41322,-0.206613 0.41322,-0.516546 m -1.6529,0.516546 h 0.10332 m 0,0 0.20661,0.723107 m 0,0 0.1033,-0.103294 m 0,0 0.10332,0.103294 m 0,0 -0.10332,0.103293 m 0,0 -0.1033,0.10332 m 0,0 -0.30993,-0.92972 m 2.78926,3.305758 0.10329,0.206613 m 0,0 -0.10329,0.103293 m 0,0 -0.10332,-0.309906 m 0,0 h -0.1033 m 0,0 v -0.10332 m 0,0 h 0.1033 m 0,0 -0.1033,-0.103294 m 0,0 h 0.20662 m 0,0 v 0.103294 m 0,0 0.3099,-0.103294 m 0,0 0.10332,0.103294 m 0,0 -0.20661,0.723159 m 0,0 h -0.10332 m 0,0 0.10332,-0.723159 m 0,0 -0.20661,0.10332 m 1.54958,0 0.10329,0.103293 h 0.20661 m 0,0 h 0.10332 m 0.1033,0 c 0.10332,-0.103293 0.10332,-0.206613 0.10332,-0.309907 m -0.10332,0.103294 h -0.1033 m 0,0 c 0,0 0.1033,0 0,-0.103294 m -0.20661,0.103294 h 0.10329 c 0,0.10332 0,0.10332 0.10332,0 m -0.30993,0 0.10332,-0.103294 m 0,0 h 0.10329 m 0,0 v -0.103319 m 0,0 h -0.10329 m -0.10332,-0.206614 c 0,0 0,0.10332 0.10332,0.10332 h 0.10329 m -0.10329,-0.206613 h -0.10332 v 0.103293 m 0,-0.103293 h 0.10332 l 0.10329,0.103293 m 0,0 0.10332,-0.103293 m 0,0 -0.10332,-0.10332 h -0.20661 m 0,0 -0.20658,0.10332 v 0.206613 m 0.10329,0 c 0,0.103294 0,0.103294 0.10329,0.103294 m 0,0.103319 -0.10329,0.103294 v 0.10332 m 1.13635,-4.752049 -0.51651,0.103319 m 0,0 v 0.103294 m 0,0 h 0.41322 m 0,0 -0.20661,0.413226 m 0.10329,-0.10332 c -0.10329,0.10332 0,0.206613 0,0.309933 0.10332,0.103293 0.20661,0.103293 0.30993,0 0.1033,0 0.1033,-0.10332 0.1033,-0.206613 m -0.1033,0 h -0.10332 m -0.10329,0 c -0.10332,0 -0.10332,0.103293 0,0.103293 0,0.10332 0.10329,0.10332 0.10329,0 0.10332,0 0.10332,-0.103293 0.10332,-0.103293 m -0.30993,0 0.20661,-0.51652 m 0,0 v -0.103319 m -34.60732,97.313744 c -0.30993,0.10332 -0.61984,0.10332 -0.92977,0.20662 m 1.13636,-0.61982 c -0.51652,0 -1.03304,0.20659 -1.54958,0.4132 m -1.23965,1.03307 c -0.82645,1.23968 -0.82645,2.78926 0,4.02892 0.72313,1.23967 2.27271,1.85951 3.61568,1.54961 1.44628,-0.30994 2.58264,-1.44629 2.78925,-2.89259 m -5.16528,-3.71901 c -0.4132,0.20662 -0.82643,0.61984 -1.23965,1.03307 m 0.3099,-0.10329 c -0.92974,1.13636 -1.03306,2.68594 -0.3099,3.92562 0.72313,1.23965 2.16942,1.85949 3.51238,1.54958 1.44627,-0.20661 2.47933,-1.34299 2.78923,-2.68597 m -0.10329,0 h 0.20661 m -6.40493,-2.58262 0.3099,-0.10332 m 0.92975,-0.82645 v -0.20662 m 1.54958,-0.20661 c -0.51652,0 -1.03304,0.10332 -1.44626,0.30993 m 1.34296,-0.51652 0.1033,0.20659 m 2.99587,3.92562 h 0.41322 m -0.41322,-0.92974 v 0.92974 m 0.41322,-0.92974 h -0.41322 m 0.51651,0 c -0.20658,-1.34297 -1.03303,-2.37604 -2.16939,-2.78927 m -1.23967,0.30994 1.13635,-0.30994 m -1.23967,-0.20661 0.10332,0.51655 m -1.44629,0.41322 -0.20661,-0.51654 m -0.92975,0.82645 1.13636,-0.30991 m 3.92561,2.16943 c 0,-0.30993 -0.10329,-0.51655 -0.20661,-0.82645 m -0.72313,1.13635 0.92974,-0.20661 m -0.82645,0.10332 c -0.61981,0.20659 -0.92974,0.82643 -0.82642,1.44627 m 0.41322,1.44629 -0.41322,-1.44629 m -0.41323,1.6529 c 0.30991,0 0.61984,-0.10332 0.82645,-0.20661 m -1.23967,-1.23968 0.3099,1.54958 m -0.3099,-1.54958 c -0.10332,-0.61984 -0.72313,-0.92975 -1.34297,-0.82645 m -1.54958,0.51654 1.44626,-0.41322 m -1.65287,-0.51655 c 0.10329,0.30993 0.10329,0.61984 0.20661,0.82645 m 1.23965,-1.13636 -1.44626,0.30991 m 1.54958,-0.4132 c 0.51651,-0.10332 0.92974,-0.72316 0.72313,-1.343 m -0.41323,-1.44626 0.41323,1.44626 m 0.82645,-0.20661 -0.41323,-1.44627 m 0.41323,1.44627 c 0.20661,0.51655 0.82645,0.92977 1.44628,0.72316 m 0.82643,-0.20661 -0.92975,0.3099 m 0.10332,-2.47933 c -0.51654,-0.20661 -1.03306,-0.30991 -1.5496,-0.30991 m 3.6157,3.20247 c -0.10332,-1.23968 -0.92974,-2.37604 -2.0661,-2.89256 m 2.0661,3.8223 c 0.1033,-0.3099 0.1033,-0.61981 0,-0.92974 m 0,0 h -0.20661 m -2.16942,-2.78927 0.30993,-0.10329 m -1.23967,3.20249 c 0,-0.10332 -0.10332,-0.20661 -0.20661,-0.20661 -0.10332,0 -0.20662,0.10329 -0.20662,0.20661 0,0.10329 0.1033,0.30991 0.20662,0.30991 0.10329,0 0.20661,-0.20662 0.20661,-0.30991 m -1.44629,-1.03306 c 0,-0.41323 -0.3099,-0.72314 -0.61984,-0.72314 -0.41319,0 -0.72313,0.30991 -0.72313,0.72314 0,0.3099 0.30994,0.72313 0.72313,0.72313 0.30994,0 0.61984,-0.41323 0.61984,-0.72313 m 2.99587,-0.82646 c 0,-0.41322 -0.30991,-0.72313 -0.61984,-0.72313 -0.41322,0 -0.72313,0.30991 -0.72313,0.72313 0,0.30991 0.30991,0.72314 0.72313,0.72314 0.30993,0 0.61984,-0.41323 0.61984,-0.72314 m 0.82645,2.99588 c 0,-0.41323 -0.30993,-0.72316 -0.61984,-0.72316 -0.41322,0 -0.72313,0.30993 -0.72313,0.72316 0,0.30991 0.30991,0.72313 0.72313,0.72313 0.30991,0 0.61984,-0.41322 0.61984,-0.72313 m -2.99587,0.82643 c 0,-0.4132 -0.3099,-0.72314 -0.61984,-0.72314 -0.41322,0 -0.72313,0.30994 -0.72313,0.72314 0,0.30993 0.30991,0.72316 0.72313,0.72316 0.30994,0 0.61984,-0.41323 0.61984,-0.72316 m -0.20661,0 c 0,-0.30991 -0.20661,-0.51652 -0.41323,-0.51652 -0.3099,0 -0.51651,0.20661 -0.51651,0.51652 0,0.20661 0.20661,0.51654 0.51651,0.51654 0.20662,0 0.41323,-0.30993 0.41323,-0.51654 m 2.99587,-0.82643 c 0,-0.30993 -0.20662,-0.51655 -0.41323,-0.51655 -0.30993,0 -0.51652,0.20662 -0.51652,0.51655 0,0.20661 0.20659,0.51652 0.51652,0.51652 0.20661,0 0.41323,-0.30991 0.41323,-0.51652 m -0.82645,-2.99588 c 0,-0.3099 -0.20662,-0.51652 -0.41323,-0.51652 -0.3099,0 -0.51652,0.20662 -0.51652,0.51652 0,0.20662 0.20662,0.51652 0.51652,0.51652 0.20661,0 0.41323,-0.3099 0.41323,-0.51652 m -2.99587,0.82646 c 0,-0.30994 -0.20661,-0.51655 -0.41323,-0.51655 -0.3099,0 -0.51651,0.20661 -0.51651,0.51655 0,0.20661 0.20661,0.51652 0.51651,0.51652 0.20662,0 0.41323,-0.30991 0.41323,-0.51652 m -1.65287,0.51652 h 0.20661 m 0,0 0.10329,0.72313 m 0,0 0.10332,-0.20659 m 0,0 0.10329,0.20659 m 0,0 -0.10329,0.10332 m 0,0 h -0.10332 m 0,0 -0.3099,-0.82645 m 2.78925,3.20249 0.10329,0.3099 m 0,0 h -0.10329 m 0,0 -0.10332,-0.20661 m 0,0 h -0.10329 m 0,0 v -0.10329 m 0,0 h 0.10329 m 0,0 -0.10329,-0.20662 m 0,0 h 0.20661 m 0,0 v 0.1033 m 0,0 0.30991,-0.1033 m 0,0 0.10329,0.20662 m 0,0 -0.10329,0.61983 m 0,0 -0.20662,0.1033 m 0,0 0.1033,-0.72313 m 0,0 h -0.20659 m 1.54958,0 0.10329,0.10329 0.20662,0.10332 m 0,0 h 0.10329 m 0.10332,-0.10332 c 0.10329,0 0.10329,-0.20661 0.10329,-0.30991 m -0.10329,0.1033 h -0.10332 m 0,0.10332 c 0,0 0.10332,0 0,-0.10332 m -0.20659,0 c 0,0 0,0.10332 0.1033,0.10332 h 0.10329 m -0.20659,0 v -0.10332 l 0.1033,-0.1033 m 0,0 v -0.10332 m 0,0 h -0.1033 m -0.10332,-0.10329 c 0,0 0,0.10329 0.10332,0.10329 h 0.1033 m -0.1033,-0.3099 c 0,0 -0.10332,0 -0.10332,0.10329 v 0.10332 m 0,-0.10332 h 0.10332 0.1033 m 0,0 h 0.10329 m 0,0 -0.10329,-0.10329 -0.20662,-0.10332 m 0,0 -0.10329,0.20661 -0.10332,0.20661 m 0.10332,-0.10329 c 0,0.10329 0,0.20661 0.10329,0.20661 m 0,0 -0.10329,0.1033 v 0.10332 m 1.13636,-4.64876 -0.51655,0.10329 m 0,0 0.10332,0.10332 m 0,0 0.30991,-0.10332 m 0,0 -0.20661,0.41323 m 0.10331,0 c -0.10331,0.10329 0,0.20661 0,0.20661 0.1033,0.1033 0.20662,0.1033 0.30991,0.1033 0.10332,-0.1033 0.10332,-0.20662 0.10332,-0.30991 m 0,0.10329 h -0.20661 m -0.10332,-0.10329 c -0.1033,0.10329 -0.1033,0.10329 0,0.20661 h 0.10332 c 0.10329,0 0.10329,-0.10332 0.10329,-0.20661 m -0.30991,0.10329 0.20662,-0.51652 m 0,0 v -0.10329 m -2.68594,-33.88421 c -0.30993,0 -0.61984,0.10332 -0.92977,0.20661 m 1.13636,-0.61983 c -0.51652,0 -1.03304,0.10332 -1.54958,0.30993 m -1.23965,1.13636 c -0.82645,1.13636 -0.82645,2.78923 0,3.92559 0.72313,1.23966 2.27271,1.8595 3.61568,1.54959 1.44628,-0.30993 2.58264,-1.44629 2.78925,-2.89256 m -5.16528,-3.71898 c -0.4132,0.3099 -0.82643,0.61984 -1.23965,1.13636 m 0.3099,-0.10332 c -0.92974,1.03306 -1.03306,2.58262 -0.3099,3.8223 0.72313,1.23965 2.16942,1.85949 3.51238,1.65288 1.44627,-0.30991 2.47933,-1.34297 2.78923,-2.78924 m -0.10329,0.10329 h 0.20661 m -6.40493,-2.68591 0.3099,-0.10332 m 0.92975,-0.72314 v -0.20661 m 1.54958,-0.3099 c -0.51652,0 -1.03304,0.20661 -1.44626,0.41322 m 1.34296,-0.51654 0.1033,0.20661 m 2.99587,3.92559 h 0.41322 m -0.41322,-1.03303 v 1.03303 m 0.41322,-0.92971 -0.41322,-0.10332 m 0.51651,0 c -0.20658,-1.23966 -1.03303,-2.37602 -2.16939,-2.78924 m -1.23967,0.41322 1.13635,-0.30993 m -1.23967,-0.20661 0.10332,0.51654 m -1.44629,0.4132 -0.20661,-0.51652 m -0.92975,0.72314 1.13636,-0.20662 m 3.92561,2.16943 c 0,-0.30991 -0.10329,-0.61981 -0.20661,-0.92975 m -0.72313,1.23968 0.92974,-0.30993 m -0.82645,0.20661 c -0.61981,0.10332 -0.92974,0.72313 -0.82642,1.34295 m 0.41322,1.54958 -0.41322,-1.44626 m -0.41323,1.65288 c 0.30991,-0.1033 0.61984,-0.1033 0.82645,-0.20662 m -1.23967,-1.23965 0.3099,1.44627 m -0.3099,-1.54959 c -0.10332,-0.51652 -0.72313,-0.92975 -1.34297,-0.72313 m -1.54958,0.41322 1.44626,-0.41322 m -1.65287,-0.5165 c 0.10329,0.30988 0.10329,0.61982 0.20661,0.92972 m 1.23965,-1.23965 -1.44626,0.4132 m 1.54958,-0.4132 c 0.51651,-0.20661 0.92974,-0.82642 0.72313,-1.44626 m -0.41323,-1.34298 0.41323,1.44627 m 0.82645,-0.20661 -0.41323,-1.54959 m 0.41323,1.44629 c 0.20661,0.61984 0.82645,0.92975 1.44628,0.82646 m 0.82643,-0.20662 -0.92975,0.20662 m 0.10332,-2.37604 c -0.51654,-0.30993 -1.03306,-0.41323 -1.5496,-0.30993 m 3.6157,3.09917 c -0.10332,-1.23966 -0.92974,-2.27272 -2.0661,-2.78924 m 2.0661,3.71898 c 0.1033,-0.3099 0.1033,-0.61981 0,-0.92974 m 0,0.10332 h -0.20661 m -2.16942,-2.78927 0.30993,-0.10329 m -1.23967,3.20246 c 0,-0.10329 -0.10332,-0.20661 -0.20661,-0.20661 -0.10332,0 -0.20662,0.10332 -0.20662,0.20661 0,0.10332 0.1033,0.20662 0.20662,0.20662 0.10329,0 0.20661,-0.1033 0.20661,-0.20662 m -1.44629,-1.13636 c 0,-0.3099 -0.3099,-0.61984 -0.61984,-0.61984 -0.41319,0 -0.72313,0.30994 -0.72313,0.61984 0,0.41323 0.30994,0.72314 0.72313,0.72314 0.30994,0 0.61984,-0.30991 0.61984,-0.72314 m 2.99587,-0.82645 c 0,-0.30991 -0.30991,-0.61981 -0.61984,-0.61981 -0.41322,0 -0.72313,0.3099 -0.72313,0.61981 0,0.41323 0.30991,0.72316 0.72313,0.72316 0.30993,0 0.61984,-0.30993 0.61984,-0.72316 m 0.82645,2.99585 c 0,-0.30991 -0.30993,-0.61984 -0.61984,-0.61984 -0.41322,0 -0.72313,0.30993 -0.72313,0.61984 0,0.41323 0.30991,0.72313 0.72313,0.72313 0.30991,0 0.61984,-0.3099 0.61984,-0.72313 m -2.99587,0.82645 c 0,-0.30993 -0.3099,-0.61984 -0.61984,-0.61984 -0.41322,0 -0.72313,0.30991 -0.72313,0.61984 0,0.41323 0.30991,0.72314 0.72313,0.72314 0.30994,0 0.61984,-0.30991 0.61984,-0.72314 m -0.20661,0 c 0,-0.20661 -0.20661,-0.41322 -0.41323,-0.41322 -0.3099,0 -0.51651,0.20661 -0.51651,0.41322 0,0.30991 0.20661,0.51652 0.51651,0.51652 0.20662,0 0.41323,-0.20661 0.41323,-0.51652 m 2.99587,-0.82645 c 0,-0.20661 -0.20662,-0.41323 -0.41323,-0.41323 -0.30993,0 -0.51652,0.20662 -0.51652,0.41323 0,0.30991 0.20659,0.51652 0.51652,0.51652 0.20661,0 0.41323,-0.20661 0.41323,-0.51652 m -0.82645,-2.99585 c 0,-0.20661 -0.20662,-0.41323 -0.41323,-0.41323 -0.3099,0 -0.51652,0.20662 -0.51652,0.41323 0,0.30993 0.20662,0.51655 0.51652,0.51655 0.20661,0 0.41323,-0.20662 0.41323,-0.51655 m -2.99587,0.82645 c 0,-0.20661 -0.20661,-0.41322 -0.41323,-0.41322 -0.3099,0 -0.51651,0.20661 -0.51651,0.41322 0,0.30994 0.20661,0.51652 0.51651,0.51652 0.20662,0 0.41323,-0.20658 0.41323,-0.51652 m -1.65287,0.51652 h 0.20661 m 0,0 0.10329,0.72316 m 0,0 0.10332,-0.10332 m 0,0 0.10329,0.10332 m 0,0 -0.10329,0.1033 m 0,0 -0.10332,0.10331 m 0,0 -0.3099,-0.92977 m 2.78925,3.30579 0.10329,0.20658 m 0,0 -0.10329,0.10332 m 0,0 -0.10332,-0.3099 m 0,0 h -0.10329 m 0,0 v -0.10332 m 0,0 h 0.10329 m 0,0 -0.10329,-0.1033 m 0,0 h 0.20661 m 0,0 v 0.1033 m 0,0 0.30991,-0.1033 m 0,0 0.10329,0.1033 m 0,0 -0.10329,0.72313 m 0,0 h -0.20662 m 0,0 0.1033,-0.72313 m 0,0 -0.20659,0.10332 m 1.54958,0 0.10329,0.10329 h 0.20662 m 0,0 h 0.10329 m 0.10332,0 c 0.10329,-0.10329 0.10329,-0.20661 0.10329,-0.30991 m -0.10329,0.1033 h -0.10332 m 0,0.10332 c 0,0 0.10332,-0.10332 0,-0.10332 m -0.20659,0 h 0.1033 c 0,0.10332 0,0.10332 0.10329,0 m -0.20659,0 v -0.1033 h 0.1033 m 0,0 v -0.10332 m 0,0 h -0.1033 m -0.10332,-0.20661 c 0,0.10332 0,0.10332 0.10332,0.10332 0,0.10329 0,0.10329 0.1033,0 m -0.1033,-0.20661 h -0.10332 v 0.10329 m 0,-0.10329 h 0.10332 l 0.1033,0.10329 m 0,0 0.10329,-0.10329 m 0,0 -0.10329,-0.10332 h -0.20662 m 0,0 -0.10329,0.10332 -0.10332,0.20661 m 0.10332,0 c 0,0.10329 0,0.10329 0.10329,0.10329 m 0,0.10332 -0.10329,0.1033 v 0.10332 m 1.13636,-4.75205 -0.51655,0.10329 m 0,0 0.10332,0.10332 m 0,0 h 0.30991 m 0,0 -0.20661,0.41323 m 0.10331,-0.10332 c -0.10331,0.10332 0,0.20661 0,0.30993 0.1033,0.10329 0.20662,0.10329 0.30991,0 0.10332,0 0.10332,-0.10332 0.10332,-0.20661 m 0,0 h -0.20661 m -0.10332,0 c -0.1033,0 -0.1033,0.10329 0,0.10329 0,0.10332 0.10332,0.10332 0.10332,0 0.10329,0 0.10329,-0.10329 0.10329,-0.10329 m -0.30991,0 0.20662,-0.51655 m 0,0 v -0.10329 m -2.68594,-33.884211 c -0.30993,0.103294 -0.61984,0.103294 -0.92977,0.206587 m 1.13636,-0.619813 c -0.51652,0 -1.03304,0.206613 -1.54958,0.413226 m -1.23965,1.033039 c -0.82645,1.239679 -0.82645,2.789264 0,4.028943 0.72313,1.239652 2.27271,1.859492 3.61568,1.549585 1.44628,-0.309933 2.58264,-1.446292 2.78925,-2.892584 m -5.16528,-3.718983 c -0.4132,0.206587 -0.82643,0.619813 -1.23965,1.033039 m 0.3099,-0.103293 c -0.92974,1.136359 -1.03306,2.685944 -0.3099,3.925623 0.72313,1.239652 2.16942,1.859492 3.51238,1.549585 1.44627,-0.206613 2.47933,-1.342972 2.78923,-2.685971 m -0.10329,0 h 0.20661 m -6.40493,-2.582624 0.3099,-0.10332 m 0.92975,-0.826452 v -0.206587 m 1.54958,-0.206613 c -0.51652,0 -1.03304,0.103293 -1.44626,0.309907 m 1.34296,-0.51652 0.1033,0.206613 m 2.99587,3.925596 h 0.41322 m -0.41322,-0.929745 v 0.929745 m 0.41322,-0.929745 h -0.41322 m 0.51651,0 c -0.20658,-1.342972 -1.03303,-2.376038 -2.16939,-2.789238 m -1.23967,0.309907 1.13635,-0.309907 m -1.23967,-0.206613 0.10332,0.51652 m -1.44629,0.413226 -0.20661,-0.516546 m -0.92975,0.826452 1.13636,-0.309906 m 3.92561,2.169424 c 0,-0.309932 -0.10329,-0.516546 -0.20661,-0.826452 m -0.72313,1.136359 0.92974,-0.206613 m -0.82645,0.10332 c -0.61981,0.206613 -0.92974,0.826426 -0.82642,1.446265 m 0.41322,1.446292 -0.41322,-1.446292 m -0.41323,1.652905 c 0.30991,0 0.61984,-0.10332 0.82645,-0.206613 m -1.23967,-1.239679 0.3099,1.549585 m -0.3099,-1.549585 c -0.10332,-0.619839 -0.72313,-0.929746 -1.34297,-0.826452 m -1.54958,0.516546 1.44626,-0.413227 m -1.65287,-0.516519 c 0.10329,0.309906 0.10329,0.619813 0.20661,0.826426 m 1.23965,-1.136359 -1.44626,0.309933 m 1.54958,-0.413226 c 0.51651,-0.10332 0.92974,-0.72316 0.72313,-1.342973 m -0.41323,-1.446291 0.41323,1.446291 m 0.82645,-0.206613 -0.41323,-1.446291 m 0.41323,1.446291 c 0.20661,0.51652 0.82645,0.929746 1.44628,0.723133 m 0.82643,-0.206613 -0.92975,0.309906 m 0.10332,-2.479331 c -0.51654,-0.206613 -1.03306,-0.309906 -1.5496,-0.309906 m 3.6157,3.202464 c -0.10332,-1.239653 -0.92974,-2.376038 -2.0661,-2.892558 m 2.0661,3.822303 c 0.1033,-0.309906 0.1033,-0.619812 0,-0.929745 m 0,0 h -0.20661 m -2.16942,-2.789238 0.30993,-0.10332 m -1.23967,3.202491 c 0,-0.10332 -0.10332,-0.206614 -0.20661,-0.206614 -0.10332,0 -0.20662,0.103294 -0.20662,0.206614 0,0.103293 0.1033,0.309906 0.20662,0.309906 0.10329,0 0.20661,-0.206613 0.20661,-0.309906 m -1.44629,-1.033066 c 0,-0.413226 -0.3099,-0.723133 -0.61984,-0.723133 -0.41319,0 -0.72313,0.309907 -0.72313,0.723133 0,0.309906 0.30994,0.723133 0.72313,0.723133 0.30994,0 0.61984,-0.413227 0.61984,-0.723133 m 2.99587,-0.826453 c 0,-0.413226 -0.30991,-0.723132 -0.61984,-0.723132 -0.41322,0 -0.72313,0.309906 -0.72313,0.723132 0,0.309933 0.30991,0.723133 0.72313,0.723133 0.30993,0 0.61984,-0.4132 0.61984,-0.723133 m 0.82645,2.995878 c 0,-0.413227 -0.30993,-0.723133 -0.61984,-0.723133 -0.41322,0 -0.72313,0.309906 -0.72313,0.723133 0,0.309906 0.30991,0.723132 0.72313,0.723132 0.30991,0 0.61984,-0.413226 0.61984,-0.723132 m -2.99587,0.826452 c 0,-0.413226 -0.3099,-0.723159 -0.61984,-0.723159 -0.41322,0 -0.72313,0.309933 -0.72313,0.723159 0,0.309906 0.30991,0.723133 0.72313,0.723133 0.30994,0 0.61984,-0.413227 0.61984,-0.723133 m -0.20661,0 c 0,-0.309933 -0.20661,-0.516546 -0.41323,-0.516546 -0.3099,0 -0.51651,0.206613 -0.51651,0.516546 0,0.206613 0.20661,0.51652 0.51651,0.51652 0.20662,0 0.41323,-0.309907 0.41323,-0.51652 m 2.99587,-0.826452 c 0,-0.309933 -0.20662,-0.516547 -0.41323,-0.516547 -0.30993,0 -0.51652,0.206614 -0.51652,0.516547 0,0.206613 0.20659,0.516519 0.51652,0.516519 0.20661,0 0.41323,-0.309906 0.41323,-0.516519 m -0.82645,-2.995878 c 0,-0.309906 -0.20662,-0.516519 -0.41323,-0.516519 -0.3099,0 -0.51652,0.206613 -0.51652,0.516519 0,0.206614 0.20662,0.516546 0.51652,0.516546 0.20661,0 0.41323,-0.309932 0.41323,-0.516546 m -2.99587,0.826453 c 0,-0.309907 -0.20661,-0.51652 -0.41323,-0.51652 -0.3099,0 -0.51651,0.206613 -0.51651,0.51652 0,0.206613 0.20661,0.51652 0.51651,0.51652 0.20662,0 0.41323,-0.309907 0.41323,-0.51652 m -1.65287,0.51652 0.20661,-0.103294 m 0,0 0.10329,0.826453 m 0,0 0.10332,-0.206613 m 0,0 0.10329,0.206613 m 0,0 -0.10329,0.103293 m 0,0 h -0.10332 m 0,0 -0.3099,-0.826452 m 2.78925,3.20249 0.10329,0.309906 m 0,0 h -0.10329 m 0,0 -0.10332,-0.206613 m 0,0 h -0.10329 m 0,0 v -0.103293 m 0,0 h 0.10329 m 0,0 -0.10329,-0.206613 m 0,0 h 0.20661 m 0,0 v 0.103293 m 0,0 0.30991,-0.103293 m 0,0 0.10329,0.206613 m 0,0 -0.10329,0.619839 m 0,0 -0.20662,0.103293 m 0,0 0.1033,-0.723132 m 0,0 h -0.20659 m 1.54958,0 0.10329,0.103293 0.20662,0.10332 m 0,0 h 0.10329 m 0.10332,-0.10332 c 0.10329,0 0.10329,-0.206613 0.10329,-0.309906 m -0.10329,0.103293 h -0.10332 m 0,0.10332 c 0,0 0.10332,-0.10332 0,-0.10332 m -0.20659,0 c 0,0 0,0.10332 0.1033,0.10332 h 0.10329 m -0.20659,0 v -0.10332 l 0.1033,-0.103293 m 0,0 v -0.10332 m 0,0 h -0.1033 m -0.10332,-0.103294 c 0,0 0,0.103294 0.10332,0.103294 h 0.1033 m -0.1033,-0.309907 c 0,0 -0.10332,0 -0.10332,0.10332 v 0.103293 m 0,-0.103293 h 0.10332 0.1033 m 0,0 h 0.10329 m 0,0 -0.10329,-0.10332 -0.20662,-0.103293 m 0,0 -0.10329,0.206613 -0.10332,0.206587 m 0.10332,-0.103294 c 0,0.103294 0,0.206614 0.10329,0.206614 m 0,0 -0.10329,0.103293 v 0.10332 m 1.13636,-4.648756 -0.51655,0.103293 m 0,0 0.10332,0.10332 m 0,0 0.30991,-0.10332 m 0,0 -0.20661,0.413227 m 0.10331,0 c -0.10331,0.103319 0,0.206613 0,0.206613 0.1033,0.103293 0.20662,0.103293 0.30991,0.103293 0.10332,-0.103293 0.10332,-0.206587 0.10332,-0.309906 m 0,0.103319 h -0.20661 m -0.10332,-0.103319 c -0.1033,0.103319 -0.1033,0.103319 0,0.206613 h 0.10332 c 0.10329,0 0.10329,-0.103294 0.10329,-0.206613 m -0.30991,0.103319 0.20662,-0.516546 m 0,0 V 73.088638 M 225.77417,39.20443 c -0.30993,0 -0.61984,0.10332 -0.92977,0.206613 m 1.13636,-0.619839 c -0.51652,0 -1.03304,0.10332 -1.54958,0.309933 m -1.23965,1.136359 c -0.82645,1.136359 -0.82645,2.789237 0,3.925596 0.72313,1.239679 2.27271,1.859492 3.61568,1.549585 1.44628,-0.309906 2.58264,-1.446292 2.78925,-2.892557 m -5.16528,-3.718983 c -0.4132,0.309906 -0.82643,0.619839 -1.23965,1.136359 m 0.3099,-0.103294 c -0.92974,1.033039 -1.03306,2.582598 -0.3099,3.822277 0.72313,1.239679 2.16942,1.859492 3.51238,1.652905 1.44627,-0.309933 2.47933,-1.342999 2.78923,-2.789264 m -0.10329,0.103293 h 0.20661 m -6.40493,-2.685917 0.3099,-0.103294 m 0.92975,-0.723159 V 39.20443 m 1.54958,-0.309906 c -0.51652,0 -1.03304,0.206613 -1.44626,0.413226 m 1.34296,-0.516546 0.1033,0.206613 m 2.99587,3.822303 0.41322,0.103293 m -0.41322,-1.033012 v 0.929719 m 0.41322,-0.826426 -0.41322,-0.103293 m 0.51651,0 c -0.20658,-1.239679 -1.03303,-2.376038 -2.16939,-2.789264 m -1.23967,0.413226 1.13635,-0.309933 m -1.23967,-0.206613 0.10332,0.516546 m -1.44629,0.309906 -0.20661,-0.413226 m -0.92975,0.723159 1.13636,-0.309933 m 3.92561,2.272745 c 0,-0.309933 -0.10329,-0.61984 -0.20661,-0.929773 m -0.72313,1.239653 0.92974,-0.30988 m -0.82645,0.206586 c -0.61981,0.103294 -0.92974,0.723133 -0.82642,1.342972 m 0.41322,1.549586 -0.41322,-1.446292 m -0.41323,1.652905 c 0.30991,-0.10332 0.61984,-0.10332 0.82645,-0.206613 m -1.23967,-1.239679 0.3099,1.446292 m -0.3099,-1.549585 c -0.10332,-0.516546 -0.72313,-0.929773 -1.34297,-0.72316 m -1.54958,0.413227 1.44626,-0.413227 m -1.65287,-0.516519 c 0.10329,0.309906 0.10329,0.619839 0.20661,0.929746 m 1.23965,-1.239653 -1.44626,0.4132 m 1.54958,-0.4132 c 0.51651,-0.206586 0.92974,-0.826426 0.72313,-1.446265 m -0.41323,-1.342972 0.41323,1.446265 m 0.82645,-0.206613 -0.41323,-1.549585 m 0.41323,1.446292 c 0.20661,0.619839 0.82645,0.929746 1.44628,0.826452 m 0.82643,-0.206613 -0.92975,0.206613 m 0.10332,-2.376037 c -0.51654,-0.309933 -1.03306,-0.413227 -1.5496,-0.309933 m 3.6157,3.099197 c -0.10332,-1.239679 -0.92974,-2.272745 -2.0661,-2.789264 m 2.0661,3.718983 c 0.1033,-0.309933 0.1033,-0.619813 0,-0.929719 m 0,0.103293 h -0.20661 m -2.16942,-2.789264 0.30993,-0.103293 m -1.23967,3.202463 c 0,-0.103293 -0.10332,-0.206586 -0.20661,-0.206586 -0.10332,0 -0.20662,0.103293 -0.20662,0.206586 0,0.103294 0.1033,0.206587 0.20662,0.206587 0.10329,0 0.20661,-0.103293 0.20661,-0.206587 m -1.44629,-1.136359 c 0,-0.309906 -0.3099,-0.619839 -0.61984,-0.619839 -0.41319,0 -0.72313,0.309933 -0.72313,0.619839 0,0.413227 0.30994,0.72316 0.72313,0.72316 0.30994,0 0.61984,-0.309933 0.61984,-0.72316 m 2.99587,-0.826426 c 0,-0.309933 -0.30991,-0.619839 -0.61984,-0.619839 -0.41322,0 -0.72313,0.309906 -0.72313,0.619839 0,0.4132 0.30991,0.723133 0.72313,0.723133 0.30993,0 0.61984,-0.309933 0.61984,-0.723133 m 0.82645,2.995825 c 0,-0.309907 -0.30993,-0.61984 -0.61984,-0.61984 -0.41322,0 -0.72313,0.309933 -0.72313,0.61984 0,0.413226 0.30991,0.723132 0.72313,0.723132 0.30991,0 0.61984,-0.309906 0.61984,-0.723132 m -2.99587,0.826452 c 0,-0.309906 -0.3099,-0.619839 -0.61984,-0.619839 -0.41322,0 -0.72313,0.309933 -0.72313,0.619839 0,0.413226 0.30991,0.723133 0.72313,0.723133 0.30994,0 0.61984,-0.309907 0.61984,-0.723133 m -0.20661,0 c 0,-0.206613 -0.20661,-0.413226 -0.41323,-0.413226 -0.3099,0 -0.51651,0.206613 -0.51651,0.413226 0,0.309906 0.20661,0.51652 0.51651,0.51652 0.20662,0 0.41323,-0.206614 0.41323,-0.51652 m 2.99587,-0.826452 c 0,-0.206614 -0.20662,-0.413227 -0.41323,-0.413227 -0.30993,0 -0.51652,0.206613 -0.51652,0.413227 0,0.309932 0.20659,0.516546 0.51652,0.516546 0.20661,0 0.41323,-0.206614 0.41323,-0.516546 m -0.82645,-2.995825 c 0,-0.206613 -0.20662,-0.413226 -0.41323,-0.413226 -0.3099,0 -0.51652,0.206613 -0.51652,0.413226 0,0.309907 0.20662,0.51652 0.51652,0.51652 0.20661,0 0.41323,-0.206613 0.41323,-0.51652 m -2.99587,0.826426 c 0,-0.206613 -0.20661,-0.413226 -0.41323,-0.413226 -0.3099,0 -0.51651,0.206613 -0.51651,0.413226 0,0.309933 0.20661,0.516546 0.51651,0.516546 0.20662,0 0.41323,-0.206613 0.41323,-0.516546 m -1.65287,0.516546 h 0.20661 m 0,0 0.10329,0.723107 m 0,0 0.10332,-0.103294 m 0,0 0.10329,0.103294 m 0,0 -0.10329,0.103293 m 0,0 -0.10332,0.10332 m 0,0 -0.3099,-0.92972 m 2.78925,3.305758 0.10329,0.206613 m 0,0 -0.10329,0.103293 m 0,0 -0.10332,-0.309906 m 0,0 h -0.10329 m 0,0 v -0.10332 m 0,0 h 0.10329 m 0,0 -0.10329,-0.103294 m 0,0 h 0.20661 m 0,0 v 0.103294 m 0,0 0.30991,-0.103294 m 0,0 0.10329,0.103294 m 0,0 -0.10329,0.723159 m 0,0 h -0.20662 m 0,0 0.1033,-0.723159 m 0,0 -0.20659,0.10332 m 1.54958,0 0.10329,0.103293 h 0.20662 m 0,0 h 0.10329 m 0.10332,0 c 0.10329,-0.103293 0.10329,-0.206613 0.10329,-0.309907 m -0.10329,0.103294 h -0.10332 m 0,0 c 0,0 0.10332,0 0,-0.103294 m -0.20659,0.103294 h 0.1033 c 0,0.10332 0,0.10332 0.10329,0 m -0.20659,0 v -0.103294 h 0.1033 m 0,0 v -0.103319 m 0,0 h -0.1033 m -0.10332,-0.206614 c 0,0 0,0.10332 0.10332,0.10332 h 0.1033 m -0.1033,-0.206613 h -0.10332 v 0.103293 m 0,-0.103293 h 0.10332 l 0.1033,0.103293 m 0,0 0.10329,-0.103293 m 0,0 -0.10329,-0.10332 h -0.20662 m 0,0 -0.10329,0.10332 -0.10332,0.206613 m 0.10332,0 c 0,0.103294 0,0.103294 0.10329,0.103294 m 0,0.103319 -0.10329,0.103294 v 0.10332 m 1.13636,-4.752049 -0.51655,0.103319 m 0,0 0.10332,0.103294 m 0,0 h 0.30991 m 0,0 -0.20661,0.413226 m 0.10331,-0.10332 c -0.10331,0.10332 0,0.206613 0,0.309933 0.1033,0.103293 0.20662,0.103293 0.30991,0 0.10332,0 0.10332,-0.10332 0.10332,-0.206613 m 0,0 h -0.20661 m -0.10332,0 c -0.1033,0 -0.1033,0.103293 0,0.103293 0,0.10332 0.10332,0.10332 0.10332,0 0.10329,0 0.10329,-0.103293 0.10329,-0.103293 m -0.30991,0 0.20662,-0.51652 m 0,0 V 40.237496 M 11.518565,104.3902 H 9.3491401 m 2.1694249,2.89255 H 9.142527 m 2.376038,-0.61981 H 9.3491401 M 2.0144669,105.73317 H 0.3615619 M 11.518565,104.80342 H 9.4524599 m 1.6528781,-5.268593 v -7.23138 M 276.80708,10.69211 V 8.5227121 m 2.16941,2.1693979 h -2.16941 m -253.718286,0 V 8.5227121 M 278.97649,158.72889 h -2.16941 m 0,2.16943 v -2.16943 m -253.718286,2.16943 v -2.16943 M 277.2203,167.19992 H 218.54279 M 12.654924,151.1876 H 12.44831 M 22.572274,2.221078 H 79.080368 M 287.13762,151.1876 h 0.30994 M 287.13762,18.233423 h 0.30994 M 0.05165544,99.534827 V 25.25819 m 0,80.99152 v -0.10332 m 0,7.64461 v -0.20661 M 12.654924,18.233423 H 12.44831 M 13.06815,151.1876 h -0.413226 m 274.586016,0 h -0.41322 m 0,-133.057497 c 0.10329,0 0.20661,0.10332 0.41322,0.10332 m -274.586016,0 c 0.206613,0 0.309933,-0.10332 0.413226,-0.10332 m -1.549585,0.516546 h -0.413227 m 0.826453,-0.413226 h -0.826453 m 0,0.413226 H 7.0764222 m 4.0289158,0 v -0.413226 m 0,132.540957 v -31.71481 m 0,32.12803 h 0.826453 m -0.413226,-0.41322 H 11.105338 M 0.46488169,119.05957 v 24.99995 M 11.105338,151.1876 H 7.0764222 m 4.0289158,0 v -0.41322 m 277.581862,0 h 4.13223 M 288.6872,18.233423 h 4.13223 m -4.13223,0.413226 v 58.470905 m -0.82645,74.070046 h 0.82645 m 0,-0.41322 h -0.41322 m 0.41322,0.41322 v -0.41322 M 288.27398,18.646649 h 0.41322 m 0,-0.413226 h -0.82645 m 0.82645,0.413226 V 18.233423 M 0.05165544,106.86955 v -0.20661 M 11.518565,106.24971 H 9.4524599 m 2.0661051,-0.92974 H 9.5557532 m 1.9628118,0.4132 H 9.5557532 m -9.50409776,-0.72314 v -0.20661 m 1.96281146,0.51655 h -1.652905 m -0.30990646,-2.16943 v -0.20661 m 11.46690956,0 H 8.8326205 m -6.0950209,0 H 0.05165544 m 0,0 v -0.41323 m 11.46690956,0 H 8.7293008 m -5.8883814,0 H 0.05165544 m 0,0 v -0.20661 M 11.518565,102.01416 H 8.6260074 m -5.5784749,0 H 0.3615619 m -0.30990646,-0.82643 v -0.20661 M 11.518565,101.60096 H 8.4193943 m -5.2685685,0 H 0.3615619 M 11.518565,100.98112 H 8.316101 m -4.9586621,0 H 0.05165544 m 0,0 v -0.30993 m 11.46690956,0 H 8.2127812 m -4.7520489,0 H 0.05165544 m 0,0 v -0.20662 M 11.518565,100.36128 H 8.1094878 m -4.5454357,0 H 0.15494878 m -0.10329334,17.76854 v -0.20661 M 11.518565,118.33644 H 0.15494878 M 11.518565,117.92321 H 0.05165544 m 0,0 v -0.30988 m 11.46690956,0 H 0.05165544 m 0,0 v -0.20661 m 0,-4.8554 v -0.20659 m 11.46690956,0 H 0.05165544 m 0,0 v -0.41322 m 11.46690956,0 H 0.05165544 m 0,0 V 111.7249 M 11.518565,111.41496 H 0.3615619 m -0.30990646,-0.82642 v -0.20662 M 11.518565,111.00174 H 0.3615619 M 11.518565,110.38192 H 0.05165544 m 0,0 v -0.30993 m 11.46690956,0 H 0.05165544 m 0,0 v -0.20661 M 11.518565,109.45215 H 0.3615619 M 0.05165544,108.72902 V 108.5224 M 11.518565,109.14224 H 7.0764222 m -2.6859176,0 H 0.3615619 M 11.518565,108.5224 H 8.1094878 m -4.6487555,0 H 0.05165544 m 0,0 v -0.30988 M 11.518565,99.534827 H 7.7995549 m -4.0288897,0 H 0.05165544 M 11.518565,119.05957 H 0.05165544 m 4.95866206,-5.06196 c -0.3099065,0.30994 -0.4131998,0.82646 -0.2066132,1.23968 0.1032934,0.41323 0.5165196,0.72313 1.0330392,0.72313 0.4132262,-0.10329 0.8264525,-0.3099 1.0330656,-0.72313 0.1032933,-0.41322 0,-0.92974 -0.3099064,-1.23968 m 0.2066131,1.65291 -0.3099329,0.20661 -0.1032934,0.10329 -0.1033198,0.10332 m -6.19831426,1.34298 0.30990646,-0.41323 m -0.30990646,-0.72316 v 1.13639 m 0,-4.8554 v 1.03307 m 0.30990646,-0.72314 -0.30990646,-0.30993 m 0,1.03307 0.30990646,-0.30991 m -0.30990646,-8.26445 v 1.13636 m 0.30990646,-0.82642 -0.30990646,-0.30994 m 0.41322625,0.72314 c 0.10329333,-0.1033 0.10329333,-0.30991 0,-0.4132 m -0.41322625,0.82642 0.30990646,-0.41322 m -0.30990646,12.39665 v 0.92975 m 0.10329334,-0.72313 -0.10329334,-0.20662 m 0,0.82646 c 0.20661313,0 0.30990646,-0.20662 0.30990646,-0.30994 0,-0.10329 0,-0.3099 -0.10329333,-0.41322 m -0.20661313,-7.64458 v 1.13636 m 0.30990646,-0.72316 -0.30990646,-0.4132 m 0.41322625,0.72313 c 0.10329333,-0.10332 0.10329333,-0.30993 0,-0.41323 m -0.41322625,0.82646 0.30990646,-0.30994 m -0.30990646,-2.68594 v 1.13636 m 0.30990646,-0.72314 -0.30990646,-0.41322 m 0.41322625,0.72313 c 0.10329333,-0.10329 0.10329333,-0.30991 0,-0.41323 m -0.41322625,0.82646 0.30990646,-0.41323 m -0.30990646,-2.5826 v 1.13636 m 0.30990646,-0.72316 -0.30990646,-0.4132 m 0,-3.71901 v 1.03304 m 0.30990646,-0.72313 -0.30990646,-0.30991 m 0,-1.96281 v 1.13636 m 0.30990646,-0.72313 -0.30990646,-0.41323 m 0.41322625,0.72313 c 0.10329333,-0.10329 0.10329333,-0.3099 0,-0.41322 m -0.41322625,0.82645 0.30990646,-0.30993 M 0.05165544,99.534827 v 0.929743 m 0.20661313,-0.20661 c 0.10329333,-0.10329 0.10329333,-0.309907 0.10329333,-0.4132 0,-0.10332 -0.10329333,-0.309933 -0.30990646,-0.309933 m 0,0.929743 0.10329334,-0.10329 M 276.80708,10.69211 H 23.088794 M 276.80708,158.72889 V 10.69211 M 23.088794,158.72889 H 276.80708 M 6.5599027,113.99761 c 0.1032933,0.10332 0.2066131,0.10332 0.3099064,0.10332 m -0.3099064,-0.10332 c 0,-0.10329 -0.1033198,-0.10329 -0.2066132,-0.20661 m 0.1032934,2.78926 c -0.1032934,-0.20661 -0.1032934,-0.30993 -0.1032934,-0.51652 m 5.1652755,0 H 6.2499697 m 0.1033198,0.61982 -0.1033198,0.10332 H 6.1466764 5.7334502 5.4235173 5.2169041 l -0.1032933,-0.10332 m 6.4049542,0 H 6.3532895 m 5.1652755,0.30993 H 0.3615619 m 0.10331979,0 c 0.10329333,-0.10332 0.10329333,-0.30993 0,-0.41323 m -0.41322625,-0.30993 v -0.20659 m 5.26856846,0 c -0.1033198,0.20659 -0.1033198,0.30991 -0.1033198,0.51652 m -0.1032933,0.1033 H 0.3615619 m 0,0 -0.30990646,-0.41323 m 0,-0.20659 v -0.41322 m 5.16524866,0.41322 v -0.10332 l -0.2065866,-0.10329 -0.2066132,-0.20661 m 0.4131998,0.41322 H 0.05165544 m 4.75204886,-0.41322 -0.826426,-0.51655 m 0.826426,0.51655 H 0.05165544 m 0,0 v -0.10332 m 6.71486036,-1.34297 0.826426,0.51652 m 3.9256232,-0.51652 H 6.7665158 m -2.6859442,0.51652 c -0.1032933,0 -0.1032933,0.10332 -0.1032933,0.20661 0,0 0,0.10332 0.1032933,0.10332 m -0.1032933,0.10329 H 0.3615619 m 11.1570031,0.51655 H 6.7665158 m 0.826426,-0.51655 -0.826426,0.51655 m -6.71486036,-1.23968 v -0.20661 m 3.92562286,0.51652 0.826426,-0.51652 m -0.826426,0.51652 H 0.3615619 m 11.1570031,0.41322 H 7.5929418 m 0,-0.10329 c 0.1033198,0 0.1033198,-0.10332 0.1033198,-0.10332 0,-0.10329 0,-0.20661 -0.1033198,-0.20661 m 3.9256232,0 H 7.5929418 M 0.05165544,114.20423 V 113.791 m 5.26856846,0 H 0.05165544 m 5.16524866,0 c 0,0.10332 -0.1032933,0.10332 -0.2065866,0.20661 m -0.2066132,0.10332 c 0.1032934,0 0.2066132,0 0.3099065,-0.10332 m -0.3099065,0.20662 H 0.05165544 M 11.518565,113.791 H 6.2499697 m 5.2685953,-0.92975 H 0.3615619 m 11.1570031,0.41323 H 6.3532895 m -1.2396787,0 H 0.3615619 m 0.10331979,-0.10332 c 0.10329333,-0.10329 0.10329333,-0.30991 0,-0.41323 M 23.088794,10.69211 v 148.03678 m 0,0 H 20.919369 M 23.088794,10.69211 h -2.169425 m -9.400804,96.90058 H 8.9359139 m 2.5826511,0.61983 H 8.5227141 m -5.4751816,0 H 0.05165544 m 0,0 v -0.20661 m 0,0 0.30990646,-0.41322 m 2.0661312,-0.30994 H 0.3615619 m 2.2727443,0.30994 H 0.3615619 m 0.10331979,0 c 0.10329333,-0.10332 0.10329333,-0.30994 0,-0.41323 M 0.05165544,104.3902 v -0.20662 m 0,0 0.30990646,-0.3099 M 11.518565,103.46045 H 9.0392337 m -6.5082472,0 H 0.3615619 m 11.1570031,0.41323 H 9.142527 m -6.7148339,0 H 0.3615619 m 0.10331979,-0.10332 c 0.10329333,-0.1033 0.10329333,-0.30991 0,-0.4132 m 1.65287851,1.44626 H 0.05165544 m 0,0 v -0.41322 m 2.16942456,0 H 0.05165544 m 2.06610476,2.27274 H 0.05165544 m 0,0 v -0.41323 m 2.06610476,0 H 0.05165544 m 5.06195536,7.02477 0.2066131,-0.10332 0.1032934,-0.10329 h 0.3099329 0.4132262 l 0.1032933,0.10329 0.1033198,0.10332 m 0,0.51652 c 0.1032934,-0.20661 0.1032934,-0.41323 0.1032934,-0.61984 m -0.2066132,0.61984 0.1033198,0.10332 m 0,-0.10332 c -0.3099329,-0.10329 -0.7231591,-0.10329 -1.1363854,0 m 0,0.10332 0.1033198,-0.10332 m -0.1033198,-0.61984 c 0,0.20661 0,0.41323 0.1033198,0.61984 m -5.26856846,0.61984 v 1.13636 m 0.30990646,-0.82645 -0.30990646,-0.30991 m 0.41322625,0.72313 c 0.10329333,-0.10329 0.10329333,-0.3099 0,-0.41322 M 0.05165544,115.5472 0.3615619,115.13397 M 39.307752,75.05145 c 0,-2.582651 -2.066131,-4.648756 -4.648756,-4.648756 -2.582624,0 -4.752049,2.066105 -4.752049,4.648756 0,2.582624 2.169425,4.752048 4.752049,4.752048 2.582625,0 4.648756,-2.169424 4.648756,-4.752048 m 0.619839,0 c 0,-2.892584 -2.376037,-5.268569 -5.268595,-5.268569 -2.99585,0 -5.371888,2.375985 -5.371888,5.268569 0,2.99585 2.376038,5.371861 5.371888,5.371861 2.892558,0 5.268595,-2.376011 5.268595,-5.371861 m -0.516546,0 c 0,-2.685971 -2.066105,-4.752049 -4.752049,-4.752049 -2.685944,0 -4.855342,2.066078 -4.855342,4.752049 0,2.685944 2.169398,4.855368 4.855342,4.855368 2.685944,0 4.752049,-2.169424 4.752049,-4.855368 m -1.136359,0 c 0,-1.962812 -1.652878,-3.615717 -3.61569,-3.615717 -2.066105,0 -3.718983,1.652905 -3.718983,3.615717 0,2.066104 1.652878,3.719009 3.718983,3.719009 1.962812,0 3.61569,-1.652905 3.61569,-3.719009 m 1.033066,32.85114 c 0,-2.58262 -2.066131,-4.64875 -4.648756,-4.64875 -2.582624,0 -4.752049,2.06613 -4.752049,4.64875 0,2.58263 2.169425,4.64873 4.752049,4.64873 2.582625,0 4.648756,-2.0661 4.648756,-4.64873 m 0.619839,0 c 0,-2.99585 -2.376037,-5.26859 -5.268595,-5.26859 -2.99585,0 -5.371888,2.27274 -5.371888,5.26859 0,2.89253 2.376038,5.26857 5.371888,5.26857 2.892558,0 5.268595,-2.37604 5.268595,-5.26857 m -0.516546,0 c 0,-2.68594 -2.066105,-4.85537 -4.752049,-4.85537 -2.685944,0 -4.855342,2.16943 -4.855342,4.85537 0,2.68595 2.169398,4.85534 4.855342,4.85534 2.685944,0 4.752049,-2.16939 4.752049,-4.85534 m -1.136359,0 c 0,-2.0661 -1.652878,-3.71901 -3.61569,-3.71901 -2.066105,0 -3.718983,1.65291 -3.718983,3.71901 0,1.96279 1.652878,3.71899 3.718983,3.71899 1.962812,0 3.61569,-1.7562 3.61569,-3.71899 m 31.921423,0 c 0,-2.0661 -1.652905,-3.71901 -3.615716,-3.71901 -2.066105,0 -3.71901,1.65291 -3.71901,3.71901 0,1.96279 1.652905,3.71899 3.71901,3.71899 1.962811,0 3.615716,-1.7562 3.615716,-3.71899 m 1.033013,0 c 0,-2.58262 -2.066078,-4.64875 -4.648729,-4.64875 -2.582651,0 -4.752075,2.06613 -4.752075,4.64875 0,2.58263 2.169424,4.64873 4.752075,4.64873 2.582651,0 4.648729,-2.0661 4.648729,-4.64873 m 0.619839,0 c 0,-2.99585 -2.376011,-5.26859 -5.268568,-5.26859 -2.995877,0 -5.371888,2.27274 -5.371888,5.26859 0,2.89253 2.376011,5.26857 5.371888,5.26857 2.892557,0 5.268568,-2.37604 5.268568,-5.26857 m -0.516519,0 c 0,-2.68594 -2.066105,-4.85537 -4.752049,-4.85537 -2.685944,0 -4.855369,2.16943 -4.855369,4.85537 0,2.68595 2.169425,4.85534 4.855369,4.85534 2.685944,0 4.752049,-2.16939 4.752049,-4.85534 m -1.136333,32.74785 c 0,-1.96281 -1.652905,-3.61572 -3.615716,-3.61572 -2.066105,0 -3.71901,1.65291 -3.71901,3.61572 0,2.06611 1.652905,3.71898 3.71901,3.71898 1.962811,0 3.615716,-1.65287 3.615716,-3.71898 m 1.033013,0 c 0,-2.58265 -2.066078,-4.64875 -4.648729,-4.64875 -2.582651,0 -4.752075,2.0661 -4.752075,4.64875 0,2.58263 2.169424,4.75205 4.752075,4.75205 2.582651,0 4.648729,-2.16942 4.648729,-4.75205 m 0.619839,0 c 0,-2.89258 -2.376011,-5.26857 -5.268568,-5.26857 -2.995877,0 -5.371888,2.37599 -5.371888,5.26857 0,2.99585 2.376011,5.37186 5.371888,5.37186 2.892557,0 5.268568,-2.37601 5.268568,-5.37186 m -0.516519,0 c 0,-2.68597 -2.066105,-4.75205 -4.752049,-4.75205 -2.685944,0 -4.855369,2.06608 -4.855369,4.75205 0,2.68595 2.169425,4.85537 4.855369,4.85537 2.685944,0 4.752049,-2.16942 4.752049,-4.85537 M 103.15055,42.3036 c 0,-2.582624 -2.06614,-4.648755 -4.64876,-4.648755 -2.582625,0 -4.648756,2.066131 -4.648756,4.648755 0,2.582625 2.066131,4.648756 4.648756,4.648756 2.58262,0 4.64876,-2.066131 4.64876,-4.648756 m 0.61983,0 c 0,-2.99585 -2.37603,-5.268595 -5.26859,-5.268595 -2.995851,0 -5.268595,2.272745 -5.268595,5.268595 0,2.892558 2.272744,5.268569 5.268595,5.268569 2.89256,0 5.26859,-2.376011 5.26859,-5.268569 m -0.41322,0 c 0,-2.685944 -2.16943,-4.855368 -4.85537,-4.855368 -2.685945,0 -4.855369,2.169424 -4.855369,4.855368 0,2.685945 2.169424,4.855369 4.855369,4.855369 2.68594,0 4.85537,-2.169424 4.85537,-4.855369 m -0.20661,32.74785 c 0,-2.582651 -2.06614,-4.648756 -4.64876,-4.648756 -2.582625,0 -4.648756,2.066105 -4.648756,4.648756 0,2.582624 2.066131,4.752048 4.648756,4.752048 2.58262,0 4.64876,-2.169424 4.64876,-4.752048 m 0.61983,0 c 0,-2.892584 -2.37603,-5.268569 -5.26859,-5.268569 -2.995851,0 -5.268595,2.375985 -5.268595,5.268569 0,2.99585 2.272744,5.371861 5.268595,5.371861 2.89256,0 5.26859,-2.376011 5.26859,-5.371861 m -0.41322,0 c 0,-2.685971 -2.16943,-4.752049 -4.85537,-4.752049 -2.685945,0 -4.855369,2.066078 -4.855369,4.752049 0,2.685944 2.169424,4.855368 4.855369,4.855368 2.68594,0 4.85537,-2.169424 4.85537,-4.855368 m -0.20661,32.85114 c 0,-2.58262 -2.06614,-4.64875 -4.64876,-4.64875 -2.582625,0 -4.648756,2.06613 -4.648756,4.64875 0,2.58263 2.066131,4.64873 4.648756,4.64873 2.58262,0 4.64876,-2.0661 4.64876,-4.64873 m 0.61983,0 c 0,-2.99585 -2.37603,-5.26859 -5.26859,-5.26859 -2.995851,0 -5.268595,2.27274 -5.268595,5.26859 0,2.89253 2.272744,5.26857 5.268595,5.26857 2.89256,0 5.26859,-2.37604 5.26859,-5.26857 m -0.41322,0 c 0,-2.68594 -2.16943,-4.85537 -4.85537,-4.85537 -2.685945,0 -4.855369,2.16943 -4.855369,4.85537 0,2.68595 2.169424,4.85534 4.855369,4.85534 2.68594,0 4.85537,-2.16939 4.85537,-4.85534 m -0.20661,32.74785 c 0,-2.58265 -2.06614,-4.64875 -4.64876,-4.64875 -2.582625,0 -4.648756,2.0661 -4.648756,4.64875 0,2.58263 2.066131,4.75205 4.648756,4.75205 2.58262,0 4.64876,-2.16942 4.64876,-4.75205 m 0.61983,0 c 0,-2.89258 -2.37603,-5.26857 -5.26859,-5.26857 -2.995851,0 -5.268595,2.37599 -5.268595,5.26857 0,2.99585 2.272744,5.37186 5.268595,5.37186 2.89256,0 5.26859,-2.37601 5.26859,-5.37186 m -0.41322,0 c 0,-2.68597 -2.16943,-4.75205 -4.85537,-4.75205 -2.685945,0 -4.855369,2.06608 -4.855369,4.75205 0,2.68595 2.169424,4.85537 4.855369,4.85537 2.68594,0 4.85537,-2.16942 4.85537,-4.85537 M 135.07194,42.3036 c 0,-2.582624 -2.0661,-4.648755 -4.64875,-4.648755 -2.58265,0 -4.64873,2.066131 -4.64873,4.648755 0,2.582625 2.06608,4.648756 4.64873,4.648756 2.58265,0 4.64875,-2.066131 4.64875,-4.648756 m 0.61984,0 c 0,-2.99585 -2.37604,-5.268595 -5.26859,-5.268595 -2.99588,0 -5.26857,2.272745 -5.26857,5.268595 0,2.892558 2.27269,5.268569 5.26857,5.268569 2.89255,0 5.26859,-2.376011 5.26859,-5.268569 m -0.41323,0 c 0,-2.685944 -2.16942,-4.855368 -4.85536,-4.855368 -2.68595,0 -4.85535,2.169424 -4.85535,4.855368 0,2.685945 2.1694,4.855369 4.85535,4.855369 2.68594,0 4.85536,-2.169424 4.85536,-4.855369 m -0.20661,32.74785 c 0,-2.582651 -2.0661,-4.648756 -4.64875,-4.648756 -2.58265,0 -4.64873,2.066105 -4.64873,4.648756 0,2.582624 2.06608,4.752048 4.64873,4.752048 2.58265,0 4.64875,-2.169424 4.64875,-4.752048 m 0.61984,0 c 0,-2.892584 -2.37604,-5.268569 -5.26859,-5.268569 -2.99588,0 -5.26857,2.375985 -5.26857,5.268569 0,2.99585 2.27269,5.371861 5.26857,5.371861 2.89255,0 5.26859,-2.376011 5.26859,-5.371861 m -0.41323,0 c 0,-2.685971 -2.16942,-4.752049 -4.85536,-4.752049 -2.68595,0 -4.85535,2.066078 -4.85535,4.752049 0,2.685944 2.1694,4.855368 4.85535,4.855368 2.68594,0 4.85536,-2.169424 4.85536,-4.855368 m -0.20661,32.85114 c 0,-2.58262 -2.0661,-4.64875 -4.64875,-4.64875 -2.58265,0 -4.64873,2.06613 -4.64873,4.64875 0,2.58263 2.06608,4.64873 4.64873,4.64873 2.58265,0 4.64875,-2.0661 4.64875,-4.64873 m 0.61984,0 c 0,-2.99585 -2.37604,-5.26859 -5.26859,-5.26859 -2.99588,0 -5.26857,2.27274 -5.26857,5.26859 0,2.89253 2.27269,5.26857 5.26857,5.26857 2.89255,0 5.26859,-2.37604 5.26859,-5.26857 m -0.41323,0 c 0,-2.68594 -2.16942,-4.85537 -4.85536,-4.85537 -2.68595,0 -4.85535,2.16943 -4.85535,4.85537 0,2.68595 2.1694,4.85534 4.85535,4.85534 2.68594,0 4.85536,-2.16939 4.85536,-4.85534 m -0.20661,32.74785 c 0,-2.58265 -2.0661,-4.64875 -4.64875,-4.64875 -2.58265,0 -4.64873,2.0661 -4.64873,4.64875 0,2.58263 2.06608,4.75205 4.64873,4.75205 2.58265,0 4.64875,-2.16942 4.64875,-4.75205 m 0.61984,0 c 0,-2.89258 -2.37604,-5.26857 -5.26859,-5.26857 -2.99588,0 -5.26857,2.37599 -5.26857,5.26857 0,2.99585 2.27269,5.37186 5.26857,5.37186 2.89255,0 5.26859,-2.37601 5.26859,-5.37186 m -0.41323,0 c 0,-2.68597 -2.16942,-4.75205 -4.85536,-4.75205 -2.68595,0 -4.85535,2.06608 -4.85535,4.75205 0,2.68595 2.1694,4.85537 4.85535,4.85537 2.68594,0 4.85536,-2.16942 4.85536,-4.85537 M 166.99334,42.3036 c 0,-2.582624 -2.16943,-4.648755 -4.75205,-4.648755 -2.58265,0 -4.64876,2.066131 -4.64876,4.648755 0,2.582625 2.06611,4.648756 4.64876,4.648756 2.58262,0 4.75205,-2.066131 4.75205,-4.648756 m 0.61981,0 c 0,-2.99585 -2.37601,-5.268595 -5.37186,-5.268595 -2.89256,0 -5.2686,2.272745 -5.2686,5.268595 0,2.892558 2.37604,5.268569 5.2686,5.268569 2.99585,0 5.37186,-2.376011 5.37186,-5.268569 m -0.51652,0 c 0,-2.685944 -2.16942,-4.855368 -4.85534,-4.855368 -2.68594,0 -4.75208,2.169424 -4.75208,4.855368 0,2.685945 2.06614,4.855369 4.75208,4.855369 2.68592,0 4.85534,-2.169424 4.85534,-4.855369 m -0.10329,32.74785 c 0,-2.582651 -2.16943,-4.648756 -4.75205,-4.648756 -2.58265,0 -4.64876,2.066105 -4.64876,4.648756 0,2.582624 2.06611,4.752048 4.64876,4.752048 2.58262,0 4.75205,-2.169424 4.75205,-4.752048 m 0.61981,0 c 0,-2.892584 -2.37601,-5.268569 -5.37186,-5.268569 -2.89256,0 -5.2686,2.375985 -5.2686,5.268569 0,2.99585 2.37604,5.371861 5.2686,5.371861 2.99585,0 5.37186,-2.376011 5.37186,-5.371861 m -0.51652,0 c 0,-2.685971 -2.16942,-4.752049 -4.85534,-4.752049 -2.68594,0 -4.75208,2.066078 -4.75208,4.752049 0,2.685944 2.06614,4.855368 4.75208,4.855368 2.68592,0 4.85534,-2.169424 4.85534,-4.855368 m -0.10329,32.85114 c 0,-2.58262 -2.16943,-4.64875 -4.75205,-4.64875 -2.58265,0 -4.64876,2.06613 -4.64876,4.64875 0,2.58263 2.06611,4.64873 4.64876,4.64873 2.58262,0 4.75205,-2.0661 4.75205,-4.64873 m 0.61981,0 c 0,-2.99585 -2.37601,-5.26859 -5.37186,-5.26859 -2.89256,0 -5.2686,2.27274 -5.2686,5.26859 0,2.89253 2.37604,5.26857 5.2686,5.26857 2.99585,0 5.37186,-2.37604 5.37186,-5.26857 m -0.51652,0 c 0,-2.68594 -2.16942,-4.85537 -4.85534,-4.85537 -2.68594,0 -4.75208,2.16943 -4.75208,4.85537 0,2.68595 2.06614,4.85534 4.75208,4.85534 2.68592,0 4.85534,-2.16939 4.85534,-4.85534 m -0.10329,32.74785 c 0,-2.58265 -2.16943,-4.64875 -4.75205,-4.64875 -2.58265,0 -4.64876,2.0661 -4.64876,4.64875 0,2.58263 2.06611,4.75205 4.64876,4.75205 2.58262,0 4.75205,-2.16942 4.75205,-4.75205 m 0.61981,0 c 0,-2.89258 -2.37601,-5.26857 -5.37186,-5.26857 -2.89256,0 -5.2686,2.37599 -5.2686,5.26857 0,2.99585 2.37604,5.37186 5.2686,5.37186 2.99585,0 5.37186,-2.37601 5.37186,-5.37186 m -0.51652,0 c 0,-2.68597 -2.16942,-4.75205 -4.85534,-4.75205 -2.68594,0 -4.75208,2.06608 -4.75208,4.75205 0,2.68595 2.06614,4.85537 4.75208,4.85537 2.68592,0 4.85534,-2.16942 4.85534,-4.85537 m 31.8181,-98.34684 c 0,-2.582624 -2.16941,-4.648755 -4.75205,-4.648755 -2.58264,0 -4.64875,2.066131 -4.64875,4.648755 0,2.582625 2.06611,4.648756 4.64875,4.648756 2.58264,0 4.75205,-2.066131 4.75205,-4.648756 m 0.61983,0 c 0,-2.99585 -2.37603,-5.268595 -5.37188,-5.268595 -2.89256,0 -5.26858,2.272745 -5.26858,5.268595 0,2.892558 2.37602,5.268569 5.26858,5.268569 2.99585,0 5.37188,-2.376011 5.37188,-5.268569 m -0.51652,0 c 0,-2.685944 -2.16942,-4.855368 -4.85536,-4.855368 -2.68595,0 -4.75206,2.169424 -4.75206,4.855368 0,2.685945 2.06611,4.855369 4.75206,4.855369 2.68594,0 4.85536,-2.169424 4.85536,-4.855369 m -0.10331,32.74785 c 0,-2.582651 -2.16941,-4.648756 -4.75205,-4.648756 -2.58264,0 -4.64875,2.066105 -4.64875,4.648756 0,2.582624 2.06611,4.752048 4.64875,4.752048 2.58264,0 4.75205,-2.169424 4.75205,-4.752048 m 0.61983,0 c 0,-2.892584 -2.37603,-5.268569 -5.37188,-5.268569 -2.89256,0 -5.26858,2.375985 -5.26858,5.268569 0,2.99585 2.37602,5.371861 5.26858,5.371861 2.99585,0 5.37188,-2.376011 5.37188,-5.371861 m -0.51652,0 c 0,-2.685971 -2.16942,-4.752049 -4.85536,-4.752049 -2.68595,0 -4.75206,2.066078 -4.75206,4.752049 0,2.685944 2.06611,4.855368 4.75206,4.855368 2.68594,0 4.85536,-2.169424 4.85536,-4.855368 m -0.10331,32.85114 c 0,-2.58262 -2.16941,-4.64875 -4.75205,-4.64875 -2.58264,0 -4.64875,2.06613 -4.64875,4.64875 0,2.58263 2.06611,4.64873 4.64875,4.64873 2.58264,0 4.75205,-2.0661 4.75205,-4.64873 m 0.61983,0 c 0,-2.99585 -2.37603,-5.26859 -5.37188,-5.26859 -2.89256,0 -5.26858,2.27274 -5.26858,5.26859 0,2.89253 2.37602,5.26857 5.26858,5.26857 2.99585,0 5.37188,-2.37604 5.37188,-5.26857 m -0.51652,0 c 0,-2.68594 -2.16942,-4.85537 -4.85536,-4.85537 -2.68595,0 -4.75206,2.16943 -4.75206,4.85537 0,2.68595 2.06611,4.85534 4.75206,4.85534 2.68594,0 4.85536,-2.16939 4.85536,-4.85534 m -0.10331,32.74785 c 0,-2.58265 -2.16941,-4.64875 -4.75205,-4.64875 -2.58264,0 -4.64875,2.0661 -4.64875,4.64875 0,2.58263 2.06611,4.75205 4.64875,4.75205 2.58264,0 4.75205,-2.16942 4.75205,-4.75205 m 0.61983,0 c 0,-2.89258 -2.37603,-5.26857 -5.37188,-5.26857 -2.89256,0 -5.26858,2.37599 -5.26858,5.26857 0,2.99585 2.37602,5.37186 5.26858,5.37186 2.99585,0 5.37188,-2.37601 5.37188,-5.37186 m -0.51652,0 c 0,-2.68597 -2.16942,-4.75205 -4.85536,-4.75205 -2.68595,0 -4.75206,2.06608 -4.75206,4.75205 0,2.68595 2.06611,4.85537 4.75206,4.85537 2.68594,0 4.85536,-2.16942 4.85536,-4.85537 M 230.73282,42.3036 c 0,-2.582624 -2.0661,-4.648755 -4.64874,-4.648755 -2.58265,0 -4.64874,2.066131 -4.64874,4.648755 0,2.582625 2.06609,4.648756 4.64874,4.648756 2.58264,0 4.64874,-2.066131 4.64874,-4.648756 m 0.61984,0 c 0,-2.99585 -2.27271,-5.268595 -5.26858,-5.268595 -2.89255,0 -5.26858,2.272745 -5.26858,5.268595 0,2.892558 2.37603,5.268569 5.26858,5.268569 2.99587,0 5.26858,-2.376011 5.26858,-5.268569 m -0.41323,0 c 0,-2.685944 -2.16942,-4.855368 -4.85535,-4.855368 -2.68594,0 -4.85536,2.169424 -4.85536,4.855368 0,2.685945 2.16942,4.855369 4.85536,4.855369 2.68593,0 4.85535,-2.169424 4.85535,-4.855369 m -0.20661,32.74785 c 0,-2.582651 -2.0661,-4.648756 -4.64874,-4.648756 -2.58265,0 -4.64874,2.066105 -4.64874,4.648756 0,2.582624 2.06609,4.752048 4.64874,4.752048 2.58264,0 4.64874,-2.169424 4.64874,-4.752048 m 0.61984,0 c 0,-2.892584 -2.27271,-5.268569 -5.26858,-5.268569 -2.89255,0 -5.26858,2.375985 -5.26858,5.268569 0,2.99585 2.37603,5.371861 5.26858,5.371861 2.99587,0 5.26858,-2.376011 5.26858,-5.371861 m -0.41323,0 c 0,-2.685971 -2.16942,-4.752049 -4.85535,-4.752049 -2.68594,0 -4.85536,2.066078 -4.85536,4.752049 0,2.685944 2.16942,4.855368 4.85536,4.855368 2.68593,0 4.85535,-2.169424 4.85535,-4.855368 m -0.20661,32.85114 c 0,-2.58262 -2.0661,-4.64875 -4.64874,-4.64875 -2.58265,0 -4.64874,2.06613 -4.64874,4.64875 0,2.58263 2.06609,4.64873 4.64874,4.64873 2.58264,0 4.64874,-2.0661 4.64874,-4.64873 m 0.61984,0 c 0,-2.99585 -2.27271,-5.26859 -5.26858,-5.26859 -2.89255,0 -5.26858,2.27274 -5.26858,5.26859 0,2.89253 2.37603,5.26857 5.26858,5.26857 2.99587,0 5.26858,-2.37604 5.26858,-5.26857 m -0.41323,0 c 0,-2.68594 -2.16942,-4.85537 -4.85535,-4.85537 -2.68594,0 -4.85536,2.16943 -4.85536,4.85537 0,2.68595 2.16942,4.85534 4.85536,4.85534 2.68593,0 4.85535,-2.16939 4.85535,-4.85534 m -0.20661,32.74785 c 0,-2.58265 -2.0661,-4.64875 -4.64874,-4.64875 -2.58265,0 -4.64874,2.0661 -4.64874,4.64875 0,2.58263 2.06609,4.75205 4.64874,4.75205 2.58264,0 4.64874,-2.16942 4.64874,-4.75205 m 0.61984,0 c 0,-2.89258 -2.27271,-5.26857 -5.26858,-5.26857 -2.89255,0 -5.26858,2.37599 -5.26858,5.26857 0,2.99585 2.37603,5.37186 5.26858,5.37186 2.99587,0 5.26858,-2.37601 5.26858,-5.37186 m -0.41323,0 c 0,-2.68597 -2.16942,-4.75205 -4.85535,-4.75205 -2.68594,0 -4.85536,2.06608 -4.85536,4.75205 0,2.68595 2.16942,4.85537 4.85536,4.85537 2.68593,0 4.85535,-2.16942 4.85535,-4.85537 M 262.65424,42.3036 c 0,-2.582624 -2.06613,-4.648755 -4.64878,-4.648755 -2.58261,0 -4.64874,2.066131 -4.64874,4.648755 0,2.582625 2.06613,4.648756 4.64874,4.648756 2.58265,0 4.64878,-2.066131 4.64878,-4.648756 m 0.61981,0 c 0,-2.99585 -2.27272,-5.268595 -5.26859,-5.268595 -2.89255,0 -5.26858,2.272745 -5.26858,5.268595 0,2.892558 2.37603,5.268569 5.26858,5.268569 2.99587,0 5.26859,-2.376011 5.26859,-5.268569 m -0.41323,0 c 0,-2.685944 -2.16939,-4.855368 -4.85536,-4.855368 -2.68593,0 -4.85535,2.169424 -4.85535,4.855368 0,2.685945 2.16942,4.855369 4.85535,4.855369 2.68597,0 4.85536,-2.169424 4.85536,-4.855369 m -0.20658,32.74785 c 0,-2.582651 -2.06613,-4.648756 -4.64878,-4.648756 -2.58261,0 -4.64874,2.066105 -4.64874,4.648756 0,2.582624 2.06613,4.752048 4.64874,4.752048 2.58265,0 4.64878,-2.169424 4.64878,-4.752048 m 0.61981,0 c 0,-2.892584 -2.27272,-5.268569 -5.26859,-5.268569 -2.89255,0 -5.26858,2.375985 -5.26858,5.268569 0,2.99585 2.37603,5.371861 5.26858,5.371861 2.99587,0 5.26859,-2.376011 5.26859,-5.371861 m -0.41323,0 c 0,-2.685971 -2.16939,-4.752049 -4.85536,-4.752049 -2.68593,0 -4.85535,2.066078 -4.85535,4.752049 0,2.685944 2.16942,4.855368 4.85535,4.855368 2.68597,0 4.85536,-2.169424 4.85536,-4.855368 m -0.20658,32.85114 c 0,-2.58262 -2.06613,-4.64875 -4.64878,-4.64875 -2.58261,0 -4.64874,2.06613 -4.64874,4.64875 0,2.58263 2.06613,4.64873 4.64874,4.64873 2.58265,0 4.64878,-2.0661 4.64878,-4.64873 m 0.61981,0 c 0,-2.99585 -2.27272,-5.26859 -5.26859,-5.26859 -2.89255,0 -5.26858,2.27274 -5.26858,5.26859 0,2.89253 2.37603,5.26857 5.26858,5.26857 2.99587,0 5.26859,-2.37604 5.26859,-5.26857 m -0.41323,0 c 0,-2.68594 -2.16939,-4.85537 -4.85536,-4.85537 -2.68593,0 -4.85535,2.16943 -4.85535,4.85537 0,2.68595 2.16942,4.85534 4.85535,4.85534 2.68597,0 4.85536,-2.16939 4.85536,-4.85534 m -0.20658,32.74785 c 0,-2.58265 -2.06613,-4.64875 -4.64878,-4.64875 -2.58261,0 -4.64874,2.0661 -4.64874,4.64875 0,2.58263 2.06613,4.75205 4.64874,4.75205 2.58265,0 4.64878,-2.16942 4.64878,-4.75205 m 0.61981,0 c 0,-2.89258 -2.27272,-5.26857 -5.26859,-5.26857 -2.89255,0 -5.26858,2.37599 -5.26858,5.26857 0,2.99585 2.37603,5.37186 5.26858,5.37186 2.99587,0 5.26859,-2.37601 5.26859,-5.37186 m -0.41323,0 c 0,-2.68597 -2.16939,-4.75205 -4.85536,-4.75205 -2.68593,0 -4.85535,2.06608 -4.85535,4.75205 0,2.68595 2.16942,4.85537 4.85535,4.85537 2.68597,0 4.85536,-2.16942 4.85536,-4.85537 m -224.069614,0 c 0,-2.27274 -1.859492,-4.13223 -4.13221,-4.13223 -2.376011,0 -4.235529,1.85949 -4.235529,4.13223 0,2.37601 1.859518,4.23553 4.235529,4.23553 2.272718,0 4.13221,-1.85952 4.13221,-4.23553 m 1.136385,0 c 0,-2.89258 -2.376037,-5.26857 -5.268595,-5.26857 -2.99585,0 -5.371888,2.37599 -5.371888,5.26857 0,2.99585 2.376038,5.37186 5.371888,5.37186 2.892558,0 5.268595,-2.37601 5.268595,-5.37186 m -0.413226,0 c 0,-2.68597 -2.169425,-4.85537 -4.855369,-4.85537 -2.685944,0 -4.958662,2.1694 -4.958662,4.85537 0,2.68595 2.272718,4.95866 4.958662,4.95866 2.685944,0 4.855369,-2.27271 4.855369,-4.95866 M 23.088794,3.4607303 H 79.8035 m 71.90063,0 h 58.88411 m 73.45022,7.1280867 c 0,-3.925623 -3.20248,-7.1280867 -7.23138,-7.1280867 m 7.12806,7.2313797 v 4.028916 m 0,64.669246 v 0.309933 m -7.12806,86.156745 c 4.0289,0 7.23138,-3.20244 7.23138,-7.23138 m -7.23138,7.23138 H 217.71634 M 15.857387,158.62557 c 0,4.02894 3.305784,7.23138 7.231407,7.23138 m -7.231407,-7.12806 V 89.720796 M 23.088794,3.4607303 c -3.925623,0 -7.231407,3.2024637 -7.231407,7.1280867 M 276.80708,8.5227121 V 3.4607303 M 149.94793,8.5227121 h 126.85915 m 2.16941,2.1693979 h 4.95865 m -4.95865,-0.103293 c 0,-1.1363591 -0.92974,-2.0661049 -2.16941,-2.0661049 m 2.16941,150.2061779 h 4.95865 M 278.97649,10.69211 v 148.03678 m -2.16941,2.16943 v 4.95863 m 0,-5.06195 c 1.23967,0 2.16941,-0.92975 2.16941,-2.16943 m -255.887696,2.27275 v 4.95863 M 276.80708,160.89832 H 23.088794 m -2.169425,-2.16943 h -5.061982 m 5.061982,-0.10332 c 0,1.23968 1.033066,2.16943 2.169425,2.16943 M 20.919369,10.69211 h -5.061982 m 5.061982,148.03678 V 10.69211 M 23.088794,8.5227121 V 3.4607303 m 0,5.0619818 c -1.136359,0 -2.169425,0.9297458 -2.169425,2.0661049 M 23.088794,8.5227121 H 149.94793 m 0,0 V 3.56405 m 26.6528,161.98299 0.10332,-0.10332 h 0.20661 l 0.30991,-0.10329 h 0.51655 l 0.61981,-0.10329 0.72316,-0.10332 h 0.82642 l 0.92978,-0.10329 h 1.03303 l 1.13639,-0.10332 h 1.23964 l 1.34297,-0.1033 h 2.68595 2.78924 2.89256 2.68594 l 1.23966,0.1033 h 1.23967 l 1.13636,0.10332 h 1.03306 l 1.03305,0.10329 h 0.82644 l 0.72314,0.10332 0.61984,0.10329 h 0.51652 l 0.30992,0.10329 h 0.20661 l 0.1033,0.10332 h -0.1033 l -0.20661,0.1033 h -0.30992 -0.51652 l -0.61984,0.10332 h -0.72314 -0.82644 -0.92975 l -1.13636,0.10329 h -1.13636 -1.13636 -1.34297 -2.68594 -2.78925 -2.89255 -2.68595 -1.34297 -1.13635 -1.23968 l -1.03303,-0.10329 h -0.92978 -0.82642 -0.72316 l -0.61981,-0.10332 h -0.51655 -0.30991 l -0.20661,-0.1033 h -0.10332 m 33.26438,1.65288 h -57.43785 m 66.11553,0 -1.343,1.03307 m 2.27274,-1.03307 -0.72313,0.72316 -0.51655,0.41323 -0.51651,0.51652 m -7.1281,-2.99588 h -58.88411 m 64.97914,0 h 1.13636 m -1.23965,0 h -4.85536 m -1.03306,0 h 1.13636 m 5.88842,0 -0.41323,0.51655 -0.61984,0.41322 m -0.10329,-0.92977 -0.30993,0.30993 m -72.52044,1.03304 H 87.75804 m 64.66922,0 -1.34297,1.03307 m 2.27271,-1.03307 -0.72313,0.72316 -0.51652,0.41323 -0.51654,0.51652 m -7.02477,-2.99588 H 86.931587 m 63.636183,0 h 1.13636 m -1.13636,0 h -4.85534 m -1.13639,0 h 1.13639 m 5.9917,0 -0.51652,0.51655 -0.61984,0.41322 m 0,-0.92977 -0.41323,0.30993 m -71.074172,1.03304 H 22.572274 m 65.185766,0 -1.342999,1.03307 m 2.272744,-1.03307 -0.723159,0.72316 -0.516519,0.41323 -0.61984,0.51652 M 79.8035,165.85695 H 23.088794 m 62.706434,0 h 1.136359 m -1.136359,0 h -4.855395 m -1.136333,0 h 1.136333 m 5.991754,0 -0.413226,0.51655 -0.61984,0.41322 m -0.103293,-0.92977 -0.309933,0.30993 M 283.93514,89.720796 v 0.309933 m 0,64.669271 v 4.02889 m 0,-77.685739 v -1.446266 m 0,1.549559 v 7.128113 m 0.10332,1.446239 v -1.549559 m 3.20248,-5.475208 v 4.028943 m 0,0 -0.30993,0.516519 -0.41322,0.516547 -0.72314,0.723132 -0.61983,0.51652 -0.20662,0.206613 -0.41322,0.206587 -0.20661,0.103319 -0.1033,0.103294 -0.30993,0.103293 m 2.06613,-3.40905 -0.41323,0.516519 -0.41322,0.413226 -0.51652,0.516547 -0.30993,0.206586 -0.1033,0.10332 -0.30993,0.206613 m 2.06613,-5.165302 h 0.10329 l 0.20661,-0.103293 0.30993,-0.10332 0.61984,-0.206613 m -3.3058,-2.995824 0.30993,0.103293 0.1033,0.10332 0.20661,0.103267 0.41322,0.206613 0.20662,0.10332 0.61983,0.619813 0.72314,0.723159 0.41322,0.51652 0.30993,0.516519 m -3.3058,-1.549585 0.30993,0.10332 0.1033,0.103293 0.30993,0.309933 0.51652,0.51652 0.41322,0.413226 0.41323,0.516519 m 0,0 v 3.202491 m 0,0 0.3099,0.103293 0.30993,0.10332 0.61984,0.206613 m 1.44626,5.578475 v 58.470933 m 0.82645,-69.627936 c 0.61984,-0.51652 0.92975,-1.342946 0.82645,-2.066078 m -2.06612,-2.376038 h 0.10332 l 0.10329,0.10332 0.20661,0.309906 m -0.41322,2.582651 1.23967,1.446239 m -0.82645,-4.02889 0.82645,0.929746 0.82645,1.033066 m 0,11.156976 -0.82645,1.136359 -0.82645,0.929746 m 0.82645,-4.13221 -1.23967,1.549559 m 0.41322,2.582651 -0.20661,0.309933 -0.10329,0.103293 h -0.10332 m 1.23967,-11.570229 v 7.024793 m 0.82645,2.066105 c 0.1033,-0.723133 -0.20661,-1.549559 -0.82645,-2.066105 M 218.54279,2.221078 h 58.67751 m -67.35519,0 1.34297,-1.0330656 m -2.37602,1.0330656 0.82644,-0.7231327 0.51652,-0.4132263 0.51654,-0.51654601 m 7.02478,2.89255731 h 59.09074 m -64.97916,0 h -1.13636 m 1.03306,0.1033197 h 4.85536 m 1.23965,-0.1033197 h -1.13636 m -6.09503,0 0.51655,-0.4131998 0.61983,-0.4132263 m 0,0.9297458 0.4132,-0.3099064 M 152.42726,2.221078 h 57.43785 m -66.1155,0 1.34298,-1.0330656 m -2.27275,1.0330656 0.72316,-0.7231327 0.51652,-0.4132263 0.51652,-0.51654601 m 1.13639,2.89255731 h -1.13639 m 1.13639,0.1033197 h 4.2355 m 1.7562,-0.1033197 h -1.13636 M 149.94793,3.56405 h 0.61984 m -5.99173,-0.1033197 0.41323,-0.4131998 0.61984,-0.4132263 m 0.10332,0.9297458 0.30988,-0.3099064 M 87.75804,2.221078 h 55.99157 m -64.669242,0 1.342945,-1.0330656 M 78.047302,2.221078 78.873755,1.4979453 79.390274,1.084719 79.90682,0.56817299 M 86.931587,3.4607303 H 144.57604 M 80.939833,3.56405 h 4.855395 M 79.8035,3.4607303 80.32002,3.0475305 80.83654,2.6343042 m 6.095047,0.8264261 H 85.795228 M 80.939833,3.56405 81.353059,3.2541436 M 80.939833,3.4607303 H 79.8035 M 216.27005,166.16688 v 0.20662 h 0.10332 l 0.10329,0.20661 0.20661,0.20661 m -1.03306,0.4132 h -2.89255 m 2.37603,-0.61981 h -1.85949 m 2.37601,0.61981 -0.20661,-0.3099 -0.20659,-0.1033 -0.10332,-0.10332 v -0.10329 m 0,0 h 0.30991 l 0.30993,-0.10332 0.3099,-0.10329 0.20662,-0.20662 m 0.41322,0.61984 -0.51652,0.30991 -0.51654,0.10329 M 81.353059,3.2541436 81.146446,3.1508238 V 3.0475305 L 81.043153,2.8409173 80.83654,2.6343042 M 81.972899,2.221078 h 2.892557 m -2.376011,0.6198393 h 1.859491 m -2.376037,-0.6198393 0.206613,0.2066131 0.103319,0.2066131 v 0.1032934 l 0.206614,0.1033197 m 0,0 H 82.179512 L 81.869605,2.9442107 81.559672,3.0475305 81.353059,3.2541436 M 80.83654,2.6343042 81.353059,2.3243713 81.972899,2.221078 m 2.376037,0.6198393 V 2.6343042 H 84.45223 L 84.555549,2.4276911 84.865456,2.221078 m 1.033065,0.4132262 0.61984,0.4132263 0.413226,0.4131998 M 85.485295,3.2541436 85.795228,3.56405 m 0.103293,-0.9297458 -0.206613,0.2066131 -0.103293,0.2066132 h -0.10332 v 0.2066131 m 0,0 L 85.278682,3.0475305 84.968776,2.9442107 84.658843,2.8409173 h -0.309907 m 0.51652,-0.6198393 0.516546,0.1032933 0.516519,0.3099329 m 60.123789,0.6198394 -0.1033,-0.1033198 -0.10329,-0.1032933 -0.10329,-0.2066132 -0.10332,-0.2066131 m 1.03303,-0.4132262 h 2.89256 m -2.37604,0.6198393 h 1.96282 m -2.47934,-0.6198393 0.20662,0.2066131 0.10329,0.2066131 0.10332,0.1032934 0.10329,0.1033197 m 0,0 h -0.3099 l -0.30994,0.1032934 -0.3099,0.1033198 -0.20661,0.2066131 m -0.4132,-0.6198394 0.51649,-0.3099329 0.51654,-0.1032933 m 2.47934,0.6198393 V 2.6343042 h 0.10332 l 0.10329,-0.2066131 0.20661,-0.2066131 m 1.03307,0.4132262 0.61984,0.4132263 0.51652,0.4131998 m -1.54959,-0.2065867 0.41323,0.3099064 m 0,-0.9297458 -0.10332,0.2066131 -0.20662,0.2066132 -0.10329,0.2066131 m 0,0 -0.20661,-0.2066131 -0.30993,-0.1033198 -0.30991,-0.1032934 h -0.20661 m 0.41322,-0.6198393 0.51652,0.1032933 0.51655,0.3099329 m 61.57005,0.6198394 -0.20661,-0.1033198 V 3.0475305 l -0.10329,-0.2066132 -0.1033,-0.2066131 m 1.03304,-0.4132262 h 2.89255 m -2.37601,0.6198393 h 1.85949 m -2.37603,-0.6198393 0.20661,0.2066131 0.10332,0.2066131 v 0.1032934 l 0.20661,0.1033197 m 0,0 h -0.30993 l -0.3099,0.1032934 -0.30994,0.1033198 -0.20661,0.2066131 m -0.4132,-0.6198394 0.4132,-0.3099329 0.61984,-0.1032933 m 2.37603,0.6198393 V 2.6343042 h 0.10332 l 0.20659,-0.2066131 0.20661,-0.2066131 m 1.03306,0.4132262 0.61984,0.4132263 0.41323,0.4131998 m -1.44629,-0.2065867 0.30993,0.3099064 m 0.10329,-0.9297458 -0.20661,0.2066131 -0.10329,0.2066132 h -0.10332 v 0.2066131 m 0,0 -0.20662,-0.2066131 -0.3099,-0.1033198 -0.30993,-0.1032934 h -0.30991 m 0.51652,-0.6198393 0.51654,0.1032933 0.51652,0.3099329 M 82.489445,166.58011 82.282831,166.6834 v 0.10332 l -0.103319,0.1033 -0.206613,0.3099 m -1.136359,-0.4132 -0.51652,-0.41322 -0.51652,-0.51655 m 1.549559,0.30993 -0.413226,-0.30993 m -0.103293,0.92977 0.206613,-0.20661 0.103293,-0.20661 v -0.10332 l 0.206613,-0.1033 m 0,0 0.206613,0.20662 0.309933,0.10329 0.309907,0.10332 h 0.309933 m -0.516546,0.61981 -0.61984,-0.10329 -0.516519,-0.30991 m 4.648755,-0.61984 v 0.20662 h 0.10332 l 0.103293,0.20661 0.206613,0.20661 m -1.549585,-0.20661 h -1.859491 m 2.376011,0.61981 h -2.892557 m 2.892557,0 -0.206613,-0.3099 -0.206613,-0.1033 -0.103294,-0.10332 v -0.10329 m 0,0 h 0.309907 l 0.309933,-0.10332 0.309906,-0.10329 0.206613,-0.20662 m 0.413226,0.61984 -0.516519,0.30991 -0.516546,0.10329 m 62.293204,-0.61981 -0.10329,0.10329 -0.10332,0.10332 -0.10329,0.1033 -0.20662,0.3099 m -1.03303,-0.4132 -0.61984,-0.41322 -0.41323,-0.51655 m 1.44627,0.30993 -0.30988,-0.30993 m -0.10332,0.92977 0.10332,-0.20661 0.10329,-0.20661 0.10329,-0.10332 0.1033,-0.1033 m 0,0 0.20661,0.20662 0.3099,0.10329 0.30994,0.10332 h 0.3099 m -0.51652,0.61981 -0.51654,-0.10329 -0.51649,-0.30991 m 4.54543,-0.61984 0.10329,0.20662 0.20662,0.20661 0.10332,0.20661 m -1.44629,-0.20661 h -1.96282 m 2.37604,0.61981 h -2.89256 m 2.89256,0 -0.20661,-0.3099 -0.10329,-0.1033 -0.10332,-0.10332 v -0.10329 m 0,0 h 0.20661 l 0.30991,-0.10332 0.30993,-0.10329 0.20661,-0.20662 m 0.41323,0.61984 -0.51655,0.30991 -0.51652,0.10329 m 63.7395,-0.61981 -0.20661,0.10329 v 0.10332 l -0.10332,0.1033 -0.20661,0.3099 m -1.03304,-0.4132 -0.61983,-0.41322 -0.51655,-0.51655 m 1.54958,0.30993 -0.4132,-0.30993 m 0,0.92977 0.1033,-0.20661 0.10329,-0.20661 v -0.10332 l 0.20661,-0.1033 m 0,0 0.20661,0.20662 0.30994,0.10329 0.3099,0.10332 h 0.30993 m -0.51654,0.61981 -0.61984,-0.10329 -0.4132,-0.30991 m 5.47517,1.44627 0.20661,0.20661 0.10332,0.20662 0.1033,0.10331 0.10332,0.1033 m -1.65291,0.51652 h -3.719 m 5.37191,-0.51652 -0.41323,0.20661 -0.41322,0.20661 -0.41323,0.1033 h -0.41323 m -0.3099,-0.72313 h -3.09916 m 3.40906,0.72313 -0.10329,-0.1033 v -0.20661 l -0.10332,-0.20661 -0.10329,-0.20661 m 0,0 0.41322,-0.1033 h 0.30991 l 0.41323,-0.20661 0.3099,-0.10332 M 80.423313,1.1880124 C 80.32002,0.98139924 80.113407,0.67149279 79.90682,0.56817299 m 1.652852,-0.51651957 h 3.71901 m -5.371862,0.51651957 0.4132,-0.20661312 0.309907,-0.20661312 0.516519,-0.10329333 h 0.413226 m 0.309933,0.7231327 h 3.099171 m -3.409104,-0.7231327 v 0.10329333 l 0.10332,0.10331979 0.103293,0.20661312 0.10332,0.30990646 m 0,0 H 81.456379 L 81.043153,0.87810591 80.733246,1.084719 80.423313,1.1880124 m 4.545463,-0.41322628 0.103293,-0.20661313 0.10332,-0.30990645 V 0.15494675 l 0.103293,-0.10329333 m 1.549585,0.51651957 0.61984,0.51654601 0.516519,0.4132263 0.723159,0.7231327 M 85.278682,0.05165342 h 0.413226 l 0.413227,0.10329333 0.413226,0.20661312 0.309906,0.20661312 M 86.415041,1.1880124 87.75804,2.221078 M 86.828267,0.56817299 v 0.1033198 l -0.103293,0.10329333 -0.10332,0.20661312 -0.206613,0.20661316 m 0,0 L 86.105135,1.084719 85.691908,0.87810591 85.382002,0.77478612 H 84.968776 M 145.09259,1.1880124 c -0.10332,-0.20661316 -0.30994,-0.51651961 -0.41323,-0.61983941 m 1.54956,-0.51651957 h 3.71901 m -5.37189,0.51651957 0.41323,-0.20661312 0.41322,-0.20661312 0.41323,-0.10329333 h 0.4132 m 0.3099,0.7231327 h 3.09918 m -3.40908,-0.7231327 0.10329,0.10329333 v 0.10331979 l 0.10332,0.20661312 0.10329,0.30990646 m 0,0 h -0.41322 l -0.30988,0.10331979 -0.41323,0.20661309 -0.3099,0.1032934 M 149.638,0.77478612 149.84461,0.56817299 V 0.25826654 l 0.10332,-0.10331979 V 0.05165342 m 1.65288,0.51651957 0.51654,0.51654601 0.51652,0.4132263 0.72313,0.7231327 m -3.40907,-2.16942458 h 0.41322 l 0.41323,0.10329333 0.41323,0.20661312 0.4132,0.20661312 m -0.51652,0.61983941 1.34297,1.0330656 m -0.82645,-1.65290501 -0.1033,0.1033198 -0.10332,0.10329333 -0.10329,0.20661312 -0.20661,0.20661316 m 0,0 -0.30991,-0.1032934 -0.30993,-0.20661309 -0.41323,-0.10331979 H 149.638 m 61.57008,0.41322628 c -0.10329,-0.20661316 -0.30991,-0.51651961 -0.41323,-0.61983941 m 1.54958,-0.51651957 h 3.719 m -5.37187,0.51651957 0.41323,-0.20661312 0.3099,-0.20661312 0.51652,-0.10329333 h 0.41322 m 0.30994,0.7231327 h 3.09916 m -3.4091,-0.7231327 v 0.10329333 l 0.10332,0.10331979 0.1033,0.20661312 0.10332,0.30990646 m 0,0 h -0.41323 l -0.41322,0.10331979 -0.30991,0.20661309 -0.30993,0.1032934 m 4.54545,-0.41322628 0.10329,-0.20661313 0.10332,-0.30990645 V 0.15494675 l 0.10329,-0.10329333 m 1.65291,0.51651957 0.51651,0.51654601 0.51655,0.4132263 0.72313,0.7231327 m -3.4091,-2.16942458 h 0.41323 l 0.41323,0.10329333 0.41322,0.20661312 0.41323,0.20661312 m -0.51655,0.61983941 1.343,1.0330656 m -0.82645,-1.65290501 -0.10332,0.1033198 -0.1033,0.10329333 -0.10332,0.20661312 -0.20661,0.20661316 m 0,0 -0.3099,-0.1032934 -0.41323,-0.20661309 -0.30991,-0.10331979 h -0.41322 M 81.869605,168.64622 l -0.10332,0.3099 -0.103293,0.20661 -0.10332,0.10332 v 0.1033 m -1.652852,-0.51652 -0.516546,-0.51652 -0.516519,-0.41323 -0.826453,-0.72316 m 3.51237,2.16943 h -0.413226 l -0.516519,-0.1033 -0.309907,-0.20661 -0.4132,-0.20661 m 0.516493,-0.61984 -1.342945,-1.03307 m 0.826452,1.54961 c 0.206587,-0.10331 0.4132,-0.41322 0.516493,-0.61983 m 0,0.10329 0.309933,0.10332 0.309907,0.20661 h 0.413226 l 0.413226,0.1033 m 4.545436,-0.41323 0.206613,0.20661 0.10332,0.20662 0.103293,0.10331 v 0.1033 m -1.549585,0.51652 h -3.71901 m 5.268595,-0.51652 -0.309906,0.20661 -0.413226,0.20661 -0.413227,0.1033 h -0.413226 m -0.309906,-0.72313 h -3.099171 m 3.409077,0.72313 -0.103293,-0.1033 v -0.20661 l -0.10332,-0.20661 -0.103293,-0.20661 m 0,0 0.413226,-0.1033 h 0.309906 l 0.413227,-0.20661 0.309906,-0.10332 m 60.123779,0.41323 -0.10329,0.3099 -0.10332,0.20661 v 0.10332 l -0.10329,0.1033 m -1.65288,-0.51652 -0.51652,-0.51652 -0.51652,-0.41323 -0.72316,-0.72316 m 3.40908,2.16943 h -0.4132 l -0.41323,-0.1033 -0.41322,-0.20661 -0.41323,-0.20661 m 0.51655,-0.61984 -1.34298,-1.03307 m 0.92975,1.54961 c 0.10329,-0.10331 0.30991,-0.41322 0.41323,-0.61983 m 0,0.10329 0.3099,0.10332 0.41323,0.20661 h 0.30988 l 0.41322,0.1033 m 4.54547,-0.41323 0.20661,0.20661 0.10329,0.20662 0.10332,0.10331 0.1033,0.1033 m -1.65288,0.51652 h -3.71901 m 5.37189,-0.51652 -0.4132,0.20661 -0.41323,0.20661 -0.41323,0.1033 h -0.41322 m -0.30993,-0.72313 h -3.09918 m 3.40911,0.72313 v -0.1033 l -0.10332,-0.20661 v -0.20661 l -0.20661,-0.20661 m 0,0 0.41322,-0.1033 h 0.41323 l 0.30993,-0.20661 0.30991,-0.10332 m 61.57008,0.41323 -0.10332,0.3099 -0.1033,0.20661 -0.10332,0.10332 v 0.1033 m -1.65287,-0.51652 -0.51654,-0.51652 -0.51652,-0.41323 -0.82644,-0.72316 m 3.51237,2.16943 h -0.41322 l -0.51652,-0.1033 -0.3099,-0.20661 -0.41323,-0.20661 m 0.51652,-0.61984 -1.34297,-1.03307 m 0.92974,1.54961 c 0.10332,-0.10331 0.30994,-0.41322 0.41323,-0.61983 m 0,0.10329 0.30993,0.10332 0.30991,0.20661 h 0.41322 l 0.41323,0.1033 m 74.79319,-77.995652 0.82642,-0.929772 M 287.44756,151.1876 V 90.650568 m 0.82642,-0.516546 v 60.640358 m -0.41323,0.41322 c 0.30994,0 0.41323,-0.20661 0.41323,-0.51654 m -0.41323,0.51654 h -0.41319 m 0,-60.537032 0.51651,-0.413226 0.20662,-0.10332 h 0.10329 m 0,-10.433817 -0.82642,-0.929746 m 0,0 V 18.233423 m 0,0 h 0.41319 m 0.41323,0.413226 c 0,-0.309933 -0.10329,-0.413226 -0.41323,-0.413226 m 0.41323,0.413226 v 60.64033 m 0,0 h -0.10329 l -0.20662,-0.10332 -0.51651,-0.4132 M 15.857387,79.700205 V 10.69211 m 0.103294,77.479127 v 1.549559 m -0.103294,-1.446239 v -7.128113 m 0.103294,-1.549559 v 1.446266 m -3.409051,5.681821 v -4.028943 m 0,0 0.413227,-0.516519 0.309906,-0.51652 0.723133,-0.723159 0.619813,-0.619813 0.206613,-0.10332 0.413226,-0.206613 0.206613,-0.103267 0.206613,-0.10332 0.206613,-0.103293 m -1.962785,3.40905 0.4132,-0.516519 0.309907,-0.413226 0.619839,-0.51652 0.206613,-0.309933 0.206613,-0.103293 0.206613,-0.10332 m -1.962785,5.165302 -0.206613,0.103293 h -0.206613 l -0.309906,0.10332 -0.61984,0.206613 M 15.857387,89.720796 15.650774,89.617503 15.444161,89.514209 15.237548,89.41089 14.824322,89.204303 14.617709,88.99769 13.997896,88.48117 13.274763,87.758038 12.964857,87.241491 12.55163,86.724972 m 1.342972,-3.615717 h -0.206613 l -0.206613,-0.103293 -0.309906,-0.10332 -0.61984,-0.206613 m 1.342972,3.615717 v -3.202491 m 1.962785,5.165302 -0.206613,-0.206613 -0.206613,-0.10332 -0.206613,-0.206586 -0.619839,-0.516547 -0.309907,-0.413226 -0.4132,-0.516519 M 11.105338,77.117554 V 18.646649 m 0,73.656798 -1.5495848,-2.066105 m 0,-11.156976 0.7231588,-1.033066 0.826426,-0.929746 m 0,0 0.309933,-0.309906 0.103294,-0.10332 m -1.136359,4.442116 1.136359,-1.446239 m 0,10.020591 -1.136359,-1.549559 m 1.136359,4.545436 -0.103294,-0.103293 -0.309933,-0.309933 m -0.619839,-4.13221 c -0.6198128,0.516546 -0.9297458,1.342972 -0.826426,2.066105 m 0,-11.156976 c -0.1033198,0.723132 0.2066132,1.549558 0.826426,2.066078 m -0.103293,7.024793 v -7.024793 m 1.136359,8.574352 0.929745,0.929772 m 0,0 V 151.1876 m 0,0 h -0.516519 m -0.413226,-0.51654 c 0,0.30993 0.206613,0.51654 0.516546,0.51654 m -0.516546,-0.41322 V 90.134022 m 0,0 h 0.103319 l 0.206614,0.10332 0.619812,0.413226 m 0,-11.880109 -0.929745,0.929746 M 12.44831,18.233423 v 60.537036 m -0.929745,0.51652 v -60.64033 m 0.516546,-0.413226 c -0.309933,0 -0.516546,0.103293 -0.516546,0.413226 m 0.413226,-0.413226 h 0.516519 m 0,60.537036 -0.619812,0.4132 -0.206614,0.10332 H 11.518565 M 22.572274,2.221078 C 20.816076,1.3946255 18.853264,1.2913322 16.993746,2.0144649 15.237548,2.7375976 13.791309,4.1838894 13.06815,5.9400613 m 0,0.1032933 V 18.130103 m 0,133.160797 v 12.08675 m 0,-0.1033 c 0.723159,1.85947 2.169398,3.30576 3.925596,4.02889 1.859518,0.72314 3.82233,0.61984 5.578528,-0.20661 M 286.82772,18.130103 V 6.0433546 m 0,-0.1032933 C 286.10456,4.1838894 284.6583,2.7375976 282.9021,2.0144649 281.04259,1.2913322 279.07979,1.3946255 277.32359,2.221078 m 0,164.875552 c 1.7562,0.82645 3.719,0.92975 5.57851,0.20661 1.7562,-0.72313 3.20246,-2.16942 3.92562,-4.02889 m 0,0.1033 V 151.2909 m -257.953838,5.88841 v -0.20662 M 82.179512,17.097064 h -0.206613 m 0.206613,140.082246 -0.206613,-0.20662 M 82.902644,17.097064 h 0.206614 M 136.00169,157.17931 v -0.20662 m -53.099046,0.20662 0.206614,-0.20662 m 52.892432,0.72314 v -0.30991 m -8.57438,0.30991 h 8.57438 m -8.98758,0.20661 H 37.96478 m 0,0 h -0.413226 m 89.875756,0 h -0.4132 m -89.462556,0 h -5.061956 m 99.999692,0 h -5.06198 m -89.875756,-0.20661 v -0.30991 m -8.677672,0.30991 h 8.677672 m 89.462556,0 v -0.30991 m 0,0.30991 h 0.4132 m -89.875756,0 h 0.413226 m 0,0 h 89.04933 m 5.47518,0.20661 c 1.96281,0 3.61572,-0.10329 3.61572,-0.20661 m -107.127808,0 c 0,0.10332 1.549585,0.20661 3.512396,0.20661 m 5.165249,-0.20661 v 0.20661 m 0.309933,-0.20661 v 0.20661 m 89.04933,-0.20661 v 0.20661 m 0.4132,0 v -0.20661 M 82.902644,26.187936 V 157.17931 m 0,-131.404601 v 0.413227 m 0,-5.578475 v 5.165248 m -0.206613,-8.677645 h -0.4132 m 0.4132,8.677645 v -8.677645 m 0,9.090872 h -0.4132 m 0.4132,0 v -0.413227 m 0,131.301281 c 0,0.10332 0.10332,0.20661 0.206613,0.20661 m 44.111466,0.10332 H 82.902644 m -0.206613,-0.20661 V 26.187936 M 127.42731,157.17931 h 5.06198 m -5.47518,0 h 0.4132 m -44.524666,0 h 44.111466 m 0.4132,0.20661 v 0.30991 m 0,-0.30991 h -0.4132 m 8.98758,0 h -8.57438 M 82.902644,20.609461 c 0,-1.962812 -0.103293,-3.512397 -0.206613,-3.512397 M 136.10501,157.2826 c 0,-0.10329 -1.65291,-0.10329 -3.61572,-0.10329 M 82.902644,17.097064 v 3.512397 M 136.00169,157.17931 h -3.5124 m -5.06198,0.10329 v -0.10329 m -0.4132,0.20661 v -0.20661 m -44.111466,0.20661 v -0.20661 m -0.206613,0 h 0.206613 M 82.696031,26.187936 h 0.206613 m 0,-0.51652 H 82.696031 M 37.96478,157.17931 h 44.214732 m -44.627958,0 h 0.413226 m -5.475182,0 h 5.061956 m -8.677672,0.20661 v 0.30991 m 8.677672,-0.30991 h -8.677672 m 9.090898,0 v 0.30991 m 0,-0.30991 h -0.413226 m 44.627958,-0.10332 c 0.103319,0 0.206613,-0.10329 0.206613,-0.20661 M 82.282831,26.187936 V 157.17931 m -0.103319,0.20661 H 37.96478 M 82.179512,25.774709 v -5.165248 m 0,5.578475 v -0.413227 m 0,131.404601 V 26.187936 m 0.103319,-0.413227 h 0.4132 m -0.4132,0 v 0.413227 m 0,-9.090872 v 8.677645 M 32.489598,157.17931 c -1.962811,0 -3.512396,0 -3.512396,0.10329 M 82.282831,17.097064 c -0.103319,0 -0.103319,1.549585 -0.103319,3.512397 M 28.873882,157.17931 h 3.615716 M 82.179512,17.097064 v 3.512397 m 0.103319,5.061955 h -0.103319 m 0.103319,0.51652 h -0.103319 m 0.103319,130.991374 h -0.103319 m 0,0.20661 v -0.20661 m -44.214732,0.20661 v -0.20661 m -0.309933,0 v 0.10329 M 299.8442,25.25819 v 118.80133 m -7.02477,7.12808 H 288.6872 M 0.05165544,144.05952 V 119.05957 M 7.0764222,18.233423 H 11.105338 M 0.05165544,144.05952 h 0.41322625 m 6.61154051,6.71486 H 11.105338 M 0.46488169,144.05952 c 0,3.61569 2.99585061,6.61154 6.71483391,6.61154 m -7.12806016,-6.61154 c 0,3.92559 3.20249016,7.12808 7.12806016,7.12808 m -0.1032934,-0.41322 v 0.41322 M 0.46488169,25.25819 v 74.276637 m 0,-74.276637 H 0.05165544 M 7.1797156,18.130103 c -3.92557,0 -7.12806016,3.20249 -7.12806016,7.128087 M 7.1797156,18.646649 c -3.7189833,0 -6.71483391,2.892557 -6.71483391,6.611541 M 7.0764222,18.233423 v 0.413226 M 299.8442,25.25819 h -0.41322 m -6.61155,-6.611541 h -4.13223 m 10.74378,6.611541 c 0,-3.718984 -2.99587,-6.611541 -6.61155,-6.611541 m 7.12806,6.611541 c 0,-3.925597 -3.20245,-7.128087 -7.12806,-7.128087 m 0,0.516546 v -0.413226 m 6.61155,125.826097 V 25.25819 m 0,118.80133 h 0.41322 m -7.02477,6.61154 c 3.61568,0 6.61155,-2.99585 6.61155,-6.61154 m -6.61155,7.12808 c 3.92561,0 7.12806,-3.20249 7.12806,-7.12808 m -7.12806,7.12808 v -0.41322 M 291.68307,34.142448 c 0,1.446292 1.13636,2.685944 2.58264,2.685944 m 0.51652,0 h -0.51652 m -2.68596,-2.685944 V 28.87388 m 3.20248,7.954512 c 1.44629,0 2.68594,-1.239652 2.68594,-2.685944 m -3.20246,-7.954512 c -1.44628,0 -2.58264,1.136359 -2.58264,2.58265 m 5.7851,0.103294 v 5.268568 m -3.20246,-7.954512 h 0.51652 m 2.68594,2.58265 c 0,-1.446291 -1.23965,-2.58265 -2.68594,-2.58265 m 2.27271,2.58265 c 0,-1.136359 -1.03303,-2.169424 -2.27271,-2.169424 m 0,0 h -0.51652 m 2.78923,7.541286 V 28.87388 m -2.78923,-2.272718 c -1.13638,0 -2.16941,1.033065 -2.16941,2.169424 m 2.68593,7.541287 c 1.23968,0 2.27271,-1.033066 2.27271,-2.169425 M 292.0963,28.87388 v 5.268568 m 2.16941,2.272745 h 0.51652 m -2.68593,-2.272745 c 0,1.136359 1.03303,2.169425 2.16941,2.169425 m -2.68596,-2.169425 h 0.51655 m 2.16941,2.272745 v 0.413199 m -2.68596,-7.954512 h 0.51655 m 2.68593,7.541313 v 0.413199 m -0.51652,-10.640456 v 0.413226 m 2.78923,7.541286 h 0.41323 m -2.68594,-7.954512 v 0.413226 m 2.27271,2.272718 h 0.41323 m -3.20246,103.71873 c -1.44628,0 -2.58264,1.13636 -2.58264,2.58265 m -0.10332,5.37186 v -5.26857 m 2.68596,-2.68594 h 0.51652 m -3.09916,7.95451 c 0,1.44629 1.13636,2.68595 2.58264,2.68595 m 3.20246,-8.05781 c 0,-1.44629 -1.23965,-2.58265 -2.68594,-2.58265 m 0,10.64046 h -0.51652 m 3.20246,-7.95452 v 5.26857 m -2.68594,2.68595 c 1.44629,0 2.68594,-1.23966 2.68594,-2.68595 m -2.68594,2.16943 c 1.23968,0 2.27271,-1.03307 2.27271,-2.16943 m 0,0 v -5.26857 m -2.78923,7.54129 h 0.51652 m 2.27271,-7.64458 c 0,-1.13639 -1.03303,-2.16942 -2.27271,-2.16942 m -2.68593,7.54128 c 0,1.13636 1.03303,2.16943 2.16941,2.16943 m 0.51652,-9.71071 h -0.51652 m -2.16941,2.27271 v 5.26857 m 2.16941,-7.54128 c -1.13638,0 -2.16941,1.03303 -2.16941,2.16942 m 2.16941,-2.58265 v 0.41323 m -2.16941,2.27271 h -0.51655 m 3.20248,-2.68594 v 0.41323 m -2.68593,7.54128 h -0.51655 m 5.88842,-5.26857 h -0.41323 m -2.78923,7.54129 v 0.41323 m 3.20246,-2.68595 h -0.41323 m -2.27271,2.27272 v 0.41323 M 2.4276931,34.142448 c 0,1.446292 1.2396523,2.685944 2.6859177,2.685944 m 0.5165196,0 H 5.1136108 M 2.4276931,34.142448 V 28.87388 m 3.2024373,7.954512 c 1.4462918,0 2.6859706,-1.239652 2.6859706,-2.685944 M 5.1136108,26.187936 c -1.4462654,0 -2.6859177,1.136359 -2.6859177,2.58265 m 5.7850881,0.103294 v 5.268568 M 5.1136108,26.187936 h 0.5165196 m 2.6859706,2.58265 c 0,-1.446291 -1.2396788,-2.58265 -2.6859706,-2.58265 m 2.1694245,2.58265 c 0,-1.136359 -0.9297458,-2.169424 -2.1694245,-2.169424 m 0,0 H 5.1136108 m 2.6859441,7.541286 V 28.87388 M 5.1136108,26.601162 c -1.1363325,0 -2.1693981,1.033065 -2.1693981,2.169424 m 2.6859177,7.541287 c 1.2396787,0 2.1694245,-1.033066 2.1694245,-2.169425 M 2.8409194,28.87388 v 5.268568 m 2.2726914,2.272745 H 5.6301304 M 2.9442127,34.142448 c 0,1.136359 1.0330656,2.169425 2.1693981,2.169425 M 2.4276931,34.142448 h 0.4132263 m 2.2726914,2.272745 v 0.413199 M 2.4276931,28.87388 h 0.4132263 m 2.789211,7.541313 v 0.413199 M 5.1136108,26.187936 v 0.413226 m 2.6859441,7.541286 H 8.2127812 M 5.6301304,26.187936 v 0.413226 M 7.7995549,28.87388 H 8.2127812 M 5.1136108,132.59261 c -1.4462654,0 -2.6859177,1.13636 -2.6859177,2.58265 m 0,5.37186 v -5.26857 m 2.6859177,-2.68594 h 0.5165196 m -3.2024373,7.95451 c 0,1.44629 1.2396523,2.68595 2.6859177,2.68595 m 3.2024902,-8.05781 c 0,-1.44629 -1.2396788,-2.58265 -2.6859706,-2.58265 m 0,10.64046 H 5.1136108 m 3.0991704,-7.95452 v 5.26857 m -2.5826508,2.68595 c 1.4462918,0 2.6859706,-1.23966 2.6859706,-2.68595 m -2.6859706,2.16943 c 1.2396787,0 2.1694245,-1.03307 2.1694245,-2.16943 m 0,0 v -5.26857 m -2.6859441,7.54129 h 0.5165196 m 2.1694245,-7.64458 c 0,-1.13639 -0.9297458,-2.16942 -2.1694245,-2.16942 m -2.6859177,7.54128 c 0,1.13636 1.0330656,2.16943 2.1693981,2.16943 m 0.5165196,-9.71071 H 5.1136108 m -2.2726914,2.27271 v 5.26857 m 2.2726914,-7.54128 c -1.1363325,0 -2.1693981,1.03303 -2.1693981,2.16942 m 2.1693981,-2.58265 v 0.41323 m -2.2726914,2.27271 H 2.4276931 m 3.2024373,-2.68594 v 0.41323 m -2.789211,7.54128 H 2.4276931 m 5.7850881,-5.26857 H 7.7995549 m -2.6859441,7.54129 v 0.41323 m 3.0991704,-2.68595 H 7.7995549 m -2.1694245,2.27272 v 0.41323 M 290.3401,89.927409 V 79.390272 m -280.7843468,0 V 89.927409 M 33.212704,80.216698 c 2.376038,0.61984 4.855369,-0.4132 5.991728,-2.479304 1.239679,-2.066132 0.826453,-4.752076 -0.826426,-6.404954 -1.652905,-1.652879 -4.338849,-2.066105 -6.404954,-0.826426 -2.066105,1.136332 -3.09917,3.615663 -2.479331,5.991701 m 3.718983,36.466835 c 2.376038,0.61984 4.855369,-0.41323 5.991728,-2.47933 1.239679,-2.06611 0.826453,-4.64873 -0.826426,-6.30164 -1.652905,-1.7562 -4.338849,-2.0661 -6.404954,-0.92974 -2.066105,1.23968 -3.09917,3.71901 -2.479331,5.9917 m 35.64038,3.71901 c 2.376038,0.61984 4.855395,-0.41323 5.991728,-2.47933 1.239652,-2.06611 0.826452,-4.64873 -0.826426,-6.30164 -1.652905,-1.7562 -4.338849,-2.0661 -6.404954,-0.92974 -2.066131,1.23968 -3.099144,3.71901 -2.479331,5.9917 m 3.718983,36.57018 c 2.376038,0.61981 4.855395,-0.41323 5.991728,-2.47933 1.239652,-2.06614 0.826452,-4.75208 -0.826426,-6.40496 -1.652905,-1.65288 -4.338849,-2.0661 -6.404954,-0.82642 -2.066131,1.13633 -3.099144,3.61566 -2.479331,5.9917 M 97.055524,47.365582 c 2.376011,0.619813 4.855346,-0.413226 5.991706,-2.479357 1.23967,-2.066105 0.82645,-4.648729 -0.82646,-6.301608 -1.65288,-1.756225 -4.338793,-2.066131 -6.404925,-0.929772 -2.066104,1.239679 -3.09917,3.71901 -2.479331,5.991727 m 3.71901,36.570126 c 2.376011,0.61984 4.855346,-0.4132 5.991706,-2.479304 1.23967,-2.066132 0.82645,-4.752076 -0.82646,-6.404954 -1.65288,-1.652879 -4.338793,-2.066105 -6.404925,-0.826426 -2.066104,1.136332 -3.09917,3.615663 -2.479331,5.991701 m 3.71901,36.466835 c 2.376011,0.61984 4.855346,-0.41323 5.991706,-2.47933 1.23967,-2.06611 0.82645,-4.64873 -0.82646,-6.30164 -1.65288,-1.7562 -4.338793,-2.0661 -6.404925,-0.92974 -2.066104,1.23968 -3.09917,3.71901 -2.479331,5.9917 m 3.71901,36.57018 c 2.376011,0.61981 4.855346,-0.41323 5.991706,-2.47933 1.23967,-2.06614 0.82645,-4.75208 -0.82646,-6.40496 -1.65288,-1.65288 -4.338793,-2.0661 -6.404925,-0.82642 -2.066104,1.13633 -3.09917,3.61566 -2.479331,5.9917 M 128.97689,47.365582 c 2.37604,0.619813 4.85537,-0.413226 5.99176,-2.479357 1.23965,-2.066105 0.82642,-4.648729 -0.82645,-6.301608 -1.65291,-1.756225 -4.33885,-2.066131 -6.40496,-0.929772 -2.0661,1.239679 -3.09914,3.71901 -2.47933,5.991727 m 3.71898,36.570126 c 2.37604,0.61984 4.85537,-0.4132 5.99176,-2.479304 1.23965,-2.066132 0.82642,-4.752076 -0.82645,-6.404954 -1.65291,-1.652879 -4.33885,-2.066105 -6.40496,-0.826426 -2.0661,1.136332 -3.09914,3.615663 -2.47933,5.991701 m 3.71898,36.466835 c 2.37604,0.61984 4.85537,-0.41323 5.99176,-2.47933 1.23965,-2.06611 0.82642,-4.64873 -0.82645,-6.30164 -1.65291,-1.7562 -4.33885,-2.0661 -6.40496,-0.92974 -2.0661,1.23968 -3.09914,3.71901 -2.47933,5.9917 m 3.71898,36.57018 c 2.37604,0.61981 4.85537,-0.41323 5.99176,-2.47933 1.23965,-2.06614 0.82642,-4.75208 -0.82645,-6.40496 -1.65291,-1.65288 -4.33885,-2.0661 -6.40496,-0.82642 -2.0661,1.13633 -3.09914,3.61566 -2.47933,5.9917 m 35.64041,-94.731128 c 2.27272,0.619813 4.75202,-0.413226 5.9917,-2.479357 1.13636,-2.066105 0.82645,-4.648729 -0.92975,-6.301608 -1.65288,-1.756225 -4.2355,-2.066131 -6.30163,-0.929772 -2.06611,1.239679 -3.09917,3.71901 -2.47933,5.991727 m 3.71901,36.570126 c 2.27272,0.61984 4.75202,-0.4132 5.9917,-2.479304 1.13636,-2.066132 0.82645,-4.752076 -0.92975,-6.404954 -1.65288,-1.652879 -4.2355,-2.066105 -6.30163,-0.826426 -2.06611,1.136332 -3.09917,3.615663 -2.47933,5.991701 m 3.71901,36.466835 c 2.27272,0.61984 4.75202,-0.41323 5.9917,-2.47933 1.13636,-2.06611 0.82645,-4.64873 -0.92975,-6.30164 -1.65288,-1.7562 -4.2355,-2.0661 -6.30163,-0.92974 -2.06611,1.23968 -3.09917,3.71901 -2.47933,5.9917 m 3.71901,36.57018 c 2.27272,0.61981 4.75202,-0.41323 5.9917,-2.47933 1.13636,-2.06614 0.82645,-4.75208 -0.92975,-6.40496 -1.65288,-1.65288 -4.2355,-2.0661 -6.30163,-0.82642 -2.06611,1.13633 -3.09917,3.61566 -2.47933,5.9917 m 35.6404,-94.731128 c 2.27272,0.619813 4.75205,-0.413226 5.99172,-2.479357 1.13635,-2.066105 0.82644,-4.648729 -0.92976,-6.301608 -1.65288,-1.756225 -4.23552,-2.066131 -6.30163,-0.929772 -2.06611,1.239679 -3.09916,3.71901 -2.47933,5.991727 m 3.719,36.570126 c 2.27272,0.61984 4.75205,-0.4132 5.99172,-2.479304 1.13635,-2.066132 0.82644,-4.752076 -0.92976,-6.404954 -1.65288,-1.652879 -4.23552,-2.066105 -6.30163,-0.826426 -2.06611,1.136332 -3.09916,3.615663 -2.47933,5.991701 m 3.719,36.466835 c 2.27272,0.61984 4.75205,-0.41323 5.99172,-2.47933 1.13635,-2.06611 0.82644,-4.64873 -0.92976,-6.30164 -1.65288,-1.7562 -4.23552,-2.0661 -6.30163,-0.92974 -2.06611,1.23968 -3.09916,3.71901 -2.47933,5.9917 m 3.719,36.57018 c 2.27272,0.61981 4.75205,-0.41323 5.99172,-2.47933 1.13635,-2.06614 0.82644,-4.75208 -0.92976,-6.40496 -1.65288,-1.65288 -4.23552,-2.0661 -6.30163,-0.82642 -2.06611,1.13633 -3.09916,3.61566 -2.47933,5.9917 m 35.6404,-94.731128 c 2.27271,0.619813 4.75203,-0.413226 5.99171,-2.479357 1.13636,-2.066105 0.82645,-4.648729 -0.92974,-6.301608 -1.6529,-1.756225 -4.23552,-2.066131 -6.30165,-0.929772 -2.06609,1.239679 -3.09916,3.71901 -2.47932,5.991727 m 3.719,36.570126 c 2.27271,0.61984 4.75203,-0.4132 5.99171,-2.479304 1.13636,-2.066132 0.82645,-4.752076 -0.92974,-6.404954 -1.6529,-1.652879 -4.23552,-2.066105 -6.30165,-0.826426 -2.06609,1.136332 -3.09916,3.615663 -2.47932,5.991701 m 3.719,36.466835 c 2.27271,0.61984 4.75203,-0.41323 5.99171,-2.47933 1.13636,-2.06611 0.82645,-4.64873 -0.92974,-6.30164 -1.6529,-1.7562 -4.23552,-2.0661 -6.30165,-0.92974 -2.06609,1.23968 -3.09916,3.71901 -2.47932,5.9917 m 3.719,36.57018 c 2.27271,0.61981 4.75203,-0.41323 5.99171,-2.47933 1.13636,-2.06614 0.82645,-4.75208 -0.92974,-6.40496 -1.6529,-1.65288 -4.23552,-2.0661 -6.30165,-0.82642 -2.06609,1.13633 -3.09916,3.61566 -2.47932,5.9917 m 35.64038,-94.731128 c 2.27274,0.619813 4.75207,-0.413226 5.99175,-2.479357 1.13635,-2.066105 0.82642,-4.648729 -0.92977,-6.301608 -1.65288,-1.756225 -4.23553,-2.066131 -6.30162,-0.929772 -2.06613,1.239679 -3.09919,3.71901 -2.47935,5.991727 m 3.71899,36.570126 c 2.27274,0.61984 4.75207,-0.4132 5.99175,-2.479304 1.13635,-2.066132 0.82642,-4.752076 -0.92977,-6.404954 -1.65288,-1.652879 -4.23553,-2.066105 -6.30162,-0.826426 -2.06613,1.136332 -3.09919,3.615663 -2.47935,5.991701 m 3.71899,36.466835 c 2.27274,0.61984 4.75207,-0.41323 5.99175,-2.47933 1.13635,-2.06611 0.82642,-4.64873 -0.92977,-6.30164 -1.65288,-1.7562 -4.23553,-2.0661 -6.30162,-0.92974 -2.06613,1.23968 -3.09919,3.71901 -2.47935,5.9917 m 3.71899,36.57018 c 2.27274,0.61981 4.75207,-0.41323 5.99175,-2.47933 1.13635,-2.06614 0.82642,-4.75208 -0.92977,-6.40496 -1.65288,-1.65288 -4.23553,-2.0661 -6.30162,-0.82642 -2.06613,1.13633 -3.09919,3.61566 -2.47935,5.9917 M 33.419318,145.2992 c 2.066104,0.51652 4.235529,-0.30994 5.371888,-2.27275 1.033065,-1.85949 0.723159,-4.23553 -0.826426,-5.68182 -1.446292,-1.54956 -3.82233,-1.85946 -5.681795,-0.82642 -1.962811,1.13635 -2.789264,3.30578 -2.272744,5.37188 M 83.109258,12.448308 V 156.97269 m 0,0 H 275.67072 M 104.2869,42.3036 c 0,-3.202463 -2.58265,-5.785114 -5.78511,-5.785114 -3.202464,0 -5.785115,2.582651 -5.785115,5.785114 0,3.202464 2.582651,5.785115 5.785115,5.785115 3.20246,0 5.78511,-2.582651 5.78511,-5.785115 m -6.508243,-9.607391 c 0,-1.033065 -0.929746,-1.962811 -1.962812,-1.962811 -1.136358,0 -1.962811,0.929746 -1.962811,1.962811 0,1.136333 0.826453,2.066079 1.962811,2.066079 1.033066,0 1.962812,-0.929746 1.962812,-2.066079 M 136.2083,42.3036 c 0,-3.202463 -2.58262,-5.785114 -5.78511,-5.785114 -3.20249,0 -5.78509,2.582651 -5.78509,5.785114 0,3.202464 2.5826,5.785115 5.78509,5.785115 3.20249,0 5.78511,-2.582651 5.78511,-5.785115 m 31.81808,0 c 0,-3.202463 -2.58265,-5.785114 -5.78509,-5.785114 -3.20249,0 -5.68182,2.582651 -5.68182,5.785114 0,3.202464 2.47933,5.785115 5.68182,5.785115 3.20244,0 5.78509,-2.582651 5.78509,-5.785115 m 31.9214,0 c 0,-3.202463 -2.58263,-5.785114 -5.7851,-5.785114 -3.20247,0 -5.6818,2.582651 -5.6818,5.785114 0,3.202464 2.47933,5.785115 5.6818,5.785115 3.20247,0 5.7851,-2.582651 5.7851,-5.785115 m 31.9214,0 c 0,-3.202463 -2.58262,-5.785114 -5.7851,-5.785114 -3.20248,0 -5.7851,2.582651 -5.7851,5.785114 0,3.202464 2.58262,5.785115 5.7851,5.785115 3.20248,0 5.7851,-2.582651 5.7851,-5.785115 m 31.92141,0 c 0,-3.202463 -2.58265,-5.785114 -5.78513,-5.785114 -3.20245,0 -5.78509,2.582651 -5.78509,5.785114 0,3.202464 2.58264,5.785115 5.78509,5.785115 3.20248,0 5.78513,-2.582651 5.78513,-5.785115 M 104.2869,75.05145 c 0,-3.202491 -2.58265,-5.681795 -5.78511,-5.681795 -3.202464,0 -5.785115,2.479304 -5.785115,5.681795 0,3.202463 2.582651,5.785088 5.785115,5.785088 3.20246,0 5.78511,-2.582625 5.78511,-5.785088 m 31.9214,0 c 0,-3.202491 -2.58262,-5.681795 -5.78511,-5.681795 -3.20249,0 -5.78509,2.479304 -5.78509,5.681795 0,3.202463 2.5826,5.785088 5.78509,5.785088 3.20249,0 5.78511,-2.582625 5.78511,-5.785088 m 31.81808,0 c 0,-3.202491 -2.58265,-5.681795 -5.78509,-5.681795 -3.20249,0 -5.68182,2.479304 -5.68182,5.681795 0,3.202463 2.47933,5.785088 5.68182,5.785088 3.20244,0 5.78509,-2.582625 5.78509,-5.785088 m 31.9214,0 c 0,-3.202491 -2.58263,-5.681795 -5.7851,-5.681795 -3.20247,0 -5.6818,2.479304 -5.6818,5.681795 0,3.202463 2.47933,5.785088 5.6818,5.785088 3.20247,0 5.7851,-2.582625 5.7851,-5.785088 m 31.9214,0 c 0,-3.202491 -2.58262,-5.681795 -5.7851,-5.681795 -3.20248,0 -5.7851,2.479304 -5.7851,5.681795 0,3.202463 2.58262,5.785088 5.7851,5.785088 3.20248,0 5.7851,-2.582625 5.7851,-5.785088 m 31.92141,0 c 0,-3.202491 -2.58265,-5.681795 -5.78513,-5.681795 -3.20245,0 -5.78509,2.479304 -5.78509,5.681795 0,3.202463 2.58264,5.785088 5.78509,5.785088 3.20248,0 5.78513,-2.582625 5.78513,-5.785088 M 104.2869,107.90259 c 0,-3.20246 -2.58265,-5.78511 -5.78511,-5.78511 -3.202464,0 -5.785115,2.58265 -5.785115,5.78511 0,3.20247 2.582651,5.78512 5.785115,5.78512 3.20246,0 5.78511,-2.58265 5.78511,-5.78512 m 31.9214,0 c 0,-3.20246 -2.58262,-5.78511 -5.78511,-5.78511 -3.20249,0 -5.78509,2.58265 -5.78509,5.78511 0,3.20247 2.5826,5.78512 5.78509,5.78512 3.20249,0 5.78511,-2.58265 5.78511,-5.78512 m 31.81808,0 c 0,-3.20246 -2.58265,-5.78511 -5.78509,-5.78511 -3.20249,0 -5.68182,2.58265 -5.68182,5.78511 0,3.20247 2.47933,5.78512 5.68182,5.78512 3.20244,0 5.78509,-2.58265 5.78509,-5.78512 m 31.9214,0 c 0,-3.20246 -2.58263,-5.78511 -5.7851,-5.78511 -3.20247,0 -5.6818,2.58265 -5.6818,5.78511 0,3.20247 2.47933,5.78512 5.6818,5.78512 3.20247,0 5.7851,-2.58265 5.7851,-5.78512 m 31.9214,0 c 0,-3.20246 -2.58262,-5.78511 -5.7851,-5.78511 -3.20248,0 -5.7851,2.58265 -5.7851,5.78511 0,3.20247 2.58262,5.78512 5.7851,5.78512 3.20248,0 5.7851,-2.58265 5.7851,-5.78512 m 31.92141,0 c 0,-3.20246 -2.58265,-5.78511 -5.78513,-5.78511 -3.20245,0 -5.78509,2.58265 -5.78509,5.78511 0,3.20247 2.58264,5.78512 5.78509,5.78512 3.20248,0 5.78513,-2.58265 5.78513,-5.78512 M 104.2869,140.65044 c 0,-3.20249 -2.58265,-5.68179 -5.78511,-5.68179 -3.202464,0 -5.785115,2.4793 -5.785115,5.68179 0,3.20246 2.582651,5.78509 5.785115,5.78509 3.20246,0 5.78511,-2.58263 5.78511,-5.78509 m 31.9214,0 c 0,-3.20249 -2.58262,-5.68179 -5.78511,-5.68179 -3.20249,0 -5.78509,2.4793 -5.78509,5.68179 0,3.20246 2.5826,5.78509 5.78509,5.78509 3.20249,0 5.78511,-2.58263 5.78511,-5.78509 m 31.81808,0 c 0,-3.20249 -2.58265,-5.68179 -5.78509,-5.68179 -3.20249,0 -5.68182,2.4793 -5.68182,5.68179 0,3.20246 2.47933,5.78509 5.68182,5.78509 3.20244,0 5.78509,-2.58263 5.78509,-5.78509 m 31.9214,0 c 0,-3.20249 -2.58263,-5.68179 -5.7851,-5.68179 -3.20247,0 -5.6818,2.4793 -5.6818,5.68179 0,3.20246 2.47933,5.78509 5.6818,5.78509 3.20247,0 5.7851,-2.58263 5.7851,-5.78509 m 31.9214,0 c 0,-3.20249 -2.58262,-5.68179 -5.7851,-5.68179 -3.20248,0 -5.7851,2.4793 -5.7851,5.68179 0,3.20246 2.58262,5.78509 5.7851,5.78509 3.20248,0 5.7851,-2.58263 5.7851,-5.78509 m 31.92141,0 c 0,-3.20249 -2.58265,-5.68179 -5.78513,-5.68179 -3.20245,0 -5.78509,2.4793 -5.78509,5.68179 0,3.20246 2.58264,5.78509 5.78509,5.78509 3.20248,0 5.78513,-2.58263 5.78513,-5.78509 M 275.67072,12.448308 H 83.109258 m 193.491202,0.826453 c 0,-0.51652 -0.41322,-0.826453 -0.92974,-0.826453 m 0.82645,143.594642 V 13.378081 m -0.82645,143.594609 c 0.51652,0 0.92974,-0.41322 0.92974,-0.92974 M 97.778657,28.25404 c 0,-1.136359 -0.929746,-1.962811 -1.962812,-1.962811 -1.136358,0 -1.962811,0.826452 -1.962811,1.962811 0,1.033066 0.826453,1.962812 1.962811,1.962812 1.033066,0 1.962812,-0.929746 1.962812,-1.962812 m 0,-4.545435 c 0,-1.03304 -0.929746,-1.962785 -1.962812,-1.962785 -1.136358,0 -1.962811,0.929745 -1.962811,1.962785 0,1.136359 0.826453,2.066104 1.962811,2.066104 1.033066,0 1.962812,-0.929745 1.962812,-2.066104 m 0,-4.442143 c 0,-1.136359 -0.929746,-1.962785 -1.962812,-1.962785 -1.136358,0 -1.962811,0.826426 -1.962811,1.962785 0,1.033066 0.826453,1.962812 1.962811,1.962812 1.033066,0 1.962812,-0.929746 1.962812,-1.962812 m 31.921393,13.429747 c 0,-1.033065 -0.92977,-1.962811 -2.06613,-1.962811 -1.03301,0 -1.96278,0.929746 -1.96278,1.962811 0,1.136333 0.92977,2.066079 1.96278,2.066079 1.13636,0 2.06613,-0.929746 2.06613,-2.066079 m 0,-4.442169 c 0,-1.136359 -0.92977,-1.962811 -2.06613,-1.962811 -1.03301,0 -1.96278,0.826452 -1.96278,1.962811 0,1.033066 0.92977,1.962812 1.96278,1.962812 1.13636,0 2.06613,-0.929746 2.06613,-1.962812 m 31.9214,4.442169 c 0,-1.033065 -0.92975,-1.962811 -2.0661,-1.962811 -1.03307,0 -1.96282,0.929746 -1.96282,1.962811 0,1.136333 0.92975,2.066079 1.96282,2.066079 1.13635,0 2.0661,-0.929746 2.0661,-2.066079 m 0,-4.442169 c 0,-1.136359 -0.92975,-1.962811 -2.0661,-1.962811 -1.03307,0 -1.96282,0.826452 -1.96282,1.962811 0,1.033066 0.92975,1.962812 1.96282,1.962812 1.13635,0 2.0661,-0.929746 2.0661,-1.962812 m 31.92139,4.442169 c 0,-1.033065 -0.92975,-1.962811 -2.06611,-1.962811 -1.03305,0 -1.9628,0.929746 -1.9628,1.962811 0,1.136333 0.92975,2.066079 1.9628,2.066079 1.13636,0 2.06611,-0.929746 2.06611,-2.066079 m 0,-4.442169 c 0,-1.136359 -0.92975,-1.962811 -2.06611,-1.962811 -1.03305,0 -1.9628,0.826452 -1.9628,1.962811 0,1.033066 0.92975,1.962812 1.9628,1.962812 1.13636,0 2.06611,-0.929746 2.06611,-1.962812 m 31.81811,4.442169 c 0,-1.033065 -0.82645,-1.962811 -1.96281,-1.962811 -1.03306,0 -1.9628,0.929746 -1.9628,1.962811 0,1.136333 0.92974,2.066079 1.9628,2.066079 1.13636,0 1.96281,-0.929746 1.96281,-2.066079 m 0,-4.442169 c 0,-1.136359 -0.82645,-1.962811 -1.96281,-1.962811 -1.03306,0 -1.9628,0.826452 -1.9628,1.962811 0,1.033066 0.92974,1.962812 1.9628,1.962812 1.13636,0 1.96281,-0.929746 1.96281,-1.962812 m 31.92138,4.442169 c 0,-1.033065 -0.82645,-1.962811 -1.9628,-1.962811 -1.03307,0 -1.96281,0.929746 -1.96281,1.962811 0,1.136333 0.92974,2.066079 1.96281,2.066079 1.13635,0 1.9628,-0.929746 1.9628,-2.066079 m 0,-4.442169 c 0,-1.136359 -0.82645,-1.962811 -1.9628,-1.962811 -1.03307,0 -1.96281,0.826452 -1.96281,1.962811 0,1.033066 0.92974,1.962812 1.96281,1.962812 1.13635,0 1.9628,-0.929746 1.9628,-1.962812 M 129.70005,23.708605 c 0,-1.03304 -0.92977,-1.962785 -2.06613,-1.962785 -1.03301,0 -1.96278,0.929745 -1.96278,1.962785 0,1.136359 0.92977,2.066104 1.96278,2.066104 1.13636,0 2.06613,-0.929745 2.06613,-2.066104 m 0,-4.442143 c 0,-1.136359 -0.92977,-1.962785 -2.06613,-1.962785 -1.03301,0 -1.96278,0.826426 -1.96278,1.962785 0,1.033066 0.92977,1.962812 1.96278,1.962812 1.13636,0 2.06613,-0.929746 2.06613,-1.962812 m 31.9214,4.442143 c 0,-1.03304 -0.92975,-1.962785 -2.0661,-1.962785 -1.03307,0 -1.96282,0.929745 -1.96282,1.962785 0,1.136359 0.92975,2.066104 1.96282,2.066104 1.13635,0 2.0661,-0.929745 2.0661,-2.066104 m 0,-4.442143 c 0,-1.136359 -0.92975,-1.962785 -2.0661,-1.962785 -1.03307,0 -1.96282,0.826426 -1.96282,1.962785 0,1.033066 0.92975,1.962812 1.96282,1.962812 1.13635,0 2.0661,-0.929746 2.0661,-1.962812 m 31.92139,4.442143 c 0,-1.03304 -0.92975,-1.962785 -2.06611,-1.962785 -1.03305,0 -1.9628,0.929745 -1.9628,1.962785 0,1.136359 0.92975,2.066104 1.9628,2.066104 1.13636,0 2.06611,-0.929745 2.06611,-2.066104 m 0,-4.442143 c 0,-1.136359 -0.92975,-1.962785 -2.06611,-1.962785 -1.03305,0 -1.9628,0.826426 -1.9628,1.962785 0,1.033066 0.92975,1.962812 1.9628,1.962812 1.13636,0 2.06611,-0.929746 2.06611,-1.962812 m 31.81811,4.442143 c 0,-1.03304 -0.82645,-1.962785 -1.96281,-1.962785 -1.03306,0 -1.9628,0.929745 -1.9628,1.962785 0,1.136359 0.92974,2.066104 1.9628,2.066104 1.13636,0 1.96281,-0.929745 1.96281,-2.066104 m 0,-4.442143 c 0,-1.136359 -0.82645,-1.962785 -1.96281,-1.962785 -1.03306,0 -1.9628,0.826426 -1.9628,1.962785 0,1.033066 0.92974,1.962812 1.9628,1.962812 1.13636,0 1.96281,-0.929746 1.96281,-1.962812 m 31.92138,4.442143 c 0,-1.03304 -0.82645,-1.962785 -1.9628,-1.962785 -1.03307,0 -1.96281,0.929745 -1.96281,1.962785 0,1.136359 0.92974,2.066104 1.96281,2.066104 1.13635,0 1.9628,-0.929745 1.9628,-2.066104 m 0,-4.442143 c 0,-1.136359 -0.82645,-1.962785 -1.9628,-1.962785 -1.03307,0 -1.96281,0.826426 -1.96281,1.962785 0,1.033066 0.92974,1.962812 1.96281,1.962812 1.13635,0 1.9628,-0.929746 1.9628,-1.962812 m -96.07411,0 c 0,-0.929746 -0.72313,-1.549585 -1.65287,-1.549585 -0.82646,0 -1.54959,0.619839 -1.54959,1.549585 0,0.826453 0.72313,1.549612 1.54959,1.549612 0.92974,0 1.65287,-0.723159 1.65287,-1.549612 m -31.92139,13.429747 c 0,-0.826452 -0.72316,-1.549585 -1.65291,-1.549585 -0.82642,0 -1.54956,0.723133 -1.54956,1.549585 0,0.92972 0.72314,1.652852 1.54956,1.652852 0.92975,0 1.65291,-0.723132 1.65291,-1.652852 m 0,-4.442169 c 0,-0.929745 -0.72316,-1.549585 -1.65291,-1.549585 -0.82642,0 -1.54956,0.61984 -1.54956,1.549585 0,0.826453 0.72314,1.549586 1.54956,1.549586 0.92975,0 1.65291,-0.723133 1.65291,-1.549586 m 0,-4.545435 c 0,-0.826426 -0.72316,-1.549559 -1.65291,-1.549559 -0.82642,0 -1.54956,0.723133 -1.54956,1.549559 0,0.929745 0.72314,1.652878 1.54956,1.652878 0.92975,0 1.65291,-0.723133 1.65291,-1.652878 m 0,-4.442143 c 0,-0.929746 -0.72316,-1.549585 -1.65291,-1.549585 -0.82642,0 -1.54956,0.619839 -1.54956,1.549585 0,0.826453 0.72314,1.549612 1.54956,1.549612 0.92975,0 1.65291,-0.723159 1.65291,-1.549612 M 97.365431,32.696209 c 0,-0.826452 -0.723133,-1.549585 -1.549586,-1.549585 -0.929745,0 -1.549585,0.723133 -1.549585,1.549585 0,0.92972 0.61984,1.652852 1.549585,1.652852 0.826453,0 1.549586,-0.723132 1.549586,-1.652852 m 0,-4.442169 c 0,-0.929745 -0.723133,-1.549585 -1.549586,-1.549585 -0.929745,0 -1.549585,0.61984 -1.549585,1.549585 0,0.826453 0.61984,1.549586 1.549585,1.549586 0.826453,0 1.549586,-0.723133 1.549586,-1.549586 m 0,-4.545435 c 0,-0.826426 -0.723133,-1.549559 -1.549586,-1.549559 -0.929745,0 -1.549585,0.723133 -1.549585,1.549559 0,0.929745 0.61984,1.652878 1.549585,1.652878 0.826453,0 1.549586,-0.723133 1.549586,-1.652878 m -31.921397,8.987604 c 0,-0.826452 -0.723133,-1.549585 -1.549585,-1.549585 -0.929746,0 -1.652905,0.723133 -1.652905,1.549585 0,0.92972 0.723159,1.652852 1.652905,1.652852 0.826452,0 1.549585,-0.723132 1.549585,-1.652852 m 0,-4.442169 c 0,-0.929745 -0.723133,-1.549585 -1.549585,-1.549585 -0.929746,0 -1.652905,0.61984 -1.652905,1.549585 0,0.826453 0.723159,1.549586 1.652905,1.549586 0.826452,0 1.549585,-0.723133 1.549585,-1.549586 m 0,-4.545435 c 0,-0.826426 -0.723133,-1.549559 -1.549585,-1.549559 -0.929746,0 -1.652905,0.723133 -1.652905,1.549559 0,0.929745 0.723159,1.652878 1.652905,1.652878 0.826452,0 1.549585,-0.723133 1.549585,-1.652878 m 31.921397,-4.442143 c 0,-0.929746 -0.723133,-1.549585 -1.549586,-1.549585 -0.929745,0 -1.549585,0.619839 -1.549585,1.549585 0,0.826453 0.61984,1.549612 1.549585,1.549612 0.826453,0 1.549586,-0.723159 1.549586,-1.549612 M 45.919292,32.696209 c 0,-0.826452 -0.723132,-1.549585 -1.549585,-1.549585 -0.929746,0 -1.652905,0.723133 -1.652905,1.549585 0,0.92972 0.723159,1.652852 1.652905,1.652852 0.826453,0 1.549585,-0.723132 1.549585,-1.652852 m -5.371888,0 c 0,-0.826452 -0.723133,-1.549585 -1.549585,-1.549585 -0.929746,0 -1.652879,0.723133 -1.652879,1.549585 0,0.92972 0.723133,1.652852 1.652879,1.652852 0.826452,0 1.549585,-0.723132 1.549585,-1.652852 m 10.743777,0 c 0,-0.826452 -0.619813,-1.549585 -1.549586,-1.549585 -0.826426,0 -1.549585,0.723133 -1.549585,1.549585 0,0.92972 0.723159,1.652852 1.549585,1.652852 0.929773,0 1.549586,-0.723132 1.549586,-1.652852 M 193.12962,19.266462 c 0,-0.929746 -0.72313,-1.549585 -1.65289,-1.549585 -0.82644,0 -1.54958,0.619839 -1.54958,1.549585 0,0.826453 0.72314,1.549612 1.54958,1.549612 0.92976,0 1.65289,-0.723159 1.65289,-1.549612 m -31.9214,4.442143 c 0,-0.826426 -0.72313,-1.549559 -1.65287,-1.549559 -0.82646,0 -1.54959,0.723133 -1.54959,1.549559 0,0.929745 0.72313,1.652878 1.54959,1.652878 0.92974,0 1.65287,-0.723133 1.65287,-1.652878 m 0,4.545435 c 0,-0.929745 -0.72313,-1.549585 -1.65287,-1.549585 -0.82646,0 -1.54959,0.61984 -1.54959,1.549585 0,0.826453 0.72313,1.549586 1.54959,1.549586 0.92974,0 1.65287,-0.723133 1.65287,-1.549586 m 0,4.442169 c 0,-0.826452 -0.72313,-1.549585 -1.65287,-1.549585 -0.82646,0 -1.54959,0.723133 -1.54959,1.549585 0,0.92972 0.72313,1.652852 1.54959,1.652852 0.92974,0 1.65287,-0.723132 1.65287,-1.652852 m 31.9214,-8.987604 c 0,-0.826426 -0.72313,-1.549559 -1.65289,-1.549559 -0.82644,0 -1.54958,0.723133 -1.54958,1.549559 0,0.929745 0.72314,1.652878 1.54958,1.652878 0.92976,0 1.65289,-0.723133 1.65289,-1.652878 m 0,4.545435 c 0,-0.929745 -0.72313,-1.549585 -1.65289,-1.549585 -0.82644,0 -1.54958,0.61984 -1.54958,1.549585 0,0.826453 0.72314,1.549586 1.54958,1.549586 0.92976,0 1.65289,-0.723133 1.65289,-1.549586 m 0,4.442169 c 0,-0.826452 -0.72313,-1.549585 -1.65289,-1.549585 -0.82644,0 -1.54958,0.723133 -1.54958,1.549585 0,0.92972 0.72314,1.652852 1.54958,1.652852 0.92976,0 1.65289,-0.723132 1.65289,-1.652852 m 31.8181,-13.429747 c 0,-0.929746 -0.61984,-1.549585 -1.54958,-1.549585 -0.82645,0 -1.54958,0.619839 -1.54958,1.549585 0,0.826453 0.72313,1.549612 1.54958,1.549612 0.92974,0 1.54958,-0.723159 1.54958,-1.549612 m 31.92139,0 c 0,-0.929746 -0.61984,-1.549585 -1.54958,-1.549585 -0.82645,0 -1.54958,0.619839 -1.54958,1.549585 0,0.826453 0.72313,1.549612 1.54958,1.549612 0.92974,0 1.54958,-0.723159 1.54958,-1.549612 m -31.92139,4.442143 c 0,-0.826426 -0.61984,-1.549559 -1.54958,-1.549559 -0.82645,0 -1.54958,0.723133 -1.54958,1.549559 0,0.929745 0.72313,1.652878 1.54958,1.652878 0.92974,0 1.54958,-0.723133 1.54958,-1.652878 m 0,4.545435 c 0,-0.929745 -0.61984,-1.549585 -1.54958,-1.549585 -0.82645,0 -1.54958,0.61984 -1.54958,1.549585 0,0.826453 0.72313,1.549586 1.54958,1.549586 0.92974,0 1.54958,-0.723133 1.54958,-1.549586 m 0,4.442169 c 0,-0.826452 -0.61984,-1.549585 -1.54958,-1.549585 -0.82645,0 -1.54958,0.723133 -1.54958,1.549585 0,0.92972 0.72313,1.652852 1.54958,1.652852 0.92974,0 1.54958,-0.723132 1.54958,-1.652852 m 31.92139,-8.987604 c 0,-0.826426 -0.61984,-1.549559 -1.54958,-1.549559 -0.82645,0 -1.54958,0.723133 -1.54958,1.549559 0,0.929745 0.72313,1.652878 1.54958,1.652878 0.92974,0 1.54958,-0.723133 1.54958,-1.652878 m 0,4.545435 c 0,-0.929745 -0.61984,-1.549585 -1.54958,-1.549585 -0.82645,0 -1.54958,0.61984 -1.54958,1.549585 0,0.826453 0.72313,1.549586 1.54958,1.549586 0.92974,0 1.54958,-0.723133 1.54958,-1.549586 m 0,4.442169 c 0,-0.826452 -0.61984,-1.549585 -1.54958,-1.549585 -0.82645,0 -1.54958,0.723133 -1.54958,1.549585 0,0.92972 0.72313,1.652852 1.54958,1.652852 0.92974,0 1.54958,-0.723132 1.54958,-1.652852 M 102.53071,42.3036 c 0,-2.272718 -1.85952,-4.028916 -4.02892,-4.028916 -2.272718,0 -4.028917,1.756198 -4.028917,4.028916 0,2.169398 1.756199,4.028917 4.028917,4.028917 2.1694,0 4.02892,-1.859519 4.02892,-4.028917 M 8.6260074,93.336512 H 2.9442127 M 8.6260074,88.894396 H 2.9442127 m 5.2685685,9.814005 H 3.3574389 M 2.22108,104.3902 c -0.516546,1.54958 0.1032933,3.20249 1.3429721,4.1322 1.3429456,1.03307 3.0991439,1.03307 4.442116,0.10332 1.342972,-0.92974 1.8595181,-2.68594 1.342972,-4.23552 m 0,0.10332 -1.7561983,-5.785119 m -3.5123702,0 L 2.22108,104.3902 m 5.9917012,-5.681799 v -5.371889 m -4.8553423,0 v 5.371889 m 5.2685685,-5.371889 v -4.442116 m -5.6817947,0 v 4.442116 M 102.53071,75.05145 c 0,-2.169425 -1.85952,-3.925623 -4.02892,-3.925623 -2.272718,0 -4.028917,1.756198 -4.028917,3.925623 0,2.272717 1.756199,4.028916 4.028917,4.028916 2.1694,0 4.02892,-1.756199 4.02892,-4.028916 m 0,32.85114 c 0,-2.27272 -1.85952,-4.02891 -4.02892,-4.02891 -2.272718,0 -4.028917,1.75619 -4.028917,4.02891 0,2.1694 1.756199,4.02892 4.028917,4.02892 2.1694,0 4.02892,-1.85952 4.02892,-4.02892 m 0,32.74785 c 0,-2.16942 -1.85952,-3.92562 -4.02892,-3.92562 -2.272718,0 -4.028917,1.7562 -4.028917,3.92562 0,2.27272 1.756199,4.02892 4.028917,4.02892 2.1694,0 4.02892,-1.7562 4.02892,-4.02892 M 134.4521,42.3036 c 0,-2.272718 -1.85949,-4.028916 -4.02891,-4.028916 -2.27272,0 -4.02889,1.756198 -4.02889,4.028916 0,2.169398 1.75617,4.028917 4.02889,4.028917 2.16942,0 4.02891,-1.859519 4.02891,-4.028917 m 0,32.74785 c 0,-2.169425 -1.85949,-3.925623 -4.02891,-3.925623 -2.27272,0 -4.02889,1.756198 -4.02889,3.925623 0,2.272717 1.75617,4.028916 4.02889,4.028916 2.16942,0 4.02891,-1.756199 4.02891,-4.028916 m 0,32.85114 c 0,-2.27272 -1.85949,-4.02891 -4.02891,-4.02891 -2.27272,0 -4.02889,1.75619 -4.02889,4.02891 0,2.1694 1.75617,4.02892 4.02889,4.02892 2.16942,0 4.02891,-1.85952 4.02891,-4.02892 m 0,32.74785 c 0,-2.16942 -1.85949,-3.92562 -4.02891,-3.92562 -2.27272,0 -4.02889,1.7562 -4.02889,3.92562 0,2.27272 1.75617,4.02892 4.02889,4.02892 2.16942,0 4.02891,-1.7562 4.02891,-4.02892 M 166.27018,42.3036 c 0,-2.272718 -1.75617,-4.028916 -4.02889,-4.028916 -2.16942,0 -3.92562,1.756198 -3.92562,4.028916 0,2.169398 1.7562,4.028917 3.92562,4.028917 2.27272,0 4.02889,-1.859519 4.02889,-4.028917 m 0,32.74785 c 0,-2.169425 -1.75617,-3.925623 -4.02889,-3.925623 -2.16942,0 -3.92562,1.756198 -3.92562,3.925623 0,2.272717 1.7562,4.028916 3.92562,4.028916 2.27272,0 4.02889,-1.756199 4.02889,-4.028916 m 0,32.85114 c 0,-2.27272 -1.75617,-4.02891 -4.02889,-4.02891 -2.16942,0 -3.92562,1.75619 -3.92562,4.02891 0,2.1694 1.7562,4.02892 3.92562,4.02892 2.27272,0 4.02889,-1.85952 4.02889,-4.02892 m 0,32.74785 c 0,-2.16942 -1.75617,-3.92562 -4.02889,-3.92562 -2.16942,0 -3.92562,1.7562 -3.92562,3.92562 0,2.27272 1.7562,4.02892 3.92562,4.02892 2.27272,0 4.02889,-1.7562 4.02889,-4.02892 M 198.19159,42.3036 c 0,-2.272718 -1.75619,-4.028916 -4.02891,-4.028916 -2.16942,0 -3.92561,1.756198 -3.92561,4.028916 0,2.169398 1.75619,4.028917 3.92561,4.028917 2.27272,0 4.02891,-1.859519 4.02891,-4.028917 m 0,32.74785 c 0,-2.169425 -1.75619,-3.925623 -4.02891,-3.925623 -2.16942,0 -3.92561,1.756198 -3.92561,3.925623 0,2.272717 1.75619,4.028916 3.92561,4.028916 2.27272,0 4.02891,-1.756199 4.02891,-4.028916 m 0,32.85114 c 0,-2.27272 -1.75619,-4.02891 -4.02891,-4.02891 -2.16942,0 -3.92561,1.75619 -3.92561,4.02891 0,2.1694 1.75619,4.02892 3.92561,4.02892 2.27272,0 4.02891,-1.85952 4.02891,-4.02892 m 0,32.74785 c 0,-2.16942 -1.75619,-3.92562 -4.02891,-3.92562 -2.16942,0 -3.92561,1.7562 -3.92561,3.92562 0,2.27272 1.75619,4.02892 3.92561,4.02892 2.27272,0 4.02891,-1.7562 4.02891,-4.02892 M 230.11298,42.3036 c 0,-2.272718 -1.75619,-4.028916 -4.0289,-4.028916 -2.16942,0 -4.02891,1.756198 -4.02891,4.028916 0,2.169398 1.85949,4.028917 4.02891,4.028917 2.27271,0 4.0289,-1.859519 4.0289,-4.028917 m 0,32.74785 c 0,-2.169425 -1.75619,-3.925623 -4.0289,-3.925623 -2.16942,0 -4.02891,1.756198 -4.02891,3.925623 0,2.272717 1.85949,4.028916 4.02891,4.028916 2.27271,0 4.0289,-1.756199 4.0289,-4.028916 m 0,32.85114 c 0,-2.27272 -1.75619,-4.02891 -4.0289,-4.02891 -2.16942,0 -4.02891,1.75619 -4.02891,4.02891 0,2.1694 1.85949,4.02892 4.02891,4.02892 2.27271,0 4.0289,-1.85952 4.0289,-4.02892 m 0,32.74785 c 0,-2.16942 -1.75619,-3.92562 -4.0289,-3.92562 -2.16942,0 -4.02891,1.7562 -4.02891,3.92562 0,2.27272 1.85949,4.02892 4.02891,4.02892 2.27271,0 4.0289,-1.7562 4.0289,-4.02892 M 262.0344,42.3036 c 0,-2.272718 -1.7562,-4.028916 -4.02894,-4.028916 -2.16942,0 -4.0289,1.756198 -4.0289,4.028916 0,2.169398 1.85948,4.028917 4.0289,4.028917 2.27274,0 4.02894,-1.859519 4.02894,-4.028917 m 0,32.74785 c 0,-2.169425 -1.7562,-3.925623 -4.02894,-3.925623 -2.16942,0 -4.0289,1.756198 -4.0289,3.925623 0,2.272717 1.85948,4.028916 4.0289,4.028916 2.27274,0 4.02894,-1.756199 4.02894,-4.028916 m 0,32.85114 c 0,-2.27272 -1.7562,-4.02891 -4.02894,-4.02891 -2.16942,0 -4.0289,1.75619 -4.0289,4.02891 0,2.1694 1.85948,4.02892 4.0289,4.02892 2.27274,0 4.02894,-1.85952 4.02894,-4.02892 m 0,32.74785 c 0,-2.16942 -1.7562,-3.92562 -4.02894,-3.92562 -2.16942,0 -4.0289,1.7562 -4.0289,3.92562 0,2.27272 1.85948,4.02892 4.0289,4.02892 2.27274,0 4.02894,-1.7562 4.02894,-4.02892 M 9.3491401,105.52655 c 0,-1.96278 -1.5495852,-3.51239 -3.5123966,-3.51239 -1.962785,0 -3.6156635,1.54961 -3.6156635,3.51239 0,1.96282 1.6528785,3.61569 3.6156635,3.61569 1.9628114,0 3.5123966,-1.65287 3.5123966,-3.61569 m -0.4132262,0 c 0,-1.75619 -1.3429721,-3.09917 -3.0991704,-3.09917 -1.7561719,0 -3.2024373,1.34298 -3.2024373,3.09917 0,1.7562 1.4462654,3.20247 3.2024373,3.20247 1.7561983,0 3.0991704,-1.44627 3.0991704,-3.20247 m 0.2066131,0 c 0,-1.85949 -1.4462654,-3.30578 -3.3057835,-3.30578 -1.8594652,0 -3.4090504,1.44629 -3.4090504,3.30578 0,1.85952 1.5495852,3.40908 3.4090504,3.40908 1.8595181,0 3.3057835,-1.54956 3.3057835,-3.40908 m -2.2727179,-1.75619 v 1.23967 m -1.0330656,-1.54958 1.0330656,0.30991 m -1.7561983,0.72316 0.7231327,-1.03307 m -1.8594652,1.03307 h 1.1363325 m -1.4462654,1.03303 0.3099329,-1.03303 m 0.7231327,1.75619 -1.0330656,-0.72316 m 1.0330656,1.85952 v -1.13636 m 1.0330392,1.44627 -1.0330392,-0.30991 m 1.6528785,-0.61984 -0.6198393,0.92975 m 1.8594916,-1.03304 -1.2396523,0.10329 m 1.5495852,-1.13636 -0.3099329,1.03307 m -0.7231327,-1.65291 1.0330656,0.61984 m -1.4462918,-0.41322 0.4132262,-0.20662 m 0.5165196,0.82646 0.516546,-0.20662 m -0.6198393,0.61984 0.3099064,0.41323 m -1.4462654,-0.30993 0.2066131,0.41322 m -0.8264525,0.51652 0.2066132,0.41323 m -0.6198394,-0.61981 -0.4131998,0.3099 m 0.4131998,-1.44629 -0.4131998,0.30993 m -0.6198394,-0.82645 -0.4132262,0.10329 m 0.6198394,-0.61981 -0.3099065,-0.41322 m 1.446239,0.41322 -0.3099065,-0.41322 m 0.9297458,-0.51655 -0.2066131,-0.51652 m 0.6198394,0.61984 0.4132262,-0.30993 m -0.4132262,1.44629 0.9297458,0.61984 m 0,0 -0.1032933,0.41322 m 0,0 -1.136359,0.1033 m 0,0 -0.6198394,0.92974 m 0,0 -0.4132262,-0.20658 m 0,0 v -1.13639 m 0,0 -1.0330392,-0.51652 m 0,0 0.2066132,-0.51652 m 0,0 h 1.1363325 m 0,0 0.6198393,-0.92977 m 0,0 0.4132263,0.10332 m 0,0 v 1.13636 M 283.10872,15.547479 V 78.460526 M 282.9021,15.547479 v 62.913047 m 0.20662,-62.913047 h -0.20662 m 0,0 v -0.309933 -0.309907 -0.206613 h 0.1033 m 0,0 h 0.20661 m 0,0 -0.10329,0.206613 v 0.309907 0.309933 m 0.10329,63.842793 h -0.20661 m 0,0 -0.1033,-0.103293 v -0.206613 -0.206613 -0.413227 m 0,0 h 0.20662 m 0,0 v 0.413227 0.206613 l 0.10329,0.206613 v 0.103293 m 1.03306,0 h -1.03306 m 1.03306,0 v -0.929746 m 0,-63.7395 h -1.03306 m 1.03306,0.826453 v -0.826453 m 0,63.7395 V 15.547479 M 5.3202239,25.774709 v 11.46691 M 8.7293008,31.559824 H 2.0144669 m 289.1520631,0 h 6.71486 m -3.30577,-5.785115 v 11.46691 M 2.0144669,137.86118 h 6.7148339 m -3.4090769,5.78511 v -11.46691 m 292.5611661,5.6818 h -6.71486 m 3.40909,-5.6818 v 11.46691", + "fill": { + "paint": "transparent" + }, + "id": "path2", + "name": "path2", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "paint": "#000000", + "width": "0.103" + }, + "type": "path" + }, + { + "d": "m 74.980437,74.580094 c 0,0.174758 -0.03873,0.342636 -0.122264,0.490723 -0.05852,0.109326 -0.135995,0.193702 -0.220371,0.264292 l -0.354674,0.284083 c -0.206613,0.161846 -0.316812,0.342636 -0.335756,0.549249 h 1.020154 v 0.328851 h -1.278414 c 0.01984,-0.48985 0.136022,-0.832485 0.355547,-1.019281 l 0.445056,-0.388276 c 0.167878,-0.135149 0.25138,-0.309034 0.25138,-0.509641 0,-0.15494 -0.03786,-0.284083 -0.109325,-0.374464 -0.07144,-0.09729 -0.160973,-0.142055 -0.284084,-0.142055 -0.239342,0 -0.368458,0.213492 -0.38137,0.645662 h -0.23159 c 0.0061,-0.632751 0.23159,-0.955569 0.67064,-0.955569 0.142901,0 0.272044,0.06456 0.38137,0.193702 0.129117,0.15494 0.193701,0.361553 0.193701,0.632724 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path3", + "name": "path3", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 74.973982,108.53532 c 0,0.24537 -0.06456,0.45196 -0.187669,0.60692 -0.122238,0.161 -0.284083,0.23935 -0.476938,0.23935 -0.167878,0 -0.31078,-0.0646 -0.420106,-0.20061 -0.136022,-0.15494 -0.199734,-0.3805 -0.199734,-0.6844 h 0.225558 c 0,0.17391 0.03273,0.30993 0.09729,0.41926 0.06371,0.1102 0.148061,0.16185 0.251381,0.16185 0.309906,0 0.45884,-0.18079 0.45884,-0.55529 0,-0.32279 -0.136022,-0.48379 -0.413226,-0.48379 h -0.110199 v -0.29096 c 0.161845,0 0.278077,-0.0259 0.335756,-0.0715 0.08438,-0.0637 0.129143,-0.19283 0.129143,-0.39341 0,-0.27808 -0.122264,-0.41323 -0.368459,-0.41323 -0.219524,0 -0.335756,0.1937 -0.341788,0.5742 H 73.7283 c 0.01217,-0.58023 0.206586,-0.87722 0.58711,-0.89101 0.174758,0 0.322818,0.0654 0.433017,0.20058 0.109326,0.14206 0.167005,0.32285 0.167005,0.5484 0,0.23932 -0.0835,0.42611 -0.238442,0.57505 0.103293,0.0775 0.180763,0.16184 0.225531,0.26429 0.04564,0.0973 0.07146,0.23241 0.07146,0.39426 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path4", + "name": "path4", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 75.006261,141.45107 h -0.277204 v 0.64566 h -0.226404 v -0.64566 H 73.6762 v -0.36158 l 0.871194,-1.73725 h 0.181663 v 1.77599 h 0.277204 z m -0.503608,-0.32284 v -1.22674 l -0.606928,1.22674 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path5", + "name": "path5", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 60.026981,20.661107 h -0.232436 v -1.936961 h -0.432171 v -0.264293 c 0.18079,-0.03873 0.296149,-0.07834 0.341763,-0.129143 0.05768,-0.05853 0.116231,-0.193701 0.160999,-0.414073 h 0.161845 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path6", + "name": "path6", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 60.466031,23.237302 c 0,0.174758 -0.03876,0.342609 -0.122264,0.49067 -0.05853,0.109326 -0.136022,0.193702 -0.220371,0.264292 l -0.354701,0.284083 c -0.206613,0.161846 -0.316786,0.342636 -0.33573,0.549249 h 1.020154 v 0.328851 h -1.278413 c 0.01984,-0.489823 0.136022,-0.832459 0.355547,-1.019281 l 0.445055,-0.38825 c 0.167878,-0.135149 0.251381,-0.309033 0.251381,-0.509614 0,-0.154966 -0.03786,-0.284083 -0.109326,-0.374491 -0.07146,-0.09726 -0.160972,-0.142028 -0.284083,-0.142028 -0.239342,0 -0.368459,0.213492 -0.381371,0.645662 H 59.22032 c 0.0061,-0.632751 0.231589,-0.955595 0.670639,-0.955595 0.142902,0 0.272018,0.06456 0.38137,0.193701 0.129117,0.154967 0.193702,0.36158 0.193702,0.632751 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path7", + "name": "path7", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 60.459575,28.886818 c 0,0.245348 -0.06456,0.451961 -0.187669,0.606901 -0.122264,0.160999 -0.284109,0.239342 -0.476938,0.239342 -0.167878,0 -0.310779,-0.06456 -0.420105,-0.20058 -0.136022,-0.154967 -0.199734,-0.380524 -0.199734,-0.684398 h 0.225557 c 0,0.173884 0.0327,0.309906 0.09729,0.419232 0.06369,0.110199 0.148061,0.161846 0.251381,0.161846 0.309907,0 0.45884,-0.18079 0.45884,-0.555255 0,-0.322844 -0.136022,-0.483817 -0.413226,-0.483817 H 59.684769 V 28.0991 c 0.161846,0 0.278077,-0.02593 0.335757,-0.07144 0.08435,-0.06371 0.129116,-0.192855 0.129116,-0.393436 0,-0.278077 -0.122237,-0.413226 -0.368459,-0.413226 -0.219524,0 -0.335729,0.193702 -0.341762,0.574199 h -0.225557 c 0.01217,-0.580231 0.206613,-0.877226 0.587137,-0.891011 0.174757,0 0.322818,0.06543 0.433017,0.200607 0.109326,0.142029 0.167005,0.322818 0.167005,0.548376 0,0.239315 -0.0835,0.426138 -0.238469,0.575071 0.10332,0.07747 0.18079,0.161846 0.225557,0.264293 0.04564,0.09726 0.07146,0.232436 0.07146,0.394282 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path8", + "name": "path8", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "M 60.491854,33.548432 H 60.21465 v 0.645663 h -0.22643 v -0.645663 h -0.826426 v -0.361553 l 0.871193,-1.737254 h 0.181663 v 1.775989 h 0.277204 z M 59.98822,33.225614 v -1.226741 l -0.606901,1.226741 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path9", + "name": "path9", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 33.587196,37.131869 c 0,0.251381 -0.05853,0.458841 -0.167878,0.612934 -0.09726,0.142055 -0.21262,0.213519 -0.355548,0.213519 h -0.644763 v 1.194885 H 32.16678 v -2.815934 h 0.859129 c 0.173884,0 0.309906,0.07144 0.413226,0.226404 0.09641,0.148087 0.148061,0.335756 0.148061,0.568192 z m -0.25826,0 c 0,-0.129143 -0.0327,-0.239342 -0.09038,-0.335756 -0.06459,-0.09038 -0.135175,-0.142028 -0.219525,-0.142028 h -0.600022 v 0.981392 h 0.631852 c 0.06458,0 0.12311,-0.04477 0.181663,-0.129143 0.06371,-0.09726 0.09641,-0.226404 0.09641,-0.374465 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path10", + "name": "path10", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "M 34.658996,39.152783 H 34.42656 v -1.936988 h -0.432171 v -0.264292 c 0.18079,-0.03874 0.296149,-0.07832 0.341789,-0.129117 0.05768,-0.05855 0.109326,-0.193701 0.160973,-0.414099 h 0.161845 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path11", + "name": "path11", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 38.95911,37.131869 c 0,0.251381 -0.05855,0.458841 -0.167878,0.612934 -0.09729,0.142055 -0.212645,0.213519 -0.355547,0.213519 h -0.644789 v 1.194885 h -0.252254 v -2.815934 h 0.859155 c 0.17391,0 0.309933,0.07144 0.413226,0.226404 0.09641,0.148087 0.148087,0.335756 0.148087,0.568192 z m -0.258286,0 c 0,-0.129143 -0.0327,-0.239342 -0.09038,-0.335756 -0.06456,-0.09038 -0.135149,-0.142028 -0.219524,-0.142028 h -0.600022 v 0.981392 h 0.631878 c 0.06456,0 0.12311,-0.04477 0.181636,-0.129143 0.06371,-0.09726 0.09641,-0.226404 0.09641,-0.374465 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path12", + "name": "path12", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 40.469961,37.235163 c 0,0.174757 -0.04477,0.342635 -0.122264,0.490696 -0.05853,0.109326 -0.135996,0.193701 -0.220372,0.264292 l -0.354674,0.284083 c -0.206613,0.161846 -0.316812,0.342636 -0.335756,0.549249 h 1.020154 v 0.328851 h -1.278414 c 0.01984,-0.489824 0.136022,-0.832459 0.355547,-1.019281 l 0.445056,-0.38825 c 0.167878,-0.135149 0.245374,-0.30906 0.245374,-0.50964 0,-0.154967 -0.03186,-0.284083 -0.103319,-0.374492 -0.07144,-0.09726 -0.160973,-0.142028 -0.284083,-0.142028 -0.239343,0 -0.368459,0.213492 -0.387403,0.645663 h -0.225558 c 0.0061,-0.632751 0.23159,-0.955596 0.67064,-0.955596 0.142901,0 0.272044,0.06459 0.38137,0.193702 0.129117,0.154966 0.193702,0.361579 0.193702,0.632751 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path13", + "name": "path13", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 44.079168,39.152783 h -0.303027 c -0.01984,-0.0835 -0.03961,-0.174757 -0.04564,-0.265139 -0.01296,-0.103319 -0.01984,-0.25138 -0.01296,-0.438203 -0.0069,-0.335729 -0.103294,-0.510487 -0.303028,-0.510487 h -0.659421 v 1.213829 h -0.257413 v -2.815087 h 0.903076 c 0.226404,0 0.387377,0.07059 0.484664,0.219525 0.07747,0.12311 0.122237,0.315965 0.122237,0.574225 0,0.246195 -0.09038,0.452808 -0.257386,0.626719 0.08953,0.09038 0.148061,0.160972 0.173884,0.226404 0.02593,0.04477 0.03874,0.129143 0.04564,0.245348 0,0.122264 0.0061,0.315939 0.01905,0.587137 0.0069,0.09641 0.03874,0.180789 0.09038,0.239315 z m -0.32885,-2.066104 c 0,-0.135176 -0.02593,-0.239343 -0.09125,-0.315939 -0.06371,-0.07834 -0.148087,-0.116232 -0.244502,-0.116232 H 42.75514 v 0.967634 h 0.659421 c 0.225558,0 0.335757,-0.179916 0.335757,-0.535463 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path14", + "name": "path14", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 46.255049,39.152783 h -0.25826 v -2.272718 l -0.54237,2.272718 H 45.19616 l -0.535464,-2.285629 v 2.285629 h -0.25826 v -2.815087 h 0.354674 l 0.568193,2.394982 0.568166,-2.394982 h 0.36158 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path15", + "name": "path15", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 48.637516,43.162332 v 1.071774 h 0.89101 v -0.936625 h 0.316813 v 0.936625 h 1.284446 V 44.48636 H 48.32073 v -1.324028 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path16", + "name": "path16", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 51.129785,41.315752 v 0.28411 l -0.839364,0.199707 v 0.749803 l 0.839364,0.212645 v 0.271172 L 48.32073,42.316962 v -0.309907 z m -1.142392,0.555281 -1.239678,0.290962 1.239678,0.321945 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path17", + "name": "path17", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 50.380829,39.53373 c 0.20058,0 0.380497,0.05855 0.542343,0.167879 0.193701,0.142028 0.297021,0.335729 0.297021,0.58711 0,0.252254 -0.10332,0.445929 -0.297021,0.587983 -0.161846,0.116232 -0.341763,0.174758 -0.542343,0.174758 h -2.059226 v -0.259133 h 2.046314 c 0.142028,0 0.271172,-0.04477 0.381371,-0.148061 0.109325,-0.09641 0.167878,-0.212646 0.167878,-0.355547 0,-0.135149 -0.05252,-0.251381 -0.161846,-0.354674 -0.109352,-0.09729 -0.245375,-0.142055 -0.413226,-0.142055 h -2.020491 v -0.25826 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path18", + "name": "path18", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 51.129785,37.887281 v 1.226767 H 48.32073 v -0.258259 h 2.492243 v -0.968508 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path19", + "name": "path19", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 48.637516,36.227947 v 0.63963 h 2.492269 v 0.251381 H 48.637516 V 37.7715 H 48.32073 v -1.543553 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path20", + "name": "path20", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 92.393857,19.783008 c 0,0.265139 -0.05855,0.490696 -0.187669,0.678365 -0.129143,0.186823 -0.277204,0.283237 -0.457994,0.283237 -0.18079,0 -0.335756,-0.07662 -0.45884,-0.218652 -0.116232,-0.142928 -0.179943,-0.322844 -0.186822,-0.542369 h 0.245348 c 0.03874,0.17391 0.09038,0.290115 0.142055,0.347795 0.05768,0.05855 0.136022,0.09125 0.239315,0.09125 0.270325,0 0.399442,-0.213492 0.399442,-0.633597 0,-0.186823 -0.03186,-0.334883 -0.109326,-0.451115 -0.07059,-0.110199 -0.167878,-0.167878 -0.277204,-0.167878 -0.07834,0 -0.142902,0.01905 -0.200581,0.05768 -0.03873,0.03186 -0.09641,0.09644 -0.161845,0.186822 h -0.219525 l 0.148934,-1.497938 h 0.988298 v 0.342635 h -0.794597 l -0.0775,0.755862 c 0.09041,-0.110199 0.213518,-0.161846 0.355547,-0.161846 0.18079,0 0.335756,0.0835 0.445082,0.251381 0.116231,0.174757 0.167878,0.401161 0.167878,0.678365 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path21", + "name": "path21", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 92.393857,24.315532 c 0,0.271172 -0.05165,0.490697 -0.167878,0.658575 -0.116205,0.180789 -0.271172,0.264292 -0.464873,0.264292 -0.426138,0 -0.638784,-0.445082 -0.638784,-1.342972 0,-0.987399 0.238469,-1.485001 0.703342,-1.485001 0.123111,0 0.232437,0.06456 0.335757,0.187669 0.116205,0.136023 0.180789,0.309933 0.199707,0.529458 h -0.244475 c 0.0061,-0.10332 -0.01984,-0.199734 -0.09126,-0.277204 -0.07059,-0.08438 -0.148087,-0.12311 -0.238469,-0.12311 -0.129143,0 -0.232436,0.09038 -0.309906,0.277204 -0.0775,0.187668 -0.122264,0.445928 -0.135176,0.774752 0.160999,-0.22553 0.30906,-0.335703 0.464026,-0.335703 0.161846,0 0.303901,0.08435 0.420106,0.252201 0.116231,0.167878 0.167878,0.374491 0.167878,0.619839 z m -0.239342,0 c 0,-0.167878 -0.03183,-0.309906 -0.09641,-0.40632 -0.06456,-0.10332 -0.160973,-0.161846 -0.284083,-0.161846 -0.103294,0 -0.193702,0.05165 -0.271172,0.15494 -0.08438,0.110199 -0.129143,0.251381 -0.129143,0.433017 0,0.173911 0.03873,0.315966 0.116232,0.432171 0.07747,0.109325 0.173884,0.167878 0.290962,0.167878 0.08953,0 0.17391,-0.04477 0.238469,-0.129143 0.09041,-0.110173 0.135149,-0.271172 0.135149,-0.490697 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path22", + "name": "path22", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 92.413251,27.195178 c -0.290989,0.568193 -0.503634,1.097624 -0.626719,1.594353 -0.07062,0.284109 -0.122264,0.569039 -0.148087,0.859155 h -0.25826 c 0.05768,-0.348642 0.103294,-0.606902 0.148061,-0.761868 0.08438,-0.329724 0.290989,-0.878099 0.633624,-1.652905 h -1.027033 v -0.329697 h 1.278414 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path23", + "name": "path23", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 92.393857,33.477418 c 0,0.219525 -0.05855,0.406347 -0.187669,0.561314 -0.122264,0.15494 -0.28411,0.239315 -0.470905,0.239315 -0.18079,0 -0.329724,-0.08438 -0.445929,-0.239315 -0.122264,-0.154967 -0.179943,-0.347795 -0.179943,-0.587137 0,-0.15494 0.02593,-0.296995 0.0835,-0.419233 0.05855,-0.123084 0.136023,-0.213492 0.232437,-0.27805 -0.167852,-0.129143 -0.252228,-0.315939 -0.252228,-0.561287 0,-0.206613 0.05855,-0.381371 0.161846,-0.523426 0.110199,-0.142054 0.239316,-0.219524 0.387403,-0.219524 0.18079,0 0.322818,0.07059 0.43905,0.20058 0.110198,0.129143 0.167878,0.303028 0.167878,0.509641 0,0.238469 -0.08353,0.43217 -0.245375,0.581104 0.08438,0.04477 0.161846,0.142055 0.219525,0.284057 0.06458,0.142055 0.09041,0.290115 0.09041,0.451961 z m -0.309933,-1.304211 c 0,-0.129116 -0.02593,-0.226404 -0.09038,-0.303027 -0.05855,-0.07747 -0.142054,-0.110172 -0.239315,-0.110172 -0.10332,0 -0.186823,0.03874 -0.245348,0.110172 -0.05768,0.07662 -0.09041,0.179943 -0.09041,0.303027 0,0.290116 0.110198,0.43905 0.335756,0.43905 0.09726,0 0.174757,-0.03874 0.239315,-0.123084 0.06456,-0.08353 0.09038,-0.186822 0.09038,-0.315966 z m 0.06459,1.245685 c 0,-0.154966 -0.03874,-0.284083 -0.109352,-0.373618 -0.0654,-0.09125 -0.161846,-0.135996 -0.290963,-0.135996 -0.122237,0 -0.219525,0.05162 -0.290115,0.148035 -0.06543,0.09729 -0.10332,0.232436 -0.10332,0.394282 0,0.148087 0.03789,0.271171 0.109352,0.368458 0.07747,0.09642 0.167852,0.141182 0.278051,0.141182 0.115358,0 0.212645,-0.05165 0.290115,-0.15494 0.0775,-0.10332 0.116232,-0.232436 0.116232,-0.387403 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path24", + "name": "path24", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 124.30234,19.260033 c 0,0.988298 -0.22553,1.485027 -0.6844,1.485027 -0.16785,0 -0.29699,-0.05768 -0.38737,-0.173911 -0.0775,-0.110173 -0.13602,-0.284956 -0.16185,-0.51652 h 0.23932 c -0.007,0.116205 0.0259,0.206614 0.0904,0.277204 0.0646,0.06456 0.14205,0.103294 0.23934,0.103294 0.12827,0 0.23244,-0.09038 0.31594,-0.277204 0.0775,-0.181637 0.12311,-0.43905 0.12912,-0.762741 -0.13515,0.219525 -0.28409,0.329724 -0.44506,0.329724 -0.18166,0 -0.32972,-0.07747 -0.43992,-0.239316 -0.10933,-0.160999 -0.16701,-0.380524 -0.16701,-0.645663 0,-0.271171 0.0637,-0.490696 0.17992,-0.658574 0.11623,-0.173911 0.27205,-0.264292 0.44596,-0.264292 0.20658,0 0.36155,0.116205 0.47087,0.335729 0.11624,0.232463 0.17476,0.568193 0.17476,1.007243 z m -0.25135,-0.420106 c 0,-0.179916 -0.0396,-0.32885 -0.11708,-0.439049 -0.0766,-0.109326 -0.17391,-0.167005 -0.29615,-0.167005 -0.1102,0 -0.20058,0.05077 -0.26516,0.160972 -0.0714,0.110199 -0.1033,0.25826 -0.1033,0.445082 0,0.187669 0.0387,0.336603 0.1102,0.445929 0.0637,0.09641 0.15494,0.148934 0.25826,0.148934 0.12224,0 0.21953,-0.05853 0.29615,-0.174757 0.0775,-0.116205 0.11708,-0.25826 0.11708,-0.420106 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path25", + "name": "path25", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 122.32019,25.15487 h -0.23244 v -1.936962 h -0.43217 v -0.264292 c 0.18079,-0.03873 0.29615,-0.07834 0.34176,-0.129117 0.0577,-0.05855 0.11624,-0.193701 0.161,-0.414099 h 0.16185 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path26", + "name": "path26", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 124.2507,23.792557 c 0,0.961602 -0.20662,1.446292 -0.62672,1.446292 -0.41926,0 -0.62585,-0.497602 -0.62585,-1.485027 0,-0.420079 0.0577,-0.74893 0.16785,-0.987399 0.10936,-0.232436 0.26517,-0.355547 0.458,-0.355547 0.20058,0 0.35554,0.123111 0.46487,0.355547 0.1102,0.238469 0.16185,0.581078 0.16185,1.026134 z m -0.23244,0.03273 c 0,-0.7171 -0.12912,-1.07868 -0.3874,-1.07868 -0.15494,0 -0.26514,0.110199 -0.32885,0.335756 -0.0456,0.173911 -0.0714,0.426138 -0.0714,0.768747 0,0.716254 0.12911,1.077807 0.38737,1.070928 0.13603,0 0.23847,-0.09038 0.3039,-0.264293 0.0637,-0.180789 0.0964,-0.451961 0.0964,-0.832458 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path27", + "name": "path27", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 122.32019,29.648659 h -0.23244 v -1.936962 h -0.43217 v -0.264292 c 0.18079,-0.03876 0.29615,-0.07834 0.34176,-0.129143 0.0577,-0.05853 0.11624,-0.193701 0.161,-0.414073 h 0.16185 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path28", + "name": "path28", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 123.8181,29.648659 h -0.22553 v -1.936962 h -0.43304 v -0.264292 c 0.18079,-0.03876 0.29011,-0.07834 0.34179,-0.129143 0.0585,-0.05853 0.11017,-0.193701 0.16184,-0.414073 h 0.15494 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path29", + "name": "path29", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 122.32019,34.194095 h -0.23244 v -1.936962 h -0.43217 v -0.264292 c 0.18079,-0.03873 0.29615,-0.07834 0.34176,-0.129117 0.0577,-0.05855 0.11624,-0.193701 0.161,-0.414099 h 0.16185 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path30", + "name": "path30", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 124.25718,32.276527 c 0,0.174757 -0.0388,0.342636 -0.12227,0.490696 -0.0585,0.109353 -0.12911,0.193675 -0.21349,0.264266 l -0.36158,0.28411 c -0.20058,0.161845 -0.31678,0.342609 -0.33573,0.549222 h 1.02013 v 0.328877 h -1.27151 c 0.013,-0.48985 0.12914,-0.832485 0.34867,-1.019307 l 0.45196,-0.388223 c 0.16097,-0.13515 0.24448,-0.30906 0.24448,-0.509641 0,-0.154966 -0.0319,-0.284083 -0.1033,-0.374491 -0.0706,-0.09726 -0.16703,-0.142028 -0.29011,-0.142028 -0.23935,0 -0.36158,0.213492 -0.38137,0.645662 h -0.22556 c 0.006,-0.632751 0.22556,-0.955595 0.66461,-0.955595 0.14893,0 0.27201,0.06458 0.38137,0.193701 0.12911,0.154967 0.1937,0.36158 0.1937,0.632751 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path31", + "name": "path31", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 154.24159,20.661107 h -0.23244 v -1.936961 h -0.43217 v -0.264293 c 0.18079,-0.03873 0.29615,-0.07834 0.34176,-0.129143 0.0577,-0.05853 0.11623,-0.193701 0.161,-0.414073 h 0.16185 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path32", + "name": "path32", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 156.17209,19.89924 c 0,0.245348 -0.0646,0.451961 -0.18767,0.606927 -0.12223,0.160973 -0.2772,0.239316 -0.4709,0.239316 -0.17389,0 -0.30988,-0.06456 -0.42611,-0.200581 -0.12912,-0.154966 -0.19371,-0.380523 -0.19971,-0.684397 h 0.23244 c 0,0.173884 0.0319,0.309906 0.0964,0.419232 0.0576,0.110199 0.14203,0.161846 0.24532,0.161846 0.30991,0 0.46487,-0.18079 0.46487,-0.555255 0,-0.322845 -0.13515,-0.483817 -0.41322,-0.483817 h -0.11621 v -0.290989 c 0.16785,0 0.27805,-0.02593 0.34264,-0.07144 0.0835,-0.06371 0.12224,-0.192855 0.12224,-0.393436 0,-0.278077 -0.11624,-0.413226 -0.36158,-0.413226 -0.22641,0 -0.34261,0.193701 -0.34862,0.574199 h -0.21952 c 0.013,-0.580232 0.20661,-0.877226 0.58795,-0.891011 0.17389,0 0.31594,0.06543 0.42611,0.200607 0.11624,0.142028 0.16704,0.322818 0.16704,0.548375 0,0.239316 -0.0766,0.426138 -0.23847,0.575072 0.10932,0.07747 0.18767,0.161846 0.23243,0.264293 0.0448,0.09726 0.0646,0.232436 0.0646,0.394282 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path33", + "name": "path33", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 154.24159,25.15487 h -0.23244 v -1.936962 h -0.43217 v -0.264292 c 0.18079,-0.03873 0.29615,-0.07834 0.34176,-0.129117 0.0577,-0.05855 0.11623,-0.193701 0.161,-0.414099 h 0.16185 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path34", + "name": "path34", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 156.20437,24.509207 h -0.2772 v 0.645663 h -0.22643 v -0.645663 h -0.8204 V 24.147628 L 155.7455,22.4104 h 0.18167 v 1.775989 h 0.2772 z m -0.50363,-0.322818 v -1.22674 l -0.60688,1.22674 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path35", + "name": "path35", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 154.24159,29.648659 h -0.23244 v -1.936962 h -0.43217 v -0.264292 c 0.18079,-0.03876 0.29615,-0.07834 0.34176,-0.129143 0.0577,-0.05853 0.11623,-0.193701 0.161,-0.414073 h 0.16185 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path36", + "name": "path36", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 156.19146,28.770586 c 0,0.265139 -0.0646,0.490697 -0.1937,0.678366 -0.12311,0.186822 -0.27805,0.283236 -0.458,0.283236 -0.18076,0 -0.32967,-0.07662 -0.45278,-0.218652 -0.12226,-0.142928 -0.18682,-0.322844 -0.18682,-0.542369 h 0.23934 c 0.0447,0.173911 0.0904,0.290116 0.14804,0.347795 0.0516,0.05855 0.12914,0.09126 0.23243,0.09126 0.27117,0 0.40635,-0.213493 0.40635,-0.633598 0,-0.186822 -0.0379,-0.334883 -0.10935,-0.451115 -0.0775,-0.110199 -0.16785,-0.167878 -0.28408,-0.167878 -0.0775,0 -0.14206,0.01905 -0.19371,0.05768 -0.0456,0.03186 -0.0964,0.09644 -0.16785,0.186823 h -0.21349 l 0.14205,-1.497939 h 0.99516 v 0.342636 h -0.80148 l -0.0775,0.755861 c 0.0973,-0.110199 0.21349,-0.161845 0.35552,-0.161845 0.18767,0 0.33576,0.0835 0.45196,0.25138 0.10935,0.174757 0.16788,0.401161 0.16788,0.678365 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path37", + "name": "path37", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 154.24159,34.194095 h -0.23244 v -1.936962 h -0.43217 v -0.264292 c 0.18079,-0.03873 0.29615,-0.07834 0.34176,-0.129117 0.0577,-0.05855 0.11623,-0.193701 0.161,-0.414099 h 0.16185 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path38", + "name": "path38", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 156.19146,33.354757 c 0,0.271172 -0.0585,0.490696 -0.17476,0.658575 -0.11623,0.180789 -0.27032,0.264292 -0.46487,0.264292 -0.41923,0 -0.63185,-0.445082 -0.63185,-1.342946 0,-0.987425 0.23243,-1.485027 0.70329,-1.485027 0.11623,0 0.23246,0.06456 0.33575,0.187669 0.1102,0.136023 0.17391,0.309933 0.19974,0.529458 h -0.25138 c 0.013,-0.10332 -0.019,-0.199734 -0.0904,-0.277204 -0.0646,-0.08438 -0.14203,-0.123111 -0.23244,-0.123111 -0.12911,0 -0.23931,0.09038 -0.31591,0.277204 -0.0783,0.187669 -0.12311,0.445929 -0.12912,0.77478 0.15407,-0.225531 0.30901,-0.33573 0.45794,-0.33573 0.16788,0 0.30303,0.08435 0.41926,0.252227 0.11623,0.167878 0.17476,0.374465 0.17476,0.619813 z m -0.24535,0 c 0,-0.167878 -0.0318,-0.309906 -0.0904,-0.406347 -0.0706,-0.103267 -0.16788,-0.161819 -0.29099,-0.161819 -0.10332,0 -0.19283,0.05167 -0.26429,0.15494 -0.0904,0.110199 -0.12912,0.251381 -0.12912,0.433017 0,0.173911 0.0388,0.315965 0.11621,0.43217 0.0775,0.109326 0.16788,0.167879 0.28408,0.167879 0.0964,0 0.17476,-0.04477 0.24535,-0.129144 0.0835,-0.110172 0.12914,-0.271171 0.12914,-0.490696 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path39", + "name": "path39", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 186.16298,20.661107 h -0.23244 v -1.936961 h -0.43216 v -0.264293 c 0.18078,-0.03873 0.29614,-0.07834 0.34177,-0.129143 0.0577,-0.05853 0.11621,-0.193701 0.16098,-0.414073 h 0.16185 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path40", + "name": "path40", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 188.12578,18.207573 c -0.29098,0.568193 -0.49673,1.097624 -0.62672,1.594353 -0.0646,0.284083 -0.11622,0.569039 -0.14807,0.859155 h -0.25826 c 0.0577,-0.348642 0.11019,-0.606928 0.14807,-0.761868 0.0844,-0.329724 0.297,-0.878099 0.63361,-1.652905 h -1.02703 v -0.329724 h 1.2784 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path41", + "name": "path41", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 186.16298,25.15487 h -0.23244 v -1.936962 h -0.43216 v -0.264292 c 0.18078,-0.03873 0.29614,-0.07834 0.34177,-0.129117 0.0577,-0.05855 0.11621,-0.193701 0.16098,-0.414099 h 0.16185 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path42", + "name": "path42", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 188.11286,24.43822 c 0,0.219524 -0.0646,0.406347 -0.18768,0.561287 -0.12913,0.154966 -0.28408,0.239342 -0.47692,0.239342 -0.18165,0 -0.32972,-0.08438 -0.44594,-0.239342 -0.11622,-0.15494 -0.18078,-0.347795 -0.18078,-0.587111 0,-0.154966 0.0327,-0.296995 0.0835,-0.419259 0.0585,-0.123084 0.13602,-0.213492 0.23244,-0.27805 -0.16099,-0.129143 -0.24535,-0.315913 -0.24535,-0.561261 0,-0.206613 0.0525,-0.38137 0.16185,-0.523425 0.1033,-0.142055 0.23243,-0.219525 0.38739,-0.219525 0.17476,0 0.32283,0.07059 0.43216,0.200581 0.11708,0.129143 0.17476,0.303027 0.17476,0.50964 0,0.238469 -0.0835,0.432144 -0.25224,0.581078 0.0913,0.04477 0.16185,0.142029 0.22641,0.284083 0.0577,0.142055 0.0904,0.290116 0.0904,0.451962 z m -0.30992,-1.304211 c 0,-0.129117 -0.0327,-0.226404 -0.0904,-0.303027 -0.0646,-0.07747 -0.14205,-0.110199 -0.24535,-0.110199 -0.10331,0 -0.18079,0.03876 -0.23933,0.110199 -0.0637,0.07662 -0.0904,0.179916 -0.0904,0.303027 0,0.290116 0.11019,0.439023 0.32972,0.439023 0.0973,0 0.18078,-0.03874 0.23932,-0.123084 0.0637,-0.0835 0.0964,-0.186796 0.0964,-0.315939 z m 0.0585,1.245685 c 0,-0.154967 -0.0327,-0.28411 -0.10331,-0.373645 -0.0714,-0.09123 -0.16873,-0.135996 -0.29097,-0.135996 -0.12913,0 -0.22642,0.05165 -0.29012,0.148061 -0.0714,0.09729 -0.10331,0.232437 -0.10331,0.394282 0,0.148061 0.0379,0.271172 0.10934,0.368459 0.0706,0.09641 0.16184,0.141182 0.27806,0.141182 0.10933,0 0.20661,-0.05165 0.28323,-0.154967 0.0775,-0.103293 0.11708,-0.232436 0.11708,-0.387376 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path43", + "name": "path43", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 186.16298,29.648659 h -0.23244 v -1.936962 h -0.43216 v -0.264292 c 0.18078,-0.03876 0.29614,-0.07834 0.34177,-0.129143 0.0577,-0.05853 0.11621,-0.193701 0.16098,-0.414073 h 0.16185 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path44", + "name": "path44", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 188.09996,28.247585 c 0,0.988298 -0.23244,1.485026 -0.6844,1.485026 -0.17476,0 -0.3039,-0.05768 -0.39429,-0.17391 -0.0766,-0.110173 -0.12913,-0.284956 -0.16098,-0.51652 h 0.23846 c 0,0.116205 0.0327,0.206613 0.0973,0.277204 0.0646,0.06456 0.14205,0.103293 0.23244,0.103293 0.12913,0 0.23933,-0.09038 0.3168,-0.277203 0.0835,-0.181637 0.12225,-0.43905 0.13516,-0.762741 -0.13516,0.219524 -0.28409,0.329723 -0.44507,0.329723 -0.18768,0 -0.32972,-0.07747 -0.43991,-0.239315 -0.11622,-0.160999 -0.16701,-0.380524 -0.16701,-0.645663 0,-0.271171 0.0577,-0.490696 0.17992,-0.658574 0.11622,-0.173911 0.26515,-0.264293 0.44594,-0.264293 0.20058,0 0.35468,0.116205 0.4709,0.33573 0.11622,0.232463 0.17476,0.568193 0.17476,1.007243 z m -0.25138,-0.420106 c 0,-0.179917 -0.0396,-0.328851 -0.11708,-0.439049 -0.0766,-0.109326 -0.17992,-0.167005 -0.30303,-0.167005 -0.11019,0 -0.1937,0.05077 -0.26429,0.160972 -0.0654,0.110199 -0.0973,0.25826 -0.0973,0.445082 0,0.187669 0.0318,0.336603 0.10331,0.445929 0.0706,0.09641 0.15496,0.148934 0.26515,0.148934 0.12224,0 0.21952,-0.05853 0.29614,-0.174757 0.0775,-0.116205 0.11708,-0.25826 0.11708,-0.420106 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path45", + "name": "path45", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 186.60201,32.276527 c 0,0.174757 -0.0387,0.342636 -0.12224,0.490696 -0.0585,0.109353 -0.13602,0.193675 -0.22039,0.264266 l -0.35468,0.28411 c -0.20661,0.161845 -0.3168,0.342609 -0.33574,0.549222 h 1.02014 v 0.328877 h -1.27841 c 0.0198,-0.48985 0.13602,-0.832485 0.35555,-1.019307 l 0.45196,-0.388223 c 0.16098,-0.13515 0.24449,-0.30906 0.24449,-0.509641 0,-0.154966 -0.0379,-0.284083 -0.10933,-0.374491 -0.0715,-0.09726 -0.16099,-0.142028 -0.28409,-0.142028 -0.23933,0 -0.36846,0.213492 -0.38137,0.645662 h -0.23158 c 0.006,-0.632751 0.23158,-0.955595 0.67062,-0.955595 0.14291,0 0.27204,0.06458 0.38138,0.193701 0.12913,0.154967 0.19369,0.36158 0.19369,0.632751 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path46", + "name": "path46", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 188.09349,32.831782 c 0,0.961601 -0.20661,1.446265 -0.62672,1.446265 -0.41925,0 -0.62586,-0.497602 -0.62586,-1.485 0,-0.420106 0.0577,-0.748956 0.16787,-0.987425 0.10934,-0.232437 0.26516,-0.355547 0.45799,-0.355547 0.20059,0 0.35554,0.12311 0.46488,0.355547 0.11019,0.238469 0.16184,0.581104 0.16184,1.02616 z m -0.23244,0.03273 c 0,-0.717127 -0.12913,-1.07868 -0.38739,-1.07868 -0.15496,0 -0.26515,0.110172 -0.32886,0.33573 -0.0456,0.17391 -0.0714,0.426138 -0.0714,0.768773 0,0.716227 0.12913,1.077807 0.3874,1.070901 0.13602,0 0.23846,-0.09038 0.30389,-0.264292 0.0637,-0.180764 0.0964,-0.451961 0.0964,-0.832432 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path47", + "name": "path47", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 218.52342,18.74346 c 0,0.174784 -0.0387,0.342636 -0.12224,0.490723 -0.0585,0.109326 -0.13602,0.193701 -0.2204,0.264292 l -0.35467,0.284083 c -0.20661,0.161846 -0.31681,0.342636 -0.33573,0.549249 h 1.02013 v 0.328851 h -1.27841 c 0.0198,-0.48985 0.13602,-0.832485 0.35554,-1.019281 l 0.45196,-0.38825 c 0.161,-0.135175 0.2445,-0.30906 0.2445,-0.509667 0,-0.15494 -0.0379,-0.284083 -0.10932,-0.374465 -0.0715,-0.09729 -0.161,-0.142054 -0.28411,-0.142054 -0.23932,0 -0.36846,0.213492 -0.38137,0.645662 h -0.23156 c 0.006,-0.632751 0.23156,-0.955569 0.67061,-0.955569 0.14292,0 0.27204,0.06456 0.38137,0.193702 0.12914,0.15494 0.1937,0.361553 0.1937,0.632724 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path48", + "name": "path48", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 219.58228,20.661107 h -0.22553 v -1.936961 h -0.43305 v -0.264293 c 0.18079,-0.03873 0.29012,-0.07834 0.34179,-0.129143 0.0585,-0.05853 0.11018,-0.193701 0.16185,-0.414073 h 0.15494 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path49", + "name": "path49", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 218.52342,23.237302 c 0,0.174758 -0.0387,0.342609 -0.12224,0.49067 -0.0585,0.109326 -0.13602,0.193702 -0.2204,0.264292 l -0.35467,0.284083 c -0.20661,0.161846 -0.31681,0.342636 -0.33573,0.549249 h 1.02013 v 0.328851 h -1.27841 c 0.0198,-0.489823 0.13602,-0.832459 0.35554,-1.019281 l 0.45196,-0.38825 c 0.161,-0.135149 0.2445,-0.309033 0.2445,-0.509614 0,-0.154966 -0.0379,-0.284083 -0.10932,-0.374491 -0.0715,-0.09726 -0.161,-0.142028 -0.28411,-0.142028 -0.23932,0 -0.36846,0.213492 -0.38137,0.645662 h -0.23156 c 0.006,-0.632751 0.23156,-0.955595 0.67061,-0.955595 0.14292,0 0.27204,0.06456 0.38137,0.193701 0.12914,0.154967 0.1937,0.36158 0.1937,0.632751 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path50", + "name": "path50", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 220.02135,23.237302 c 0,0.174758 -0.0387,0.342609 -0.12224,0.49067 -0.0585,0.109326 -0.12914,0.193702 -0.21351,0.264292 l -0.36155,0.284083 c -0.20061,0.161846 -0.31682,0.342636 -0.33576,0.549249 h 1.02015 v 0.328851 h -1.27153 c 0.013,-0.489823 0.12914,-0.832459 0.34867,-1.019281 l 0.45196,-0.38825 c 0.16097,-0.135149 0.24447,-0.309033 0.24447,-0.509614 0,-0.154966 -0.0318,-0.284083 -0.10329,-0.374491 -0.0706,-0.09726 -0.16701,-0.142028 -0.29012,-0.142028 -0.23931,0 -0.36158,0.213492 -0.38137,0.645662 h -0.22555 c 0.006,-0.632751 0.22555,-0.955595 0.6646,-0.955595 0.14894,0 0.27205,0.06456 0.38137,0.193701 0.12914,0.154967 0.1937,0.36158 0.1937,0.632751 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path51", + "name": "path51", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 218.52342,27.731065 c 0,0.174757 -0.0387,0.342635 -0.12224,0.490723 -0.0585,0.109325 -0.13602,0.193701 -0.2204,0.264292 l -0.35467,0.284083 c -0.20661,0.161846 -0.31681,0.342635 -0.33573,0.549249 h 1.02013 v 0.32885 h -1.27841 c 0.0198,-0.489849 0.13602,-0.832485 0.35554,-1.019281 l 0.45196,-0.388276 c 0.161,-0.135149 0.2445,-0.309033 0.2445,-0.50964 0,-0.15494 -0.0379,-0.284083 -0.10932,-0.374465 -0.0715,-0.09729 -0.161,-0.142055 -0.28411,-0.142055 -0.23932,0 -0.36846,0.213493 -0.38137,0.645663 h -0.23156 c 0.006,-0.632751 0.23156,-0.955569 0.67061,-0.955569 0.14292,0 0.27204,0.06456 0.38137,0.193701 0.12914,0.15494 0.1937,0.361553 0.1937,0.632725 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path52", + "name": "path52", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 220.0149,28.886818 c 0,0.245348 -0.0646,0.451961 -0.1877,0.606901 -0.12223,0.160999 -0.2772,0.239342 -0.47088,0.239342 -0.17391,0 -0.30993,-0.06456 -0.42613,-0.20058 -0.12915,-0.154967 -0.1937,-0.380524 -0.19973,-0.684398 h 0.23243 c 0,0.173884 0.0319,0.309906 0.0964,0.419232 0.0577,0.110199 0.14206,0.161846 0.24535,0.161846 0.30993,0 0.46487,-0.18079 0.46487,-0.555255 0,-0.322844 -0.13515,-0.483817 -0.4132,-0.483817 h -0.11623 V 28.0991 c 0.16788,0 0.27808,-0.02593 0.34264,-0.07144 0.0835,-0.06371 0.12224,-0.192855 0.12224,-0.393436 0,-0.278077 -0.11621,-0.413226 -0.36156,-0.413226 -0.22643,0 -0.34263,0.193702 -0.34867,0.574199 h -0.21952 c 0.013,-0.580231 0.20661,-0.877226 0.58798,-0.891011 0.17389,0 0.31594,0.06543 0.42614,0.200607 0.1162,0.142029 0.167,0.322818 0.167,0.548376 0,0.239315 -0.0766,0.426138 -0.23846,0.575071 0.10932,0.07747 0.18766,0.161846 0.23243,0.264293 0.0448,0.09726 0.0646,0.232436 0.0646,0.394282 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path53", + "name": "path53", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 218.52342,32.276527 c 0,0.174757 -0.0387,0.342636 -0.12224,0.490696 -0.0585,0.109353 -0.13602,0.193675 -0.2204,0.264266 l -0.35467,0.28411 c -0.20661,0.161845 -0.31681,0.342609 -0.33573,0.549222 h 1.02013 v 0.328877 h -1.27841 c 0.0198,-0.48985 0.13602,-0.832485 0.35554,-1.019307 l 0.45196,-0.388223 c 0.161,-0.13515 0.2445,-0.30906 0.2445,-0.509641 0,-0.154966 -0.0379,-0.284083 -0.10932,-0.374491 -0.0715,-0.09726 -0.161,-0.142028 -0.28411,-0.142028 -0.23932,0 -0.36846,0.213492 -0.38137,0.645662 h -0.23156 c 0.006,-0.632751 0.23156,-0.955595 0.67061,-0.955595 0.14292,0 0.27204,0.06458 0.38137,0.193701 0.12914,0.154967 0.1937,0.36158 0.1937,0.632751 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path54", + "name": "path54", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 220.04718,33.548432 h -0.27721 v 0.645663 h -0.22643 v -0.645663 h -0.82041 v -0.361553 l 0.86518,-1.737254 h 0.18166 v 1.775989 h 0.27721 z m -0.50364,-0.322818 v -1.226741 l -0.6069,1.226741 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path55", + "name": "path55", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 250.39316,18.74346 c 0,0.174784 -0.0387,0.342636 -0.12224,0.490723 -0.0585,0.109326 -0.13602,0.193701 -0.2204,0.264292 l -0.35467,0.284083 c -0.20661,0.161846 -0.31681,0.342636 -0.33575,0.549249 h 1.02015 v 0.328851 h -1.27841 c 0.0198,-0.48985 0.13602,-0.832485 0.35554,-1.019281 l 0.45196,-0.38825 c 0.161,-0.135175 0.2445,-0.30906 0.2445,-0.509667 0,-0.15494 -0.0379,-0.284083 -0.10935,-0.374465 -0.0714,-0.09729 -0.16097,-0.142054 -0.28408,-0.142054 -0.23932,0 -0.36846,0.213492 -0.38137,0.645662 h -0.23156 c 0.006,-0.632751 0.23156,-0.955569 0.67061,-0.955569 0.1429,0 0.27204,0.06456 0.38137,0.193702 0.12914,0.15494 0.1937,0.361553 0.1937,0.632724 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path56", + "name": "path56", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 251.904,19.783008 c 0,0.265139 -0.0646,0.490696 -0.1937,0.678365 -0.12311,0.186823 -0.27805,0.283237 -0.45799,0.283237 -0.18076,0 -0.3297,-0.07662 -0.45281,-0.218652 -0.12223,-0.142928 -0.18682,-0.322844 -0.18682,-0.542369 h 0.23934 c 0.0448,0.17391 0.0904,0.290115 0.14806,0.347795 0.0516,0.05855 0.12915,0.09125 0.23244,0.09125 0.27117,0 0.40635,-0.213492 0.40635,-0.633597 0,-0.186823 -0.0379,-0.334883 -0.10936,-0.451115 -0.0775,-0.110199 -0.16785,-0.167878 -0.28408,-0.167878 -0.0775,0 -0.14205,0.01905 -0.1937,0.05768 -0.0456,0.03186 -0.0964,0.09644 -0.16788,0.186822 h -0.21349 l 0.14205,-1.497938 h 0.99518 v 0.342635 h -0.80147 l -0.0775,0.755862 c 0.0973,-0.110199 0.21352,-0.161846 0.35555,-0.161846 0.18767,0 0.33575,0.0835 0.45195,0.251381 0.10936,0.174757 0.16788,0.401161 0.16788,0.678365 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path57", + "name": "path57", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 250.39316,23.237302 c 0,0.174758 -0.0387,0.342609 -0.12224,0.49067 -0.0585,0.109326 -0.13602,0.193702 -0.2204,0.264292 l -0.35467,0.284083 c -0.20661,0.161846 -0.31681,0.342636 -0.33575,0.549249 h 1.02015 v 0.328851 h -1.27841 c 0.0198,-0.489823 0.13602,-0.832459 0.35554,-1.019281 l 0.45196,-0.38825 c 0.161,-0.135149 0.2445,-0.309033 0.2445,-0.509614 0,-0.154966 -0.0379,-0.284083 -0.10935,-0.374491 -0.0714,-0.09726 -0.16097,-0.142028 -0.28408,-0.142028 -0.23932,0 -0.36846,0.213492 -0.38137,0.645662 h -0.23156 c 0.006,-0.632751 0.23156,-0.955595 0.67061,-0.955595 0.1429,0 0.27204,0.06456 0.38137,0.193701 0.12914,0.154967 0.1937,0.36158 0.1937,0.632751 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path58", + "name": "path58", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 251.904,24.315532 c 0,0.271172 -0.0585,0.490697 -0.17475,0.658575 -0.11621,0.180789 -0.27033,0.264292 -0.46487,0.264292 -0.41926,0 -0.63188,-0.445082 -0.63188,-1.342972 0,-0.987425 0.23243,-1.485001 0.70334,-1.485001 0.1162,0 0.23244,0.06456 0.33573,0.187669 0.1102,0.136023 0.17391,0.309907 0.19973,0.529432 h -0.25138 c 0.013,-0.103294 -0.0191,-0.199708 -0.0904,-0.277204 -0.0645,-0.08435 -0.14202,-0.123084 -0.23243,-0.123084 -0.12912,0 -0.23932,0.09038 -0.31594,0.277204 -0.0783,0.187668 -0.12311,0.445928 -0.12912,0.774752 0.1541,-0.225557 0.30904,-0.335703 0.45797,-0.335703 0.16788,0 0.30305,0.08432 0.41926,0.252201 0.11623,0.167878 0.17475,0.374491 0.17475,0.619839 z m -0.24534,0 c 0,-0.167878 -0.0319,-0.309933 -0.0904,-0.406347 -0.0706,-0.103293 -0.16788,-0.161845 -0.29099,-0.161845 -0.1033,0 -0.19283,0.05167 -0.2643,0.154966 -0.0904,0.110199 -0.12914,0.251381 -0.12914,0.433017 0,0.173911 0.0388,0.315939 0.11623,0.432171 0.0775,0.109325 0.16788,0.167878 0.28409,0.167878 0.0964,0 0.17475,-0.04477 0.24534,-0.129143 0.0835,-0.110199 0.12915,-0.271172 0.12915,-0.490697 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path59", + "name": "path59", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 250.39316,27.731065 c 0,0.174757 -0.0387,0.342635 -0.12224,0.490723 -0.0585,0.109325 -0.13602,0.193701 -0.2204,0.264292 l -0.35467,0.284083 c -0.20661,0.161846 -0.31681,0.342635 -0.33575,0.549249 h 1.02015 v 0.32885 h -1.27841 c 0.0198,-0.489849 0.13602,-0.832485 0.35554,-1.019281 l 0.45196,-0.388276 c 0.161,-0.135149 0.2445,-0.309033 0.2445,-0.50964 0,-0.15494 -0.0379,-0.284083 -0.10935,-0.374465 -0.0714,-0.09729 -0.16097,-0.142055 -0.28408,-0.142055 -0.23932,0 -0.36846,0.213493 -0.38137,0.645663 h -0.23156 c 0.006,-0.632751 0.23156,-0.955569 0.67061,-0.955569 0.1429,0 0.27204,0.06456 0.38137,0.193701 0.12914,0.15494 0.1937,0.361553 0.1937,0.632725 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path60", + "name": "path60", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 251.91694,27.195178 c -0.29099,0.568193 -0.49673,1.097624 -0.62671,1.594353 -0.0646,0.284109 -0.11624,0.569039 -0.14809,0.859155 h -0.25826 c 0.0577,-0.348642 0.1102,-0.606902 0.14806,-0.761868 0.0844,-0.329724 0.29702,-0.878099 0.63362,-1.652905 h -1.02703 v -0.329697 h 1.27841 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path61", + "name": "path61", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 250.39316,32.276527 c 0,0.174757 -0.0387,0.342636 -0.12224,0.490696 -0.0585,0.109353 -0.13602,0.193675 -0.2204,0.264266 l -0.35467,0.28411 c -0.20661,0.161845 -0.31681,0.342609 -0.33575,0.549222 h 1.02015 v 0.328877 h -1.27841 c 0.0198,-0.48985 0.13602,-0.832485 0.35554,-1.019307 l 0.45196,-0.388223 c 0.161,-0.13515 0.2445,-0.30906 0.2445,-0.509641 0,-0.154966 -0.0379,-0.284083 -0.10935,-0.374491 -0.0714,-0.09726 -0.16097,-0.142028 -0.28408,-0.142028 -0.23932,0 -0.36846,0.213492 -0.38137,0.645662 h -0.23156 c 0.006,-0.632751 0.23156,-0.955595 0.67061,-0.955595 0.1429,0 0.27204,0.06458 0.38137,0.193701 0.12914,0.154967 0.1937,0.36158 0.1937,0.632751 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path62", + "name": "path62", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 251.904,33.477418 c 0,0.219525 -0.0646,0.406347 -0.18766,0.561314 -0.12915,0.15494 -0.28409,0.239315 -0.47694,0.239315 -0.18164,0 -0.3297,-0.08438 -0.44593,-0.239315 -0.1162,-0.154967 -0.18079,-0.347795 -0.18079,-0.587137 0,-0.15494 0.0327,-0.296995 0.0835,-0.419233 0.0585,-0.123084 0.13601,-0.213492 0.23243,-0.27805 -0.16097,-0.129143 -0.24535,-0.315939 -0.24535,-0.561287 0,-0.206613 0.0525,-0.381371 0.16185,-0.523426 0.10332,-0.142054 0.23243,-0.219524 0.3874,-0.219524 0.17476,0 0.32284,0.07059 0.43217,0.20058 0.11708,0.129143 0.17475,0.303028 0.17475,0.509641 0,0.238469 -0.0835,0.43217 -0.25225,0.581104 0.0913,0.04477 0.16185,0.142055 0.22643,0.284057 0.0577,0.142055 0.0904,0.290115 0.0904,0.451961 z m -0.3099,-1.304211 c 0,-0.129116 -0.0327,-0.226404 -0.0904,-0.303027 -0.0646,-0.07747 -0.14203,-0.110172 -0.24535,-0.110172 -0.10329,0 -0.18079,0.03874 -0.23931,0.110172 -0.0637,0.07662 -0.0904,0.179943 -0.0904,0.303027 0,0.290116 0.1102,0.43905 0.32972,0.43905 0.0973,0 0.18079,-0.03874 0.23934,-0.123084 0.0637,-0.08353 0.0964,-0.186822 0.0964,-0.315966 z m 0.0585,1.245685 c 0,-0.154966 -0.0327,-0.284083 -0.10329,-0.373618 -0.0715,-0.09125 -0.16875,-0.135996 -0.29099,-0.135996 -0.12911,0 -0.2264,0.05162 -0.29011,0.148035 -0.0714,0.09729 -0.1033,0.232436 -0.1033,0.394282 0,0.148087 0.0379,0.271171 0.10933,0.368458 0.0706,0.09642 0.16185,0.141182 0.27805,0.141182 0.10935,0 0.20661,-0.05165 0.28324,-0.15494 0.0775,-0.10332 0.11707,-0.232436 0.11707,-0.387403 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path63", + "name": "path63", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 106.90829,42.82012 c 0,0.265165 -0.0585,0.490696 -0.18767,0.678392 -0.12912,0.186795 -0.2772,0.28321 -0.45797,0.28321 -0.18079,0 -0.33575,-0.07662 -0.45886,-0.218652 -0.11621,-0.142902 -0.17992,-0.322845 -0.1868,-0.542369 h 0.24535 c 0.0387,0.17391 0.0904,0.290115 0.14203,0.347794 0.0577,0.05855 0.13602,0.09125 0.23934,0.09125 0.2703,0 0.39944,-0.213492 0.39944,-0.633598 0,-0.186822 -0.0319,-0.334883 -0.10932,-0.451114 -0.0706,-0.110146 -0.16788,-0.167825 -0.27721,-0.167825 -0.0783,0 -0.1429,0.01905 -0.20058,0.05768 -0.0388,0.03186 -0.0964,0.09639 -0.16185,0.186769 h -0.21952 l 0.14893,-1.497912 h 0.98828 v 0.342636 h -0.7946 l -0.0775,0.755861 c 0.0904,-0.110199 0.21349,-0.161845 0.35555,-0.161845 0.18079,0 0.33573,0.0835 0.44508,0.25138 0.1162,0.174758 0.16785,0.401135 0.16785,0.678339 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path64", + "name": "path64", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 106.90829,75.658351 c 0,0.271198 -0.0516,0.490723 -0.16785,0.658574 -0.11623,0.18079 -0.2712,0.264292 -0.46487,0.264292 -0.42614,0 -0.63879,-0.445055 -0.63879,-1.342972 0,-0.987425 0.23847,-1.485026 0.70334,-1.485026 0.12311,0 0.23244,0.06458 0.33573,0.187695 0.11623,0.135996 0.18079,0.309906 0.19974,0.529431 h -0.2445 c 0.006,-0.10332 -0.0199,-0.199734 -0.0912,-0.277204 -0.0706,-0.08437 -0.14809,-0.12311 -0.23847,-0.12311 -0.12914,0 -0.23244,0.09041 -0.30993,0.277204 -0.0775,0.187669 -0.12224,0.445928 -0.13515,0.774805 0.16097,-0.225557 0.30906,-0.335756 0.46402,-0.335756 0.16185,0 0.30388,0.08438 0.42011,0.252254 0.1162,0.167852 0.16785,0.374465 0.16785,0.619813 z m -0.23932,0 c 0,-0.167852 -0.0319,-0.309907 -0.0964,-0.406321 -0.0646,-0.10332 -0.161,-0.161845 -0.28408,-0.161845 -0.10332,0 -0.1937,0.05165 -0.2712,0.15494 -0.0844,0.110199 -0.12912,0.25138 -0.12912,0.433043 0,0.173884 0.0387,0.315939 0.11621,0.432144 0.0775,0.109352 0.17391,0.167878 0.29099,0.167878 0.0895,0 0.17388,-0.04477 0.23847,-0.129116 0.0904,-0.110199 0.13514,-0.271198 0.13514,-0.490723 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path65", + "name": "path65", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 106.92766,106.84373 c -0.29096,0.56817 -0.50361,1.09762 -0.62672,1.59433 -0.0706,0.28408 -0.12224,0.56904 -0.14806,0.85915 h -0.25826 c 0.0577,-0.34867 0.10329,-0.60693 0.14806,-0.76189 0.0844,-0.32967 0.29099,-0.87808 0.6336,-1.65286 h -1.02704 v -0.32972 h 1.27842 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path66", + "name": "path66", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 106.90829,141.38003 c 0,0.21952 -0.0585,0.40632 -0.18767,0.56129 -0.12224,0.15496 -0.28408,0.23931 -0.4709,0.23931 -0.18077,0 -0.3297,-0.0844 -0.44593,-0.23931 -0.12224,-0.15497 -0.17992,-0.3478 -0.17992,-0.58711 0,-0.15497 0.0259,-0.29702 0.0835,-0.41926 0.0585,-0.12311 0.13602,-0.21349 0.23244,-0.27805 -0.16788,-0.12915 -0.25223,-0.31597 -0.25223,-0.56132 0,-0.20661 0.0585,-0.38137 0.16185,-0.5234 0.11017,-0.14205 0.23931,-0.21952 0.38737,-0.21952 0.18079,0 0.32285,0.0706 0.43905,0.20058 0.1102,0.12912 0.16788,0.30303 0.16788,0.50964 0,0.23847 -0.0835,0.43217 -0.24535,0.58108 0.0844,0.0448 0.16185,0.14205 0.21953,0.28411 0.0646,0.14203 0.0904,0.29011 0.0904,0.45196 z m -0.30991,-1.30424 c 0,-0.12914 -0.0259,-0.2264 -0.0904,-0.30302 -0.0585,-0.0775 -0.14205,-0.1102 -0.23934,-0.1102 -0.10329,0 -0.1868,0.0387 -0.24535,0.1102 -0.0577,0.0766 -0.0904,0.17991 -0.0904,0.30302 0,0.29012 0.1102,0.43905 0.33573,0.43905 0.0973,0 0.17476,-0.0387 0.23934,-0.12311 0.0646,-0.0835 0.0904,-0.18682 0.0904,-0.31594 z m 0.0646,1.24569 c 0,-0.15494 -0.0387,-0.28409 -0.10932,-0.37362 -0.0654,-0.0913 -0.16185,-0.13602 -0.29097,-0.13602 -0.12226,0 -0.21952,0.0516 -0.29014,0.14808 -0.0654,0.0973 -0.10329,0.23244 -0.10329,0.39429 0,0.14806 0.0379,0.27117 0.10932,0.36846 0.0775,0.0964 0.16788,0.14118 0.27808,0.14118 0.11536,0 0.21262,-0.0517 0.29012,-0.15497 0.0775,-0.10329 0.1162,-0.23244 0.1162,-0.3874 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path67", + "name": "path67", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 138.81677,42.297145 c 0,0.988271 -0.22555,1.485 -0.68439,1.485 -0.16788,0 -0.297,-0.05768 -0.38741,-0.173884 -0.0775,-0.110199 -0.13602,-0.284956 -0.16184,-0.516546 h 0.23934 c -0.007,0.116231 0.0259,0.206613 0.0904,0.277204 0.0646,0.06456 0.14206,0.103319 0.23932,0.103319 0.12827,0 0.23243,-0.09041 0.31596,-0.277203 0.0775,-0.181663 0.12309,-0.43905 0.12912,-0.762741 -0.13515,0.219525 -0.28408,0.329697 -0.44508,0.329697 -0.18164,0 -0.3297,-0.07747 -0.4399,-0.239316 -0.10932,-0.160972 -0.167,-0.38047 -0.167,-0.645636 0,-0.271171 0.0637,-0.490696 0.17991,-0.658574 0.11621,-0.173884 0.27205,-0.264293 0.44593,-0.264293 0.20662,0 0.36158,0.116232 0.47091,0.335757 0.11623,0.232436 0.17475,0.568166 0.17475,1.007216 z m -0.25138,-0.420106 c 0,-0.179917 -0.0396,-0.32885 -0.11707,-0.439049 -0.0766,-0.109326 -0.17389,-0.167005 -0.29615,-0.167005 -0.11017,0 -0.20058,0.0508 -0.26514,0.160972 -0.0715,0.110199 -0.10332,0.258286 -0.10332,0.445082 0,0.187669 0.0388,0.336603 0.1102,0.445929 0.0637,0.09641 0.15496,0.148907 0.25826,0.148907 0.12226,0 0.21952,-0.05852 0.29615,-0.17473 0.0775,-0.116205 0.11707,-0.25826 0.11707,-0.420106 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path68", + "name": "path68", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 138.38418,76.497715 h -0.23244 v -1.936962 h -0.43217 v -0.264292 c 0.18079,-0.03876 0.29615,-0.07834 0.34177,-0.129143 0.0577,-0.05853 0.11623,-0.193702 0.161,-0.414073 h 0.16184 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path69", + "name": "path69", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 140.31471,75.135402 c 0,0.961602 -0.20661,1.446265 -0.62672,1.446265 -0.41925,0 -0.62587,-0.497575 -0.62587,-1.485 0,-0.420132 0.0577,-0.748983 0.16788,-0.987452 0.10933,-0.232436 0.26514,-0.355547 0.45799,-0.355547 0.20059,0 0.35553,0.123111 0.46488,0.355547 0.11017,0.238469 0.16184,0.581105 0.16184,1.026187 z m -0.23243,0.0327 c 0,-0.7171 -0.12915,-1.078679 -0.38741,-1.078679 -0.15496,0 -0.26516,0.110199 -0.32885,0.335729 -0.0456,0.173911 -0.0715,0.426138 -0.0715,0.768774 0,0.716253 0.12914,1.077833 0.3874,1.070954 0.13602,0 0.23847,-0.09041 0.30388,-0.264293 0.0637,-0.180789 0.0964,-0.451961 0.0964,-0.832485 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path70", + "name": "path70", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 138.38418,109.29721 h -0.23244 v -1.93696 h -0.43217 v -0.26429 c 0.18079,-0.0387 0.29615,-0.0784 0.34177,-0.12912 0.0577,-0.0586 0.11623,-0.1937 0.161,-0.4141 h 0.16184 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path71", + "name": "path71", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 139.88209,109.29721 h -0.22553 v -1.93696 h -0.43304 v -0.26429 c 0.18079,-0.0387 0.29014,-0.0784 0.34179,-0.12912 0.0585,-0.0586 0.1102,-0.1937 0.16184,-0.4141 h 0.15494 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path72", + "name": "path72", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 138.38418,142.09673 h -0.23244 v -1.93699 h -0.43217 v -0.26429 c 0.18079,-0.0387 0.29615,-0.0783 0.34177,-0.12914 0.0577,-0.0585 0.11623,-0.19368 0.161,-0.41407 h 0.16184 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path73", + "name": "path73", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 140.32117,140.17911 c 0,0.17476 -0.0387,0.34264 -0.12226,0.4907 -0.0585,0.10932 -0.12912,0.1937 -0.2135,0.26429 l -0.36155,0.28408 c -0.20061,0.16185 -0.31681,0.34264 -0.33576,0.54925 h 1.02016 v 0.32885 h -1.27154 c 0.013,-0.48982 0.12915,-0.83246 0.34867,-1.01928 l 0.45196,-0.38825 c 0.16097,-0.13515 0.24448,-0.30906 0.24448,-0.50964 0,-0.15496 -0.0319,-0.28408 -0.1033,-0.37449 -0.0706,-0.0973 -0.167,-0.14203 -0.29011,-0.14203 -0.23934,0 -0.36158,0.2135 -0.38137,0.64564 h -0.22556 c 0.006,-0.63273 0.22556,-0.95557 0.66461,-0.95557 0.14893,0 0.27204,0.0646 0.38137,0.1937 0.12911,0.15497 0.1937,0.36158 0.1937,0.63275 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path74", + "name": "path74", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 170.30558,43.698219 h -0.23244 v -1.936962 h -0.43217 v -0.264292 c 0.18079,-0.03874 0.29615,-0.07834 0.34179,-0.129143 0.0577,-0.05853 0.1162,-0.193701 0.16097,-0.414073 h 0.16185 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path75", + "name": "path75", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 172.23611,42.936325 c 0,0.245348 -0.0646,0.451961 -0.18767,0.606928 -0.12226,0.160972 -0.2772,0.239315 -0.4709,0.239315 -0.17391,0 -0.30994,-0.06456 -0.42614,-0.20058 -0.12915,-0.154967 -0.1937,-0.380524 -0.19974,-0.684398 h 0.23244 c 0,0.173884 0.0319,0.309906 0.0964,0.419232 0.0577,0.110199 0.14206,0.161846 0.24535,0.161846 0.30994,0 0.4649,-0.180763 0.4649,-0.555255 0,-0.322844 -0.13517,-0.483817 -0.41322,-0.483817 h -0.11624 v -0.290962 c 0.16788,0 0.27808,-0.02593 0.34264,-0.07144 0.0835,-0.06371 0.12224,-0.192854 0.12224,-0.393435 0,-0.278051 -0.11621,-0.413226 -0.36156,-0.413226 -0.22643,0 -0.34263,0.193701 -0.34866,0.574225 h -0.21953 c 0.013,-0.580231 0.20661,-0.877253 0.58798,-0.891011 0.17392,0 0.31594,0.06543 0.42614,0.200581 0.11621,0.142055 0.16701,0.322818 0.16701,0.548375 0,0.239316 -0.0766,0.426138 -0.23847,0.575072 0.10935,0.07744 0.18767,0.161819 0.23244,0.264266 0.0448,0.09729 0.0646,0.232436 0.0646,0.394282 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path76", + "name": "path76", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 170.30558,76.497715 h -0.23244 v -1.936962 h -0.43217 v -0.264292 c 0.18079,-0.03876 0.29615,-0.07834 0.34179,-0.129143 0.0577,-0.05853 0.1162,-0.193702 0.16097,-0.414073 h 0.16185 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path77", + "name": "path77", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 172.26839,75.852052 h -0.2772 v 0.645663 h -0.22641 v -0.645663 h -0.82042 v -0.361553 l 0.86519,-1.737254 h 0.18164 v 1.775989 h 0.2772 z m -0.50361,-0.322818 v -1.226767 l -0.60693,1.226767 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path78", + "name": "path78", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 170.30558,109.29721 h -0.23244 v -1.93696 h -0.43217 v -0.26429 c 0.18079,-0.0387 0.29615,-0.0784 0.34179,-0.12912 0.0577,-0.0586 0.1162,-0.1937 0.16097,-0.4141 h 0.16185 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path79", + "name": "path79", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 172.2555,108.41909 c 0,0.26516 -0.0646,0.49072 -0.1937,0.67839 -0.12311,0.18679 -0.27807,0.28323 -0.45799,0.28323 -0.18079,0 -0.32972,-0.0766 -0.45284,-0.21867 -0.12223,-0.14291 -0.18679,-0.32282 -0.18679,-0.54235 h 0.23931 c 0.0448,0.17389 0.0904,0.29012 0.14807,0.3478 0.0517,0.0585 0.12914,0.0913 0.23243,0.0913 0.2712,0 0.40635,-0.21352 0.40635,-0.63362 0,-0.1868 -0.0379,-0.33486 -0.10933,-0.45106 -0.0775,-0.1102 -0.16788,-0.16788 -0.28408,-0.16788 -0.0775,0 -0.14206,0.0191 -0.1937,0.0577 -0.0456,0.0318 -0.0964,0.0964 -0.16788,0.18679 h -0.21349 l 0.14203,-1.49791 h 0.99517 v 0.34261 h -0.80147 l -0.0775,0.75586 c 0.0973,-0.1102 0.21349,-0.16184 0.35554,-0.16184 0.18767,0 0.33573,0.0835 0.45197,0.25138 0.10932,0.17475 0.16787,0.40116 0.16787,0.67834 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path80", + "name": "path80", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 170.30558,142.09673 h -0.23244 v -1.93699 h -0.43217 v -0.26429 c 0.18079,-0.0387 0.29615,-0.0783 0.34179,-0.12914 0.0577,-0.0585 0.1162,-0.19368 0.16097,-0.41407 h 0.16185 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path81", + "name": "path81", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 172.2555,141.25737 c 0,0.27117 -0.0586,0.4907 -0.17478,0.65857 -0.1162,0.18079 -0.2703,0.2643 -0.46487,0.2643 -0.41923,0 -0.63188,-0.44509 -0.63188,-1.34298 0,-0.98745 0.23244,-1.48502 0.70334,-1.48502 0.11621,0 0.23244,0.0645 0.33573,0.18767 0.1102,0.13602 0.17391,0.3099 0.19974,0.52943 h -0.25139 c 0.013,-0.1033 -0.0191,-0.19971 -0.0904,-0.27721 -0.0646,-0.0843 -0.14205,-0.12308 -0.23243,-0.12308 -0.12915,0 -0.23935,0.0904 -0.31594,0.2772 -0.0784,0.18767 -0.12311,0.44593 -0.12915,0.77478 0.1541,-0.22556 0.30906,-0.33573 0.458,-0.33573 0.16788,0 0.30303,0.0844 0.41923,0.25223 0.11623,0.16788 0.17478,0.37449 0.17478,0.61984 z m -0.24537,0 c 0,-0.16788 -0.0318,-0.30993 -0.0904,-0.40635 -0.0706,-0.10329 -0.16788,-0.16184 -0.29099,-0.16184 -0.10329,0 -0.19283,0.0516 -0.26429,0.15496 -0.0904,0.1102 -0.12912,0.25138 -0.12912,0.43302 0,0.17391 0.0387,0.31594 0.11621,0.43217 0.0775,0.10933 0.16787,0.16788 0.2841,0.16788 0.0964,0 0.17476,-0.0448 0.24535,-0.12914 0.0835,-0.1102 0.12912,-0.27118 0.12912,-0.4907 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path82", + "name": "path82", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 202.17534,43.698219 h -0.23244 v -1.936962 h -0.43216 v -0.264292 c 0.18078,-0.03874 0.29614,-0.07834 0.34177,-0.129143 0.0577,-0.05853 0.11622,-0.193701 0.16098,-0.414073 h 0.16185 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path83", + "name": "path83", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 204.13814,41.244738 c -0.29098,0.568166 -0.49673,1.097624 -0.62672,1.594326 -0.0646,0.284083 -0.11622,0.569039 -0.14807,0.859155 h -0.25827 c 0.0577,-0.348668 0.1102,-0.606928 0.14808,-0.761894 0.0844,-0.329724 0.297,-0.878073 0.6336,-1.652852 h -1.02703 v -0.329724 h 1.27841 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path84", + "name": "path84", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 202.17534,76.497715 h -0.23244 v -1.936962 h -0.43216 v -0.264292 c 0.18078,-0.03876 0.29614,-0.07834 0.34177,-0.129143 0.0577,-0.05853 0.11622,-0.193702 0.16098,-0.414073 h 0.16185 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path85", + "name": "path85", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 204.12521,75.781065 c 0,0.219524 -0.0646,0.40632 -0.18767,0.561287 -0.12913,0.154966 -0.28409,0.239315 -0.47692,0.239315 -0.18165,0 -0.32972,-0.08435 -0.44594,-0.239315 -0.11622,-0.154967 -0.18079,-0.347795 -0.18079,-0.587111 0,-0.154966 0.0327,-0.297021 0.0835,-0.419259 0.0585,-0.12311 0.13602,-0.213492 0.23244,-0.278077 -0.16099,-0.129116 -0.24535,-0.315939 -0.24535,-0.561287 0,-0.206613 0.0525,-0.38137 0.16184,-0.523425 0.10331,-0.142028 0.23244,-0.219525 0.3874,-0.219525 0.17476,0 0.32283,0.07059 0.43216,0.200607 0.11708,0.129117 0.17476,0.303028 0.17476,0.509641 0,0.238442 -0.0835,0.432144 -0.25224,0.581078 0.0913,0.04477 0.16185,0.142055 0.22641,0.284109 0.0577,0.142029 0.0904,0.290116 0.0904,0.451962 z m -0.30991,-1.304238 c 0,-0.129143 -0.0327,-0.22643 -0.0904,-0.303027 -0.0646,-0.0775 -0.14205,-0.110199 -0.24535,-0.110199 -0.10331,0 -0.18079,0.03873 -0.23933,0.110199 -0.0637,0.0766 -0.0904,0.179917 -0.0904,0.303027 0,0.290116 0.11019,0.43905 0.32972,0.43905 0.0973,0 0.18078,-0.03873 0.23932,-0.123111 0.0637,-0.0835 0.0964,-0.186822 0.0964,-0.315939 z m 0.0585,1.245685 c 0,-0.154966 -0.0327,-0.284083 -0.10331,-0.373618 -0.0714,-0.09126 -0.16873,-0.136022 -0.29097,-0.136022 -0.12914,0 -0.22641,0.05165 -0.29012,0.148061 -0.0714,0.09729 -0.10331,0.232463 -0.10331,0.394308 0,0.148061 0.0379,0.271172 0.10934,0.368433 0.0706,0.09644 0.16184,0.141208 0.27806,0.141208 0.10933,0 0.20661,-0.05167 0.28323,-0.154967 0.0775,-0.10332 0.11708,-0.232436 0.11708,-0.387403 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path86", + "name": "path86", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 202.17534,109.29721 h -0.23244 v -1.93696 h -0.43216 v -0.26429 c 0.18078,-0.0387 0.29614,-0.0784 0.34177,-0.12912 0.0577,-0.0586 0.11622,-0.1937 0.16098,-0.4141 h 0.16185 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path87", + "name": "path87", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 204.11231,107.89616 c 0,0.98827 -0.23243,1.485 -0.68439,1.485 -0.17476,0 -0.30389,-0.0577 -0.39429,-0.17391 -0.0766,-0.1102 -0.12913,-0.28495 -0.16098,-0.51652 h 0.23846 c 0,0.11621 0.0327,0.20662 0.0973,0.27721 0.0646,0.0646 0.14205,0.10329 0.23244,0.10329 0.12913,0 0.23932,-0.0904 0.3168,-0.2772 0.0835,-0.18164 0.12225,-0.43905 0.13516,-0.76272 -0.13516,0.2195 -0.28409,0.3297 -0.44507,0.3297 -0.18768,0 -0.32972,-0.0775 -0.43992,-0.23929 -0.11621,-0.161 -0.16701,-0.38052 -0.16701,-0.64566 0,-0.2712 0.0577,-0.49073 0.17993,-0.65858 0.11622,-0.17391 0.26515,-0.26429 0.44594,-0.26429 0.20058,0 0.35468,0.11621 0.4709,0.33573 0.11621,0.23244 0.17475,0.56819 0.17475,1.00724 z m -0.25137,-0.4201 c 0,-0.17995 -0.0396,-0.32888 -0.11708,-0.43905 -0.0766,-0.10935 -0.17992,-0.16703 -0.30303,-0.16703 -0.11019,0 -0.1937,0.0508 -0.26429,0.161 -0.0654,0.11019 -0.0973,0.25825 -0.0973,0.44508 0,0.18767 0.0318,0.3366 0.1033,0.44593 0.0706,0.0964 0.15496,0.14893 0.26516,0.14893 0.12224,0 0.21952,-0.0585 0.29614,-0.17476 0.0775,-0.11623 0.11708,-0.25826 0.11708,-0.4201 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path88", + "name": "path88", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 202.61437,140.17911 c 0,0.17476 -0.0387,0.34264 -0.12224,0.4907 -0.0585,0.10932 -0.13602,0.1937 -0.22039,0.26429 l -0.35468,0.28408 c -0.20661,0.16185 -0.3168,0.34264 -0.33574,0.54925 h 1.02014 v 0.32885 h -1.27841 c 0.0198,-0.48982 0.13602,-0.83246 0.35555,-1.01928 l 0.45196,-0.38825 c 0.16098,-0.13515 0.24449,-0.30906 0.24449,-0.50964 0,-0.15496 -0.0379,-0.28408 -0.10934,-0.37449 -0.0714,-0.0973 -0.16098,-0.14203 -0.28409,-0.14203 -0.23932,0 -0.36845,0.2135 -0.38136,0.64564 h -0.23158 c 0.006,-0.63273 0.23158,-0.95557 0.67062,-0.95557 0.14291,0 0.27204,0.0646 0.38137,0.1937 0.12914,0.15497 0.1937,0.36158 0.1937,0.63275 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path89", + "name": "path89", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 204.10585,140.73437 c 0,0.9616 -0.20661,1.44626 -0.62672,1.44626 -0.41925,0 -0.62586,-0.49757 -0.62586,-1.485 0,-0.4201 0.0577,-0.74898 0.16787,-0.98745 0.10933,-0.23244 0.26515,-0.35552 0.45799,-0.35552 0.20059,0 0.35554,0.12308 0.46487,0.35552 0.1102,0.23847 0.16185,0.5811 0.16185,1.02619 z m -0.23244,0.0327 c 0,-0.7171 -0.12913,-1.07868 -0.38739,-1.07868 -0.15496,0 -0.26515,0.1102 -0.32886,0.33576 -0.0456,0.17388 -0.0714,0.42613 -0.0714,0.76874 0,0.71626 0.12913,1.07784 0.3874,1.07096 0.13602,0 0.23846,-0.0904 0.30388,-0.2643 0.0637,-0.18079 0.0964,-0.45196 0.0964,-0.83248 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path90", + "name": "path90", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 234.53577,41.780625 c 0,0.174757 -0.0387,0.342635 -0.12224,0.490696 -0.0585,0.1093 -0.13602,0.193675 -0.22037,0.264266 l -0.3547,0.284083 c -0.20661,0.161846 -0.31678,0.342636 -0.33572,0.549249 h 1.02012 v 0.32885 h -1.27838 c 0.0198,-0.489849 0.13599,-0.832458 0.35552,-1.01928 l 0.45198,-0.388224 c 0.16097,-0.135175 0.24448,-0.309059 0.24448,-0.50964 0,-0.154966 -0.0379,-0.28411 -0.10933,-0.374491 -0.0715,-0.09729 -0.161,-0.142055 -0.28408,-0.142055 -0.23934,0 -0.36846,0.213519 -0.38137,0.645663 h -0.23159 c 0.006,-0.632751 0.23159,-0.95557 0.67064,-0.95557 0.1429,0 0.27201,0.06456 0.38137,0.193702 0.12911,0.154966 0.19367,0.361553 0.19367,0.632751 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path91", + "name": "path91", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 235.59466,43.698219 h -0.22556 v -1.936962 h -0.43302 v -0.264292 c 0.18077,-0.03874 0.29012,-0.07834 0.34177,-0.129116 0.0585,-0.05855 0.11019,-0.193702 0.16184,-0.4141 h 0.15497 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path92", + "name": "path92", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 234.53577,74.580094 c 0,0.174758 -0.0387,0.342636 -0.12224,0.490723 -0.0585,0.109326 -0.13602,0.193702 -0.22037,0.264292 l -0.3547,0.284083 c -0.20661,0.161846 -0.31678,0.342636 -0.33572,0.549249 h 1.02012 v 0.328851 h -1.27838 c 0.0198,-0.48985 0.13599,-0.832485 0.35552,-1.019281 l 0.45198,-0.388276 c 0.16097,-0.135149 0.24448,-0.309034 0.24448,-0.509641 0,-0.15494 -0.0379,-0.284083 -0.10933,-0.374464 -0.0715,-0.09729 -0.161,-0.142055 -0.28408,-0.142055 -0.23934,0 -0.36846,0.213492 -0.38137,0.645662 h -0.23159 c 0.006,-0.632751 0.23159,-0.955569 0.67064,-0.955569 0.1429,0 0.27201,0.06456 0.38137,0.193702 0.12911,0.15494 0.19367,0.361553 0.19367,0.632724 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path93", + "name": "path93", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 236.0337,74.580094 c 0,0.174758 -0.0387,0.342636 -0.12223,0.490723 -0.0586,0.109326 -0.12915,0.193702 -0.21349,0.264292 l -0.36158,0.284083 c -0.20058,0.161846 -0.31681,0.342636 -0.33576,0.549249 h 1.02015 v 0.328851 h -1.27153 c 0.013,-0.48985 0.12914,-0.832485 0.34867,-1.019281 l 0.45196,-0.388276 c 0.161,-0.135149 0.2445,-0.309034 0.2445,-0.509641 0,-0.15494 -0.0319,-0.284083 -0.10332,-0.374464 -0.0706,-0.09729 -0.167,-0.142055 -0.29011,-0.142055 -0.23932,0 -0.36156,0.213492 -0.38137,0.645662 h -0.22556 c 0.006,-0.632751 0.22556,-0.955569 0.66461,-0.955569 0.14893,0 0.27204,0.06456 0.38136,0.193702 0.12915,0.15494 0.1937,0.361553 0.1937,0.632724 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path94", + "name": "path94", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 234.53577,107.37962 c 0,0.17475 -0.0387,0.34263 -0.12224,0.49069 -0.0585,0.10936 -0.13602,0.1937 -0.22037,0.2643 l -0.3547,0.28408 c -0.20661,0.16184 -0.31678,0.34261 -0.33572,0.54922 h 1.02012 v 0.32888 h -1.27838 c 0.0198,-0.48985 0.13599,-0.83249 0.35552,-1.01928 l 0.45198,-0.38825 c 0.16097,-0.13515 0.24448,-0.30906 0.24448,-0.50964 0,-0.15497 -0.0379,-0.28409 -0.10933,-0.37449 -0.0715,-0.0973 -0.161,-0.14203 -0.28408,-0.14203 -0.23934,0 -0.36846,0.21349 -0.38137,0.64566 h -0.23159 c 0.006,-0.63275 0.23159,-0.9556 0.67064,-0.9556 0.1429,0 0.27201,0.0646 0.38137,0.19371 0.12911,0.15496 0.19367,0.36158 0.19367,0.63275 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path95", + "name": "path95", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 236.02725,108.53532 c 0,0.24537 -0.0646,0.45196 -0.18767,0.60692 -0.12226,0.161 -0.2772,0.23935 -0.4709,0.23935 -0.17391,0 -0.30994,-0.0646 -0.42614,-0.20061 -0.12914,-0.15494 -0.1937,-0.3805 -0.19973,-0.6844 h 0.23243 c 0,0.17391 0.0319,0.30993 0.0964,0.41926 0.0577,0.1102 0.14205,0.16185 0.24537,0.16185 0.30991,0 0.46487,-0.18079 0.46487,-0.55529 0,-0.32279 -0.13517,-0.48379 -0.41322,-0.48379 h -0.11623 v -0.29096 c 0.16787,0 0.27807,-0.0259 0.34263,-0.0715 0.0835,-0.0637 0.12224,-0.19283 0.12224,-0.39341 0,-0.27808 -0.11621,-0.41323 -0.36155,-0.41323 -0.22643,0 -0.34264,0.1937 -0.34867,0.5742 h -0.21952 c 0.013,-0.58023 0.20661,-0.87722 0.58798,-0.89101 0.17391,0 0.31594,0.0654 0.42613,0.20058 0.11623,0.14206 0.16701,0.32285 0.16701,0.5484 0,0.23932 -0.0766,0.42611 -0.23847,0.57505 0.10935,0.0775 0.18769,0.16184 0.23243,0.26429 0.0448,0.0973 0.0646,0.23241 0.0646,0.39426 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path96", + "name": "path96", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 234.53577,140.17911 c 0,0.17476 -0.0387,0.34264 -0.12224,0.4907 -0.0585,0.10932 -0.13602,0.1937 -0.22037,0.26429 l -0.3547,0.28408 c -0.20661,0.16185 -0.31678,0.34264 -0.33572,0.54925 h 1.02012 v 0.32885 h -1.27838 c 0.0198,-0.48982 0.13599,-0.83246 0.35552,-1.01928 l 0.45198,-0.38825 c 0.16097,-0.13515 0.24448,-0.30906 0.24448,-0.50964 0,-0.15496 -0.0379,-0.28408 -0.10933,-0.37449 -0.0715,-0.0973 -0.161,-0.14203 -0.28408,-0.14203 -0.23934,0 -0.36846,0.2135 -0.38137,0.64564 h -0.23159 c 0.006,-0.63273 0.23159,-0.95557 0.67064,-0.95557 0.1429,0 0.27201,0.0646 0.38137,0.1937 0.12911,0.15497 0.19367,0.36158 0.19367,0.63275 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path97", + "name": "path97", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 236.05953,141.45107 h -0.27721 v 0.64566 h -0.2264 v -0.64566 h -0.82041 v -0.36158 l 0.86518,-1.73725 h 0.18163 v 1.77599 h 0.27721 z m -0.50361,-0.32284 v -1.22674 l -0.60692,1.22674 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path98", + "name": "path98", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 266.45716,41.780625 c 0,0.174757 -0.0387,0.342635 -0.12224,0.490696 -0.0585,0.1093 -0.13602,0.193675 -0.22037,0.264266 l -0.3547,0.284083 c -0.20661,0.161846 -0.31678,0.342636 -0.33573,0.549249 h 1.02013 v 0.32885 h -1.27839 c 0.0198,-0.489849 0.136,-0.832458 0.35552,-1.01928 l 0.45199,-0.388224 c 0.16097,-0.135175 0.24447,-0.309059 0.24447,-0.50964 0,-0.154966 -0.0379,-0.28411 -0.10932,-0.374491 -0.0715,-0.09729 -0.161,-0.142055 -0.28408,-0.142055 -0.23934,0 -0.36846,0.213519 -0.38137,0.645663 h -0.23159 c 0.006,-0.632751 0.23159,-0.95557 0.67063,-0.95557 0.14291,0 0.27202,0.06456 0.38138,0.193702 0.12911,0.154966 0.19367,0.361553 0.19367,0.632751 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path99", + "name": "path99", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 267.96803,42.82012 c 0,0.265165 -0.0646,0.490696 -0.1937,0.678392 -0.12311,0.186795 -0.27807,0.28321 -0.45799,0.28321 -0.18079,0 -0.32972,-0.07662 -0.45284,-0.218652 -0.12223,-0.142902 -0.18679,-0.322845 -0.18679,-0.542369 h 0.23931 c 0.0448,0.17391 0.0904,0.290115 0.14807,0.347794 0.0517,0.05855 0.12914,0.09125 0.23246,0.09125 0.27117,0 0.40632,-0.213492 0.40632,-0.633598 0,-0.186822 -0.0379,-0.334883 -0.10933,-0.451114 -0.0775,-0.110146 -0.16788,-0.167825 -0.28408,-0.167825 -0.0775,0 -0.14205,0.01905 -0.1937,0.05768 -0.0456,0.03186 -0.0964,0.09639 -0.16788,0.186769 h -0.21349 l 0.14203,-1.497912 h 0.99517 v 0.342636 h -0.80147 l -0.0775,0.755861 c 0.0973,-0.110199 0.21349,-0.161845 0.35554,-0.161845 0.18767,0 0.33573,0.0835 0.45196,0.25138 0.10933,0.174758 0.16788,0.401135 0.16788,0.678339 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path100", + "name": "path100", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 266.45716,74.580094 c 0,0.174758 -0.0387,0.342636 -0.12224,0.490723 -0.0585,0.109326 -0.13602,0.193702 -0.22037,0.264292 l -0.3547,0.284083 c -0.20661,0.161846 -0.31678,0.342636 -0.33573,0.549249 h 1.02013 v 0.328851 h -1.27839 c 0.0198,-0.48985 0.136,-0.832485 0.35552,-1.019281 l 0.45199,-0.388276 c 0.16097,-0.135149 0.24447,-0.309034 0.24447,-0.509641 0,-0.15494 -0.0379,-0.284083 -0.10932,-0.374464 -0.0715,-0.09729 -0.161,-0.142055 -0.28408,-0.142055 -0.23934,0 -0.36846,0.213492 -0.38137,0.645662 h -0.23159 c 0.006,-0.632751 0.23159,-0.955569 0.67063,-0.955569 0.14291,0 0.27202,0.06456 0.38138,0.193702 0.12911,0.15494 0.19367,0.361553 0.19367,0.632724 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path101", + "name": "path101", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 267.96803,75.658377 c 0,0.271172 -0.0586,0.490697 -0.17476,0.658575 -0.11622,0.180763 -0.27032,0.264292 -0.46489,0.264292 -0.41923,0 -0.63188,-0.445082 -0.63188,-1.342999 0,-0.987425 0.23244,-1.485 0.70334,-1.485 0.11623,0 0.23244,0.06456 0.33576,0.187669 0.11017,0.136022 0.17388,0.309906 0.1997,0.529431 h -0.25138 c 0.013,-0.103293 -0.019,-0.199707 -0.0904,-0.277204 -0.0646,-0.08435 -0.14205,-0.12311 -0.23243,-0.12311 -0.12915,0 -0.23935,0.09041 -0.31594,0.277204 -0.0784,0.187669 -0.12311,0.445955 -0.12915,0.774805 0.1541,-0.225557 0.30906,-0.335756 0.458,-0.335756 0.16788,0 0.30303,0.08438 0.41925,0.252254 0.11621,0.167878 0.17476,0.374465 0.17476,0.619839 z m -0.24537,0 c 0,-0.167878 -0.0318,-0.309933 -0.0904,-0.406347 -0.0706,-0.103293 -0.16788,-0.161845 -0.29099,-0.161845 -0.10329,0 -0.19283,0.05165 -0.26427,0.154966 -0.0904,0.110173 -0.12914,0.251381 -0.12914,0.433017 0,0.173884 0.0387,0.315939 0.11621,0.432171 0.0775,0.109325 0.16787,0.167851 0.2841,0.167851 0.0964,0 0.17476,-0.04477 0.24535,-0.129116 0.0835,-0.110199 0.12912,-0.271172 0.12912,-0.490697 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path102", + "name": "path102", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 266.45716,107.37962 c 0,0.17475 -0.0387,0.34263 -0.12224,0.49069 -0.0585,0.10936 -0.13602,0.1937 -0.22037,0.2643 l -0.3547,0.28408 c -0.20661,0.16184 -0.31678,0.34261 -0.33573,0.54922 h 1.02013 v 0.32888 h -1.27839 c 0.0198,-0.48985 0.136,-0.83249 0.35552,-1.01928 l 0.45199,-0.38825 c 0.16097,-0.13515 0.24447,-0.30906 0.24447,-0.50964 0,-0.15497 -0.0379,-0.28409 -0.10932,-0.37449 -0.0715,-0.0973 -0.161,-0.14203 -0.28408,-0.14203 -0.23934,0 -0.36846,0.21349 -0.38137,0.64566 h -0.23159 c 0.006,-0.63275 0.23159,-0.9556 0.67063,-0.9556 0.14291,0 0.27202,0.0646 0.38138,0.19371 0.12911,0.15496 0.19367,0.36158 0.19367,0.63275 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path103", + "name": "path103", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 267.98092,106.84373 c -0.29096,0.56817 -0.49673,1.09762 -0.62672,1.59433 -0.0646,0.28408 -0.11623,0.56904 -0.14806,0.85915 h -0.25829 c 0.0577,-0.34867 0.1102,-0.60693 0.14809,-0.76189 0.0844,-0.32967 0.297,-0.87808 0.6336,-1.65286 h -1.02703 v -0.32972 h 1.27841 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path104", + "name": "path104", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 266.45716,140.17911 c 0,0.17476 -0.0387,0.34264 -0.12224,0.4907 -0.0585,0.10932 -0.13602,0.1937 -0.22037,0.26429 l -0.3547,0.28408 c -0.20661,0.16185 -0.31678,0.34264 -0.33573,0.54925 h 1.02013 v 0.32885 h -1.27839 c 0.0198,-0.48982 0.136,-0.83246 0.35552,-1.01928 l 0.45199,-0.38825 c 0.16097,-0.13515 0.24447,-0.30906 0.24447,-0.50964 0,-0.15496 -0.0379,-0.28408 -0.10932,-0.37449 -0.0715,-0.0973 -0.161,-0.14203 -0.28408,-0.14203 -0.23934,0 -0.36846,0.2135 -0.38137,0.64564 h -0.23159 c 0.006,-0.63273 0.23159,-0.95557 0.67063,-0.95557 0.14291,0 0.27202,0.0646 0.38138,0.1937 0.12911,0.15497 0.19367,0.36158 0.19367,0.63275 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path105", + "name": "path105", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 33.554916,65.521502 -0.69125,2.815087 h -0.270325 l -0.698182,-2.815087 h 0.272044 l 0.568193,2.376038 0.548349,-2.376038 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path107", + "name": "path107", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 267.96803,141.38003 c 0,0.21952 -0.0646,0.40635 -0.18769,0.56129 -0.12912,0.15496 -0.28408,0.23934 -0.47691,0.23934 -0.18167,0 -0.32973,-0.0844 -0.44593,-0.23934 -0.11623,-0.15494 -0.18079,-0.3478 -0.18079,-0.58711 0,-0.15497 0.0327,-0.297 0.0835,-0.41926 0.0585,-0.12311 0.13602,-0.21349 0.23244,-0.27805 -0.161,-0.12915 -0.24535,-0.31594 -0.24535,-0.56132 0,-0.20658 0.0525,-0.38137 0.16185,-0.5234 0.10329,-0.14205 0.23243,-0.21952 0.3874,-0.21952 0.17476,0 0.32282,0.0706 0.43214,0.20058 0.11708,0.12914 0.17476,0.30303 0.17476,0.50964 0,0.23847 -0.0835,0.43217 -0.25223,0.58111 0.0913,0.0448 0.16185,0.14202 0.2264,0.28408 0.0577,0.14205 0.0904,0.29011 0.0904,0.45196 z m -0.30993,-1.30424 c 0,-0.12911 -0.0327,-0.2264 -0.0904,-0.30302 -0.0646,-0.0775 -0.14206,-0.1102 -0.24535,-0.1102 -0.10332,0 -0.18079,0.0387 -0.23934,0.1102 -0.0637,0.0766 -0.0904,0.17991 -0.0904,0.30302 0,0.29012 0.1102,0.43905 0.32972,0.43905 0.0973,0 0.18076,-0.0387 0.23932,-0.12311 0.0637,-0.0835 0.0964,-0.18679 0.0964,-0.31594 z m 0.0586,1.24571 c 0,-0.15496 -0.0327,-0.28411 -0.10332,-0.37364 -0.0714,-0.0913 -0.16872,-0.13602 -0.29096,-0.13602 -0.12914,0 -0.22643,0.0517 -0.29011,0.14808 -0.0715,0.0973 -0.10332,0.23244 -0.10332,0.39429 0,0.14806 0.0379,0.27117 0.10932,0.36846 0.0706,0.0964 0.16185,0.14118 0.27808,0.14118 0.10932,0 0.20661,-0.0517 0.28324,-0.15497 0.0775,-0.10329 0.11707,-0.23244 0.11707,-0.38738 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path106", + "name": "path106", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 33.852361,67.936301 h 0.277204 v 0.400315 h -0.277204 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path108", + "name": "path108", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 35.743709,66.418995 c 0,0.174757 -0.03874,0.342635 -0.122238,0.490696 -0.05855,0.109326 -0.129143,0.193702 -0.220398,0.264293 l -0.354674,0.284083 c -0.20058,0.161845 -0.316812,0.342635 -0.335756,0.549248 h 1.020154 v 0.328851 h -1.278414 c 0.01984,-0.489823 0.136022,-0.832459 0.355547,-1.019281 l 0.451961,-0.38825 c 0.160999,-0.135149 0.244502,-0.309059 0.244502,-0.50964 0,-0.154966 -0.03789,-0.284083 -0.109326,-0.374491 -0.06458,-0.09726 -0.160999,-0.142028 -0.284109,-0.142028 -0.239316,0 -0.368459,0.213492 -0.381371,0.645662 h -0.225531 c 0,-0.632751 0.225531,-0.955595 0.664581,-0.955595 0.142901,0 0.272044,0.06458 0.38137,0.193701 0.129143,0.154967 0.193702,0.36158 0.193702,0.632751 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path109", + "name": "path109", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 37.273926,67.690927 h -0.277204 v 0.645662 h -0.232436 v -0.645662 h -0.82042 v -0.36158 l 0.87122,-1.737254 h 0.181636 v 1.776015 h 0.277204 z m -0.50964,-0.322819 v -1.226767 l -0.607775,1.226767 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path110", + "name": "path110", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 33.58074,101.13609 h -0.284083 l -0.199734,-0.84625 h -0.755809 l -0.213519,0.84625 h -0.264292 l 0.710247,-2.815066 h 0.315939 z m -0.561287,-1.149302 -0.290963,-1.239626 -0.322818,1.239626 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path111", + "name": "path111", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 35.446714,100.10299 c -0.122264,0.74295 -0.400315,1.11744 -0.832485,1.11744 -0.259133,0 -0.471752,-0.13602 -0.626719,-0.40719 -0.161845,-0.2712 -0.238469,-0.61984 -0.238469,-1.064921 0,-0.413226 0.07059,-0.755862 0.212646,-1.027007 0.154966,-0.296994 0.374491,-0.445082 0.658574,-0.445082 0.18079,0 0.342636,0.07662 0.477785,0.232437 0.142055,0.15412 0.239315,0.380497 0.309906,0.677492 H 35.14366 c -0.110172,-0.394256 -0.28493,-0.587084 -0.53631,-0.587084 -0.18079,0 -0.328851,0.102447 -0.43905,0.315912 -0.109326,0.212646 -0.161846,0.496729 -0.161846,0.852276 0,0.335727 0.05252,0.606927 0.168725,0.813537 0.109326,0.2135 0.257413,0.31679 0.43905,0.31679 0.296148,0 0.483817,-0.26514 0.574199,-0.7946 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path112", + "name": "path112", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 37.325573,101.13609 h -0.277204 l -0.200581,-0.84625 h -0.755861 l -0.21262,0.84625 H 35.60811 l 0.716253,-2.815066 h 0.309933 z m -0.555255,-1.149302 -0.290988,-1.239626 -0.321972,1.239626 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path113", + "name": "path113", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 31.159538,131.91467 c 0,0.25138 -0.05853,0.45884 -0.167852,0.61293 -0.09729,0.14206 -0.212646,0.21352 -0.355547,0.21352 h -0.644816 v 1.19488 h -0.252227 v -2.81593 h 0.859155 c 0.17391,0 0.309906,0.0715 0.413226,0.2264 0.09641,0.14809 0.148061,0.33576 0.148061,0.5682 z m -0.25826,0 c 0,-0.12915 -0.0327,-0.23932 -0.09038,-0.33576 -0.06458,-0.0904 -0.135175,-0.14203 -0.219524,-0.14203 h -0.600049 v 0.98139 h 0.631904 c 0.06456,0 0.123085,-0.0448 0.181637,-0.12911 0.06371,-0.0973 0.09641,-0.22643 0.09641,-0.37449 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path114", + "name": "path114", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 33.296657,132.56679 c 0,0.43217 -0.09038,0.78168 -0.265139,1.05201 -0.173884,0.26513 -0.406321,0.40116 -0.696437,0.40116 -0.278077,0 -0.503607,-0.13603 -0.678365,-0.4072 -0.174783,-0.27807 -0.265165,-0.62587 -0.265165,-1.06577 0,-0.42529 0.08438,-0.7679 0.239316,-1.03909 0.174757,-0.29012 0.40722,-0.43215 0.710247,-0.43215 0.303874,0 0.542343,0.14806 0.716227,0.44506 0.155813,0.27808 0.239316,0.62587 0.239316,1.04598 z m -0.25826,-0.0327 c 0,-0.32885 -0.06456,-0.60005 -0.186796,-0.81354 -0.123111,-0.21264 -0.290962,-0.32197 -0.497575,-0.32197 -0.225558,0 -0.406347,0.11623 -0.529458,0.33576 -0.116205,0.20574 -0.174757,0.47778 -0.174757,0.81266 0,0.34865 0.06543,0.62672 0.187669,0.83334 0.129143,0.21264 0.297021,0.31594 0.510513,0.31594 0.225557,0 0.400315,-0.11536 0.522552,-0.3478 0.1093,-0.21349 0.167852,-0.48466 0.167852,-0.81439 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path115", + "name": "path115", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 35.898675,131.12052 -0.503634,2.81509 H 35.11699 l -0.445082,-2.30545 -0.445082,2.30545 h -0.278051 l -0.496729,-2.81509 h 0.277204 l 0.368459,2.25981 0.43905,-2.25981 h 0.270298 l 0.439923,2.25981 0.374491,-2.25981 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path116", + "name": "path116", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "m 37.596744,133.93558 h -1.414409 v -2.81509 h 1.369642 v 0.31682 h -1.117415 v 0.89101 h 1.071801 v 0.31594 h -1.071801 v 0.9685 h 1.162182 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path117", + "name": "path117", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + }, + { + "d": "M 39.572467,133.93558 H 39.26944 c -0.01984,-0.0835 -0.03958,-0.17476 -0.04561,-0.26514 -0.01297,-0.10332 -0.01984,-0.25138 -0.01297,-0.4382 -0.0069,-0.33573 -0.103319,-0.51049 -0.303027,-0.51049 h -0.659447 v 1.21383 h -0.257413 v -2.81509 h 0.903075 c 0.226404,0 0.387403,0.0706 0.484664,0.21953 0.0775,0.12311 0.122264,0.31596 0.122264,0.57422 0,0.2462 -0.09041,0.45281 -0.257413,0.62672 0.08953,0.0904 0.148087,0.16097 0.173911,0.22641 0.02593,0.0448 0.03873,0.12914 0.04561,0.24534 0,0.12227 0.0061,0.31594 0.01905,0.58714 0.0069,0.0964 0.03874,0.18076 0.09041,0.23932 z m -0.32885,-2.0661 c 0,-0.13518 -0.02593,-0.23935 -0.09126,-0.31594 -0.06371,-0.0784 -0.148061,-0.11623 -0.244475,-0.11623 H 38.24844 v 0.96763 h 0.659447 c 0.225531,0 0.33573,-0.17992 0.33573,-0.53546 z", + "fill": { + "opacity": "1", + "paint": "#000000", + "rule": "nonzero" + }, + "id": "path118", + "name": "path118", + "stroke": { + "paint": "transparent", + "width": "0.86088" + }, + "type": "path" + } + ], + "id": "g1", + "name": "g1", + "transform": "matrix(4.0000001,0,0,4.0000001,361.00001,192)", + "type": "group" + }, + { + "d": "m 642.99281,361.21442 c 0,-9.09087 -7.0248,-16.11562 -15.70249,-16.11562 -9.09087,0 -16.11569,7.02475 -16.11569,16.11562 0,8.67763 7.02482,16.11569 16.11569,16.11569 8.67769,0 15.70249,-7.43806 15.70249,-16.11569 m 7.02467,0 c 0,-12.80984 -9.91719,-23.14042 -22.72716,-23.14042 -12.80995,0 -23.14037,10.33058 -23.14037,23.14042 0,12.80989 10.33042,23.14049 23.14037,23.14049 12.80997,0 22.72716,-10.3306 22.72716,-23.14049 m -24.79325,11.98341 c 0.41318,-0.41316 0.41318,-1.23961 0.41318,-2.06607 m -0.41318,-17.76845 c 0.41318,-0.41328 0.41318,-1.23976 0.41318,-2.06619 m -10.74376,14.87595 c 0,1.23972 1.23959,2.47935 2.47934,2.47935 1.23962,0 2.06609,-1.23963 2.06609,-2.47935 m -4.54543,-9.91722 c 0,1.23959 1.23959,2.47935 2.47934,2.47935 1.23962,0 2.06609,-1.23976 2.06609,-2.47935 m 0.41328,-4.95873 c 0,1.23971 1.23959,2.47935 2.47924,2.47935 1.23972,0 2.06615,-1.23964 2.06615,-2.47935 m 5.37193,0 c 0,1.23971 1.23959,2.47935 2.47937,2.47935 1.23959,0 2.06607,-1.23964 2.06607,-2.47935 m 0.41328,4.95873 c 0,1.23959 1.23961,2.47935 2.47924,2.47935 1.23971,0 2.06617,-1.23976 2.06617,-2.47935 m -4.54541,9.91722 c 0,1.23972 1.23961,2.47935 2.47924,2.47935 1.23971,0 2.06617,-1.23963 2.06617,-2.47935 m -9.50413,4.95869 c 0,1.23963 1.23959,2.47937 2.47937,2.47937 1.23959,0 2.06607,-1.23974 2.06607,-2.47937 m -14.46276,0 c 0,1.23963 1.23959,2.47937 2.47924,2.47937 1.23972,0 2.06619,-1.23974 2.06619,-2.47937 m 17.35536,-9.91732 c 0,-1.65281 0,-2.89252 -0.41328,-4.13215 m -28.09915,0 c -0.41316,1.23963 -0.82644,2.47934 -0.82644,4.13215 m 19.00827,-14.04958 c -2.89258,-0.82635 -5.78514,-0.82635 -8.26451,0 m 0,0 c -4.95859,1.23972 -8.67767,4.95869 -9.91732,9.91743 m 0,0 c 0,0 -0.41316,0 -0.41316,0.41315 m 0,0 c 0,0.82648 0.82644,1.65291 1.65281,1.65291 m 10.3306,-10.33058 c 0,-0.41319 0,-1.23963 -0.41318,-1.23963 -0.41328,-0.41328 -0.82647,-0.41328 -1.23975,-0.41328 m 18.18183,9.91743 c -1.65286,-4.95874 -5.37186,-8.67771 -9.91732,-9.91743 m 0,0 c -0.41328,0 -1.23971,0 -1.23971,0.41328 -0.41316,0 -0.82644,0.82644 -0.82644,1.23963 m 10.33061,10.33058 c 0.41328,0 0.82643,-0.41315 1.23971,-0.82643 0,-0.4132 0.41315,-0.82648 0,-1.23963 m -11.57032,16.52884 c 0,0.41318 0.41328,0.82646 0.82644,1.23963 0,0 0.82643,0.41316 1.23971,0 m 0,0.41316 c 4.54546,-1.65279 8.26446,-5.37187 9.91732,-9.91733 m -0.41315,0 c 0.41315,-0.41315 0,-1.23963 0,-1.23963 -0.41328,-0.41328 -0.82643,-0.82643 -1.23971,-0.82643 m -26.44629,2.06606 c 1.23965,4.54546 4.95873,8.26454 9.91732,9.91733 m 0,-0.41318 c 0.41328,0.41318 0.82647,0 1.23975,0 0.41318,-0.41315 0.41318,-0.82643 0.41318,-1.23961 m -10.3306,-10.3306 c -0.82637,0 -1.65281,0.82643 -1.65281,1.65291 m 0,0 c 0,0 0.41316,0 0.41316,0.41315 m -0.82644,-4.13217 c 0,1.23963 0.41328,2.89254 0.82644,4.13217 m 28.09915,0 c 0.41328,-1.23963 0.41328,-2.89254 0.41328,-4.13217 m -18.59511,14.0495 c 2.47937,0.41328 5.37193,0.41328 8.26451,0 m -7.02476,-4.13216 c 0,-1.23971 -0.82647,-2.47934 -2.06619,-2.47934 -1.23965,0 -2.47924,1.23963 -2.47924,2.47934 m 14.46276,0 c 0,-1.23971 -0.82648,-2.47934 -2.06607,-2.47934 -1.23978,0 -2.47937,1.23963 -2.47937,2.47934 m 9.50413,-4.95869 c 0,-1.23963 -0.82646,-2.47939 -2.06617,-2.47939 -1.23963,0 -2.47924,1.23976 -2.47924,2.47939 m 4.54541,-9.91722 c 0,-1.23975 -0.82646,-2.47938 -2.06617,-2.47938 -1.23963,0 -2.47924,1.23963 -2.47924,2.47938 m -0.41328,-4.95873 c 0,-1.23963 -0.82648,-2.47935 -2.06607,-2.47935 -1.23978,0 -2.47937,1.23972 -2.47937,2.47935 m -5.37193,0 c 0,-1.23963 -0.82643,-2.47935 -2.06615,-2.47935 -1.23965,0 -2.47924,1.23972 -2.47924,2.47935 m -0.41328,4.95873 c 0,-1.23975 -0.82647,-2.47938 -2.06609,-2.47938 -1.23975,0 -2.47934,1.23963 -2.47934,2.47938 m 4.54543,9.91722 c 0,-1.23963 -0.82647,-2.47939 -2.06609,-2.47939 -1.23975,0 -2.47934,1.23976 -2.47934,2.47939 m 0,-7.02472 h -0.41328 m 10.3306,-10.33058 v 0.41328 m 4.13224,0 v -0.41328 m -14.46284,14.46276 h 0.41328 m 0,-4.13218 c 1.65287,0.82648 3.3058,0.82648 4.54543,0 m 4.13224,0 h -4.13224 m 4.13224,0 c 0.82643,0 1.23965,-0.82643 1.23965,-1.65291 m 0,-3.71897 v 4.13225 m 0.82644,-6.6116 c 0,-0.82643 0,-1.65291 -0.41316,-2.47935 m 4.13215,0 c -1.23965,1.65292 -1.23965,3.30578 0,4.54554 m -0.41319,4.54541 v -4.13225 m 0.41319,3.71897 c 0,0.82648 0.41328,1.65291 1.23972,1.65291 m 4.13228,0 h -4.13228 m 4.13228,0 c 1.6528,0.82648 3.30567,0.82648 4.54541,0 m 0,4.13218 c -1.23974,-1.23976 -2.89261,-1.23976 -4.54541,0 m -1.65291,0 h 1.65291 m -1.23976,0 c -0.41315,0 -0.82643,0.41315 -0.82643,0.82643 m 0,2.06611 v -2.06611 m -0.82644,2.47937 c 0.41328,0 0.82644,-0.41326 0.82644,-0.82646 m -2.89253,1.23964 h 2.06609 m -1.65293,-0.41318 c -0.41316,0 -0.82644,0.41318 -0.82644,0.82646 m -0.41319,1.65278 v -1.65278 m 0.41319,1.23963 c -1.23965,1.65291 -1.23965,3.3058 0,4.54543 m -3.71899,-2.06609 c 0,-0.82643 0,-1.65291 -0.41316,-2.47934 m -0.41328,-3.71898 v 4.13213 m 0,-4.54541 c 0,-0.82648 -0.41322,-1.23963 -1.23965,-1.23963 m -4.13224,0 h 4.13224 m -4.13224,0 c -1.23963,-1.23976 -2.89256,-1.23976 -4.54543,0 m 4.13224,0 h 8.26443 m 0,0 v 9.91732 m 0,0 h 0.82643 m 0,0 v -2.06609 m 0.82646,-2.47934 c -0.41328,0.82643 -0.82646,1.65291 -0.82646,2.47934 m 0.82646,-2.06619 v -8.2643 m 0,0 h 9.91732 m 0,0 v -0.82644 m 0,0 h -2.06605 m -2.06608,-0.82648 c 0.82633,0.41328 1.6528,0.82648 2.47924,0.82648 m -2.47924,-0.4132 h -8.26456 m 0,0 v -10.33058 m 0,0 h -0.82643 m 0,0 v 2.06607 m -0.41318,2.06619 c 0.41318,-0.41328 0.82646,-1.23976 0.82646,-2.06619 m -0.82646,2.47935 v 8.2643 m 0,0 h -10.33058 m 0,0 v 0.41328 m 0,0 h 2.06606 m 2.47937,0.4132 c -0.41319,-0.4132 -1.23963,-0.4132 -2.06609,-0.4132 m 9.91733,10.7438 h -0.41316 m 11.98341,-12.39658 v 0.41317 m -12.39669,-11.98339 h 0.41328 m -11.98351,12.80972 v -0.82635 m 0,0 h 10.3306 m 1.65291,-11.98337 v 10.33058 m 11.98341,1.65279 h -9.91736 m -2.06605,11.98343 v -9.91732 m 19.00809,-2.06611 c 0,-10.33045 -8.26433,-18.59501 -18.59493,-18.59501 -10.33061,0 -19.00832,8.26456 -19.00832,18.59501 0,10.33052 8.67771,18.59505 19.00832,18.59505 10.3306,0 18.59493,-8.26453 18.59493,-18.59505 m 2.47934,0 c 0,-11.98337 -9.50404,-21.07436 -21.07427,-21.07436 -11.98352,0 -21.48756,9.09099 -21.48756,21.07436 0,11.57025 9.50404,21.0743 21.48756,21.0743 11.57021,0 21.07427,-9.50405 21.07427,-21.0743 m -2.06606,0 c 0,-10.74373 -8.26446,-19.42145 -19.00821,-19.42145 -10.7438,0 -19.42147,8.67772 -19.42147,19.42145 0,10.7438 8.67767,19.42151 19.42147,19.42151 10.74375,0 19.00821,-8.67771 19.00821,-19.42151 m -24.79336,20.24795 c 9.5041,2.47926 19.42155,-1.6529 23.96688,-9.91743 4.95863,-8.26441 3.30582,-18.59491 -3.3057,-25.20643 -6.61162,-7.02488 -17.3554,-8.26451 -25.61983,-3.7191 -8.26452,4.95873 -12.39657,14.87603 -9.91732,23.96692", + "fill": { + "paint": "transparent" + }, + "id": "Out", + "name": "Out", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "width": "0.412001" + }, + "type": "path" + }, + { + "d": "m 650.04952,492.2852 c 0,-12.81001 -9.9172,-22.7272 -22.72717,-22.7272 -12.80995,0 -23.14036,9.91719 -23.14036,22.7272 0,12.80985 10.33041,23.14032 23.14036,23.14032 12.80997,0 22.72717,-10.33047 22.72717,-23.14032 m -24.79323,12.39667 c 0.41315,-0.82648 0.41315,-1.65291 0.41315,-2.47934 m -0.41315,-17.35541 c 0.41315,-0.82647 0.41315,-1.65293 0.41315,-2.47936 m -10.74376,14.87603 c 0,1.23974 1.23959,2.47937 2.47937,2.47937 1.23959,0 2.06607,-1.23963 2.06607,-2.47937 m -4.54544,-9.9173 c 0,1.23959 1.23959,2.47935 2.47937,2.47935 1.23959,0 2.06607,-1.23976 2.06607,-2.47935 m 0.41328,-4.95873 c 0,1.23971 1.23961,2.47936 2.47924,2.47936 1.23971,0 2.06617,-1.23965 2.06617,-2.47936 m 5.37191,0 c 0,1.23971 1.23961,2.47936 2.47937,2.47936 1.23958,0 2.06606,-1.23965 2.06606,-2.47936 m 0.41328,4.95873 c 0,1.23959 1.23961,2.47935 2.47924,2.47935 1.23974,0 2.06617,-1.23976 2.06617,-2.47935 m -4.54541,9.9173 c 0,1.23974 1.23961,2.47937 2.47924,2.47937 1.23974,0 2.06617,-1.23963 2.06617,-2.47937 m -9.50412,4.95874 c 0,1.23958 1.23961,2.47934 2.47937,2.47934 1.23958,0 2.06606,-1.23976 2.06606,-2.47934 m -14.46275,0 c 0,1.23958 1.23961,2.47934 2.47924,2.47934 1.23971,0 2.06617,-1.23976 2.06617,-2.47934 m 17.3554,-9.91733 c 0,-1.23975 0,-2.89264 -0.41328,-4.13227 m -28.09918,0 c -0.41315,1.23963 -0.82643,2.89252 -0.82643,4.13227 m 19.00829,-14.0496 c -2.89265,-0.41328 -5.78517,-0.41328 -8.26454,0 m 0,0 c -4.95858,1.65287 -8.67767,5.37187 -9.91732,9.91733 m 0,0 c 0,0.41315 -0.41315,0.41315 -0.41315,0.41315 m 0,0 c 0,0.82648 0.82643,1.65291 1.6528,1.65291 m 10.33061,-10.33052 c 0,-0.41328 0,-0.82643 -0.4132,-1.23971 -0.41328,0 -0.82646,-0.41316 -1.23974,0 m 18.18186,9.50417 c -1.65289,-4.54546 -5.37189,-8.26446 -9.91732,-9.91733 m 0,0.41316 c -0.41328,-0.41316 -1.23974,0 -1.23974,0 -0.41315,0.41328 -0.82643,0.82643 -0.82643,1.23971 m 10.3306,10.33052 c 0.41328,0 0.82643,-0.4132 1.23971,-0.82648 0,0 0.4132,-0.82643 0,-1.23958 m -11.57031,16.52892 c 0,0.4132 0.41328,1.23963 0.82643,1.23963 0,0.41328 0.82646,0.41328 1.23974,0.41328 m 0,0 c 4.54543,-1.23971 8.26443,-4.95871 9.91734,-9.91745 m -0.4132,0 c 0.4132,-0.41315 0,-0.82643 0,-1.23958 -0.41328,-0.41328 -0.82643,-0.41328 -1.23971,-0.41328 m -26.44629,1.65286 c 1.23965,4.95874 4.95874,8.67774 9.91732,9.91745 m 0,0 c 0.41328,0 0.82646,0 1.23974,-0.41328 0.4132,0 0.4132,-0.82643 0.4132,-1.23961 m -10.33061,-9.91742 c -0.82637,0 -1.6528,0.41328 -1.6528,1.23971 m 0,0 c 0,0.41315 0.41315,0.41315 0.41315,0.41315 m -0.82643,-4.13215 c 0,1.65291 0.41328,2.89257 0.82643,4.13215 m 28.0992,0 c 0.41326,-1.23958 0.41326,-2.47924 0.41326,-4.13215 m -18.59514,14.0496 c 2.47937,0.82644 5.37189,0.82644 8.26454,0 m -7.0248,-4.13223 c 0,-1.23966 -0.82646,-2.06609 -2.06617,-2.06609 -1.23963,0 -2.47924,0.82643 -2.47924,2.06609 m 14.46275,0 c 0,-1.23966 -0.82648,-2.06609 -2.06606,-2.06609 -1.23976,0 -2.47937,0.82643 -2.47937,2.06609 m 9.50412,-4.95874 c 0,-1.23963 -0.82643,-2.06606 -2.06617,-2.06606 -1.23963,0 -2.47924,0.82643 -2.47924,2.06606 m 4.54541,-9.9173 c 0,-1.23965 -0.82643,-2.06609 -2.06617,-2.06609 -1.23963,0 -2.47924,0.82644 -2.47924,2.06609 m -0.41328,-4.95873 c 0,-1.23963 -0.82648,-2.06607 -2.06606,-2.06607 -1.23976,0 -2.47937,0.82644 -2.47937,2.06607 m -5.37191,0 c 0,-1.23963 -0.82646,-2.06607 -2.06617,-2.06607 -1.23963,0 -2.47924,0.82644 -2.47924,2.06607 m -0.41328,4.95873 c 0,-1.23965 -0.82648,-2.06609 -2.06607,-2.06609 -1.23978,0 -2.47937,0.82644 -2.47937,2.06609 m 4.54544,9.9173 c 0,-1.23963 -0.82648,-2.06606 -2.06607,-2.06606 -1.23978,0 -2.47937,0.82643 -2.47937,2.06606 m 0,-6.61152 h -0.41328 m 14.46284,14.46278 v -0.41318 m -4.13223,0 v 0.41318 m -10.33061,-10.3306 h 0.41328 m 0,-4.54546 c 1.65287,1.23974 3.30581,1.23974 4.54544,0 m 4.13223,0.41328 h -4.13223 m 4.13223,-0.41328 c 0.82646,0 1.23966,-0.4132 1.23966,-1.23963 m 0,-4.13224 v 4.13224 m 0.82643,-6.6116 c 0,-0.82648 0,-1.65291 -0.41315,-2.06607 m 4.13215,0 c -1.23963,1.23959 -1.23963,2.8925 0,4.54543 m -0.4132,4.13224 v -4.13224 m 0.4132,4.13224 c 0,0.82643 0.41328,1.23963 1.23971,1.23963 m 4.13228,0.41328 h -4.13228 m 4.13228,-0.41328 c 1.65281,1.23974 3.3057,1.23974 4.54546,0 m 0,4.13226 c -1.23976,-0.82646 -2.89265,-0.82646 -4.54546,0 m -1.65291,0.4132 h 1.65291 m -1.23976,0 c -0.41315,0 -0.82643,0 -0.82643,0.41328 m 0,2.06606 v -1.65291 m -0.82643,2.47937 c 0.41328,0 0.82643,-0.41318 0.82643,-0.82646 m -2.89252,0.82646 h 2.06609 m -1.65294,0 c -0.41315,0 -0.82643,0 -0.82643,0.41328 m -0.4132,1.65291 v -1.23976 m 0.4132,1.23976 c -1.23963,1.23961 -1.23963,2.89252 0,4.54541 m -3.719,-2.47932 c 0,-0.82648 0,-1.65294 -0.41315,-2.06609 m -0.41328,-4.13228 v 4.13228 m 0,-4.13228 c 0,-0.82643 -0.41316,-1.23971 -1.23966,-1.23971 m -4.13223,0 h 4.13223 m -4.13223,-0.4132 c -1.23963,-0.82646 -2.89257,-0.82646 -4.54544,0 m 4.13224,0 h 8.26443 m 0,0 v 10.3306 m 0,0 h 0.82646 m 0,0 v -2.06617 m 0.82643,-2.47924 c -0.41328,0.41315 -0.82643,1.23961 -0.82643,2.06609 m 0.82643,-1.65294 v -8.67771 m 0,0 h 9.91737 m 0,0 v -0.41315 m 0,0 h -2.06609 m -2.06609,-0.82646 c 0.82633,0.41318 1.65281,0.82646 2.47924,0.82646 m -2.47924,-0.82646 h -8.26451 m 0,0 v -9.91742 m 0,0 h -0.82648 m 0,0 v 2.06619 m -0.41315,2.06608 c 0.41315,-0.82647 0.82643,-1.65293 0.82643,-2.47936 m -0.82643,2.47936 v 8.26452 m 0,0 h -10.33061 m 0,0 v 0.82643 m 0,0 h 2.06609 m 2.47935,0.41318 c -0.4132,-0.41318 -1.23963,-0.82646 -2.06607,-0.82646 m 9.9173,11.15706 h -0.41315 m 11.98341,-12.80997 v 0.82648 m -12.39669,-11.98351 h 0.41328 m -11.98352,12.39679 v -0.41328 m 0,0 h 10.33061 m 1.65291,-11.98351 v 9.91742 m 11.98341,2.06609 h -9.91737 m -2.06604,11.98349 v -10.3306 m 14.87601,-2.06609 c 0,-7.85123 -6.6116,-14.46284 -14.46286,-14.46284 -8.26443,0 -14.87603,6.61161 -14.87603,14.46284 0,8.26443 6.6116,14.87604 14.87603,14.87604 7.85126,0 14.46286,-6.61161 14.46286,-14.87604 m 4.13207,0 c 0,-10.3306 -8.26433,-18.59499 -18.59493,-18.59499 -10.33058,0 -19.00831,8.26439 -19.00831,18.59499 0,10.33052 8.67773,19.00821 19.00831,19.00821 10.3306,0 18.59493,-8.67769 18.59493,-19.00821 m 2.47937,0 c 0,-11.57031 -9.50404,-21.07423 -21.0743,-21.07423 -11.98351,0 -21.48755,9.50392 -21.48755,21.07423 0,11.98341 9.50404,21.48747 21.48755,21.48747 11.57026,0 21.0743,-9.50406 21.0743,-21.48747 m -2.06609,0 c 0,-10.74388 -8.26443,-19.00817 -19.00821,-19.00817 -10.7438,0 -19.42147,8.26429 -19.42147,19.00817 0,10.7438 8.67767,19.42149 19.42147,19.42149 10.74378,0 19.00821,-8.67769 19.00821,-19.42149 m -24.79336,20.661 c 9.50413,2.47936 19.42155,-1.65279 23.96688,-9.9172 4.95863,-8.26451 3.30585,-19.00831 -3.30567,-25.61983 -6.61165,-6.61148 -17.3554,-8.26441 -25.61986,-3.30568 -8.26451,4.54531 -12.39654,14.46263 -9.91732,23.9668", + "fill": { + "paint": "transparent" + }, + "id": "CommIn", + "name": "CommIn", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "miterlimit": "10", + "opacity": "1", + "width": "0.412001" + }, + "type": "path" + }, + { + "d": "M 627.29211,361.68513 V 99.525281", + "fill": { + "paint": "transparent" + }, + "id": "OutLine1", + "name": "OutLine1", + "stroke": { + "dasharray": "none", + "opacity": "1", + "width": "4.00001" + }, + "type": "path" + }, + { + "d": "M 625.28627,101.50212 H 1611.1406", + "fill": { + "paint": "transparent" + }, + "id": "OutLine2", + "name": "OutLine2", + "stroke": { + "dasharray": "none", + "opacity": "1", + "width": "4.00001" + }, + "type": "path" + }, + { + "d": "M 1609.1562,103.45538 V 980.49384", + "fill": { + "paint": "transparent" + }, + "id": "OutLine5", + "name": "OutLine5", + "stroke": { + "dasharray": "none", + "opacity": "1", + "width": "4.00001" + }, + "type": "path" + }, + { + "d": "M 1611.071,101.50598 H 1920", + "fill": { + "paint": "transparent" + }, + "id": "OutLine4", + "name": "OutLine4", + "stroke": { + "dasharray": "none", + "opacity": "1", + "width": "4.00001" + }, + "type": "path" + }, + { + "d": "M 1609.1308,99.530565 V 0", + "fill": { + "paint": "transparent" + }, + "id": "OutLine3", + "name": "OutLine3", + "stroke": { + "dasharray": "none", + "opacity": "1", + "width": "4.00001" + }, + "type": "path" + }, + { + "d": "M 627.18747,492.625 521.98216,100.00902", + "fill": { + "paint": "transparent" + }, + "id": "InLine1", + "name": "InLine1", + "stroke": { + "dasharray": "none", + "opacity": "1", + "width": "4.00001" + }, + "type": "path" + }, + { + "d": "M 523.89064,101.48438 H 288.03124", + "fill": { + "paint": "transparent" + }, + "id": "InLine2", + "name": "InLine2", + "stroke": { + "dasharray": "none", + "opacity": "1", + "width": "4.00001" + }, + "type": "path" + }, + { + "d": "M 290.0323,103.46982 V 980.49384", + "fill": { + "paint": "transparent" + }, + "id": "InLine5", + "name": "InLine5", + "stroke": { + "dasharray": "none", + "opacity": "1", + "width": "4.00001" + }, + "type": "path" + }, + { + "d": "M 288.03137,101.48438 H 0", + "fill": { + "paint": "transparent" + }, + "id": "InLine4", + "name": "InLine4", + "stroke": { + "dasharray": "none", + "opacity": "1", + "width": "4.00001" + }, + "type": "path" + }, + { + "d": "M 290.04355,99.498048 V 0.06250001", + "fill": { + "paint": "transparent" + }, + "id": "InLine3", + "name": "InLine3", + "stroke": { + "dasharray": "none", + "opacity": "1", + "width": "4.00001" + }, + "type": "path" + }, + { + "d": "m 288.05446,982.49801 1323.08614,0", + "fill": { + "paint": "transparent" + }, + "id": "Down1", + "name": "Down1", + "stroke": { + "dasharray": "none", + "opacity": "1", + "width": "4.00001" + }, + "type": "path" + }, + { + "d": "m 290.03342,980.49384 -0.0442,99.49776", + "fill": { + "paint": "transparent" + }, + "id": "Down2", + "name": "Down2", + "stroke": { + "dasharray": "none", + "width": "4" + }, + "type": "path" + }, + { + "d": "m 1609.1719,980.49384 -0.044,99.49776", + "fill": { + "paint": "transparent" + }, + "id": "Down3", + "name": "Down3", + "stroke": { + "dasharray": "none", + "width": "4" + }, + "type": "path" + }, + { + "d": "M 1607.1819,982.49345 H 1920", + "fill": { + "paint": "transparent" + }, + "id": "DownRight", + "name": "DownRight", + "stroke": { + "dasharray": "none", + "opacity": "1", + "width": "4.00001" + }, + "type": "path" + }, + { + "d": "M 292.02542,982.49529 0,982.49529", + "fill": { + "paint": "transparent" + }, + "id": "path121", + "name": "path121", + "stroke": { + "dasharray": "none", + "opacity": "1", + "width": "4.00001" + }, + "type": "path" + } + ], + "preserveAspectRatio": "none", + "viewBox": "0 0 1920 1080" + }, + "type": "ia.shapes.svg" + } + ], + "meta": { + "name": "root" + }, + "props": { + "direction": "column" + }, + "type": "ia.container.flex" + } +} \ No newline at end of file diff --git a/.resources/ad49e8b5c40bf14e4afb329124992e0d063089dee20c2be11a1b3d4e2a591ef4 b/.resources/ad49e8b5c40bf14e4afb329124992e0d063089dee20c2be11a1b3d4e2a591ef4 deleted file mode 100644 index 88fa20c1..00000000 Binary files a/.resources/ad49e8b5c40bf14e4afb329124992e0d063089dee20c2be11a1b3d4e2a591ef4 and /dev/null differ diff --git a/.resources/ae21603727aba6cf831c7a6019477dfd1453a73215e2b2160f5e69696fef30f8 b/.resources/ae21603727aba6cf831c7a6019477dfd1453a73215e2b2160f5e69696fef30f8 deleted file mode 100644 index 84a75937..00000000 --- a/.resources/ae21603727aba6cf831c7a6019477dfd1453a73215e2b2160f5e69696fef30f8 +++ /dev/null @@ -1,348 +0,0 @@ -{ - "custom": { - "alarm_message": null, - "disconnected": true, - "plc": "value", - "priority": 0, - "priority_string": "No Active Alarms", - "searchId": "PLC01", - "state": 0, - "state_string": "Disabled" - }, - "params": { - "forceFaultStatus": null, - "forceRunningStatus": null, - "tagProps": [ - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value" - ] - }, - "propConfig": { - "custom.alarm_message": { - "persistent": true - }, - "custom.disconnected": { - "binding": { - "config": { - "fallbackDelay": 2.5, - "mode": "indirect", - "references": { - "0": "{view.params.tagProps[0]}", - "fc": "{session.custom.fc}" - }, - "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Pressed" - }, - "transforms": [ - { - "expression": "!isGood({value})", - "type": "expression" - } - ], - "type": "tag" - }, - "persistent": true - }, - "custom.plc": { - "binding": { - "config": { - "path": "view.params.tagProps[0]" - }, - "transforms": [ - { - "expression": "split({value}, \"/\")[0]", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.priority": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "fallback": 0, - "inputType": "scalar", - "mappings": [ - { - "input": 1, - "output": 2 - }, - { - "input": 2, - "output": 2 - }, - { - "input": 3, - "output": 2 - } - ], - "outputType": "scalar", - "type": "map" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.priority_string": { - "binding": { - "config": { - "expression": "case({view.custom.state},\r\n0, \"No Active Alarms\",\r\n1, \"Low\",\r\n2, \"No Active Alarms\",\r\n3, \"Low\",\r\n\"Unknown\")" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.searchId": { - "binding": { - "config": { - "path": "session.custom.searchId" - }, - "type": "property" - }, - "persistent": true - }, - "custom.state": { - "binding": { - "config": { - "fallbackDelay": 2.5, - "mode": "indirect", - "references": { - "0": "{view.params.tagProps[0]}", - "fc": "{session.custom.fc}" - }, - "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/STATE" - }, - "transforms": [ - { - "expression": "coalesce({value},{view.params.forceFaultStatus},0)", - "type": "expression" - } - ], - "type": "tag" - }, - "persistent": true - }, - "custom.state_string": { - "binding": { - "config": { - "expression": "case({view.custom.state},\r\n0, \"Disabled\",\r\n1, \"Pressed\",\r\n2, \"Normal\",\r\n3, \"Pressed\",\r\n\"Unknown\")" - }, - "type": "expr" - }, - "persistent": true - }, - "params.forceFaultStatus": { - "paramDirection": "input", - "persistent": true - }, - "params.forceRunningStatus": { - "paramDirection": "input", - "persistent": true - }, - "params.tagProps": { - "paramDirection": "inout", - "persistent": true - } - }, - "props": { - "defaultSize": { - "height": 25, - "width": 25 - } - }, - "root": { - "children": [ - { - "meta": { - "name": "Estop", - "tooltip": { - "style": { - "fontSize": 16 - } - } - }, - "position": { - "height": 1, - "width": 1 - }, - "propConfig": { - "props.elements[0].fill.paint": { - "binding": { - "config": { - "expression": "if(\r\n {view.custom.disconnected},\r\n \u0027#999999\u0027,\r\n if(\r\n {view.custom.state} \u003d 1 || {view.custom.state} \u003d 2 || {view.custom.state} \u003d 3,\r\n \u0027#D5D5D5\u0027,\r\n if(\r\n {view.custom.state} \u003d 0,\r\n \u0027#D5D5D5\u0027,\r\n \u0027#fff700\u0027\r\n )\r\n )\r\n)\r\n" - }, - "type": "expr" - } - }, - "props.elements[1].fill.paint": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "fallback": "#000000", - "inputType": "scalar", - "mappings": [ - { - "input": 1, - "output": "#7DFF7D" - }, - { - "input": 2, - "output": "#00FF00" - }, - { - "input": 3, - "output": "#7DFF7D" - }, - { - "input": 0, - "output": "#00CC00" - } - ], - "outputType": "color", - "type": "map" - } - ], - "type": "property" - } - } - }, - "props": { - "elements": [ - { - "d": "M 0,0 H 20 V 20 H 0 Z", - "fill": {}, - "name": "path", - "stroke": { - "paint": "#000000", - "width": 1.5 - }, - "type": "path" - }, - { - "d": "m 17,10.5 a 7,7 0 0 1 -7,7 7,7 0 0 1 -7,-7 7,7 0 0 1 7,-7 7,7 0 0 1 7,7 z", - "fill": {}, - "name": "path", - "stroke": { - "paint": "#000000", - "width": 1 - }, - "type": "path" - } - ], - "viewBox": "0 0 20 20" - }, - "type": "ia.shapes.svg" - } - ], - "events": { - "dom": { - "onClick": { - "config": { - "script": "\tsystem.perspective.openDock(\u0027Docked-East-SS-BTN\u0027,params\u003d{\u0027tagProps\u0027:self.view.params.tagProps})" - }, - "scope": "G", - "type": "script" - }, - "onDoubleClick": { - "config": { - "script": "\ttagProps \u003d self.view.params.tagProps\n\tsystem.perspective.openPopup(\"StatusPopUP\", \"PopUp-Views/Controller-Equipment/Information\", params \u003d{\"tagProps\":tagProps})\n\t" - }, - "enabled": false, - "scope": "G", - "type": "script" - }, - "onMouseEnter": { - "config": { - "script": "\tfrom time import sleep\n\t\n\talarm \u003d []\n\tmessage \u003d None\n\t\n\tsleep(0.5)\n\t\n\tif system.tag.exists(\"System/aws_data\"):\n\t\tif self.view.params.tagProps[0] !\u003d \"\":\n\t\t\ttags_to_read \u003d system.tag.readBlocking(\"System/aws_data\")\n\t\t\tdecode_alarm_data \u003d system.util.jsonDecode(tags_to_read[0].value)\n\t\t\talarm \u003d [decode_alarm_data[i] for i in decode_alarm_data\n\t\t\t\t\tif decode_alarm_data[i][\u0027sourceId\u0027].startswith(self.view.params.tagProps[0])]\n\t\tif alarm:\n\t\t\talarm \u003d sorted(alarm, key \u003d lambda t:t[\u0027timestamp\u0027], reverse\u003dTrue)\n\t\t\tmessage \u003d max(alarm, key \u003d lambda p:p[\u0027priority\u0027]).get(\u0027message\u0027)\n\t\t\tif len(alarm) \u003e 1:\n\t\t\t\tmessage +\u003d \" (+\" + str(len(alarm)-1) + \")\"\n\tself.view.custom.alarm_message \u003d message" - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "root", - "tooltip": { - "enabled": true, - "location": "top-left", - "style": {} - } - }, - "propConfig": { - "meta.tooltip.style.classes": { - "binding": { - "config": { - "expression": "{view.custom.priority}" - }, - "transforms": [ - { - "fallback": "Alarms-Styles/NoAlarm", - "inputType": "scalar", - "mappings": [ - { - "input": 1, - "output": "Alarms-Styles/Diagnostic" - }, - { - "input": 2, - "output": "Alarms-Styles/Low" - }, - { - "input": 3, - "output": "Alarms-Styles/Medium" - }, - { - "input": 4, - "output": "Alarms-Styles/High" - } - ], - "outputType": "style-list", - "type": "map" - } - ], - "type": "expr" - } - }, - "meta.tooltip.text": { - "binding": { - "config": { - "expression": "if(\n {view.custom.disconnected} \u003d false,\n \"Source Id: \" + {view.params.tagProps[0]} + \", Priority: \" + {view.custom.priority_string} + \", State: \" + {view.custom.state_string},\n \"Device Disconnected\"\n)\n" - }, - "type": "expr" - } - }, - "meta.visible": { - "binding": { - "config": { - "path": "session.custom.alarm_filter.show_buttons" - }, - "type": "property" - } - } - }, - "props": { - "aspectRatio": "1:1", - "mode": "percent", - "style": { - "cursor": "pointer" - } - }, - "type": "ia.container.coord" - } -} \ No newline at end of file diff --git a/.resources/aee27262535f27960a779d3522d8525847fe5aa1351fabdf151cd4b3b33b609e b/.resources/aee27262535f27960a779d3522d8525847fe5aa1351fabdf151cd4b3b33b609e deleted file mode 100644 index 5683b124..00000000 Binary files a/.resources/aee27262535f27960a779d3522d8525847fe5aa1351fabdf151cd4b3b33b609e and /dev/null differ diff --git a/.resources/afe180cdc9b2d3850b5adc3307fc5cc2827985ac7dee519599f08b3ba16ee734 b/.resources/afe180cdc9b2d3850b5adc3307fc5cc2827985ac7dee519599f08b3ba16ee734 deleted file mode 100644 index 4b495d84..00000000 Binary files a/.resources/afe180cdc9b2d3850b5adc3307fc5cc2827985ac7dee519599f08b3ba16ee734 and /dev/null differ diff --git a/.resources/7fa7895f707d2bc28eb476f9fb46bde14be31e026a8bcab6370cb6534eb1f270 b/.resources/b15cf4410d21a8ac4dd4c13c40de953f8aae538573f8dd91b688e66c8f1def1a similarity index 97% rename from .resources/7fa7895f707d2bc28eb476f9fb46bde14be31e026a8bcab6370cb6534eb1f270 rename to .resources/b15cf4410d21a8ac4dd4c13c40de953f8aae538573f8dd91b688e66c8f1def1a index 21f30dad..cb2563a6 100644 --- a/.resources/7fa7895f707d2bc28eb476f9fb46bde14be31e026a8bcab6370cb6534eb1f270 +++ b/.resources/b15cf4410d21a8ac4dd4c13c40de953f8aae538573f8dd91b688e66c8f1def1a @@ -1,5 +1,6 @@ { "custom": { + "alarm_message": null, "color": "#C2C2C2", "priority": "No Active Alarms", "state": "Closed" @@ -534,20 +535,20 @@ "inputType": "scalar", "mappings": [ { - "input": "High", - "output": "Alarms-Styles/High" + "input": 1, + "output": "Alarms-Styles/Diagnostic" }, { - "input": "Medium", - "output": "Alarms-Styles/Medium" - }, - { - "input": "Low", + "input": 2, "output": "Alarms-Styles/Low" }, { - "input": "Diagnostic", - "output": "Alarms-Styles/Diagnostic" + "input": 3, + "output": "Alarms-Styles/Medium" + }, + { + "input": 4, + "output": "Alarms-Styles/High" } ], "outputType": "style-list", @@ -560,7 +561,7 @@ "meta.tooltip.text": { "binding": { "config": { - "expression": "if(\n {view.custom.state} !\u003d \"Closed\",\n \"Source Id: \" + {view.params.tagProps[0]} + \", Priority: \" + {view.custom.priority} + \", State: \" + {view.custom.state},\n \"Device Disconnected\"\n)\n" + "expression": "if(\n {view.custom.disconnected} \u003d false,\n \"Source Id: \" + {view.params.tagProps[0]} + \", Priority: \" + {view.custom.priority_string} + \", State: \" + {view.custom.state_string},\n \"Device Disconnected\"\n)\n" }, "type": "expr" } diff --git a/.resources/b3be37eced60cb1d987d08c4c0829b7d5b282d8f0ef7c81b1916bf0bd82afaf4 b/.resources/b3be37eced60cb1d987d08c4c0829b7d5b282d8f0ef7c81b1916bf0bd82afaf4 deleted file mode 100644 index 3f27d80e..00000000 --- a/.resources/b3be37eced60cb1d987d08c4c0829b7d5b282d8f0ef7c81b1916bf0bd82afaf4 +++ /dev/null @@ -1,129 +0,0 @@ -{ - "custom": {}, - "events": { - "system": { - "onStartup": { - "config": { - "script": "\tself.params.request_focus \u003d True\n\t" - }, - "scope": "G", - "type": "script" - } - } - }, - "params": { - "enabled": true, - "placeholder": "enter text...", - "request_focus": false, - "text": "" - }, - "propConfig": { - "params.enabled": { - "paramDirection": "input", - "persistent": true - }, - "params.placeholder": { - "paramDirection": "input", - "persistent": true - }, - "params.request_focus": { - "onChange": { - "enabled": null, - "script": "\t# if focus request set externally, set focus via message and clear request\n\tif currentValue.value:\n\t\tsystem.perspective.sendMessage(\u0027request_focus\u0027, scope\u003d\u0027view\u0027)\n\t\tself.params.request_focus \u003d False\n\t" - }, - "paramDirection": "inout", - "persistent": true - }, - "params.text": { - "paramDirection": "inout", - "persistent": true - } - }, - "props": { - "defaultSize": { - "height": 50, - "width": 200 - } - }, - "root": { - "children": [ - { - "meta": { - "name": "TextField" - }, - "position": { - "grow": 1 - }, - "propConfig": { - "props.enabled": { - "binding": { - "config": { - "path": "view.params.enabled" - }, - "type": "property" - } - }, - "props.placeholder": { - "binding": { - "config": { - "path": "view.params.placeholder" - }, - "type": "property" - } - }, - "props.style.classes": { - "binding": { - "config": { - "expression": "if({this.props.enabled},\u0027Input/Text/text_field_enabled\u0027,\u0027Input/Text/text_field_disabled\u0027)" - }, - "type": "expr" - } - }, - "props.text": { - "binding": { - "config": { - "bidirectional": true, - "path": "view.params.text" - }, - "overlayOptOut": true, - "type": "property" - } - } - }, - "props": { - "style": { - "margin": "1%", - "padding": "1%" - } - }, - "scripts": { - "customMethods": [ - { - "name": "set_focus", - "params": [], - "script": "\tfrom time import sleep\n\tsleep(0.25)\n\tself.focus()\n\t" - } - ], - "extensionFunctions": null, - "messageHandlers": [ - { - "messageType": "request_focus", - "pageScope": false, - "script": "\tsystem.util.invokeAsynchronous(self.set_focus())\n\t", - "sessionScope": false, - "viewScope": true - } - ] - }, - "type": "ia.input.text-field" - } - ], - "meta": { - "name": "root" - }, - "props": { - "direction": "column" - }, - "type": "ia.container.flex" - } -} \ No newline at end of file diff --git a/.resources/b3d9d0cbed39ae319c4c240571547ab041d24a247d79ff95a36cc72b11234145 b/.resources/b3d9d0cbed39ae319c4c240571547ab041d24a247d79ff95a36cc72b11234145 deleted file mode 100644 index b30742bb..00000000 Binary files a/.resources/b3d9d0cbed39ae319c4c240571547ab041d24a247d79ff95a36cc72b11234145 and /dev/null differ diff --git a/.resources/b4390db141c87222ccbf8bc0bc3f34d8229e6f470d54b89af83a2d5c384b47ad b/.resources/b4390db141c87222ccbf8bc0bc3f34d8229e6f470d54b89af83a2d5c384b47ad deleted file mode 100644 index 38b785b4..00000000 Binary files a/.resources/b4390db141c87222ccbf8bc0bc3f34d8229e6f470d54b89af83a2d5c384b47ad and /dev/null differ diff --git a/.resources/b4a126d170ed2a7578b673d3cc08fc0a5e8466e0e0b06743fa62cef2a2f7c7ea b/.resources/b4a126d170ed2a7578b673d3cc08fc0a5e8466e0e0b06743fa62cef2a2f7c7ea deleted file mode 100644 index fdef3391..00000000 --- a/.resources/b4a126d170ed2a7578b673d3cc08fc0a5e8466e0e0b06743fa62cef2a2f7c7ea +++ /dev/null @@ -1,497 +0,0 @@ -{ - "custom": { - "alarm_message": null, - "covert_mode": true, - "disconnected": false, - "display_icon": true, - "error": false, - "isMatch": 0, - "plc": "value", - "priority": 0, - "priority_string": "No active alarms", - "searchId": "value", - "state": 5 - }, - "params": { - "forceFaultStatus": null, - "forceRunningStatus": null, - "tagProps": [ - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value" - ] - }, - "propConfig": { - "custom.alarm_message": { - "persistent": true - }, - "custom.covert_mode": { - "binding": { - "config": { - "path": "this.custom.state" - }, - "transforms": [ - { - "expression": "case(\t{value},\r\n\t\t0, {session.custom.alarm_filter.show_safety},\r\n\t\t1, True,\r\n\t\t2, True,\r\n\t\t3, {session.custom.alarm_filter.show_safety},\r\n\t\t4, {session.custom.alarm_filter.show_safety},\r\n\t\t5, {session.custom.alarm_filter.show_safety},\r\n\t\tFalse)", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.disconnected": { - "binding": { - "config": { - "fallbackDelay": 2.5, - "mode": "indirect", - "references": { - "fc": "{session.custom.fc}", - "plc": "{view.custom.plc}" - }, - "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{plc}/DCN" - }, - "transforms": [ - { - "expression": "if(isNull({value}), False, {value})", - "type": "expression" - } - ], - "type": "tag" - }, - "persistent": true - }, - "custom.display_icon": { - "binding": { - "config": { - "expression": "{this.custom.covert_mode}||{this.custom.isMatch}\u003e0" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.error": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "0 \u003c {value} \u0026\u0026 {value} \u003c 5", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.isMatch": { - "binding": { - "config": { - "expression": "if({view.params.tagProps[0]}\u003d\"value\",0,\nif({this.custom.searchId}\u003d{view.params.tagProps[0]},100,0))" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.plc": { - "binding": { - "config": { - "path": "view.params.tagProps[0]" - }, - "transforms": [ - { - "expression": "split({value}, \"/\")[0]", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.priority": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "fallback": 0, - "inputType": "scalar", - "mappings": [ - { - "input": 1, - "output": 4 - }, - { - "input": 2, - "output": 3 - }, - { - "input": 3, - "output": 2 - }, - { - "input": 4, - "output": 1 - } - ], - "outputType": "scalar", - "type": "map" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.priority_string": { - "binding": { - "config": { - "expression": "case({view.custom.state},\r\n1, \"High\",\r\n2, \"Medium\",\r\n3, \"Low\",\r\n4, \"Diagnostic\",\r\n5, \"No active alarms\",\r\n\"Unknown\")" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.searchId": { - "binding": { - "config": { - "path": "session.custom.searchId" - }, - "type": "property" - }, - "persistent": true - }, - "custom.state": { - "binding": { - "config": { - "fallbackDelay": 2.5, - "mode": "indirect", - "references": { - "0": "{view.params.tagProps[0]}", - "fc": "{session.custom.fc}" - }, - "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/ALARMST" - }, - "transforms": [ - { - "expression": "coalesce({value},{view.params.forceFaultStatus},0)\r\n", - "type": "expression" - }, - { - "fallback": null, - "inputType": "scalar", - "mappings": [ - { - "input": 4, - "output": 1 - }, - { - "input": 3, - "output": 2 - }, - { - "input": 2, - "output": 3 - }, - { - "input": 1, - "output": 4 - }, - { - "input": 0, - "output": 5 - } - ], - "outputType": "scalar", - "type": "map" - } - ], - "type": "tag" - }, - "persistent": true - }, - "params.forceFaultStatus": { - "paramDirection": "input", - "persistent": true - }, - "params.forceRunningStatus": { - "paramDirection": "input", - "persistent": true - }, - "params.tagProps": { - "paramDirection": "inout", - "persistent": true - } - }, - "props": { - "defaultSize": { - "height": 10, - "width": 40 - } - }, - "root": { - "children": [ - { - "meta": { - "name": "Light_Curtain", - "tooltip": { - "style": { - "fontSize": 16 - } - } - }, - "position": { - "height": 1, - "width": 1 - }, - "propConfig": { - "props.elements[0].fill.paint": { - "binding": { - "config": { - "expression": "\u0027#AAAAAA\u0027" - }, - "transforms": [ - { - "expression": "if({view.custom.display_icon}\u0026\u0026 {view.custom.isMatch}\u003d0,{value},{value}+\u002700\u0027)", - "type": "expression" - } - ], - "type": "expr" - } - }, - "props.elements[1].stroke.paint": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case({value},\r\n1,{session.custom.colours.state1},\r\n2,{session.custom.colours.state1},\r\n3,{session.custom.colours.state1},\r\n4,{session.custom.colours.state1},\r\n{session.custom.colours.state5}\r\n)", - "type": "expression" - } - ], - "type": "property" - } - }, - "props.style.classes": { - "binding": { - "config": { - "expression": "if({session.custom.colours.colour_impaired} \u003d True \u0026\u0026 {view.custom.isMatch} \u003e 0,\r\n{view.custom.state} + 100 + {view.custom.isMatch},\r\n{view.custom.state} + {view.custom.isMatch})" - }, - "transforms": [ - { - "fallback": "", - "inputType": "scalar", - "mappings": [ - { - "input": 101, - "output": "State-Styles/State101" - }, - { - "input": 102, - "output": "State-Styles/State102" - }, - { - "input": 103, - "output": "State-Styles/State103" - }, - { - "input": 104, - "output": "State-Styles/State104" - }, - { - "input": 105, - "output": "State-Styles/State105" - }, - { - "input": 106, - "output": "State-Styles/State106" - }, - { - "input": 201, - "output": "State-Styles/State201" - }, - { - "input": 202, - "output": "State-Styles/State202" - }, - { - "input": 203, - "output": "State-Styles/State203" - }, - { - "input": 204, - "output": "State-Styles/State204" - }, - { - "input": 205, - "output": "State-Styles/State205" - } - ], - "outputType": "style-list", - "type": "map" - } - ], - "type": "expr" - } - } - }, - "props": { - "elements": [ - { - "d": "m 32.5,0 h 8 v 8 h -8 z m -32,0 h 8 v 8 h -8 z", - "fill": {}, - "name": "path", - "stroke": { - "paint": "#000000", - "width": 1 - }, - "type": "path" - }, - { - "d": "m 9,4 c 7.666668,0 15.333332,0 23,0", - "name": "path", - "stroke": { - "width": 3 - }, - "type": "path" - } - ], - "style": {}, - "viewBox": "-0.5 -0.5 42 9" - }, - "type": "ia.shapes.svg" - } - ], - "events": { - "dom": { - "onClick": { - "config": { - "script": "\tsystem.perspective.openDock(\u0027Docked-East\u0027,params\u003d{\u0027tagProps\u0027:self.view.params.tagProps})" - }, - "scope": "G", - "type": "script" - }, - "onDoubleClick": { - "config": { - "script": "\ttagProps \u003d self.view.params.tagProps\n\tsystem.perspective.openPopup(\"StatusPopUP\", \"PopUp-Views/Controller-Equipment/Information\", params \u003d{\"tagProps\":tagProps})\n\t" - }, - "enabled": false, - "scope": "G", - "type": "script" - }, - "onMouseEnter": { - "config": { - "script": "\tfrom time import sleep\n\t\n\talarm \u003d []\n\tmessage \u003d None\n\t\n\tsleep(0.5)\n\t\n\tif system.tag.exists(\"System/aws_data\"):\n\t\tif self.view.params.tagProps[0] !\u003d \"\":\n\t\t\ttags_to_read \u003d system.tag.readBlocking(\"System/aws_data\")\n\t\t\tdecode_alarm_data \u003d system.util.jsonDecode(tags_to_read[0].value)\n\t\t\talarm \u003d [decode_alarm_data[i] for i in decode_alarm_data\n\t\t\t\t\tif decode_alarm_data[i][\u0027sourceId\u0027].startswith(self.view.params.tagProps[0])]\n\t\tif alarm:\n\t\t\talarm \u003d sorted(alarm, key \u003d lambda t:t[\u0027timestamp\u0027], reverse\u003dTrue)\n\t\t\tmessage \u003d max(alarm, key \u003d lambda p:p[\u0027priority\u0027]).get(\u0027message\u0027)\n\t\t\tif len(alarm) \u003e 1:\n\t\t\t\tmessage +\u003d \" (+\" + str(len(alarm)-1) + \")\"\n\tself.view.custom.alarm_message \u003d message" - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "root", - "tooltip": { - "enabled": true, - "location": "top-left", - "style": {} - } - }, - "propConfig": { - "meta.tooltip.style.backgroundColor": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case({value},\r\n0,{session.custom.colours.state0},\r\n1,{session.custom.colours.state1},\r\n2,{session.custom.colours.state2},\r\n3,{session.custom.colours.state3},\r\n4,{session.custom.colours.state4},\r\n5,{session.custom.colours.state5},\r\n6,{session.custom.colours.state6},\r\n{session.custom.colours.fallback}\r\n)", - "type": "expression" - } - ], - "type": "property" - } - }, - "meta.tooltip.style.classes": { - "binding": { - "config": { - "expression": "{view.custom.priority}" - }, - "transforms": [ - { - "fallback": "Alarms-Styles/NoAlarm", - "inputType": "scalar", - "mappings": [ - { - "input": 1, - "output": "Alarms-Styles/Diagnostic" - }, - { - "input": 2, - "output": "Alarms-Styles/Low" - }, - { - "input": 3, - "output": "Alarms-Styles/Medium" - }, - { - "input": 4, - "output": "Alarms-Styles/High" - } - ], - "outputType": "style-list", - "type": "map" - } - ], - "type": "expr" - } - }, - "meta.tooltip.style.color": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "if({session.custom.colours.colour_impaired},\r\n\t\u0027#000000\u0027,\r\n\tcase(\t{value},\r\n\t\t\t1,\u0027#FFFFFF\u0027,\r\n\t\t\t2,\u0027#000000\u0027,\r\n\t\t\t3,\u0027#000000\u0027,\r\n\t\t\t4,\u0027#FFFFFF\u0027,\r\n\t\t\t5,\u0027#FFFFFF\u0027,\r\n\t\t\t\u0027#000000\u0027)\r\n\t)", - "type": "expression" - } - ], - "type": "property" - } - }, - "meta.tooltip.text": { - "binding": { - "config": { - "expression": "if({view.custom.disconnected} \u003d False,\n\tif(isNull({view.custom.alarm_message}),\n\t\"Source Id: \" + {view.params.tagProps[0]} +\n\t\", Priority: \" + {view.custom.priority_string},\n\t\"Source Id: \" + {view.params.tagProps[0]} +\n\t\", Alarm: \" + {view.custom.alarm_message} +\n\t\", Priority: \" + {view.custom.priority_string}),\n\"Source Id: \" +{view.params.tagProps[0]} + \", Priority: Unknown\")" - }, - "type": "expr" - } - }, - "meta.visible": { - "binding": { - "config": { - "path": "view.custom.display_icon" - }, - "type": "property" - } - } - }, - "props": { - "aspectRatio": "40:10", - "mode": "percent", - "style": { - "cursor": "pointer" - } - }, - "type": "ia.container.coord" - } -} \ No newline at end of file diff --git a/.resources/b5704641a582e509a0ca2baee43d2a7f16400bcdf372b19a0dedf0072f36592d b/.resources/b5704641a582e509a0ca2baee43d2a7f16400bcdf372b19a0dedf0072f36592d deleted file mode 100644 index 6e09c62e..00000000 Binary files a/.resources/b5704641a582e509a0ca2baee43d2a7f16400bcdf372b19a0dedf0072f36592d and /dev/null differ diff --git a/.resources/b6c84cdfb0bfb6d0dbb1f0153bc1e2f6f6c4d37c245db26db2d0184468c2af7b b/.resources/b6c84cdfb0bfb6d0dbb1f0153bc1e2f6f6c4d37c245db26db2d0184468c2af7b deleted file mode 100644 index 6917db6d..00000000 Binary files a/.resources/b6c84cdfb0bfb6d0dbb1f0153bc1e2f6f6c4d37c245db26db2d0184468c2af7b and /dev/null differ diff --git a/.resources/b78b84e6ea38bb0d5cbb75ab2528234c96a7ab3cbcb42c30a903fc789228abb5 b/.resources/b78b84e6ea38bb0d5cbb75ab2528234c96a7ab3cbcb42c30a903fc789228abb5 new file mode 100644 index 00000000..c39903e4 Binary files /dev/null and b/.resources/b78b84e6ea38bb0d5cbb75ab2528234c96a7ab3cbcb42c30a903fc789228abb5 differ diff --git a/.resources/b87bb60b6166e4b7cfe9f41795cb65129b2941b37c9081fc8ab995968b75b9f1 b/.resources/b87bb60b6166e4b7cfe9f41795cb65129b2941b37c9081fc8ab995968b75b9f1 deleted file mode 100644 index 596b166d..00000000 --- a/.resources/b87bb60b6166e4b7cfe9f41795cb65129b2941b37c9081fc8ab995968b75b9f1 +++ /dev/null @@ -1,157 +0,0 @@ -{ - "custom": {}, - "params": { - "color": "#FF3535", - "id": "", - "text": "Active, Unacknowledged" - }, - "propConfig": { - "params.color": { - "paramDirection": "input", - "persistent": true - }, - "params.id": { - "paramDirection": "input", - "persistent": true - }, - "params.text": { - "paramDirection": "input", - "persistent": true - } - }, - "props": { - "defaultSize": { - "height": 16, - "width": 193 - } - }, - "root": { - "children": [ - { - "children": [ - { - "meta": { - "name": "FilterColor" - }, - "position": { - "basis": "11px" - }, - "propConfig": { - "props.style.backgroundColor": { - "binding": { - "config": { - "path": "view.params.color" - }, - "type": "property" - } - } - }, - "props": { - "style": { - "borderBottomLeftRadius": 5, - "borderTopLeftRadius": 5 - } - }, - "type": "ia.container.flex" - }, - { - "meta": { - "name": "FilterText" - }, - "position": { - "basis": "149px" - }, - "propConfig": { - "props.text": { - "binding": { - "config": { - "path": "view.params.text" - }, - "type": "property" - } - } - }, - "props": { - "style": { - "classes": "Page/Text", - "fontSize": 12, - "marginLeft": 10 - } - }, - "type": "ia.display.label" - } - ], - "meta": { - "name": "Left" - }, - "position": { - "basis": "169px" - }, - "props": { - "style": { - "overflow": "visible" - } - }, - "type": "ia.container.flex" - }, - { - "children": [ - { - "events": { - "dom": { - "onClick": { - "config": { - "script": "\tsystem.perspective.sendMessage(\u0027deactivate-filter\u0027, payload \u003d {\u0027id\u0027:self.view.params.id}, scope \u003d \u0027page\u0027)" - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "DeactivateButton" - }, - "position": { - "basis": "25px" - }, - "props": { - "path": "material/close", - "style": { - "cursor": "pointer", - "marginRight": 5 - } - }, - "type": "ia.display.icon" - } - ], - "meta": { - "name": "Right" - }, - "position": { - "basis": "25px" - }, - "props": { - "justify": "flex-end" - }, - "type": "ia.container.flex" - } - ], - "meta": { - "name": "root" - }, - "props": { - "justify": "space-between", - "style": { - "borderBottomLeftRadius": 5, - "borderBottomRightRadius": 5, - "borderStyle": "solid", - "borderTopLeftRadius": 5, - "borderTopRightRadius": 5, - "borderWidth": 1, - "classes": "Page/Page", - "overflow": "visible" - } - }, - "type": "ia.container.flex" - } -} \ No newline at end of file diff --git a/.resources/b8b0617637f1386c0036d374561991e7a4bfe6a3a33d6bf79e95740a4658eb2a b/.resources/b8b0617637f1386c0036d374561991e7a4bfe6a3a33d6bf79e95740a4658eb2a new file mode 100644 index 00000000..ce6a45a6 --- /dev/null +++ b/.resources/b8b0617637f1386c0036d374561991e7a4bfe6a3a33d6bf79e95740a4658eb2a @@ -0,0 +1,782 @@ +{ + "custom": {}, + "params": { + "tagProps": [ + "TAG0", + "TAG1", + "TAG2", + "TAG3", + "TAG4", + "TAG5", + "TAG6", + "TAG7", + "TAG8", + "TAG9" + ] + }, + "props": { + "defaultSize": { + "height": 1080, + "width": 1920 + } + }, + "root": { + "children": [ + { + "meta": { + "name": "DPM" + }, + "position": { + "height": 1, + "width": 1 + }, + "propConfig": { + "props.params.con_lines[0]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[0]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[1]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[1]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[2]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[2]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[3]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[3]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[4]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[4]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[5]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[5]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[6]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[6]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[7]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[7]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[8]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[8]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[9]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[9]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + } + }, + "props": { + "params": { + "con_lines": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "con_lines_visible": [ + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "in": false, + "out": false + }, + "path": "Windows/Tabs/Enternet Windows/Components/DPM_TO_HUB" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S013080_ZMX1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0232, + "y": 0.4991 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/ZMX" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S013080_ZMX1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.0094, + "y": 0.5394 + }, + "props": { + "text": "S013080_ZMX1 11.200.1.221", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "S013082_ZMX1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.023, + "y": 0.6677 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/ZMX" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S013082_ZMX1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.0068, + "y": 0.7315 + }, + "props": { + "text": "S013082_ZMX1 11.200.1.222", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "S013084_ZMX1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0216, + "y": 0.8333 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/ZMX" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S013084_ZMX1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.0068, + "y": 0.8981 + }, + "props": { + "text": "S013084_ZMX1 11.200.1.223", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "S013086_ZMX1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0229, + "y": 0.3333 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/ZMX" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S013086_ZMX1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.0068, + "y": 0.3986 + }, + "props": { + "text": "S013086_ZMX1 11.200.1.224", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "S013088_ZMX1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0229, + "y": 0.1667 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/ZMX" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S013088_ZMX1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.0068, + "y": 0.2324 + }, + "props": { + "text": "S013088_ZMX1 11.200.1.225", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "VS01C_FIOM16" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0244 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/FIO_SIO" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "VS01C_FIOM16_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.0068, + "y": 0.0653 + }, + "props": { + "text": "VS01C_FIOM16 11.200.1.226", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "VS01C_FIOM17" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.5 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/FIO_SIO" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "VS01C_FIOM17_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.5117, + "y": 0.1662 + }, + "props": { + "text": "VS01C_FIOM17 11.200.1.227", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "VS01C_FIOM18" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.625 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/FIO_SIO" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "VS01C_FIOM18_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.6312, + "y": 0.1664 + }, + "props": { + "text": "VS01C_FIOM18 11.200.1.228", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "VS01C_FIOM19" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.75 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/FIO_SIO" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "VS01C_FIOM19_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.75, + "y": 0.1664 + }, + "props": { + "text": "VS01C_FIOM19 11.200.1.229", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "VS01C_FIOM20" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.375 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/FIO_SIO" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "VS01C_FIOM20_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.3864, + "y": 0.1664 + }, + "props": { + "text": "VS01C_FIOM20 11.200.1.230", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "DPM_label" + }, + "position": { + "height": 0.0694, + "width": 0.101, + "x": 0.5831, + "y": 0.6342 + }, + "props": { + "text": "DPM02_VS01C 11.200.1.7", + "textStyle": { + "fontSize": "2vmin" + } + }, + "type": "ia.display.label" + } + ], + "meta": { + "name": "root" + }, + "position": { + "x": 0.6348, + "y": -0.1546 + }, + "props": { + "mode": "percent" + }, + "type": "ia.container.coord" + } +} \ No newline at end of file diff --git a/.resources/b9809960000f586390e03f563cd59013477d8e5304837b325d1050173458d5f0 b/.resources/b9809960000f586390e03f563cd59013477d8e5304837b325d1050173458d5f0 deleted file mode 100644 index cdf56086..00000000 --- a/.resources/b9809960000f586390e03f563cd59013477d8e5304837b325d1050173458d5f0 +++ /dev/null @@ -1,614 +0,0 @@ -{ - "custom": { - "FillColour": "value", - "alarm_message": null, - "covert_mode": true, - "disconnected": false, - "display_icon": true, - "error": false, - "isMatch": 0, - "plc": "value", - "priority": 0, - "priority_string": "No active alarms", - "running": false, - "running_status": 0, - "searchId": "value", - "show_error": false, - "show_running": true, - "state": 5, - "state_string": "Unknown" - }, - "params": { - "forceFaultStatus": null, - "forceRunningStatus": null, - "tagProps": [ - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value" - ] - }, - "propConfig": { - "custom.FillColour": { - "persistent": true - }, - "custom.alarm_message": { - "persistent": true - }, - "custom.covert_mode": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case(\t{value},\r\n\t\t0, {session.custom.alarm_filter.show_running},\r\n\t\t1, True,\r\n\t\t2, True,\r\n\t\t3, {session.custom.alarm_filter.show_low_alarm} || {session.custom.alarm_filter.show_running},\r\n\t\t4, {session.custom.alarm_filter.show_diagnostic} || {session.custom.alarm_filter.show_running},\r\n\t\t5, {session.custom.alarm_filter.show_running},\r\n\t\tFalse)", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.disconnected": { - "binding": { - "config": { - "fallbackDelay": 2.5, - "mode": "indirect", - "references": { - "fc": "{session.custom.fc}", - "plc": "{view.custom.plc}" - }, - "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{plc}/DCN" - }, - "transforms": [ - { - "expression": "if(isNull({value}), False, {value})", - "type": "expression" - } - ], - "type": "tag" - }, - "persistent": true - }, - "custom.display_icon": { - "binding": { - "config": { - "expression": "{this.custom.covert_mode}//||{this.custom.isMatch}\u003e0" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.error": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "0 \u003c {value} \u0026\u0026 {value} \u003c 5", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.isMatch": { - "binding": { - "config": { - "expression": "if({view.params.tagProps[0]}\u003d\"value\",0,\nif({this.custom.searchId}\u003d{view.params.tagProps[0]},100,0))" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.plc": { - "binding": { - "config": { - "path": "view.params.tagProps[0]" - }, - "transforms": [ - { - "expression": "split({value}, \"/\")[0]", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.priority": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "fallback": 0, - "inputType": "scalar", - "mappings": [ - { - "input": 1, - "output": 4 - }, - { - "input": 2, - "output": 3 - }, - { - "input": 3, - "output": 2 - }, - { - "input": 4, - "output": 1 - } - ], - "outputType": "scalar", - "type": "map" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.priority_string": { - "binding": { - "config": { - "expression": "case({view.custom.state},\r\n1, \"High\",\r\n2, \"Medium\",\r\n3, \"Low\",\r\n4, \"Diagnostic\",\r\n5, \"No active alarms\",\r\n\"Unknown\")" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.running": { - "binding": { - "config": { - "expression": "{view.custom.running_status} \u003d 3" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.running_status": { - "binding": { - "config": { - "fallbackDelay": 2.5, - "mode": "indirect", - "references": { - "0": "{view.params.tagProps[0]}", - "fc": "{session.custom.fc}" - }, - "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/STATE" - }, - "transforms": [ - { - "expression": "coalesce({value},{view.params.forceRunningStatus},0)", - "type": "expression" - } - ], - "type": "tag" - }, - "persistent": true - }, - "custom.searchId": { - "binding": { - "config": { - "path": "session.custom.searchId" - }, - "type": "property" - }, - "persistent": true - }, - "custom.show_error": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case(\t{value},\r\n\t\t1, True,\r\n\t\t2, True,\r\n\t\t3, {session.custom.alarm_filter.show_low_alarm},\r\n\t\t4, {session.custom.alarm_filter.show_diagnostic},\r\n\t\tFalse)", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.show_running": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case(\t{value},\r\n\t\t1, False,\r\n\t\t2, False,\r\n\t\t{session.custom.alarm_filter.show_running}\r\n\t\t)", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.state": { - "binding": { - "config": { - "fallbackDelay": 2.5, - "mode": "indirect", - "references": { - "0": "{view.params.tagProps[0]}", - "fc": "{session.custom.fc}" - }, - "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/ALARMST" - }, - "transforms": [ - { - "expression": "coalesce({value},{view.params.forceFaultStatus},0)", - "type": "expression" - }, - { - "fallback": null, - "inputType": "scalar", - "mappings": [ - { - "input": 4, - "output": 1 - }, - { - "input": 3, - "output": 2 - }, - { - "input": 2, - "output": 3 - }, - { - "input": 1, - "output": 4 - }, - { - "input": 0, - "output": 5 - } - ], - "outputType": "scalar", - "type": "map" - } - ], - "type": "tag" - }, - "persistent": true - }, - "custom.state_string": { - "binding": { - "config": { - "expression": "case({view.custom.running_status},\r\n1, \"Faulted\",\r\n2, \"Stopped\",\r\n3, \"Running\",\r\n\"Unknown\")" - }, - "type": "expr" - }, - "persistent": true - }, - "params.forceFaultStatus": { - "paramDirection": "input", - "persistent": true - }, - "params.forceRunningStatus": { - "paramDirection": "input", - "persistent": true - }, - "params.tagProps": { - "paramDirection": "inout", - "persistent": true - } - }, - "props": { - "defaultSize": { - "height": 100, - "width": 100 - } - }, - "root": { - "children": [ - { - "meta": { - "name": "Pin Detection" - }, - "position": { - "height": 1, - "width": 1 - }, - "propConfig": { - "props.elements[1].elements[0].fill.paint": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case({value},\r\n0,{session.custom.colours.state0},\r\n1,{session.custom.colours.state1},\r\n2,{session.custom.colours.state2},\r\n3,{session.custom.colours.state3},\r\n4,{session.custom.colours.state4},\r\n5,{session.custom.colours.state5},\r\n6,{session.custom.colours.state6},\r\n{session.custom.colours.fallback}\r\n)", - "type": "expression" - }, - { - "expression": "if({view.custom.display_icon}\u0026\u0026 {view.custom.isMatch}\u003d0,{value},{value}+\u002700\u0027)", - "type": "expression" - } - ], - "type": "property" - } - }, - "props.style.classes": { - "binding": { - "config": { - "expression": "if({session.custom.colours.colour_impaired} \u003d True \u0026\u0026 {view.custom.isMatch} \u003e 0,\r\n{view.custom.state} + 100 + {view.custom.isMatch},\r\n{view.custom.state} + {view.custom.isMatch})" - }, - "transforms": [ - { - "fallback": "", - "inputType": "scalar", - "mappings": [ - { - "input": 101, - "output": "State-Styles/State101" - }, - { - "input": 102, - "output": "State-Styles/State102" - }, - { - "input": 103, - "output": "State-Styles/State103" - }, - { - "input": 104, - "output": "State-Styles/State104" - }, - { - "input": 105, - "output": "State-Styles/State105" - }, - { - "input": 106, - "output": "State-Styles/State106" - }, - { - "input": 201, - "output": "State-Styles/State201" - }, - { - "input": 202, - "output": "State-Styles/State202" - }, - { - "input": 203, - "output": "State-Styles/State203" - }, - { - "input": 204, - "output": "State-Styles/State204" - }, - { - "input": 205, - "output": "State-Styles/State205" - } - ], - "outputType": "style-list", - "type": "map" - } - ], - "type": "expr" - } - } - }, - "props": { - "elements": [ - { - "id": "defs1", - "name": "defs1", - "type": "defs" - }, - { - "elements": [ - { - "cx": "6.6145835", - "cy": "6.6145835", - "fill": {}, - "id": "path1", - "name": "path1", - "r": "6.0570302", - "stroke": { - "dasharray": "none", - "paint": "#000000", - "width": "0.264583" - }, - "type": "circle" - }, - { - "d": "M 1.4878915,9.8402065 9.8014876,1.4637334", - "fill": { - "paint": "transparent" - }, - "id": "path2", - "name": "path2", - "stroke": { - "dasharray": "none", - "paint": "#000000", - "width": "0.264726" - }, - "type": "path" - }, - { - "d": "M 3.5515604,11.84005 11.75248,3.4068377", - "fill": { - "paint": "transparent" - }, - "id": "path3", - "name": "path3", - "stroke": { - "dasharray": "none", - "paint": "#000000", - "width": "0.258089" - }, - "type": "path" - } - ], - "id": "layer1", - "name": "layer1", - "type": "group" - } - ], - "style": {}, - "viewBox": "0 0 13.229166 13.229167" - }, - "type": "ia.shapes.svg" - } - ], - "events": { - "dom": { - "onClick": { - "config": { - "script": "\tsystem.perspective.openDock(\u0027Docked-East\u0027,params\u003d{\u0027tagProps\u0027:self.view.params.tagProps})" - }, - "scope": "G", - "type": "script" - }, - "onDoubleClick": { - "config": { - "script": "\ttagProps \u003d self.view.params.tagProps\n\tsystem.perspective.openPopup(\"StatusPopUP\", \"PopUp-Views/Controller-Equipment/Information\", params \u003d{\"tagProps\":tagProps})\n\t" - }, - "enabled": false, - "scope": "G", - "type": "script" - }, - "onMouseEnter": { - "config": { - "script": "\tfrom time import sleep\n\t\n\talarm \u003d []\n\tmessage \u003d None\n\t\n\tsleep(0.5)\n\t\n\tif system.tag.exists(\"System/aws_data\"):\n\t\tif self.view.params.tagProps[0] !\u003d \"\":\n\t\t\ttags_to_read \u003d system.tag.readBlocking(\"System/aws_data\")\n\t\t\tdecode_alarm_data \u003d system.util.jsonDecode(tags_to_read[0].value)\n\t\t\talarm \u003d [decode_alarm_data[i] for i in decode_alarm_data\n\t\t\t\t\tif decode_alarm_data[i][\u0027sourceId\u0027].startswith(self.view.params.tagProps[0])]\n\t\tif alarm:\n\t\t\talarm \u003d sorted(alarm, key \u003d lambda t:t[\u0027timestamp\u0027], reverse\u003dTrue)\n\t\t\tmessage \u003d max(alarm, key \u003d lambda p:p[\u0027priority\u0027]).get(\u0027message\u0027)\n\t\t\tif len(alarm) \u003e 1:\n\t\t\t\tmessage +\u003d \" (+\" + str(len(alarm)-1) + \")\"\n\tself.view.custom.alarm_message \u003d message" - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "root", - "tooltip": { - "enabled": true, - "location": "top-left", - "style": {} - } - }, - "propConfig": { - "meta.tooltip.style.backgroundColor": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case({value},\r\n0,{session.custom.colours.state0},\r\n1,{session.custom.colours.state1},\r\n2,{session.custom.colours.state2},\r\n3,{session.custom.colours.state3},\r\n4,{session.custom.colours.state4},\r\n5,{session.custom.colours.state5},\r\n6,{session.custom.colours.state6},\r\n{session.custom.colours.fallback}\r\n)", - "type": "expression" - } - ], - "type": "property" - } - }, - "meta.tooltip.style.classes": { - "binding": { - "config": { - "expression": "{view.custom.priority}" - }, - "transforms": [ - { - "fallback": "Alarms-Styles/NoAlarm", - "inputType": "scalar", - "mappings": [ - { - "input": 1, - "output": "Alarms-Styles/Diagnostic" - }, - { - "input": 2, - "output": "Alarms-Styles/Low" - }, - { - "input": 3, - "output": "Alarms-Styles/Medium" - }, - { - "input": 4, - "output": "Alarms-Styles/High" - } - ], - "outputType": "style-list", - "type": "map" - } - ], - "type": "expr" - } - }, - "meta.tooltip.style.color": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "if({session.custom.colours.colour_impaired},\r\n\t\u0027#000000\u0027,\r\n\tcase(\t{value},\r\n\t\t\t1,\u0027#FFFFFF\u0027,\r\n\t\t\t2,\u0027#000000\u0027,\r\n\t\t\t3,\u0027#000000\u0027,\r\n\t\t\t4,\u0027#FFFFFF\u0027,\r\n\t\t\t5,\u0027#FFFFFF\u0027,\r\n\t\t\t\u0027#000000\u0027)\r\n\t)", - "type": "expression" - } - ], - "type": "property" - } - }, - "meta.tooltip.text": { - "binding": { - "config": { - "expression": "if({view.custom.disconnected} \u003d False,\n\tif(isNull({view.custom.alarm_message}),\n\t\"Source Id: \" + {view.params.tagProps[0]} +\n\t\", Priority: \" + {view.custom.priority_string} +\n\t\", State: \" + {view.custom.state_string},\n\t\"Source Id: \" + {view.params.tagProps[0]} +\n\t\", Alarm: \" + {view.custom.alarm_message} +\n\t\", Priority: \" + {view.custom.priority_string} +\n\t\", State: \" + {view.custom.state_string}),\n\"Source Id: \" +{view.params.tagProps[0]} + \", Priority: Unknown, State: Unknown\")" - }, - "type": "expr" - } - }, - "props.style.classes": { - "binding": { - "config": { - "path": "view.custom.disconnected" - }, - "transforms": [ - { - "fallback": "Disconnects/Device-Connected", - "inputType": "scalar", - "mappings": [ - { - "input": true, - "output": "Disconnects/Device-Disconnected" - }, - { - "input": false, - "output": "Disconnects/Device-Connected" - } - ], - "outputType": "style-list", - "type": "map" - } - ], - "type": "property" - } - } - }, - "props": { - "aspectRatio": "1:1", - "mode": "percent", - "style": { - "cursor": "pointer" - } - }, - "type": "ia.container.coord" - } -} \ No newline at end of file diff --git a/.resources/bb0e05bf9bf6cfd0b7ef647c72cf3b79822a45c4042e2939dac9ed06e6d34504 b/.resources/bb0e05bf9bf6cfd0b7ef647c72cf3b79822a45c4042e2939dac9ed06e6d34504 new file mode 100644 index 00000000..a8f32a05 --- /dev/null +++ b/.resources/bb0e05bf9bf6cfd0b7ef647c72cf3b79822a45c4042e2939dac9ed06e6d34504 @@ -0,0 +1,1718 @@ +{ + "custom": {}, + "params": { + "tagProps": [ + "TAG0", + "TAG1", + "TAG2", + "TAG3", + "TAG4", + "TAG5", + "TAG6", + "TAG7", + "TAG8", + "TAG9", + "TAG10", + "TAG11", + "TAG12", + "TAG13", + "TAG14", + "TAG15", + "TAG16", + "TAG17", + "TAG18", + "TAG19", + "TAG20", + "TAG21", + "TAG22", + "TAG23" + ] + }, + "props": { + "defaultSize": { + "height": 1080, + "width": 1920 + } + }, + "root": { + "children": [ + { + "meta": { + "name": "DPM" + }, + "position": { + "height": 1, + "width": 1 + }, + "propConfig": { + "props.params.con_lines[0]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[0]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[10]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[10]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[11]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[11]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[12]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[12]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[13]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[13]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[14]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[14]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[15]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[15]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[16]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[16]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[17]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[17]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[18]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[18]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[19]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[19]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[1]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[1]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[20]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[20]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[21]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[21]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[22]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[22]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[23]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[23]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[2]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[2]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[3]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[3]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[4]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[4]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[5]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[5]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[6]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[6]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[7]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[7]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[8]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[8]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[9]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[9]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + } + }, + "props": { + "params": { + "con_lines": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + "con_lines_visible": [ + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true + ], + "in": false, + "out": false + }, + "path": "Windows/Tabs/Enternet Windows/Components/DPM_TO_HUB" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "BYAB_2" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0232, + "y": 0.4991 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "BYAB_2_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.0094, + "y": 0.5394 + }, + "props": { + "text": "BYAB_2_VFD1 11.200.1.173", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "BYAB_3" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.023, + "y": 0.6677 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "BYAB_3_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.0068, + "y": 0.7315 + }, + "props": { + "text": "BYAB_3_VFD1 11.200.1.174", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "BYCB_2" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0216, + "y": 0.8333 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "BYCB_2_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.0068, + "y": 0.8981 + }, + "props": { + "text": "BYCB_2_VFD1 11.200.1.175", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "BYCB_3" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0229, + "y": 0.3333 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "BYCB_3_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.0068, + "y": 0.3986 + }, + "props": { + "text": "BYCB_3_VFD1 11.200.1.176", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "S011049_ZMX1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0229, + "y": 0.1667 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/ZMX" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011049_ZMX1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.0068, + "y": 0.2324 + }, + "props": { + "text": "S011049_ZMX1 11.200.1.177", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "S011050_ZMX1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0244 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/ZMX" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011050_ZMX1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.0068, + "y": 0.0653 + }, + "props": { + "text": "S011050_ZMX1 11.200.1.178", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "S011051_ZMX1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.5 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/ZMX" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011051_ZMX1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.5117, + "y": 0.1662 + }, + "props": { + "text": "S011051_ZMX1 11.200.1.179", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "S011052_ZMX1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.625 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/ZMX" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011052_ZMX1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.6312, + "y": 0.1664 + }, + "props": { + "text": "S011052_ZMX1 11.200.1.180", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "S011053_ZMX1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.75 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/ZMX" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011053_ZMX1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.75, + "y": 0.1664 + }, + "props": { + "text": "S011053_ZMX1 11.200.1.181", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "S011054_ZMX1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.375 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/ZMX" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011054_ZMX1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.3864, + "y": 0.1664 + }, + "props": { + "text": "S011054_ZMX1 11.200.1.182", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "S011056_ZMX1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.2516, + "y": 0.0019 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/ZMX" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011056_ZMX1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.315, + "y": 0.1682 + }, + "props": { + "text": "S011056_ZMX1 11.200.1.183", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "S011058_ZMX1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.1245 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/ZMX" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011058_ZMX1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.2072, + "y": 0.1646 + }, + "props": { + "text": "S011058_ZMX1 11.200.1.184", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "S011059_ZMX1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.8549, + "y": 0.3332 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/ZMX" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011059_ZMX1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.945, + "y": 0.3943 + }, + "props": { + "text": "S011059_ZMX1 11.200.1.185", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "S011060_ZMX1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.8554, + "y": 0.1667 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/ZMX" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011060_ZMX1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.945, + "y": 0.2276 + }, + "props": { + "text": "S011060_ZMX1 11.200.1.186", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "S011061_ZMX1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.8568 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/ZMX" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011061_ZMX1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.945, + "y": 0.0619 + }, + "props": { + "text": "S011061_ZMX1 11.200.1.187", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "S011062_ZMX1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.8549, + "y": 0.4988 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/ZMX" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011062_ZMX1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.945, + "y": 0.561 + }, + "props": { + "text": "S011062_ZMX1 11.200.1.188", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "S011063_ZMX1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.8541, + "y": 0.6639 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/ZMX" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011063_ZMX1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.945, + "y": 0.7257 + }, + "props": { + "text": "S011063_ZMX1 11.200.1.189", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "S011064_ZMX1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.8555, + "y": 0.8329 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/ZMX" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011064_ZMX1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.9349999999999999, + "y": 0.8927 + }, + "props": { + "text": "S011064_ZMX1 11.200.1.190", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "VS01A_FIOM15" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.374, + "y": 0.8324 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/FIO_SIO" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "VS01A_FIOM15_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.4587, + "y": 0.8896 + }, + "props": { + "text": "VS01A_FIOM15 11.200.1.191", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "VS01A_FIOM16" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.2481, + "y": 0.8324 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/FIO_SIO" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "VS01A_FIOM16_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.3311, + "y": 0.8887 + }, + "props": { + "text": "VS01A_FIOM16 11.200.1.192", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "VS01A_FIOM17" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.1222, + "y": 0.8333 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/FIO_SIO" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "VS01A_FIOM17_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.2071, + "y": 0.8886 + }, + "props": { + "text": "VS01A_FIOM17 11.200.1.193", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "VS01A_FIOM18" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.5026, + "y": 0.8314 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/FIO_SIO" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "VS01A_FIOM18_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.5887, + "y": 0.8886 + }, + "props": { + "text": "VS01A_FIOM18 11.200.1.194", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "BYAB_3_FIO1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.6245, + "y": 0.8314 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/FIO_SIO" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "BYAB_3_FIO1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.7106, + "y": 0.8886 + }, + "props": { + "text": "BYAB_3_FIO1 11.200.1.195", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "BYCB_3_FIO1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.7536, + "y": 0.8351 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/FIO_SIO" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "BYCB_3_FIO1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.8344, + "y": 0.9247 + }, + "props": { + "text": "BYCB_3_FIO1 11.200.1.196", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "DPM_label" + }, + "position": { + "height": 0.0694, + "width": 0.101, + "x": 0.5831, + "y": 0.6342 + }, + "props": { + "text": "DPM04_VS01A 11.200.1.5", + "textStyle": { + "fontSize": "2vmin" + } + }, + "type": "ia.display.label" + } + ], + "meta": { + "name": "root" + }, + "position": { + "x": 0.6348, + "y": -0.1546 + }, + "props": { + "mode": "percent" + }, + "type": "ia.container.coord" + } +} \ No newline at end of file diff --git a/.resources/85fdad206285471676eaa3e381865808c0ffe32e3af15491dbff603fa05420e6 b/.resources/bc4c9e6d6533e706d36e68909381a5d9efb94ba271c7e414eaf29143395e99f9 similarity index 72% rename from .resources/85fdad206285471676eaa3e381865808c0ffe32e3af15491dbff603fa05420e6 rename to .resources/bc4c9e6d6533e706d36e68909381a5d9efb94ba271c7e414eaf29143395e99f9 index 7eae420b..909ef4fe 100644 --- a/.resources/85fdad206285471676eaa3e381865808c0ffe32e3af15491dbff603fa05420e6 +++ b/.resources/bc4c9e6d6533e706d36e68909381a5d9efb94ba271c7e414eaf29143395e99f9 @@ -1,3 +1,16 @@ +def deviceType(view): + path = view.props.get("path") + docked_view = "Docked-East-" + + if "Conveyor" in path: + docked_view +="Conv" + elif "VFD" in path: + docked_view +="VFD" + else : + docked_view +="Device" + + return docked_view + def handleTagHighlight(view, currentValue): tag_priority = currentValue.value @@ -37,6 +50,9 @@ def handleTagHighlight(view, currentValue): if tag == tagPath: child.props.style["classes"] = "Highlight/Pulse-" + priority + docked_view = deviceType(child) + system.perspective.openDock(docked_view, params={'tagProps': tagProps}) foundMatch = True - return foundMatch \ No newline at end of file + return foundMatch + diff --git a/.resources/bc5d09e79b818e47f190682561a106aae3f847719e3db5850e61a94776dde79b b/.resources/bc5d09e79b818e47f190682561a106aae3f847719e3db5850e61a94776dde79b new file mode 100644 index 00000000..72ca2a63 --- /dev/null +++ b/.resources/bc5d09e79b818e47f190682561a106aae3f847719e3db5850e61a94776dde79b @@ -0,0 +1,86 @@ +/* Direct stylesheet authoring is an advanced feature. Knowledge of CSS required.*/ + +.psc-x1 { transition: all .2s ease-in-out; } +.psc-x1:hover { transform: scale(1.5) !important; z-index: 5;} + + +.psc-x2 { transition: all .2s ease-in-out; } +.psc-x2:hover { transform: scale(2) !important; z-index: 5;} + +.psc-x3 { transition: all .2s ease-in-out; } +.psc-x3:hover { transform: scale(3) !important; z-index: 5;} + +/* Set the styling for the Table component checkbox colour.*/ +.ia_tableComponent[data-component="ia.display.table"] .ia_checkbox__checkedIcon { + color: black; +} +.ia_tableComponent[data-component="ia.display.table"] .ia_checkbox__uncheckedIcon { + color: black; +} + +div[data-component="ia.input.fileupload"] .ia_button--primary { + background-color: var(--neutral-30); + border-style: None; + color: black; + border-radius:20px; +} + + +/* Help page styles */ + +.psc-background:hover { + box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); + transition: box-shadow 0.9s ease-in-out; +} + +.psc-background-none { + box-shadow: 0 0px 0px 0 , 0 0px 0px 0; + transition: box-shadow 0.9s ease-in-out; +} + +@keyframes fadeIn{ + 0% { opacity: 0; } + 100% { opacity: 1; } +} + +.psc-FadeInFast { + animation: fadeIn 2s; +} + +.psc-FadeInMedium { + animation: fadeIn 4s; +} + +.psc-Disconnects\/Device-Connected.ia_container--primary.coord-aspect-ratio.aspect-horizontal.view + .inner-container:has(svg path[d="M 0.01621377,0.01595147 H 25.93719 V 41.138171 H 0.01621377 Z"]:only-of-type) { + flex: 0 0 12px !important; +} + +.psc-Disconnects\/Device-Connected.ia_container--primary.coord-aspect-ratio.aspect-horizontal.view + .inner-container:has( + svg[viewBox="-0.5 -0.5 27 42"] + path[d="m 13.785537,6.4238337 -7.0747349,-3.1261989 -0.985,1.7060701 6.2447349,4.563801 z"] +):has( + svg[viewBox="-0.5 -0.5 27 42"] + path[d="m 12.141737,10.447495 -5.3573679,5.578853 1.2662916,1.509108 6.4243953,-4.30722 z"] +) { + flex: 0 0 16px !important; +} + + +.psc-FadeInSlow { + animation: fadeIn 6s; +} + +@keyframes rotation { + from { + transform: rotate(0deg); + } + to { + transform: rotate(359deg); + } +} + +.psc-rotate { + animation: rotation 2s infinite linear; +} \ No newline at end of file diff --git a/.resources/bc9b0bab6b620cb71429a233cda7e47c6a95e9ce36fd1e8302b5cf133c104d3e b/.resources/bc9b0bab6b620cb71429a233cda7e47c6a95e9ce36fd1e8302b5cf133c104d3e deleted file mode 100644 index 060df03b..00000000 Binary files a/.resources/bc9b0bab6b620cb71429a233cda7e47c6a95e9ce36fd1e8302b5cf133c104d3e and /dev/null differ diff --git a/.resources/bce1b858a8a899fe368d6ba069b063e6d55a7e7f299cf790819665cc4a9aca0e b/.resources/bce1b858a8a899fe368d6ba069b063e6d55a7e7f299cf790819665cc4a9aca0e new file mode 100644 index 00000000..14451b0a --- /dev/null +++ b/.resources/bce1b858a8a899fe368d6ba069b063e6d55a7e7f299cf790819665cc4a9aca0e @@ -0,0 +1,487 @@ +{ + "custom": { + "dpm1-dpm2": false, + "dpm2-dpm3": false, + "dpm3-mcm": false, + "mcm-dpm1": false + }, + "params": { + "tagProps": [ + "DPM0_TAG", + "DPM1_TAG", + "DPM2_TAG", + "DPM3_TAG" + ] + }, + "propConfig": { + "custom.dpm1-dpm2": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "1": "{view.params.tagProps[1]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{1}/STATE" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},1)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": 0, + "output": true + }, + { + "input": 1, + "output": false + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + }, + "persistent": true + }, + "custom.dpm2-dpm3": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "2": "{view.params.tagProps[2]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{2}/STATE" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},1)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": 0, + "output": true + }, + { + "input": 1, + "output": false + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + }, + "persistent": true + }, + "custom.dpm3-mcm": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "3": "{view.params.tagProps[3]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{3}/STATE" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},1)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": 0, + "output": true + }, + { + "input": 1, + "output": false + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + }, + "persistent": true + }, + "custom.mcm-dpm1": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[0]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/STATE" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},1)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": 0, + "output": true + }, + { + "input": 1, + "output": false + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + }, + "persistent": true + }, + "params.tagProps": { + "paramDirection": "input", + "persistent": true + } + }, + "props": { + "defaultSize": { + "height": 894, + "width": 1920 + } + }, + "root": { + "children": [ + { + "events": { + "dom": { + "onClick": { + "config": { + "script": "\tself.session.custom.dpm_view_path \u003d self.props.params.view\n\tself.session.custom.show_dpm_device_view \u003d True" + }, + "scope": "G", + "type": "script" + } + } + }, + "meta": { + "name": "MCM" + }, + "position": { + "height": 0.5, + "width": 0.5, + "x": 0.5, + "y": 0.5 + }, + "propConfig": { + "props.params.InOn": { + "binding": { + "config": { + "path": "view.custom.dpm3-mcm" + }, + "type": "property" + } + }, + "props.params.OutOn": { + "binding": { + "config": { + "path": "view.custom.mcm-dpm1" + }, + "type": "property" + } + } + }, + "props": { + "params": { + "InDown": false, + "InLeft": true, + "InUp": false, + "OutDown": false, + "OutRight": false, + "OutUp": true + }, + "path": "Windows/Tabs/Enternet Windows/Components/EN4TR" + }, + "type": "ia.display.view" + }, + { + "events": { + "dom": { + "onClick": { + "config": { + "script": "\tself.session.custom.dpm_view_path \u003d self.props.params.view\n\tself.session.custom.show_dpm_device_view \u003d True" + }, + "scope": "G", + "type": "script" + } + } + }, + "meta": { + "name": "DPM1_ULC1_8" + }, + "position": { + "height": 0.5, + "width": 0.5, + "x": 0.5 + }, + "propConfig": { + "props.params.DownOn": { + "binding": { + "config": { + "path": "view.custom.mcm-dpm1" + }, + "type": "property" + } + }, + "props.params.InOn": { + "binding": { + "config": { + "path": "view.custom.dpm1-dpm2" + }, + "type": "property" + } + }, + "props.params.OutOn": { + "binding": { + "config": { + "path": "view.custom.mcm-dpm1" + }, + "type": "property" + } + } + }, + "props": { + "params": { + "Down1": false, + "Down2": false, + "Down3": true, + "DownLeft": false, + "DownRight": false, + "InDown": false, + "InLeft": true, + "InUp": false, + "OutDown": true, + "OutRight": false, + "OutUp": false, + "view": "Windows/Tabs/Enternet Windows/DPMs/DPM Devices/MCM01/DPM1_ULC1_8" + }, + "path": "Windows/Tabs/Enternet Windows/Components/DPM_BLOCK" + }, + "type": "ia.display.view" + }, + { + "events": { + "dom": { + "onClick": { + "config": { + "script": "\tself.session.custom.dpm_view_path \u003d self.props.params.view\n\tself.session.custom.show_dpm_device_view \u003d True" + }, + "scope": "G", + "type": "script" + } + } + }, + "meta": { + "name": "DPM1_ULC2_8" + }, + "position": { + "height": 0.5, + "width": 0.5 + }, + "propConfig": { + "props.params.DownOn": { + "binding": { + "config": { + "path": "view.custom.dpm2-dpm3" + }, + "type": "property" + } + }, + "props.params.InOn": { + "binding": { + "config": { + "path": "view.custom.dpm2-dpm3" + }, + "type": "property" + } + }, + "props.params.OutOn": { + "binding": { + "config": { + "path": "view.custom.dpm1-dpm2" + }, + "type": "property" + } + } + }, + "props": { + "params": { + "Down1": false, + "Down2": true, + "Down3": false, + "DownLeft": false, + "DownRight": false, + "InDown": true, + "InLeft": false, + "InUp": false, + "OutDown": false, + "OutRight": true, + "OutUp": false, + "view": "Windows/Tabs/Enternet Windows/DPMs/DPM Devices/MCM01/DPM1_ULC2_8" + }, + "path": "Windows/Tabs/Enternet Windows/Components/DPM_BLOCK" + }, + "type": "ia.display.view" + }, + { + "events": { + "dom": { + "onClick": { + "config": { + "script": "\tself.session.custom.dpm_view_path \u003d self.props.params.view\n\tself.session.custom.show_dpm_device_view \u003d True" + }, + "scope": "G", + "type": "script" + } + } + }, + "meta": { + "name": "DPM1_ULC3-6" + }, + "position": { + "height": 0.5, + "width": 0.5, + "y": 0.5 + }, + "propConfig": { + "props.params.InOn": { + "binding": { + "config": { + "path": "view.custom.dpm2-dpm3" + }, + "type": "property" + } + }, + "props.params.OutOn": { + "binding": { + "config": { + "path": "view.custom.dpm3-mcm" + }, + "type": "property" + } + } + }, + "props": { + "params": { + "Down1": false, + "Down2": false, + "Down3": false, + "DownLeft": false, + "DownOn": false, + "DownRight": false, + "InDown": false, + "InLeft": false, + "InUp": true, + "OutDown": false, + "OutRight": true, + "OutUp": false, + "view": "Windows/Tabs/Enternet Windows/DPMs/DPM Devices/MCM01/DPM1_ULC3-6" + }, + "path": "Windows/Tabs/Enternet Windows/Components/DPM_BLOCK" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "DPM1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.5, + "y": 0.1 + }, + "props": { + "text": "DPM1_ULC1_8 11.200.1.2", + "textStyle": { + "fontSize": "1vmin" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "DPM2_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.01, + "y": 0.1 + }, + "props": { + "text": "DPM1_ULC2_8 11.200.1.3", + "textStyle": { + "fontSize": "1vmin" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "DPM3_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.01, + "y": 0.6 + }, + "props": { + "text": "DPM1_ULC3-6 11.200.1.4", + "textStyle": { + "fontSize": "1vmin" + } + }, + "type": "ia.display.label" + } + ], + "meta": { + "name": "root" + }, + "position": { + "x": 120, + "y": -723 + }, + "props": { + "mode": "percent", + "style": { + "backgroundColor": "#ffffff" + } + }, + "type": "ia.container.coord" + } +} \ No newline at end of file diff --git a/.resources/bd0128b3160e6064387669713124bbe5b18967ea4185a0da0a7aec27367ea170 b/.resources/bd0128b3160e6064387669713124bbe5b18967ea4185a0da0a7aec27367ea170 deleted file mode 100644 index b2984692..00000000 --- a/.resources/bd0128b3160e6064387669713124bbe5b18967ea4185a0da0a7aec27367ea170 +++ /dev/null @@ -1,59 +0,0 @@ -{ - "custom": { - "show_alarms": false - }, - "params": { - "customView": "", - "plcTagPath": "" - }, - "propConfig": { - "custom.show_alarms": { - "persistent": true - }, - "params.customView": { - "paramDirection": "input", - "persistent": true - }, - "params.plcTagPath": { - "paramDirection": "input", - "persistent": true - } - }, - "props": { - "defaultSize": { - "height": 1080, - "width": 1920 - } - }, - "root": { - "children": [ - { - "meta": { - "name": "EmbeddedView" - }, - "position": { - "basis": "320px", - "grow": 1 - }, - "propConfig": { - "props.path": { - "binding": { - "config": { - "expression": "\"Custom-Views/\"+ {view.params.customView}" - }, - "type": "expr" - } - } - }, - "type": "ia.display.view" - } - ], - "meta": { - "name": "root" - }, - "props": { - "direction": "column" - }, - "type": "ia.container.flex" - } -} \ No newline at end of file diff --git a/.resources/bdf12774df8f73eece16abaa46bd047e2f7af4bba15c84b6634669c2729999e8 b/.resources/bdf12774df8f73eece16abaa46bd047e2f7af4bba15c84b6634669c2729999e8 new file mode 100644 index 00000000..eac2a951 --- /dev/null +++ b/.resources/bdf12774df8f73eece16abaa46bd047e2f7af4bba15c84b6634669c2729999e8 @@ -0,0 +1,1383 @@ +{ + "custom": {}, + "params": { + "tagProps": [ + "TAG0", + "TAG1", + "TAG2", + "TAG3", + "TAG4", + "TAG5", + "TAG6", + "TAG7", + "TAG8", + "TAG9", + "TAG10", + "TAG11", + "TAG12", + "TAG13", + "TAG14", + "TAG15", + "TAG16", + "TAG17", + "TAG18" + ] + }, + "props": { + "defaultSize": { + "height": 1080, + "width": 1920 + } + }, + "root": { + "children": [ + { + "meta": { + "name": "DPM" + }, + "position": { + "height": 1, + "width": 1 + }, + "propConfig": { + "props.params.con_lines[0]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[0]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[10]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[10]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[11]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[11]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[12]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[12]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[13]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[13]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[14]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[14]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[15]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[15]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[16]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[16]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[17]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[17]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[18]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[18]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[1]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[1]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[2]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[2]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[3]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[3]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[4]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[4]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[5]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[5]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[6]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[6]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[7]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[7]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[8]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[8]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[9]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[9]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + } + }, + "props": { + "params": { + "con_lines": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + false, + false, + false, + false, + false + ], + "con_lines_visible": [ + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + false, + false, + false, + false, + false + ], + "in": false, + "out": false + }, + "path": "Windows/Tabs/Enternet Windows/Components/DPM_TO_HUB" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL6_1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0232, + "y": 0.4991 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL6_1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.0094, + "y": 0.5394 + }, + "props": { + "text": "UL6_1_VFD1 11.200.1.90", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL6_2" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.023, + "y": 0.6677 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL6_2_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.0068, + "y": 0.7315 + }, + "props": { + "text": "UL6_2_VFD1 11.200.1.91", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL6_3" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0216, + "y": 0.8333 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL6_3_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.0068, + "y": 0.8981 + }, + "props": { + "text": "UL6_3_VFD1 11.200.1.92", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL6_4" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0229, + "y": 0.3333 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL6_4_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.0068, + "y": 0.3986 + }, + "props": { + "text": "UL6_4_VFD1 11.200.1.93", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL6_5" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0229, + "y": 0.1667 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL6_5_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.0068, + "y": 0.2324 + }, + "props": { + "text": "UL6_5_VFD1 11.200.1.94", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL6_6" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0244 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL6_6_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.0068, + "y": 0.0653 + }, + "props": { + "text": "UL6_6_VFD1 11.200.1.95", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL6_7" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.5 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL6_7_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.5117, + "y": 0.1662 + }, + "props": { + "text": "UL6_7_VFD1 11.200.1.96", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL6_8" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.625 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL6_8_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.6312, + "y": 0.1664 + }, + "props": { + "text": "UL6_8_VFD1 11.200.1.97", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "PS2_1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.75 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS2_1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.75, + "y": 0.1664 + }, + "props": { + "text": "PS2_1_VFD1 11.200.1.98", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "PS2_2" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.375 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS2_2_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.3864, + "y": 0.1664 + }, + "props": { + "text": "PS2_2_VFD1 11.200.1.99", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "PS2_3" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.2516, + "y": 0.0019 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS2_3_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.315, + "y": 0.1682 + }, + "props": { + "text": "PS2_3_VFD1 11.200.1.100", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "PS2_4A" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.1245 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS2_4A_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.2072, + "y": 0.1646 + }, + "props": { + "text": "PS2_4A_VFD1 11.200.1.101", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "PS2_4B" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.8509, + "y": 0.3332 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS2_4B_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.947, + "y": 0.3943 + }, + "props": { + "text": "PS2_4B_VFD1 11.200.1.102", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "PS2_5" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.8514, + "y": 0.1667 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS2_5_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.947, + "y": 0.2276 + }, + "props": { + "text": "PS2_5_VFD1 11.200.1.103", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "PS2_6" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.8528 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS2_6_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.947, + "y": 0.0619 + }, + "props": { + "text": "PS2_6_VFD1 11.200.1.104", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "PS2_7" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.8509, + "y": 0.4988 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS2_7_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.947, + "y": 0.561 + }, + "props": { + "text": "PS2_7_VFD1 11.200.1.105", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL6_2_FIO1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.8381, + "y": 0.6639 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/FIO_SIO" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL6_2_FIO1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.9349999999999999, + "y": 0.7257 + }, + "props": { + "text": "UL6_2_FIO1 11.200.1.106", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "PDP02_FIO1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.8395, + "y": 0.8329 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/FIO_SIO" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PDP02_FIO1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.9349999999999999, + "y": 0.8927 + }, + "props": { + "text": "PDP02_FIO1 11.200.1.107", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "PDP02_PMM" + }, + "position": { + "height": 0.1054, + "width": 0.0802, + "x": 0.3802, + "y": 0.8371 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/PMM" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PDP02_PMM_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.4649, + "y": 0.8635 + }, + "props": { + "text": "PDP02_PMM 11.200.1.108", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "DPM_label" + }, + "position": { + "height": 0.0694, + "width": 0.1359, + "x": 0.5482, + "y": 0.6343 + }, + "props": { + "text": "DPM2_PS2-1 11.200.1.5", + "textStyle": { + "fontSize": "2vmin" + } + }, + "type": "ia.display.label" + } + ], + "meta": { + "name": "root" + }, + "position": { + "x": 0.6348, + "y": -0.1546 + }, + "props": { + "mode": "percent" + }, + "type": "ia.container.coord" + } +} \ No newline at end of file diff --git a/.resources/bf84df6771901dbfb3fce6500d369ca8b82e3d9b0485390c81e98d7caac0f182 b/.resources/bf84df6771901dbfb3fce6500d369ca8b82e3d9b0485390c81e98d7caac0f182 new file mode 100644 index 00000000..f326cee7 Binary files /dev/null and b/.resources/bf84df6771901dbfb3fce6500d369ca8b82e3d9b0485390c81e98d7caac0f182 differ diff --git a/.resources/bfd66b6edd41a243d0bcf96ec0ff29602c13c2c03c995aa8a804a5150e86ed32 b/.resources/bfd66b6edd41a243d0bcf96ec0ff29602c13c2c03c995aa8a804a5150e86ed32 new file mode 100644 index 00000000..1b999452 Binary files /dev/null and b/.resources/bfd66b6edd41a243d0bcf96ec0ff29602c13c2c03c995aa8a804a5150e86ed32 differ diff --git a/.resources/c2a5e324e72e8f01b4ca8b5180665789c02ca4b8af65865ce8f736d4e3b70f85 b/.resources/c2a5e324e72e8f01b4ca8b5180665789c02ca4b8af65865ce8f736d4e3b70f85 deleted file mode 100644 index a9646100..00000000 Binary files a/.resources/c2a5e324e72e8f01b4ca8b5180665789c02ca4b8af65865ce8f736d4e3b70f85 and /dev/null differ diff --git a/.resources/925a744fce42dae114b0db401f8adda71c59cc978fda676a58a64fa41ba140f4 b/.resources/c393ebbcb8682524d76acd2343ce68ef74393d2c7cf2be1e4ccfc21a138c03e5 similarity index 98% rename from .resources/925a744fce42dae114b0db401f8adda71c59cc978fda676a58a64fa41ba140f4 rename to .resources/c393ebbcb8682524d76acd2343ce68ef74393d2c7cf2be1e4ccfc21a138c03e5 index 0cd98a19..e4db9364 100644 --- a/.resources/925a744fce42dae114b0db401f8adda71c59cc978fda676a58a64fa41ba140f4 +++ b/.resources/c393ebbcb8682524d76acd2343ce68ef74393d2c7cf2be1e4ccfc21a138c03e5 @@ -3,7 +3,6 @@ SELECT SUBSTRING_INDEX(SUBSTRING_INDEX(aed.strValue, '/', 2), '/', -1) AS Location, - -- Formatted OPC-style tag CONCAT( Active.displaypath, '.HMI.', diff --git a/.resources/c39b20634a9a773040ac8cbe4b0d7dc30bb5f274db3cba7cd4f52ea926b36421 b/.resources/c39b20634a9a773040ac8cbe4b0d7dc30bb5f274db3cba7cd4f52ea926b36421 deleted file mode 100644 index ac549f0d..00000000 Binary files a/.resources/c39b20634a9a773040ac8cbe4b0d7dc30bb5f274db3cba7cd4f52ea926b36421 and /dev/null differ diff --git a/.resources/c3f445abb47db738e88b7e07fb8fe938fd676ac8a789222048eec4c96caf91b3 b/.resources/c3f445abb47db738e88b7e07fb8fe938fd676ac8a789222048eec4c96caf91b3 new file mode 100644 index 00000000..03e4c444 --- /dev/null +++ b/.resources/c3f445abb47db738e88b7e07fb8fe938fd676ac8a789222048eec4c96caf91b3 @@ -0,0 +1,1249 @@ +{ + "custom": {}, + "params": { + "tagProps": [ + "TAG0", + "TAG1", + "TAG2", + "TAG3", + "TAG4", + "TAG5", + "TAG6", + "TAG7", + "TAG8", + "TAG9", + "TAG10", + "TAG11", + "TAG12", + "TAG13", + "TAG14", + "TAG15", + "TAG16" + ] + }, + "props": { + "defaultSize": { + "height": 1080, + "width": 1920 + } + }, + "root": { + "children": [ + { + "meta": { + "name": "DPM" + }, + "position": { + "height": 1, + "width": 1 + }, + "propConfig": { + "props.params.con_lines[0]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[0]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[10]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[10]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[11]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[11]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[12]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[12]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[13]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[13]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[14]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[14]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[15]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[15]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[16]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[16]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[1]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[1]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[2]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[2]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[3]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[3]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[4]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[4]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[5]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[5]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[6]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[6]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[7]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[7]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[8]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[8]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[9]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[9]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + } + }, + "props": { + "params": { + "con_lines": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + false, + false, + false, + false, + false, + false, + false + ], + "con_lines_visible": [ + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + false, + false, + false, + false, + false, + false, + false + ], + "in": false, + "out": false + }, + "path": "Windows/Tabs/Enternet Windows/Components/DPM_TO_HUB" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL4_2_EXTENDO" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0232, + "y": 0.4991 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL4_2_EXTENDO_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.0094, + "y": 0.5394 + }, + "props": { + "text": "UL4_2_EXTENDO 11.200.1.70", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL4_3" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.023, + "y": 0.6677 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL4_3_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.0068, + "y": 0.7315 + }, + "props": { + "text": "UL4_3_VFD1 11.200.1.71", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL4_4" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0216, + "y": 0.8333 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL4_4_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.0068, + "y": 0.8981 + }, + "props": { + "text": "UL4_4_VFD1 11.200.1.72", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL4_5" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0229, + "y": 0.3333 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL4_5_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.0068, + "y": 0.3986 + }, + "props": { + "text": "UL4_5_VFD1 11.200.1.73", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL4_6" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0229, + "y": 0.1667 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL4_6_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.0068, + "y": 0.2324 + }, + "props": { + "text": "UL4_6_VFD1 11.200.1.74", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL4_7" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0244 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL4_7_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.0068, + "y": 0.0653 + }, + "props": { + "text": "UL4_7_VFD1 11.200.1.75", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL4_8" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.5 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL4_8_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.5117, + "y": 0.1662 + }, + "props": { + "text": "UL4_8_VFD1 11.200.1.76", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL5_2_EXTENDO" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.625 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL5_2_EXTENDO_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.6312, + "y": 0.1664 + }, + "props": { + "text": "UL5_2_EXTENDO 11.200.1.77", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL5_3" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.75 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL5_3_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.75, + "y": 0.1664 + }, + "props": { + "text": "UL5_3_VFD1 11.200.1.78", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL5_4" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.375 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL5_4_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.3864, + "y": 0.1664 + }, + "props": { + "text": "UL5_4_VFD1 11.200.1.79", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL5_5" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.2516, + "y": 0.0019 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL5_5_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.315, + "y": 0.1682 + }, + "props": { + "text": "UL5_5_VFD1 11.200.1.80", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL5_6" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.1245 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL5_6_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.2072, + "y": 0.1646 + }, + "props": { + "text": "UL5_6_VFD1 11.200.1.81", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL5_7" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.8509, + "y": 0.3332 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL5_7_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.947, + "y": 0.3943 + }, + "props": { + "text": "UL5_7_VFD1 11.200.1.82", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL5_8" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.8514, + "y": 0.1667 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL5_8_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.947, + "y": 0.2276 + }, + "props": { + "text": "UL5_8_VFD1 11.200.1.83", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL5_9" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.8528 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL5_9_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.947, + "y": 0.0619 + }, + "props": { + "text": "UL5_9_VFD1 11.200.1.84", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL4-3_FIO1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.8389, + "y": 0.4988 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/FIO_SIO" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL4-3_FIO1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.9349999999999999, + "y": 0.561 + }, + "props": { + "text": "UL4-3_FIO1 11.200.1.85", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL5_3_FIO1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.8381, + "y": 0.6639 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/FIO_SIO" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL5_3_FIO1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.9349999999999999, + "y": 0.7257 + }, + "props": { + "text": "UL5_3_FIO1 11.200.1.86", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "DPM_label" + }, + "position": { + "height": 0.0694, + "width": 0.101, + "x": 0.5831, + "y": 0.6342 + }, + "props": { + "text": "DPM1_PS2-1 11.200.1.4", + "textStyle": { + "fontSize": "2vmin" + } + }, + "type": "ia.display.label" + } + ], + "meta": { + "name": "root" + }, + "position": { + "x": 0.6348, + "y": -0.1546 + }, + "props": { + "mode": "percent" + }, + "type": "ia.container.coord" + } +} \ No newline at end of file diff --git a/.resources/c47440557d363b74a8bd5c9d43f0e2f89e3532e797d27740459d0b77f2497f26 b/.resources/c47440557d363b74a8bd5c9d43f0e2f89e3532e797d27740459d0b77f2497f26 new file mode 100644 index 00000000..52e905a2 --- /dev/null +++ b/.resources/c47440557d363b74a8bd5c9d43f0e2f89e3532e797d27740459d0b77f2497f26 @@ -0,0 +1,10452 @@ +{ + "custom": {}, + "params": {}, + "props": { + "defaultSize": { + "height": 180, + "width": 240 + } + }, + "root": { + "children": [ + { + "meta": { + "name": "ZMX" + }, + "position": { + "basis": "300px" + }, + "props": { + "elements": [ + { + "id": "defs1", + "name": "defs1", + "type": "defs" + }, + { + "elements": [ + { + "d": "m 144.03501,92.588318 -14.64239,7.528142", + "fill": { + "paint": "transparent" + }, + "id": "path1522", + "name": "path1522", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 129.07133,100.2672 7e-5,-6e-5", + "fill": { + "paint": "transparent" + }, + "id": "path1523", + "name": "path1523", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 129.4075,100.10917 -0.3361,0.15808", + "fill": { + "paint": "transparent" + }, + "id": "path1524", + "name": "path1524", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 153.598,89.370845 -0.41377,0.14213", + "fill": { + "paint": "transparent" + }, + "id": "path1525", + "name": "path1525", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 145.77751,91.804935 7.28916,-2.503659", + "fill": { + "paint": "transparent" + }, + "id": "path1526", + "name": "path1526", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 129.07133,100.2672 -1.87621,1.11255 -1.89947,1.6905", + "fill": { + "paint": "transparent" + }, + "id": "path1527", + "name": "path1527", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 205.09633,258.86736 1.80449,0.20592 2.03764,-0.0813 1.95742,-0.40824 1.54878,-0.58398", + "fill": { + "paint": "transparent" + }, + "id": "path1528", + "name": "path1528", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 125.29565,103.07025 -1.43431,1.85663", + "fill": { + "paint": "transparent" + }, + "id": "path1529", + "name": "path1529", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 123.86134,104.92687 -1.77635,3.28632 -1.25049,3.48375 -0.7316,3.37932 -0.33743,3.24189 -0.0512,1.50746", + "fill": { + "paint": "transparent" + }, + "id": "path1530", + "name": "path1530", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 196.93901,256.23754 3.83092,1.49904 4.3264,1.13078", + "fill": { + "paint": "transparent" + }, + "id": "path1531", + "name": "path1531", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 152.80358,237.47027 1.30181,0.58515", + "fill": { + "paint": "transparent" + }, + "id": "path1532", + "name": "path1532", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 138.36315,125.39233 -5.30521,2.62583", + "fill": { + "paint": "transparent" + }, + "id": "path1533", + "name": "path1533", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "M 196.94118,256.23851 121.16184,222.18188", + "fill": { + "paint": "transparent" + }, + "id": "path1534", + "name": "path1534", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 196.94118,256.23851 v -0.001", + "fill": { + "paint": "transparent" + }, + "id": "path1535", + "name": "path1535", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "M 175.11588,234.25885 123.83792,211.21356", + "fill": { + "paint": "transparent" + }, + "id": "path1536", + "name": "path1536", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 119.71155,220.24726 0.009,0.1827 0.36521,0.93743 1.07624,0.81517", + "fill": { + "paint": "transparent" + }, + "id": "path1537", + "name": "path1537", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 119.71155,220.24709 v -1.7e-4", + "fill": { + "paint": "transparent" + }, + "id": "path1538", + "name": "path1538", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 119.71451,119.82562 v -0.002", + "fill": { + "paint": "transparent" + }, + "id": "path1539", + "name": "path1539", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 126.43086,137.18994 2.6e-4,-5.2e-4", + "fill": { + "paint": "transparent" + }, + "id": "path1540", + "name": "path1540", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 129.14884,141.73338 0.64871,-0.27163", + "fill": { + "paint": "transparent" + }, + "id": "path1541", + "name": "path1541", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 181.37171,224.54729 0.30089,0.045 0.31876,0.0382 0.32265,0.0255 0.32481,0.0142 0.32593,0.009 0.3254,-0.003 0.32372,-0.0113 0.32072,-0.0227 0.31633,-0.0342 0.31064,-0.0447 0.30347,-0.0547 0.29525,-0.0649 0.28528,-0.0748 0.27395,-0.0845 0.25159,-0.0906", + "fill": { + "paint": "transparent" + }, + "id": "path1542", + "name": "path1542", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 178.89885,224.0827 0.81046,0.16399 0.8328,0.15634 0.8296,0.14418", + "fill": { + "paint": "transparent" + }, + "id": "path1543", + "name": "path1543", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 129.14884,141.73338 v 13.31728", + "fill": { + "paint": "transparent" + }, + "id": "path1544", + "name": "path1544", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 129.14884,157.31419 v 35.67167", + "fill": { + "paint": "transparent" + }, + "id": "path1545", + "name": "path1545", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 177.55759,223.66526 0.15901,0.0669 0.22281,0.0841 0.23159,0.0774 0.2396,0.0708 0.2468,0.0637 0.24154,0.0547", + "fill": { + "paint": "transparent" + }, + "id": "path1546", + "name": "path1546", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 177.35225,223.41655 0.0386,0.0142", + "fill": { + "paint": "transparent" + }, + "id": "path1547", + "name": "path1547", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 190.23011,225.23613 -2.88568,-1.2969", + "fill": { + "paint": "transparent" + }, + "id": "path1548", + "name": "path1548", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 129.76832,141.79816 v 13.04953", + "fill": { + "paint": "transparent" + }, + "id": "path1549", + "name": "path1549", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 129.76832,157.21454 v 35.0418", + "fill": { + "paint": "transparent" + }, + "id": "path1550", + "name": "path1550", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 129.76832,154.77226 -0.61948,0.27899", + "fill": { + "paint": "transparent" + }, + "id": "path1551", + "name": "path1551", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 130.18889,155.3393 -0.61941,0.27899", + "fill": { + "paint": "transparent" + }, + "id": "path1552", + "name": "path1552", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 129.14884,157.31419 0.43373,-0.16853", + "fill": { + "paint": "transparent" + }, + "id": "path1553", + "name": "path1553", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 181.37171,211.68691 0.30089,0.045 0.31876,0.0382 0.32265,0.0255 0.32481,0.0142 0.32593,0.008 0.3254,-0.003 0.32372,-0.0114 0.32072,-0.0227 0.31633,-0.0342 0.31064,-0.0447 0.30347,-0.0547 0.29525,-0.0649 0.28528,-0.0748 0.27395,-0.0845 0.25159,-0.0906", + "fill": { + "paint": "transparent" + }, + "id": "path1554", + "name": "path1554", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 178.89885,211.22234 0.81046,0.164 0.8328,0.15634 0.8296,0.14417", + "fill": { + "paint": "transparent" + }, + "id": "path1555", + "name": "path1555", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 177.55759,210.80487 0.15901,0.0666 0.22281,0.0841 0.23159,0.0776 0.2396,0.0708 0.2468,0.0637 0.24154,0.0544", + "fill": { + "paint": "transparent" + }, + "id": "path1556", + "name": "path1556", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 177.39063,217.48903 -0.0386,-0.0142", + "fill": { + "paint": "transparent" + }, + "id": "path1557", + "name": "path1557", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 129.69896,193.72762 39.55595,17.77714", + "fill": { + "paint": "transparent" + }, + "id": "path1558", + "name": "path1558", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 129.93662,192.4833 39.55587,17.77713", + "fill": { + "paint": "transparent" + }, + "id": "path1559", + "name": "path1559", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 177.42842,223.59102 0.0396,0.0255 0.0579,0.0342 0.0319,0.0142", + "fill": { + "paint": "transparent" + }, + "id": "path1560", + "name": "path1560", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 154.4826,240.8466 0.16117,1.22557", + "fill": { + "paint": "transparent" + }, + "id": "path1561", + "name": "path1561", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 177.35225,210.55613 0.0386,0.0142", + "fill": { + "paint": "transparent" + }, + "id": "path1562", + "name": "path1562", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 190.28597,212.40075 -2.94154,-1.32193", + "fill": { + "paint": "transparent" + }, + "id": "path1563", + "name": "path1563", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 177.39063,204.62859 -0.0386,-0.0142", + "fill": { + "paint": "transparent" + }, + "id": "path1564", + "name": "path1564", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.42842,210.73058 0.0396,0.0255 0.0579,0.0342 0.0319,0.0142", + "fill": { + "paint": "transparent" + }, + "id": "path1565", + "name": "path1565", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 152.80375,237.47036 v -1.02519", + "fill": { + "paint": "transparent" + }, + "id": "path1566", + "name": "path1566", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 181.37171,198.82656 0.30089,0.045 0.31876,0.0382 0.32265,0.0255 0.32481,0.0142 0.32593,0.008 0.3254,-0.003 0.32372,-0.0113 0.32072,-0.0227 0.31633,-0.0345 0.31064,-0.045 0.30347,-0.0547 0.29525,-0.0649 0.28528,-0.0748 0.27395,-0.0845 0.25159,-0.0906", + "fill": { + "paint": "transparent" + }, + "id": "path1567", + "name": "path1567", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 178.89885,198.36199 0.81046,0.16399 0.8328,0.15634 0.8296,0.14418", + "fill": { + "paint": "transparent" + }, + "id": "path1568", + "name": "path1568", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 177.55759,197.94449 0.15901,0.0669 0.22281,0.0841 0.23159,0.0774 0.2396,0.0708 0.2468,0.0637 0.24154,0.0547", + "fill": { + "paint": "transparent" + }, + "id": "path1569", + "name": "path1569", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 177.35225,197.69578 0.0386,0.0142", + "fill": { + "paint": "transparent" + }, + "id": "path1570", + "name": "path1570", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 190.29885,199.54617 -2.95442,-1.32773", + "fill": { + "paint": "transparent" + }, + "id": "path1571", + "name": "path1571", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 177.39063,191.76821 -0.0386,-0.0142", + "fill": { + "paint": "transparent" + }, + "id": "path1572", + "name": "path1572", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.42842,197.87019 0.0396,0.0255 0.0579,0.0342 0.0319,0.0142", + "fill": { + "paint": "transparent" + }, + "id": "path1573", + "name": "path1573", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "M 169.66085,210.1848 V 175.24115", + "fill": { + "paint": "transparent" + }, + "id": "path1574", + "name": "path1574", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 169.66085,172.77615 v -13.0495", + "fill": { + "paint": "transparent" + }, + "id": "path1575", + "name": "path1575", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "M 169.80496,211.25748 V 175.58582", + "fill": { + "paint": "transparent" + }, + "id": "path1576", + "name": "path1576", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "M 169.80496,173.32235 V 160.00504", + "fill": { + "paint": "transparent" + }, + "id": "path1577", + "name": "path1577", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 181.37171,185.96611 0.30089,0.045 0.31876,0.0382 0.32265,0.0255 0.32481,0.0142 0.32593,0.009 0.3254,-0.003 0.32372,-0.0113 0.32072,-0.0227 0.31633,-0.0342 0.31064,-0.0447 0.30347,-0.0547 0.29525,-0.0649 0.28528,-0.0748 0.27395,-0.0844 0.25159,-0.0906", + "fill": { + "paint": "transparent" + }, + "id": "path1578", + "name": "path1578", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 178.89885,185.50152 0.81046,0.16399 0.8328,0.15635 0.8296,0.14417", + "fill": { + "paint": "transparent" + }, + "id": "path1579", + "name": "path1579", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 177.55759,185.08402 0.15901,0.0669 0.22281,0.0842 0.23159,0.0776 0.2396,0.0708 0.2468,0.0643 0.24154,0.0544", + "fill": { + "paint": "transparent" + }, + "id": "path1580", + "name": "path1580", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 177.35225,184.83534 0.0386,0.0142", + "fill": { + "paint": "transparent" + }, + "id": "path1581", + "name": "path1581", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.42842,185.00978 0.0396,0.0255 0.0579,0.0342 0.0319,0.0142", + "fill": { + "paint": "transparent" + }, + "id": "path1582", + "name": "path1582", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 177.28265,223.34624 v 0.0255 l 0.009,0.0391 0.0143,0.0385 0.0214,0.0382 0.0285,0.0382 0.0352,0.0342 0.0335,0.0255", + "fill": { + "paint": "transparent" + }, + "id": "path1583", + "name": "path1583", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 177.28265,210.48586 v 0.0255 l 0.009,0.0385 0.0143,0.0385 0.0214,0.0382 0.0285,0.0382 0.0352,0.0342 0.0335,0.0255", + "fill": { + "paint": "transparent" + }, + "id": "path1584", + "name": "path1584", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 177.28265,197.62539 v 0.0255 l 0.009,0.0385 0.0143,0.0385 0.0214,0.0382 0.0285,0.0382 0.0352,0.0342 0.0335,0.0255", + "fill": { + "paint": "transparent" + }, + "id": "path1585", + "name": "path1585", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 177.28265,184.76501 v 0.0255 l 0.009,0.0385 0.0143,0.0385 0.0214,0.0382 0.0285,0.0382 0.0352,0.0345 0.0335,0.0255", + "fill": { + "paint": "transparent" + }, + "id": "path1586", + "name": "path1586", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 177.28239,223.33321 2.6e-4,0.0114", + "fill": { + "paint": "transparent" + }, + "id": "path1587", + "name": "path1587", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 177.28239,210.47283 2.6e-4,0.0113", + "fill": { + "paint": "transparent" + }, + "id": "path1588", + "name": "path1588", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 177.28239,197.61239 2.6e-4,0.0114", + "fill": { + "paint": "transparent" + }, + "id": "path1589", + "name": "path1589", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 177.28239,184.75198 2.6e-4,0.0114", + "fill": { + "paint": "transparent" + }, + "id": "path1590", + "name": "path1590", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 176.27072,248.04726 v -1.09845", + "fill": { + "paint": "transparent" + }, + "id": "path1591", + "name": "path1591", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 176.43069,248.31572 v -1.29497", + "fill": { + "paint": "transparent" + }, + "id": "path1592", + "name": "path1592", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 177.28239,178.82248 v 5.9295", + "fill": { + "paint": "transparent" + }, + "id": "path1593", + "name": "path1593", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 177.28239,191.6829 v 5.92949", + "fill": { + "paint": "transparent" + }, + "id": "path1594", + "name": "path1594", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 177.28239,204.54331 v 5.92952", + "fill": { + "paint": "transparent" + }, + "id": "path1595", + "name": "path1595", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 177.28239,217.40366 v 5.92955", + "fill": { + "paint": "transparent" + }, + "id": "path1596", + "name": "path1596", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 177.35218,178.89814 v 5.92949", + "fill": { + "paint": "transparent" + }, + "id": "path1597", + "name": "path1597", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.35218,191.75858 v 5.92946", + "fill": { + "paint": "transparent" + }, + "id": "path1598", + "name": "path1598", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.35218,204.61894 v 5.92954", + "fill": { + "paint": "transparent" + }, + "id": "path1599", + "name": "path1599", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.35218,217.47934 v 5.92953", + "fill": { + "paint": "transparent" + }, + "id": "path1600", + "name": "path1600", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.39063,223.43382 v -5.94479", + "fill": { + "paint": "transparent" + }, + "id": "path1601", + "name": "path1601", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.39063,210.57339 v -5.9448", + "fill": { + "paint": "transparent" + }, + "id": "path1602", + "name": "path1602", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.39063,197.713 v -5.94479", + "fill": { + "paint": "transparent" + }, + "id": "path1603", + "name": "path1603", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.39063,184.85262 v -5.94479", + "fill": { + "paint": "transparent" + }, + "id": "path1604", + "name": "path1604", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 178.81061,223.87952 v -5.95691", + "fill": { + "paint": "transparent" + }, + "id": "path1605", + "name": "path1605", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 178.81061,211.01917 v -5.95696", + "fill": { + "paint": "transparent" + }, + "id": "path1606", + "name": "path1606", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 178.81061,198.15876 v -5.95697", + "fill": { + "paint": "transparent" + }, + "id": "path1607", + "name": "path1607", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 178.81061,185.29837 v -5.95699", + "fill": { + "paint": "transparent" + }, + "id": "path1608", + "name": "path1608", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.28265,178.80945 -2.6e-4,0.0114", + "fill": { + "paint": "transparent" + }, + "id": "path1609", + "name": "path1609", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 177.28265,191.66981 -2.6e-4,0.0113", + "fill": { + "paint": "transparent" + }, + "id": "path1610", + "name": "path1610", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 177.28265,204.53019 -2.6e-4,0.0114", + "fill": { + "paint": "transparent" + }, + "id": "path1611", + "name": "path1611", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 177.28265,217.39063 -2.6e-4,0.0114", + "fill": { + "paint": "transparent" + }, + "id": "path1612", + "name": "path1612", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 169.38448,173.51136 0.40434,-0.20819", + "fill": { + "paint": "transparent" + }, + "id": "path1613", + "name": "path1613", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 129.69896,193.72762 1.45254,-0.69835", + "fill": { + "paint": "transparent" + }, + "id": "path1614", + "name": "path1614", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 169.66085,172.77615 0.14403,-0.0649", + "fill": { + "paint": "transparent" + }, + "id": "path1615", + "name": "path1615", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 169.56218,172.94581 0.24277,-0.10876", + "fill": { + "paint": "transparent" + }, + "id": "path1616", + "name": "path1616", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 129.14884,192.98586 0.98638,-0.41331", + "fill": { + "paint": "transparent" + }, + "id": "path1617", + "name": "path1617", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "M 190.26875,186.67229 187.34443,185.358", + "fill": { + "paint": "transparent" + }, + "id": "path1618", + "name": "path1618", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 177.35225,178.89052 0.0386,0.0142", + "fill": { + "paint": "transparent" + }, + "id": "path1619", + "name": "path1619", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 129.56948,157.12518 39.815,17.89363", + "fill": { + "paint": "transparent" + }, + "id": "path1620", + "name": "path1620", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 169.38448,173.51136 -39.815,-17.89363", + "fill": { + "paint": "transparent" + }, + "id": "path1621", + "name": "path1621", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 130.10492,155.30158 39.21927,17.62591", + "fill": { + "paint": "transparent" + }, + "id": "path1622", + "name": "path1622", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 181.30075,179.76253 v 6.00322", + "fill": { + "paint": "transparent" + }, + "id": "path1623", + "name": "path1623", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 181.30075,192.62299 v 6.00311", + "fill": { + "paint": "transparent" + }, + "id": "path1624", + "name": "path1624", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 181.30075,205.48335 v 6.00322", + "fill": { + "paint": "transparent" + }, + "id": "path1625", + "name": "path1625", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 181.30075,218.34381 v 6.00315", + "fill": { + "paint": "transparent" + }, + "id": "path1626", + "name": "path1626", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 185.64392,252.45636 v -1.295", + "fill": { + "paint": "transparent" + }, + "id": "path1627", + "name": "path1627", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 186.11111,179.22644 v 6.16317", + "fill": { + "paint": "transparent" + }, + "id": "path1628", + "name": "path1628", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 186.11111,192.0868 v 6.16319", + "fill": { + "paint": "transparent" + }, + "id": "path1629", + "name": "path1629", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 186.11111,204.94724 v 6.16313", + "fill": { + "paint": "transparent" + }, + "id": "path1630", + "name": "path1630", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 186.11111,217.80762 v 6.16313", + "fill": { + "paint": "transparent" + }, + "id": "path1631", + "name": "path1631", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 186.24117,252.52825 v -1.09849", + "fill": { + "paint": "transparent" + }, + "id": "path1632", + "name": "path1632", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 177.42959,178.56675 -0.0335,0.0255 -0.0362,0.0342 -0.0293,0.0382 -0.0214,0.0385 -0.0143,0.0385 -0.009,0.0382 v 0.0255", + "fill": { + "paint": "transparent" + }, + "id": "path1633", + "name": "path1633", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 177.51703,178.51276 -0.0168,0.008 -0.0428,0.0255 -0.0285,0.0199", + "fill": { + "paint": "transparent" + }, + "id": "path1634", + "name": "path1634", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 178.85576,177.82401 -1.33873,0.68875", + "fill": { + "paint": "transparent" + }, + "id": "path1635", + "name": "path1635", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 179.10694,177.87103 -1.098,0.56497", + "fill": { + "paint": "transparent" + }, + "id": "path1636", + "name": "path1636", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 186.11111,179.22644 0.78871,-0.3549", + "fill": { + "paint": "transparent" + }, + "id": "path1637", + "name": "path1637", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.09848,177.51058 -0.68936,0.27842", + "fill": { + "paint": "transparent" + }, + "id": "path1638", + "name": "path1638", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 175.11588,166.17436 -3.08059,-1.38453", + "fill": { + "paint": "transparent" + }, + "id": "path1639", + "name": "path1639", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 126.91851,144.51348 -3.08059,-1.38444", + "fill": { + "paint": "transparent" + }, + "id": "path1640", + "name": "path1640", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 190.73508,179.04562 0.0397,7.71713", + "fill": { + "paint": "transparent" + }, + "id": "path1641", + "name": "path1641", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 187.84924,178.91497 v 6.21613", + "fill": { + "paint": "transparent" + }, + "id": "path1642", + "name": "path1642", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 187.84924,191.79976 v 6.19175", + "fill": { + "paint": "transparent" + }, + "id": "path1643", + "name": "path1643", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 187.84924,204.66578 v 6.18617", + "fill": { + "paint": "transparent" + }, + "id": "path1644", + "name": "path1644", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 187.84924,217.51314 v 6.19916", + "fill": { + "paint": "transparent" + }, + "id": "path1645", + "name": "path1645", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 190.77455,217.64415 -0.0397,7.68248", + "fill": { + "paint": "transparent" + }, + "id": "path1646", + "name": "path1646", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.42959,191.42722 -0.0335,0.0255 -0.0362,0.0342 -0.0293,0.0382 -0.0214,0.0385 -0.0143,0.0385 -0.009,0.0382 v 0.0255", + "fill": { + "paint": "transparent" + }, + "id": "path1647", + "name": "path1647", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 177.51703,191.3732 -0.0168,0.008 -0.0428,0.0255 -0.0285,0.0199", + "fill": { + "paint": "transparent" + }, + "id": "path1648", + "name": "path1648", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 177.51703,191.3732 1.30188,-0.66983", + "fill": { + "paint": "transparent" + }, + "id": "path1649", + "name": "path1649", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 178.00894,191.29642 1.06113,-0.54589", + "fill": { + "paint": "transparent" + }, + "id": "path1650", + "name": "path1650", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 187.83495,185.11376 -0.49052,0.24444", + "fill": { + "paint": "transparent" + }, + "id": "path1651", + "name": "path1651", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.28239,184.44297 -0.9004,0.40469", + "fill": { + "paint": "transparent" + }, + "id": "path1652", + "name": "path1652", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.72201,185.15279 -0.66652,0.29944", + "fill": { + "paint": "transparent" + }, + "id": "path1653", + "name": "path1653", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.05499,190.38858 -0.68786,0.27786", + "fill": { + "paint": "transparent" + }, + "id": "path1654", + "name": "path1654", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 186.11111,185.38961 1.73813,-0.67579", + "fill": { + "paint": "transparent" + }, + "id": "path1655", + "name": "path1655", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 185.9711,185.60841 1.87814,-0.73014", + "fill": { + "paint": "transparent" + }, + "id": "path1656", + "name": "path1656", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 177.42959,204.28754 -0.0352,0.0255 -0.0352,0.0345 -0.0285,0.0382 -0.0214,0.0382 -0.0143,0.0382 -0.01,0.0382 v 0.0255", + "fill": { + "paint": "transparent" + }, + "id": "path1657", + "name": "path1657", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 186.84914,191.75509 -0.73803,0.33156", + "fill": { + "paint": "transparent" + }, + "id": "path1658", + "name": "path1658", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.28239,197.30332 -0.92425,0.41549", + "fill": { + "paint": "transparent" + }, + "id": "path1659", + "name": "path1659", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.72201,198.01329 -0.68945,0.30977", + "fill": { + "paint": "transparent" + }, + "id": "path1660", + "name": "path1660", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.51703,204.23358 -0.0143,0.009 -0.0446,0.0254 -0.0285,0.0199", + "fill": { + "paint": "transparent" + }, + "id": "path1661", + "name": "path1661", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 177.51703,204.23358 1.29315,-0.6653", + "fill": { + "paint": "transparent" + }, + "id": "path1662", + "name": "path1662", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 178.00894,204.1568 1.0524,-0.54138", + "fill": { + "paint": "transparent" + }, + "id": "path1663", + "name": "path1663", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 187.83495,197.9742 -0.49052,0.24416", + "fill": { + "paint": "transparent" + }, + "id": "path1664", + "name": "path1664", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.04473,203.25313 -0.68659,0.27728", + "fill": { + "paint": "transparent" + }, + "id": "path1665", + "name": "path1665", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 186.11111,198.24999 1.73813,-0.67575", + "fill": { + "paint": "transparent" + }, + "id": "path1666", + "name": "path1666", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 185.9711,198.46882 1.87814,-0.73014", + "fill": { + "paint": "transparent" + }, + "id": "path1667", + "name": "path1667", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 177.42959,217.14796 -0.0352,0.0255 -0.0352,0.0342 -0.0285,0.0382 -0.0214,0.0382 -0.0143,0.0382 -0.01,0.0385 v 0.0255", + "fill": { + "paint": "transparent" + }, + "id": "path1668", + "name": "path1668", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 169.25491,211.50476 0.54022,-0.25946", + "fill": { + "paint": "transparent" + }, + "id": "path1669", + "name": "path1669", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 169.66085,210.1848 0.14403,-0.0649", + "fill": { + "paint": "transparent" + }, + "id": "path1670", + "name": "path1670", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 169.61148,210.26958 0.19351,-0.0872", + "fill": { + "paint": "transparent" + }, + "id": "path1671", + "name": "path1671", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 186.83731,204.62077 -0.7262,0.32621", + "fill": { + "paint": "transparent" + }, + "id": "path1672", + "name": "path1672", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.28239,210.16376 -0.91526,0.41132", + "fill": { + "paint": "transparent" + }, + "id": "path1673", + "name": "path1673", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.72201,210.87364 -0.67921,0.30519", + "fill": { + "paint": "transparent" + }, + "id": "path1674", + "name": "path1674", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.51703,217.09397 -0.0143,0.008 -0.0446,0.0255 -0.0285,0.0199", + "fill": { + "paint": "transparent" + }, + "id": "path1675", + "name": "path1675", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 177.51703,217.09397 1.31262,-0.67536", + "fill": { + "paint": "transparent" + }, + "id": "path1676", + "name": "path1676", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 178.00894,217.01718 1.07196,-0.55149", + "fill": { + "paint": "transparent" + }, + "id": "path1677", + "name": "path1677", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 187.83495,210.83464 -0.49052,0.24444", + "fill": { + "paint": "transparent" + }, + "id": "path1678", + "name": "path1678", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.06774,216.1043 -0.68575,0.27701", + "fill": { + "paint": "transparent" + }, + "id": "path1679", + "name": "path1679", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 186.11111,211.11037 1.73813,-0.67572", + "fill": { + "paint": "transparent" + }, + "id": "path1680", + "name": "path1680", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 185.9711,211.32924 1.87814,-0.73017", + "fill": { + "paint": "transparent" + }, + "id": "path1681", + "name": "path1681", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 124.47395,104.90731 32.73092,14.7099", + "fill": { + "paint": "transparent" + }, + "id": "path1682", + "name": "path1682", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 172.17762,126.34623 32.731,14.70987", + "fill": { + "paint": "transparent" + }, + "id": "path1683", + "name": "path1683", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 237.05658,126.87126 v -1.7e-4", + "fill": { + "paint": "transparent" + }, + "id": "path1684", + "name": "path1684", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 237.06176,245.68394 -7e-5,0.002", + "fill": { + "paint": "transparent" + }, + "id": "path1685", + "name": "path1685", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 187.83495,223.69503 -0.49052,0.24443", + "fill": { + "paint": "transparent" + }, + "id": "path1686", + "name": "path1686", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 186.86453,217.46903 -0.75342,0.33845", + "fill": { + "paint": "transparent" + }, + "id": "path1687", + "name": "path1687", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.28239,223.02415 -0.87327,0.39248", + "fill": { + "paint": "transparent" + }, + "id": "path1688", + "name": "path1688", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.72201,223.73408 -0.63563,0.28605", + "fill": { + "paint": "transparent" + }, + "id": "path1689", + "name": "path1689", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 129.66411,100.3142 81.82905,36.77551", + "fill": { + "paint": "transparent" + }, + "id": "path1690", + "name": "path1690", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 186.11111,223.97075 1.73813,-0.67569", + "fill": { + "paint": "transparent" + }, + "id": "path1691", + "name": "path1691", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 185.9711,224.18965 1.87814,-0.73014", + "fill": { + "paint": "transparent" + }, + "id": "path1692", + "name": "path1692", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 237.05666,126.87102 -0.0322,-0.20473 -0.18019,-0.31522 -0.31603,-0.242 -0.0671,-0.0321", + "fill": { + "paint": "transparent" + }, + "id": "path1693", + "name": "path1693", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 236.91308,246.33036 0.13672,-0.46789 0.0101,-0.17901", + "fill": { + "paint": "transparent" + }, + "id": "path1694", + "name": "path1694", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 146.33344,91.866087 82.87338,37.244923", + "fill": { + "paint": "transparent" + }, + "id": "path1695", + "name": "path1695", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 153.598,89.370845 82.02149,36.861985", + "fill": { + "paint": "transparent" + }, + "id": "path1696", + "name": "path1696", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 154.925,89.432528 81.53644,36.644082", + "fill": { + "paint": "transparent" + }, + "id": "path1697", + "name": "path1697", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 154.926,89.43301 -0.63705,-0.202828", + "fill": { + "paint": "transparent" + }, + "id": "path1698", + "name": "path1698", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 236.27557,246.99237 0.34719,-0.26086 0.29032,-0.40124", + "fill": { + "paint": "transparent" + }, + "id": "path1699", + "name": "path1699", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 236.46456,246.60668 -0.36054,0.20535", + "fill": { + "paint": "transparent" + }, + "id": "path1700", + "name": "path1700", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 229.84207,250.65623 6.43365,-3.66363", + "fill": { + "paint": "transparent" + }, + "id": "path1701", + "name": "path1701", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 154.28895,89.230179 -0.70985,-0.0371 -0.51234,0.108367", + "fill": { + "paint": "transparent" + }, + "id": "path1702", + "name": "path1702", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 212.42961,258.00623 15.6865,-6.57406", + "fill": { + "paint": "transparent" + }, + "id": "path1703", + "name": "path1703", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 159.44126,239.43994 c 0.0488,0.009 0.0981,0.0114 0.14712,0.0142", + "fill": { + "paint": "transparent" + }, + "id": "path1997", + "name": "path1997", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 159.44126,239.43994 c 0.0505,0.009 0.10143,0.0114 0.15212,0.0199", + "fill": { + "paint": "transparent" + }, + "id": "path1998", + "name": "path1998", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 155.69844,241.51566 c 0.01,0.003 0.0191,0.009 0.0302,0.0114", + "fill": { + "paint": "transparent" + }, + "id": "path1999", + "name": "path1999", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 156.65206,241.99872 c 0.0214,0.009 0.0419,0.0199 0.0621,0.0255", + "fill": { + "paint": "transparent" + }, + "id": "path2000", + "name": "path2000", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 156.94145,244.3711 c 0.0495,0.0227 0.0985,0.0439 0.14852,0.0649", + "fill": { + "paint": "transparent" + }, + "id": "path2001", + "name": "path2001", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 156.87584,244.4407 c 0.0538,0.0255 0.10832,0.0512 0.16308,0.0754", + "fill": { + "paint": "transparent" + }, + "id": "path2002", + "name": "path2002", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 154.88796,242.76267 c 0.009,0.0142 0.0191,0.0345 0.0312,0.0521", + "fill": { + "paint": "transparent" + }, + "id": "path2003", + "name": "path2003", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 153.03099,238.47163 c 0,0.0873 0.009,0.17391 0.0191,0.26059", + "fill": { + "paint": "transparent" + }, + "id": "path2004", + "name": "path2004", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 177.5376,223.65605 c 0.009,0.003 0.0143,0.009 0.0191,0.009", + "fill": { + "paint": "transparent" + }, + "id": "path2005", + "name": "path2005", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.43447,223.58706 c 0.009,0.003 0.009,0.008 0.0143,0.0113", + "fill": { + "paint": "transparent" + }, + "id": "path2006", + "name": "path2006", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.35218,223.40887 c 0,0.002 0,0.008 7e-5,0.008", + "fill": { + "paint": "transparent" + }, + "id": "path2007", + "name": "path2007", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.43783,223.58677 c 0,0.003 0.009,0.009 0.0121,0.0114", + "fill": { + "paint": "transparent" + }, + "id": "path2008", + "name": "path2008", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.28239,223.33321 c 0,0.003 4.9e-4,0.008 0,0.0114", + "fill": { + "paint": "transparent" + }, + "id": "path2009", + "name": "path2009", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 152.80375,237.47036 c 0.40198,0.1807 0.80971,0.35486 1.22252,0.52039", + "fill": { + "paint": "transparent" + }, + "id": "path2010", + "name": "path2010", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 154.02627,237.99075 c 0.0319,0.0114 0.0638,0.0255 0.0955,0.0382", + "fill": { + "paint": "transparent" + }, + "id": "path2011", + "name": "path2011", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 177.5376,197.93523 c 0.009,0.003 0.0143,0.009 0.0191,0.009", + "fill": { + "paint": "transparent" + }, + "id": "path2012", + "name": "path2012", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.5376,210.7957 c 0.009,0.003 0.0143,0.008 0.0191,0.008", + "fill": { + "paint": "transparent" + }, + "id": "path2013", + "name": "path2013", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.5376,185.07485 c 0.009,0.003 0.0143,0.008 0.0191,0.008", + "fill": { + "paint": "transparent" + }, + "id": "path2014", + "name": "path2014", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.43447,210.72661 c 0.009,0.003 0.009,0.009 0.0143,0.0114", + "fill": { + "paint": "transparent" + }, + "id": "path2015", + "name": "path2015", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.43447,197.86623 c 0.009,0.003 0.009,0.009 0.0143,0.0114", + "fill": { + "paint": "transparent" + }, + "id": "path2016", + "name": "path2016", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.43447,185.00579 c 0.009,0.003 0.009,0.009 0.0143,0.0114", + "fill": { + "paint": "transparent" + }, + "id": "path2017", + "name": "path2017", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.35218,210.54848 c 0,0.002 0,0.009 7e-5,0.009", + "fill": { + "paint": "transparent" + }, + "id": "path2018", + "name": "path2018", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.35218,197.68804 c 0,0.002 0,0.009 7e-5,0.009", + "fill": { + "paint": "transparent" + }, + "id": "path2019", + "name": "path2019", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.35218,184.82763 c 0,0.002 0,0.009 7e-5,0.009", + "fill": { + "paint": "transparent" + }, + "id": "path2020", + "name": "path2020", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.35225,191.75096 c -7e-5,0.002 -7e-5,0.008 -7e-5,0.008", + "fill": { + "paint": "transparent" + }, + "id": "path2021", + "name": "path2021", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.35225,217.47176 c -7e-5,0.002 -7e-5,0.008 -7e-5,0.008", + "fill": { + "paint": "transparent" + }, + "id": "path2022", + "name": "path2022", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.35225,204.61137 c -7e-5,0.002 -7e-5,0.008 -7e-5,0.008", + "fill": { + "paint": "transparent" + }, + "id": "path2023", + "name": "path2023", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.43783,210.7263 c 0,0.003 0.009,0.009 0.0121,0.0114", + "fill": { + "paint": "transparent" + }, + "id": "path2024", + "name": "path2024", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.43783,197.86592 c 0,0.003 0.009,0.008 0.0121,0.0114", + "fill": { + "paint": "transparent" + }, + "id": "path2025", + "name": "path2025", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.43783,185.00548 c 0,0.003 0.009,0.008 0.0121,0.0114", + "fill": { + "paint": "transparent" + }, + "id": "path2026", + "name": "path2026", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.28381,204.54308 c 5e-4,0.002 0,0.008 0,0.008", + "fill": { + "paint": "transparent" + }, + "id": "path2027", + "name": "path2027", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.28381,217.40344 c 5e-4,0.002 0,0.008 0,0.008", + "fill": { + "paint": "transparent" + }, + "id": "path2028", + "name": "path2028", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.28381,191.68267 c 5e-4,0.002 0,0.008 0,0.008", + "fill": { + "paint": "transparent" + }, + "id": "path2029", + "name": "path2029", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.28265,204.53019 c -1.7e-4,0.003 2.4e-4,0.009 0,0.0114", + "fill": { + "paint": "transparent" + }, + "id": "path2030", + "name": "path2030", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.28265,217.39063 c -1.7e-4,0.003 2.4e-4,0.009 0,0.0114", + "fill": { + "paint": "transparent" + }, + "id": "path2031", + "name": "path2031", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.28265,191.66981 c -1.7e-4,0.003 2.4e-4,0.008 0,0.0113", + "fill": { + "paint": "transparent" + }, + "id": "path2032", + "name": "path2032", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.28239,184.75198 c 0,0.003 4.9e-4,0.009 0,0.0114", + "fill": { + "paint": "transparent" + }, + "id": "path2033", + "name": "path2033", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.28239,197.61239 c 0,0.003 4.9e-4,0.008 0,0.0114", + "fill": { + "paint": "transparent" + }, + "id": "path2034", + "name": "path2034", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.28239,210.47283 c 0,0.003 4.9e-4,0.008 0,0.0113", + "fill": { + "paint": "transparent" + }, + "id": "path2035", + "name": "path2035", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 185.64392,252.45636 c 0.19877,0.0255 0.39769,0.0501 0.59725,0.072", + "fill": { + "paint": "transparent" + }, + "id": "path2036", + "name": "path2036", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 212.68864,257.58429 c 0.0101,-0.003 0.0254,-0.009 0.0337,-0.0142", + "fill": { + "paint": "transparent" + }, + "id": "path2037", + "name": "path2037", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 212.28098,257.76177 c 0.13772,-0.0566 0.27353,-0.11613 0.40766,-0.17731", + "fill": { + "paint": "transparent" + }, + "id": "path2038", + "name": "path2038", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 205.09639,258.86733 c 0.0294,0.009 0.0595,0.009 0.0898,0.0114", + "fill": { + "paint": "transparent" + }, + "id": "path2039", + "name": "path2039", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 212.44466,257.99966 c 0.01,-0.003 0.0176,-0.009 0.0254,-0.0114", + "fill": { + "paint": "transparent" + }, + "id": "path2040", + "name": "path2040", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 190.2929,204.78986 c 0.17072,0.003 0.34165,0.009 0.51256,0.009", + "fill": { + "paint": "transparent" + }, + "id": "path2041", + "name": "path2041", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 190.27995,191.92365 c 0.17092,0.003 0.34143,0.009 0.51224,0.009", + "fill": { + "paint": "transparent" + }, + "id": "path2042", + "name": "path2042", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 190.26273,217.63654 c 0.17034,0.003 0.34126,0.009 0.51182,0.009", + "fill": { + "paint": "transparent" + }, + "id": "path2043", + "name": "path2043", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 190.22401,179.03775 c 0.17034,0.003 0.34069,0.008 0.51107,0.008", + "fill": { + "paint": "transparent" + }, + "id": "path2044", + "name": "path2044", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 124.47395,104.90731 c -0.0419,0.0644 -0.0843,0.12918 -0.12569,0.19385", + "fill": { + "paint": "transparent" + }, + "id": "path2045", + "name": "path2045", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 212.36716,138.20193 c 0.10731,-0.0521 0.21462,-0.10452 0.32148,-0.15776", + "fill": { + "paint": "transparent" + }, + "id": "path2046", + "name": "path2046", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 130.00306,100.15498 c -0.11352,0.0524 -0.22636,0.10563 -0.33895,0.15916", + "fill": { + "paint": "transparent" + }, + "id": "path2047", + "name": "path2047", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 211.49316,137.08971 c 0.11083,-0.0538 0.22115,-0.10792 0.33085,-0.16259", + "fill": { + "paint": "transparent" + }, + "id": "path2048", + "name": "path2048", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 126.89307,137.06192 c -0.0121,0.0549 -0.0236,0.10961 -0.0352,0.16457", + "fill": { + "paint": "transparent" + }, + "id": "path2049", + "name": "path2049", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 129.66411,100.3142 c -0.12521,0.0598 -0.24908,0.12153 -0.37126,0.18526", + "fill": { + "paint": "transparent" + }, + "id": "path2050", + "name": "path2050", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 137.39424,130.7835 c -0.10733,0.0728 -0.21281,0.147 -0.3161,0.22348", + "fill": { + "paint": "transparent" + }, + "id": "path2051", + "name": "path2051", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 177.35225,178.89052 c -7e-5,0.002 -7e-5,0.008 -7e-5,0.008", + "fill": { + "paint": "transparent" + }, + "id": "path2052", + "name": "path2052", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.28381,178.82226 c 5e-4,0.002 0,0.008 0,0.008", + "fill": { + "paint": "transparent" + }, + "id": "path2053", + "name": "path2053", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.28265,178.80945 c -1.7e-4,0.003 2.4e-4,0.009 0,0.0114", + "fill": { + "paint": "transparent" + }, + "id": "path2054", + "name": "path2054", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 119.71451,119.82394 c -0.4372,33.47364 -0.4382,66.94992 0,100.42355", + "fill": { + "paint": "transparent" + }, + "id": "path2055", + "name": "path2055", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 156.87584,244.4407 -0.11352,-0.055 -0.11925,-0.0609 -0.11548,-0.0615 -0.11191,-0.0623 -0.10831,-0.0632 -0.10473,-0.0643 -0.1012,-0.0649 -0.0978,-0.0657 -0.0386,-0.0255 -0.0926,-0.066 -0.089,-0.0669 -0.0852,-0.0672 -0.0814,-0.0677 -0.0781,-0.068 -0.0747,-0.0689 -0.0714,-0.0688 -0.0681,-0.0697 -0.0555,-0.06 -0.0621,-0.0708 -0.0588,-0.0708 -0.0555,-0.0711 -0.0521,-0.0714 -0.0495,-0.0714 -0.0462,-0.072 -0.0429,-0.0714 -0.0396,-0.072 -0.0214,-0.0427 -0.0345,-0.0723 -0.0309,-0.0723 -0.0285,-0.0725 -0.0252,-0.0725 -0.0143,-0.0473 -0.0191,-0.0731 -0.0168,-0.0731 -0.0143,-0.0731 -0.0121,-0.0731", + "fill": { + "paint": "transparent" + }, + "id": "path2512", + "name": "path2512", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 169.24944,243.79193 -0.16423,0.12038 -0.17517,0.11726 -0.18685,0.11556 -0.19831,0.11359 -0.2102,0.11018 -0.15662,0.0765 -0.23091,0.10508 -0.24179,0.1014 -0.17997,0.0703 -0.26215,0.0943 -0.27285,0.0903 -0.17854,0.0547 -0.29122,0.083 -0.30006,0.0774 -0.30893,0.0711 -0.31795,0.0654 -0.32718,0.0598 -0.0302,0.009 -0.33707,0.0527 -0.34247,0.0459 -0.34756,0.0382 -0.35262,0.0306 -0.32903,0.0227 -0.36144,0.0142 -0.36242,0.009 -0.36304,0.002 -0.36311,-0.009 -0.3076,-0.0113 -0.3256,-0.0199 -0.3553,-0.0255 -0.35086,-0.0342 -0.34631,-0.0416 -0.34127,-0.049 -0.0214,-0.003 -0.33197,-0.0555 -0.32331,-0.0615 -0.31465,-0.0677 -0.30643,-0.0734 -0.2982,-0.0796 -0.0905,-0.0255 -0.28298,-0.0856 -0.27175,-0.09 -0.26066,-0.0943 -0.25009,-0.0985 -0.23947,-0.1031", + "fill": { + "paint": "transparent" + }, + "id": "path2513", + "name": "path2513", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 157.08999,244.43617 0.24548,0.10026 0.25597,0.096 0.26678,0.0914 0.27779,0.0873 0.28932,0.0829 0.0488,0.0114 0.30298,0.0774 0.31112,0.072 0.31928,0.0655 0.32783,0.0592 0.31896,0.0504 0.34471,0.0473 0.34959,0.0396 0.35407,0.0342 0.3585,0.0255 0.29281,0.0142 0.36554,0.0114 0.27603,0.003 0.36574,-9.9e-4 0.3652,-0.009 0.36438,-0.0142 0.29636,-0.0199 0.35597,-0.0306 0.35109,-0.0382 0.34589,-0.0442 0.34063,-0.0513 0.32028,-0.055 0.32322,-0.0632 0.31434,-0.0691 0.30594,-0.0748 0.29733,-0.0808 0.0588,-0.0142 0.28224,-0.0856 0.27032,-0.0895 0.25923,-0.094 0.24833,-0.0983 0.23822,-0.10254 0.11427,-0.0518 0.21849,-0.10678 0.20593,-0.10905 0.19424,-0.11132 0.18233,-0.11386 0.17115,-0.11612", + "fill": { + "paint": "transparent" + }, + "id": "path2514", + "name": "path2514", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 156.65206,241.99872 -0.0614,-0.0255 -0.0754,-0.0342 -0.0741,-0.0382 -0.0429,-0.0227 -0.0721,-0.0382 -0.0705,-0.0382 -0.0688,-0.0382 -0.0681,-0.0382 -0.0664,-0.0382 -0.0655,-0.0382 -0.0638,-0.0382 -0.0631,-0.0382", + "fill": { + "paint": "transparent" + }, + "id": "path2515", + "name": "path2515", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 154.64368,242.07217 0.009,0.0413 0.01,0.0413 0.009,0.0342 0.009,0.0413 0.01,0.0408 0.0121,0.0413 0.0121,0.0413 0.0143,0.0413 0.0143,0.0413 0.0143,0.0413 0.0168,0.0413 0.009,0.0142", + "fill": { + "paint": "transparent" + }, + "id": "path2516", + "name": "path2516", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 154.77106,242.53113 0.01,0.0113 0.01,0.0227 0.0121,0.0227 0.009,0.0114 0.0121,0.0227 0.0121,0.0227 0.0121,0.0227 0.0121,0.0227 0.0121,0.0227 0.0121,0.0227 0.0143,0.0227", + "fill": { + "paint": "transparent" + }, + "id": "path2517", + "name": "path2517", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 154.91913,242.81456 0.0378,0.0598 0.0402,0.0598 0.0428,0.0598 0.0461,0.0598 0.0488,0.0592 0.0505,0.0592 0.0538,0.0592 0.0143,0.0142 0.0562,0.0589 0.0595,0.0584 0.0621,0.0581 0.0647,0.0581 0.0671,0.0578 0.0697,0.0578 0.0731,0.0572 v 5.3e-4 l 0.0754,0.0569 0.0781,0.0566 0.0814,0.0561 0.084,0.0558 0.0869,0.0555 0.0897,0.0549 0.0697,0.0416 0.095,0.0538 0.0976,0.0535 0.10045,0.0532 0.10306,0.0518 0.10591,0.0515 0.10902,0.051 0.0579,0.0255", + "fill": { + "paint": "transparent" + }, + "id": "path2518", + "name": "path2518", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 156.71462,242.02711 0.2147,0.0929 0.22375,0.0898 0.23256,0.0872 0.24187,0.0839 0.0747,0.0227 0.25421,0.0796 0.26193,0.0757 0.26972,0.0714 0.27789,0.0674 0.0436,0.009 0.28754,0.0626 0.29375,0.0572 0.29988,0.053 0.30611,0.0479 0.0121,0.002 0.31255,0.0425 0.31669,0.0382 0.32063,0.0306 0.31288,0.0227 0.32803,0.0199 0.32952,0.0114 0.33095,0.008 0.30558,0.002 0.30583,-0.003 0.33062,-0.008 0.32912,-0.0142 0.32724,-0.0227 0.3135,-0.0255 0.31953,-0.0345 0.31533,-0.0382 0.3112,-0.0439 0.0143,-0.002 0.30451,-0.0493 0.29819,-0.0538 0.29175,-0.0589 0.28528,-0.0635", + "fill": { + "paint": "transparent" + }, + "id": "path2519", + "name": "path2519", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 152.80358,237.47027 -0.0621,-0.0306 -0.0621,-0.0306 -0.0621,-0.0342 -0.0622,-0.0342 -0.0621,-0.0382 -0.0621,-0.0396 -0.0452,-0.0305 -0.0621,-0.0439 -0.0622,-0.0461 -0.0621,-0.0484 -0.0621,-0.0507 -0.0621,-0.0535 -0.0622,-0.0566 -0.0621,-0.0589 -0.0638,-0.0635 -0.0638,-0.066 -0.0638,-0.0691 -0.0638,-0.0723 -0.0648,-0.0762 -0.0647,-0.0802 -0.0638,-0.0813 -0.0671,-0.0889 -0.0671,-0.0929 -0.0681,-0.0965 -0.0681,-0.1014 -0.0688,-0.10621 -0.0697,-0.11246 -0.0478,-0.0791", + "fill": { + "paint": "transparent" + }, + "id": "path2520", + "name": "path2520", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 153.13832,237.86811 -0.01,0.0227 -0.0143,0.0427 -0.0121,0.0427 -0.0121,0.0425 -0.01,0.0255 -0.009,0.0425 -0.01,0.0427 -0.009,0.0433 -0.009,0.043 -0.009,0.043 -0.01,0.0428 v 0.0427 0.0428 0.0425 l -5e-4,0.0425", + "fill": { + "paint": "transparent" + }, + "id": "path2521", + "name": "path2521", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 155.81079,240.04996 0.20565,0.0824 0.21209,0.0799 0.21877,0.0771 0.22565,0.0745 0.23279,0.072 0.24011,0.0691 0.24295,0.0654 0.25521,0.0635 0.26032,0.06 0.26561,0.0561 0.27108,0.0532 0.27654,0.049 0.28224,0.0456 0.20113,0.0305 0.29205,0.0385 0.29527,0.0342 0.29846,0.0305 0.30163,0.0255 0.3046,0.0227 0.30759,0.0142 0.16399,0.008 0.31181,0.009 0.31272,0.008 0.31331,5.3e-4 0.31358,-0.003 0.3139,-0.009 0.31375,-0.0114 0.14639,-0.008", + "fill": { + "paint": "transparent" + }, + "id": "path2522", + "name": "path2522", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 159.44126,239.43994 -0.16307,-0.0199 -0.28737,-0.0385 -0.28374,-0.0413 -0.28007,-0.0447 -0.27646,-0.0473 -0.27275,-0.0504 -0.26899,-0.0527 -0.26518,-0.0558 -0.26151,-0.0589 -0.25764,-0.0615 -0.25378,-0.0643 -0.11402,-0.0305 -0.24614,-0.0671 -0.24081,-0.0697 -0.23614,-0.072 -0.23116,-0.0737 -0.22636,-0.0759 -0.13734,-0.0484 -0.21734,-0.0791 -0.21186,-0.0811 -0.2064,-0.0827 -0.20138,-0.0845 -0.19613,-0.0862", + "fill": { + "paint": "transparent" + }, + "id": "path2523", + "name": "path2523", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 156.6801,241.96964 -0.0345,-0.0142 -0.0605,-0.0305 -0.0605,-0.0306 -0.0269,-0.0114 -0.0595,-0.0305 -0.0595,-0.0306 -0.0588,-0.0306 -0.0588,-0.0305 -0.0581,-0.0306 -0.0579,-0.0342 -0.0571,-0.0342", + "fill": { + "paint": "transparent" + }, + "id": "path2524", + "name": "path2524", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 166.64508,242.62361 -0.30365,0.0688 -0.30929,0.0635 -0.31481,0.0581 -0.32005,0.0527 -0.32514,0.0473 -0.32987,0.0416 -0.33449,0.0342 -0.33876,0.0306 -0.009,5.3e-4 -0.34271,0.0227 -0.34364,0.0142 -0.3443,0.0113 -0.32196,0.009 -0.32743,-5.3e-4 -0.34264,-0.009 -0.34059,-0.0113 -0.33852,-0.0199 v -2e-4 l -0.33398,-0.0254 -0.32942,-0.0306 -0.32474,-0.0382 -0.3202,-0.0427 -0.0319,-0.003 -0.31222,-0.0484 -0.30527,-0.0535 -0.29827,-0.0583 -0.29149,-0.0635 -0.0671,-0.0142 -0.2798,-0.0689 -0.27099,-0.0725 -0.26218,-0.0768 -0.25401,-0.0808 -0.1002,-0.0345 -0.23908,-0.0847 -0.22899,-0.0878 -0.21925,-0.0909 -0.2102,-0.094", + "fill": { + "paint": "transparent" + }, + "id": "path2525", + "name": "path2525", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 165.83968,242.26797 -0.31869,0.0592 -0.32324,0.0538 -0.32743,0.0493 -0.33145,0.0444 -0.3354,0.0382 -0.339,0.0342 -0.34254,0.0255 -0.0191,10e-4 -0.32405,0.0199 -0.34624,0.0142 -0.34639,0.0114 -0.3464,0.008 -0.34617,-2.6e-4 -0.34564,-0.009 -0.34507,-0.0113 -0.009,-2.7e-4 -0.34103,-0.0142 -0.33692,-0.0227 -0.33288,-0.0254 -0.32876,-0.0342 -0.32441,-0.039 -0.32029,-0.0436 -0.31583,-0.0493 -0.0857,-0.0142 -0.30593,-0.0547 -0.29827,-0.0592 -0.29083,-0.0632 -0.28334,-0.0677 -0.27593,-0.0711 -0.2689,-0.0754 -0.26175,-0.0796", + "fill": { + "paint": "transparent" + }, + "id": "path2526", + "name": "path2526", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 156.72276,241.89257 -0.0681,-0.0227 -0.0964,-0.0305 -0.0954,-0.0306 -0.0214,-0.009 -0.0938,-0.0342 -0.0923,-0.0342 -0.0909,-0.0342 -0.0898,-0.0345 -0.0883,-0.0342 -0.0869,-0.0342 -0.0857,-0.0342 -0.0845,-0.0342", + "fill": { + "paint": "transparent" + }, + "id": "path2527", + "name": "path2527", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 155.69844,241.51566 -0.0888,-0.0382 -0.14662,-0.066 -0.14212,-0.0674 -0.13709,-0.068 -0.13259,-0.0691 -0.1283,-0.07 -0.12377,-0.0708 -0.1195,-0.072 -0.1152,-0.0725 -0.0529,-0.0342 -0.10831,-0.0731 -0.10355,-0.0734 -0.0993,-0.0745 -0.095,-0.0745 -0.0555,-0.0459 -0.0878,-0.0754 -0.084,-0.0757 -0.0797,-0.0762 -0.0754,-0.0765 -0.0529,-0.0561 -0.068,-0.0768 -0.0638,-0.0768 -0.0595,-0.0768 -0.0562,-0.0774 -0.0445,-0.0649 -0.0488,-0.0774 -0.0452,-0.0774 -0.0412,-0.0777 -0.0369,-0.0776 -0.0312,-0.072 -0.0302,-0.0776 -0.0269,-0.0776 -0.0236,-0.0776 -0.0191,-0.0777 -0.0143,-0.0742 -0.0121,-0.0779 -0.009,-0.0779 -0.009,-0.0779 v -0.0777", + "fill": { + "paint": "transparent" + }, + "id": "path2528", + "name": "path2528", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 153.07414,237.60637 0.0143,0.0583 0.0168,0.0583 0.0191,0.0589 0.0191,0.0589 0.0236,0.0589 0.0241,0.0589 0.0269,0.0583 0.0168,0.0342 0.0302,0.0583 0.0319,0.0583 0.0345,0.0583 0.0369,0.0584 0.0386,0.0583 0.0412,0.0583 0.0436,0.0581 0.0191,0.0227 0.0462,0.0581 0.0488,0.0578 0.0512,0.0578 0.0528,0.0578 0.0555,0.0578 0.0579,0.0572 0.0605,0.0572 0.0121,0.0114 0.0638,0.0572 0.0664,0.0569 0.068,0.0566 0.0705,0.0566 0.0731,0.0561 0.0754,0.0558 0.0757,0.0538", + "fill": { + "paint": "transparent" + }, + "id": "path2529", + "name": "path2529", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 154.38805,239.29064 0.0664,0.0459 0.0681,0.0459 0.0705,0.0456 0.0721,0.0456 0.0362,0.0227 0.0747,0.045 0.0764,0.0447 0.0781,0.0445 0.0797,0.0439 0.0814,0.0436 0.0831,0.0433 0.085,0.0427 0.0869,0.0425 0.0885,0.0416 0.0905,0.0416 0.0921,0.0408 0.0943,0.0408 0.0959,0.0402 v 5.3e-4", + "fill": { + "paint": "transparent" + }, + "id": "path2530", + "name": "path2530", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 156.31675,240.23749 0.17306,0.0796 0.17949,0.0771 0.18612,0.0751 0.19306,0.0725 0.2002,0.0703 0.20759,0.068 0.21545,0.0654 0.14021,0.0405 0.22829,0.0615 0.23353,0.0581 0.23872,0.0544 0.2443,0.0513 0.24974,0.0478 0.25547,0.0439 0.26141,0.0402 0.0681,0.008 0.26899,0.0342 0.27209,0.0306 0.27501,0.0254 0.27796,0.0227 0.28099,0.0199 0.28368,0.0114 0.28627,0.008 0.0121,2.7e-4 0.2889,0.003 0.28928,5e-5 0.28921,-0.003 0.2841,-0.009 0.2888,-0.0113 0.28803,-0.0199 0.28713,-0.0227", + "fill": { + "paint": "transparent" + }, + "id": "path2531", + "name": "path2531", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 156.3452,241.76392 0.0168,0.009 0.0352,0.0142 0.0352,0.0142 0.0191,0.008 0.0362,0.0142 0.0362,0.0142 0.0362,0.0142 0.0362,0.0142 0.0362,0.0142 0.0362,0.0142 0.0362,0.0142", + "fill": { + "paint": "transparent" + }, + "id": "path2532", + "name": "path2532", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 156.70405,241.92148 0.21304,0.0844 0.22163,0.0811 0.23043,0.0779 0.23976,0.0751 0.0505,0.0142 0.25141,0.0711 0.25882,0.0669 0.26654,0.0626 0.27467,0.0583 0.0191,0.003 0.28358,0.0538 0.28956,0.0496 0.29551,0.0444 0.29165,0.0382 0.30743,0.0342 0.31165,0.0307 0.31591,0.0227 0.28746,0.0142 0.3238,0.0114 0.32468,0.009 0.32524,9.9e-4 0.32564,-0.003 0.32583,-0.0114 0.32567,-0.0142 0.32524,-0.0227 0.23915,-0.0199 0.29787,-0.0306 0.3165,-0.0382 0.31189,-0.0425 0.3072,-0.0479 0.30214,-0.053 0.29711,-0.0578 0.29191,-0.0626 0.2866,-0.0672", + "fill": { + "paint": "transparent" + }, + "id": "path2533", + "name": "path2533", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 162.66873,240.84152 -0.0831,0.002 -0.30324,0.009 -0.30264,0.002 -0.30189,-0.002 -0.30098,-0.009 -0.2998,-0.0114 -0.29863,-0.0142 -0.10284,-0.009 -0.29441,-0.0199 -0.29122,-0.0255 -0.28806,-0.0306 -0.28467,-0.0342 -0.28132,-0.0382 -0.27804,-0.0408 -0.14091,-0.0227 -0.26949,-0.0462 -0.26411,-0.0496 -0.25865,-0.0527 -0.25335,-0.0561 -0.2484,-0.0598 -0.2433,-0.0626 -0.18354,-0.0504 -0.23065,-0.0674 -0.22375,-0.07 -0.21734,-0.0723 -0.21065,-0.0745 -0.20447,-0.0771 -0.19831,-0.0796", + "fill": { + "paint": "transparent" + }, + "id": "path2534", + "name": "path2534", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 153.05089,238.73225 0.0252,0.13311 0.0362,0.1337 0.0471,0.13368 0.0214,0.0527 0.0621,0.13256 0.0731,0.13255 0.0843,0.13256 0.0319,0.0459 0.0995,0.13171 0.11139,0.13142 0.12332,0.13057 0.0335,0.0345 0.13853,0.12945 0.15116,0.12887 0.16399,0.12774 0.0269,0.0199 0.17995,0.12661 0.19187,0.12434 0.2045,0.12179 0.21756,0.11925 0.23136,0.11698 0.24574,0.115 v 5.3e-4 l 0.26109,0.11244 0.27217,0.10763 0.28383,0.1031 0.29627,0.0985 0.30929,0.0943 0.20781,0.0589 0.33263,0.0866 0.34203,0.0811 0.35162,0.0745 0.36134,0.0686 0.37142,0.062 0.14571,0.0227 0.38554,0.0527 0.39148,0.0456 0.3972,0.0382 0.40285,0.0305 0.40822,0.0227 0.0959,0.003 0.41451,0.0114 0.41559,0.003 0.41611,-0.003 0.41636,-0.0114 0.41627,-0.0199 0.0721,-0.003 0.10188,-0.009 0.41141,-0.0305 0.40677,-0.0402 0.40191,-0.0481 0.39663,-0.0555 0.39099,-0.0626", + "fill": { + "paint": "transparent" + }, + "id": "path2535", + "name": "path2535", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 159.44126,239.43994 -0.24749,-0.0306 -0.24865,-0.0342 -0.24981,-0.0385 -0.25064,-0.0428 -0.25159,-0.0467 -0.1195,-0.0227 -0.25269,-0.0518 -0.2547,-0.0558 -0.2568,-0.0601 -0.25896,-0.0643 -0.26125,-0.0683 -0.0655,-0.0199 -0.26427,-0.0734 -0.26721,-0.0785 -0.27049,-0.0829 -0.27368,-0.0876 -0.27737,-0.092 -0.28115,-0.0971 -0.28553,-0.10282 -0.28996,-0.10819 -0.29494,-0.11414 -0.0971,-0.0382", + "fill": { + "paint": "transparent" + }, + "id": "path2536", + "name": "path2536", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 155.81079,239.7856 -0.0505,-0.0227 -0.14018,-0.0603 -0.13616,-0.0612 -0.13234,-0.062 -0.1283,-0.0626 -0.12448,-0.0637 -0.12091,-0.0646 -0.11711,-0.0657 -0.0773,-0.045 -0.11023,-0.0666 -0.10616,-0.0669 -0.10236,-0.0677 -0.0985,-0.068 -0.0947,-0.0683 -0.0911,-0.0691 -0.0876,-0.0697 -0.01,-0.003 -0.084,-0.0697 -0.0797,-0.0697 -0.0754,-0.0703 -0.0722,-0.07 -0.0688,-0.0708 -0.0647,-0.0708 -0.0612,-0.0708 -0.0581,-0.0711 -0.0191,-0.0255 -0.0538,-0.0714 -0.0505,-0.072 -0.0468,-0.072 -0.0438,-0.072 -0.0402,-0.072 -0.0369,-0.072 -0.0335,-0.072 -0.0302,-0.0714", + "fill": { + "paint": "transparent" + }, + "id": "path2537", + "name": "path2537", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 156.97544,239.00171 0.13284,0.0484 0.13546,0.0473 0.13833,0.0461 0.14091,0.0442 0.144,0.0436 0.14712,0.0419 0.14996,0.0408 0.15305,0.0396 0.15615,0.0382 0.15948,0.0382 0.0143,0.002 0.16283,0.0342 0.16497,0.0342 0.1671,0.0307 0.16926,0.0306 0.17137,0.0306 0.17351,0.0255 0.17569,0.0255 0.17781,0.0227 0.17994,0.0227 0.12852,0.0142", + "fill": { + "paint": "transparent" + }, + "id": "path2538", + "name": "path2538", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 176.27072,248.04726 v 0.0142 l 0.01,0.0307 0.009,0.0305 v 0.0114 l 0.009,0.0255 0.009,0.0305 0.01,0.0305 0.009,0.0255 0.01,0.0255 0.009,0.0306 0.01,0.0255", + "fill": { + "paint": "transparent" + }, + "id": "path2539", + "name": "path2539", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 176.35083,248.33387 0.0121,0.0433 0.0214,0.0748 0.0236,0.0751 0.009,0.0306 0.0236,0.0751 0.0236,0.0751 0.0236,0.0748 0.0241,0.0745 0.0241,0.0745 0.0252,0.0745 0.026,0.0745", + "fill": { + "paint": "transparent" + }, + "id": "path2540", + "name": "path2540", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 195.10793,255.41479 -0.0631,0.0484 -0.18552,0.13652 -0.18233,0.12548 -0.17989,0.1167 -0.17429,0.10479 -0.17295,0.0963 -0.17035,0.0875 -0.16865,0.0796 -0.11795,0.0515 -0.16491,0.0657 -0.16288,0.0581 -0.16061,0.0504 -0.15929,0.0436 -0.0211,0.009 -0.15948,0.0342 -0.15893,0.0306 -0.15816,0.0227 -0.15667,0.0142 -0.15498,0.009 -0.15539,0.003 -0.15705,-0.002 -0.15797,-0.008 -0.15873,-0.0142 -0.15331,-0.0227 -0.15762,-0.0255 -0.15966,-0.0342 -0.16137,-0.0425 -0.16326,-0.0493 -0.0664,-0.0227 -0.1655,-0.0598 -0.16732,-0.0669 -0.16977,-0.0754 -0.12711,-0.0609 -0.17467,-0.0897 -0.17725,-0.0985 -0.18062,-0.10848 -0.0313,-0.0199 -0.18605,-0.12123 -0.18809,-0.13057 -0.19089,-0.14077 -0.19475,-0.15209 -0.19972,-0.16513 -0.0252,-0.0227 -0.20806,-0.1824 -0.21045,-0.19402 -0.21425,-0.20704 -0.2197,-0.22206 v -0.002 l -0.22754,-0.24047 -0.23093,-0.2552 -0.23636,-0.27162 -0.0715,-0.0841 -0.2468,-0.29795 -0.25159,-0.31546 -0.2054,-0.26596", + "fill": { + "paint": "transparent" + }, + "id": "path2541", + "name": "path2541", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 176.27072,248.04726 0.01,0.0114 0.0143,0.0255 0.0143,0.0255 0.01,0.0142 0.0168,0.0255 0.0168,0.0255 0.0168,0.0255 0.0168,0.0255 0.0168,0.0255 0.0168,0.0255 0.0168,0.0255", + "fill": { + "paint": "transparent" + }, + "id": "path2542", + "name": "path2542", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 185.64392,252.45636 -0.11605,0.17306 -0.11867,0.17164 -0.11661,0.16428 -0.11531,0.15776 -0.0715,0.0954 -0.11045,0.14446 -0.10839,0.13765 -0.10706,0.13143 -0.10616,0.12576 -0.0605,0.0703 -0.10128,0.11414 -0.0996,0.1082 -0.0981,0.10282 -0.097,0.0977 -0.0967,0.0937 v 0.002 l -0.0932,0.0867 -0.091,0.0819 -0.0895,0.0768 -0.0881,0.0723 -0.0871,0.0686 -0.0864,0.0646 -0.0857,0.0612", + "fill": { + "paint": "transparent" + }, + "id": "path2543", + "name": "path2543", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 183.49564,254.86086 -0.12425,0.083 -0.13451,0.0819 -0.13234,0.0731 -0.0579,0.0305 -0.12712,0.0598 -0.12475,0.0515 -0.12257,0.043 -0.009,0.002 -0.12211,0.0382 -0.12091,0.0306 -0.11922,0.0227 -0.11712,0.0142 -0.0302,0.002 -0.11784,0.008 -0.11759,5.3e-4 -0.11734,-0.008 -0.11784,-0.0114 -0.0452,-0.008 -0.11664,-0.0227 -0.11809,-0.0305 -0.0588,-0.0142 -0.11923,-0.0393 -0.12068,-0.047 -0.0614,-0.0255 -0.12355,-0.0583 -0.12497,-0.0669 -0.0529,-0.0305 -0.12854,-0.0799 -0.13094,-0.0895 -0.0345,-0.0255 -0.13589,-0.10394 -0.13709,-0.11414 -0.13971,-0.12491 -0.13521,-0.13029 -0.14973,-0.15352 -0.15117,-0.16598 -0.15426,-0.1807 -0.0319,-0.0391 -0.16162,-0.20337 -0.16424,-0.21866 -0.10809,-0.15069 -0.17331,-0.25179 -0.17659,-0.27078 -0.0419,-0.0666 -0.18427,-0.29983 -0.17491,-0.29789 -0.19447,-0.34649 -0.13878,-0.25633 -0.20565,-0.39355 -0.20972,-0.41838 -0.19259,-0.39946 -0.22543,-0.4843 -0.23043,-0.51428 -0.094,-0.21554", + "fill": { + "paint": "transparent" + }, + "id": "path2544", + "name": "path2544", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 176.73872,249.04147 -0.0168,-0.0382 -0.0312,-0.0723 -0.0312,-0.0723 -0.0143,-0.0342 -0.0309,-0.0725 -0.0311,-0.0725 -0.0302,-0.0725 -0.0302,-0.0725 -0.0302,-0.0725 -0.0302,-0.0725 -0.0302,-0.0725", + "fill": { + "paint": "transparent" + }, + "id": "path2545", + "name": "path2545", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 185.37563,204.50872 -0.11098,0.0402 -0.11438,0.0382 -0.11774,0.0382 -0.0822,0.0227 -0.12354,0.0342 -0.12637,0.0342 -0.129,0.0306 -0.0795,0.0142 -0.13347,0.0255 -0.13569,0.0255 -0.13777,0.0227 -0.0754,0.0114 -0.14114,0.0199 -0.14282,0.0199 -0.144,0.0142 -0.0731,0.009 -0.14617,0.0113 -0.14687,0.009 -0.1476,0.008 -0.0705,0.002 -0.0697,0.002 -0.14805,0.002 -0.14808,-5e-5 -0.14757,-0.002 v -1.1e-4 l -0.14662,-0.009 -0.14541,-0.009 -0.14426,-0.008 -0.14282,-0.0114 -0.14114,-0.0142 -0.1397,-0.0142 -0.13808,-0.0199", + "fill": { + "paint": "transparent" + }, + "id": "path2546", + "name": "path2546", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 181.48145,204.85937 -0.12784,-0.0199 -0.24539,-0.0382 -0.24513,-0.0382 -0.11759,-0.0199 -0.24478,-0.0396 -0.24438,-0.0408 -0.24418,-0.0419 -0.24372,-0.0427 -0.24355,-0.0444 -0.24313,-0.045 -0.24284,-0.0462", + "fill": { + "paint": "transparent" + }, + "id": "path2547", + "name": "path2547", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 179.03917,204.44672 -0.0352,-0.008 -0.0747,-0.0142 -0.0741,-0.0142 -0.0731,-0.0142 -0.0721,-0.0142 -0.0714,-0.0199 -0.0697,-0.0199 -0.0688,-0.0199 -0.0462,-0.0114 -0.0672,-0.0199 -0.0654,-0.0199 -0.0647,-0.0227 -0.0638,-0.0227 -0.0622,-0.0227 -0.0614,-0.0227 -0.0605,-0.0227", + "fill": { + "paint": "transparent" + }, + "id": "path2548", + "name": "path2548", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.28265,197.62539 4.9e-4,0.009 v 0.008 0.008 0.009 l 0.01,0.008 0.009,0.009 0.009,0.008 0.01,0.009 0.009,0.003 0.009,0.008 0.01,0.009 0.009,0.003", + "fill": { + "paint": "transparent" + }, + "id": "path2549", + "name": "path2549", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.42842,197.87019 9.9e-4,5.3e-4 v 0.001 10e-4 5.2e-4 9.9e-4 5.3e-4 5.3e-4 7.9e-4 5.3e-4 5.3e-4 5.2e-4", + "fill": { + "paint": "transparent" + }, + "id": "path2550", + "name": "path2550", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.5376,197.93523 -0.009,-0.002 -0.009,-0.003 -0.01,-0.008 -0.009,-0.002 -0.01,-0.009 -0.01,-0.008 -0.009,-0.009 -0.009,-0.008 -0.009,-0.009 -0.01,-0.008 -0.009,-0.008", + "fill": { + "paint": "transparent" + }, + "id": "path2551", + "name": "path2551", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 185.4024,217.35917 -0.11081,0.0405 -0.1142,0.0385 -0.11739,0.0382 -0.085,0.0255 -0.12317,0.0342 -0.12578,0.0342 -0.129,0.0306 -0.0824,0.0199 -0.13344,0.0255 -0.13569,0.0255 -0.13795,0.0227 -0.0792,0.0113 -0.14131,0.0199 -0.14282,0.0199 -0.14451,0.0142 -0.0754,0.008 -0.14662,0.0114 -0.14735,0.008 -0.14807,0.009 -0.0731,0.002 -0.0721,0.002 -0.14853,0.002 -0.1483,9e-5 -0.1483,-0.002 -0.009,-2e-4 -0.14712,-0.009 -0.14594,-0.008 -0.14473,-0.009 -0.1433,-0.0113 -0.14184,-0.0142 -0.14021,-0.0142 -0.13852,-0.0199", + "fill": { + "paint": "transparent" + }, + "id": "path2552", + "name": "path2552", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 181.48145,217.71978 -0.12784,-0.0199 -0.24539,-0.0382 -0.24513,-0.0382 -0.11759,-0.0199 -0.24478,-0.0396 -0.24438,-0.0408 -0.24418,-0.0416 -0.24372,-0.0433 -0.24355,-0.0442 -0.24313,-0.045 -0.24284,-0.0462", + "fill": { + "paint": "transparent" + }, + "id": "path2553", + "name": "path2553", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 179.03917,217.30708 -0.0352,-0.009 -0.0747,-0.0142 -0.0741,-0.0142 -0.0731,-0.0142 -0.0721,-0.0142 -0.0714,-0.0199 -0.0697,-0.0199 -0.0688,-0.0199 -0.0462,-0.0114 -0.0672,-0.0199 -0.0654,-0.0199 -0.0647,-0.0227 -0.0638,-0.0227 -0.0622,-0.0227 -0.0614,-0.0227 -0.0605,-0.0227", + "fill": { + "paint": "transparent" + }, + "id": "path2554", + "name": "path2554", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.42959,204.28754 -0.009,0.003 v 0.003 l -7e-5,1.9e-4 v 0.009 0.008 l -9e-5,1.7e-4 v 0.009 l -9.8e-4,0.008 7e-5,0.008 9.9e-4,0.009 v 0.008 0.009 l 0.01,0.0113 v 0.003 0.003 l 0.009,0.0113 0.009,0.0114 0.009,0.0114", + "fill": { + "paint": "transparent" + }, + "id": "path2555", + "name": "path2555", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.28608,204.55106 v 0.009 l 0.01,0.008 v 0.003 l 0.009,0.008 0.01,0.009 v 0.002 l 0.01,0.008 0.009,0.009 0.009,0.008 0.009,0.003 0.01,0.003", + "fill": { + "paint": "transparent" + }, + "id": "path2556", + "name": "path2556", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 185.38736,191.64395 -0.111,0.0405 -0.1142,0.0382 -0.11774,0.0382 -0.0831,0.0255 -0.12355,0.0342 -0.12616,0.0345 -0.1288,0.0306 -0.0807,0.0199 -0.13345,0.0255 -0.13568,0.0255 -0.13777,0.0227 -0.0775,0.0114 -0.14114,0.0199 -0.1428,0.0199 -0.14426,0.0142 -0.0738,0.009 -0.14637,0.0113 -0.14712,0.009 -0.14757,0.008 -0.0714,0.002 -0.0705,0.002 -0.1483,0.002 h -0.14805 l -0.14808,-0.002 -0.01,-2e-4 -0.14687,-0.009 -0.14566,-0.008 -0.14451,-0.008 -0.14305,-0.0114 -0.14161,-0.0142 -0.13971,-0.0142 -0.13827,-0.0199", + "fill": { + "paint": "transparent" + }, + "id": "path2557", + "name": "path2557", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 181.48145,191.9989 -0.12784,-0.0199 -0.24539,-0.0382 -0.24513,-0.0382 -0.11759,-0.0199 -0.24478,-0.0396 -0.24438,-0.0408 -0.24418,-0.0419 -0.24372,-0.0427 -0.24355,-0.0445 -0.24313,-0.0456 -0.24284,-0.0461", + "fill": { + "paint": "transparent" + }, + "id": "path2558", + "name": "path2558", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 179.03917,191.58628 -0.0352,-0.008 -0.0747,-0.0142 -0.0741,-0.0142 -0.0731,-0.0142 -0.0721,-0.0142 -0.0714,-0.0199 -0.0697,-0.0199 -0.0688,-0.0199 -0.0462,-0.0114 -0.0672,-0.0199 -0.0654,-0.0199 -0.0647,-0.0227 -0.0638,-0.0227 -0.0622,-0.0227 -0.0614,-0.0227 -0.0605,-0.0227", + "fill": { + "paint": "transparent" + }, + "id": "path2559", + "name": "path2559", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.28265,210.48586 4.9e-4,0.008 v 0.009 0.008 0.009 l 0.01,0.008 0.009,0.008 0.009,0.009 0.01,0.008 0.009,0.003 0.009,0.008 0.01,0.009 0.009,0.003", + "fill": { + "paint": "transparent" + }, + "id": "path2560", + "name": "path2560", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.42842,210.73058 9.9e-4,5.3e-4 v 0.001 0.001 5.3e-4 9.9e-4 5.3e-4 5.3e-4 7.9e-4 5.3e-4 5.3e-4 5.3e-4", + "fill": { + "paint": "transparent" + }, + "id": "path2561", + "name": "path2561", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 178.81061,223.87952 0.11854,0.0255 0.2478,0.0513 0.248,0.0501 0.12925,0.0255 0.24855,0.0481 0.24893,0.0473 0.24925,0.0462 0.24961,0.0456 0.24983,0.0445 0.25006,0.043 0.25033,0.0425", + "fill": { + "paint": "transparent" + }, + "id": "path2562", + "name": "path2562", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 181.30075,218.34381 -0.1302,-0.0199 -0.25026,-0.0382 -0.24991,-0.0385 -0.11975,-0.0199 -0.24951,-0.0402 -0.24925,-0.0416 -0.24901,-0.0428 -0.24855,-0.0439 -0.24825,-0.045 -0.2479,-0.0461 -0.24754,-0.0473", + "fill": { + "paint": "transparent" + }, + "id": "path2563", + "name": "path2563", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.5376,210.7957 -0.009,-0.002 -0.009,-0.003 -0.01,-0.008 -0.009,-0.002 -0.01,-0.009 -0.01,-0.008 -0.009,-0.009 -0.009,-0.008 -0.009,-0.008 -0.01,-0.009 -0.009,-0.008", + "fill": { + "paint": "transparent" + }, + "id": "path2564", + "name": "path2564", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 178.81061,211.01917 0.11854,0.0255 0.2478,0.0512 0.248,0.0501 0.12925,0.0254 0.24855,0.0481 0.24893,0.0473 0.24925,0.0462 0.24961,0.0456 0.24983,0.0442 0.25006,0.0427 0.25033,0.0425", + "fill": { + "paint": "transparent" + }, + "id": "path2565", + "name": "path2565", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 181.30075,205.48335 -0.1302,-0.0199 -0.25026,-0.0382 -0.24991,-0.0385 -0.11975,-0.0199 -0.24951,-0.0405 -0.24925,-0.0413 -0.24901,-0.0427 -0.24855,-0.0436 -0.24825,-0.045 -0.2479,-0.0462 -0.24754,-0.0473", + "fill": { + "paint": "transparent" + }, + "id": "path2566", + "name": "path2566", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 181.48145,179.13852 0.13923,0.0199 0.14094,0.0142 0.14257,0.0142 0.144,0.0114 0.14544,0.009 0.14662,0.008 0.14782,0.003 0.0143,2.6e-4 0.14898,0.002 0.149,-2.5e-4 0.14923,-0.002 0.0755,-0.002 0.0764,-0.003 0.14876,-0.009 0.14805,-0.0114 0.14712,-0.0114 0.079,-0.009 0.14474,-0.0142 0.1433,-0.0199 0.14151,-0.0227 0.0822,-0.0113 0.13833,-0.0227 0.13588,-0.0255 0.13365,-0.0255 0.0856,-0.0199 0.12879,-0.0306 0.12561,-0.0342 0.123,-0.0342 0.0884,-0.0255 0.11681,-0.0382 0.11342,-0.0396 0.11007,-0.0413", + "fill": { + "paint": "transparent" + }, + "id": "path2567", + "name": "path2567", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 179.03917,178.7259 0.11641,0.0227 0.24293,0.0459 0.24322,0.0447 0.12686,0.0227 0.24373,0.0427 0.24418,0.0419 0.24438,0.0407 0.2447,0.0396 0.24503,0.0382 0.24531,0.0382 0.24546,0.0382", + "fill": { + "paint": "transparent" + }, + "id": "path2568", + "name": "path2568", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 178.00894,178.436 0.0597,0.0227 0.0614,0.0227 0.0621,0.0227 0.0638,0.0227 0.0647,0.0227 0.0655,0.0199 0.0672,0.0199 0.0462,0.0114 0.0688,0.0199 0.0697,0.0199 0.0714,0.0199 0.0721,0.0142 0.0731,0.0142 0.0738,0.0142 0.0747,0.0142 0.0352,0.009", + "fill": { + "paint": "transparent" + }, + "id": "path2569", + "name": "path2569", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 178.81061,198.15876 0.11854,0.0255 0.2478,0.0512 0.248,0.0501 0.12925,0.0255 0.24855,0.0481 0.24893,0.0473 0.24925,0.0462 0.24961,0.0453 0.24983,0.0444 0.25006,0.043 0.25033,0.0425", + "fill": { + "paint": "transparent" + }, + "id": "path2570", + "name": "path2570", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 181.30075,192.62299 -0.1302,-0.0199 -0.25026,-0.0382 -0.24991,-0.0385 -0.11975,-0.0199 -0.24951,-0.0402 -0.24925,-0.0413 -0.24901,-0.0427 -0.24855,-0.0439 -0.24825,-0.045 -0.2479,-0.0462 -0.24754,-0.0473", + "fill": { + "paint": "transparent" + }, + "id": "path2571", + "name": "path2571", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.35218,191.75858 -0.009,-0.003 -0.009,-0.008 -0.01,-0.008 -0.009,-0.009 -0.009,-0.008 -0.009,-0.009 -0.01,-0.008 -0.009,-0.009 v -0.008 -0.008 -0.009 l -4.9e-4,-0.008", + "fill": { + "paint": "transparent" + }, + "id": "path2572", + "name": "path2572", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.35218,178.89814 -0.009,-0.003 -0.009,-0.008 -0.01,-0.009 -0.009,-0.008 -0.009,-0.009 -0.009,-0.008 -0.01,-0.009 -0.009,-0.008 v -0.008 -0.009 -0.008 l -4.9e-4,-0.009", + "fill": { + "paint": "transparent" + }, + "id": "path2573", + "name": "path2573", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 178.81061,185.29837 0.11854,0.0255 0.2478,0.0513 0.248,0.0501 0.12925,0.0255 0.24855,0.0484 0.24893,0.0473 0.24925,0.0462 0.24961,0.0456 0.24983,0.0444 0.25006,0.0436 0.25033,0.0425", + "fill": { + "paint": "transparent" + }, + "id": "path2574", + "name": "path2574", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.39063,223.43382 0.0664,0.0306 0.0671,0.0255 0.0688,0.0255 0.0697,0.0255 0.0714,0.0254 0.0731,0.0255 0.0747,0.0255 0.0764,0.0255 0.0774,0.0255 0.0191,0.009 0.0797,0.0227 0.0807,0.0227 0.0824,0.0227 0.0831,0.0227 0.0847,0.0227 0.0859,0.0227 0.0873,0.0199 0.0885,0.0199 0.0824,0.0142", + "fill": { + "paint": "transparent" + }, + "id": "path2575", + "name": "path2575", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 178.81061,217.92261 -0.0191,-0.003 -0.0864,-0.0142 -0.0852,-0.0199 -0.084,-0.0199 -0.0831,-0.0199 -0.0814,-0.0199 -0.0807,-0.0227 -0.0797,-0.0227 -0.0781,-0.0227 -0.0773,-0.0227 -0.0436,-0.0114 -0.0748,-0.0227 -0.0731,-0.0227 -0.0721,-0.0255 -0.0705,-0.0255 -0.0688,-0.0255 -0.0681,-0.0255 -0.0664,-0.0255 -0.0647,-0.0255 -0.0638,-0.0255", + "fill": { + "paint": "transparent" + }, + "id": "path2576", + "name": "path2576", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 181.30075,224.34696 0.16926,0.0255 0.17185,0.0227 0.17399,0.0227 0.10734,0.0114 0.17752,0.0142 0.17899,0.0114 0.17997,0.0113 0.10329,0.003 0.1007,0.003 0.18165,0.003 0.18163,0.001 0.1814,-0.002 0.10452,-0.002 0.17949,-0.008 0.17806,-0.009 0.1769,-0.0114 0.10914,-0.008 0.17296,-0.0142 0.17034,-0.0199 0.16808,-0.0227 0.11472,-0.0142 0.16228,-0.0255 0.15873,-0.0305 0.15536,-0.0306 0.11963,-0.0255 0.14787,-0.0342 0.14373,-0.0382 0.13963,-0.0396 0.12262,-0.0382 0.13066,-0.0427 0.12578,-0.0447 0.12131,-0.0461", + "fill": { + "paint": "transparent" + }, + "id": "path2577", + "name": "path2577", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 186.11111,217.80762 -0.11962,0.0515 -0.12428,0.0501 -0.12822,0.049 -0.12802,0.0456 -0.13719,0.0456 -0.14112,0.0436 -0.14485,0.0413 -0.1273,0.0342 -0.15237,0.0382 -0.15536,0.0342 -0.15873,0.0342 -0.12448,0.0227 -0.16416,0.0255 -0.16642,0.0254 -0.16866,0.0227 -0.12131,0.0142 -0.17235,0.0199 -0.17378,0.0142 -0.17497,0.0114 -0.11807,0.009 -0.11545,0.003 -0.1766,0.003 -0.1766,0.002 -0.17635,-10e-4 -0.11902,-0.002 -0.17472,-0.009 -0.17376,-0.008 -0.17235,-0.0114 -0.12282,-0.0113 -0.16875,-0.0142 -0.16663,-0.0199 -0.16423,-0.0227", + "fill": { + "paint": "transparent" + }, + "id": "path2578", + "name": "path2578", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.39063,210.57339 0.0664,0.0305 0.0671,0.0255 0.0688,0.0254 0.0697,0.0255 0.0714,0.0255 0.0731,0.0255 0.0747,0.0255 0.0764,0.0255 0.0774,0.0255 0.0191,0.009 0.0797,0.0227 0.0807,0.0227 0.0824,0.0227 0.0831,0.0227 0.0847,0.0227 0.0859,0.0227 0.0873,0.0199 0.0885,0.0199 0.0824,0.0142", + "fill": { + "paint": "transparent" + }, + "id": "path2579", + "name": "path2579", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 178.81061,205.06221 -0.0191,-0.003 -0.0864,-0.0142 -0.0852,-0.0199 -0.084,-0.0199 -0.0831,-0.0199 -0.0814,-0.0199 -0.0807,-0.0199 -0.0797,-0.0227 -0.0781,-0.0227 -0.0773,-0.0227 -0.0436,-0.0114 -0.0748,-0.0227 -0.0731,-0.0227 -0.0721,-0.0255 -0.0705,-0.0255 -0.0688,-0.0255 -0.0681,-0.0255 -0.0664,-0.0255 -0.0647,-0.0255 -0.0638,-0.0255", + "fill": { + "paint": "transparent" + }, + "id": "path2580", + "name": "path2580", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 181.30075,211.48657 0.16926,0.0255 0.17185,0.0227 0.17399,0.0227 0.10734,0.0114 0.17752,0.0142 0.17899,0.0114 0.17997,0.0114 0.10329,0.003 0.1007,0.003 0.18165,0.003 0.18163,9.9e-4 0.1814,-0.002 0.10452,-0.002 0.17949,-0.009 0.17806,-0.009 0.1769,-0.0113 0.10914,-0.009 0.17296,-0.0142 0.17034,-0.0199 0.16808,-0.0227 0.11472,-0.0142 0.16228,-0.0255 0.15873,-0.0305 0.15536,-0.0307 0.11963,-0.0255 0.14787,-0.0342 0.14373,-0.0382 0.13963,-0.0396 0.12262,-0.0382 0.13066,-0.0427 0.12578,-0.0444 0.12131,-0.0461", + "fill": { + "paint": "transparent" + }, + "id": "path2581", + "name": "path2581", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 186.11111,204.94724 -0.11962,0.0515 -0.12428,0.0501 -0.12822,0.0484 -0.12802,0.0456 -0.13719,0.0456 -0.14112,0.043 -0.14485,0.0413 -0.1273,0.0342 -0.15237,0.0382 -0.15536,0.0342 -0.15873,0.0342 -0.12448,0.0227 -0.16416,0.0255 -0.16642,0.0255 -0.16866,0.0227 -0.12131,0.0142 -0.17235,0.0199 -0.17378,0.0142 -0.17497,0.0114 -0.11807,0.008 -0.11545,0.003 -0.1766,0.003 -0.1766,0.002 -0.17635,-9.9e-4 -0.11902,-0.002 -0.17472,-0.008 -0.17376,-0.009 -0.17235,-0.0113 -0.12282,-0.0114 -0.16875,-0.0142 -0.16663,-0.0199 -0.16423,-0.0227", + "fill": { + "paint": "transparent" + }, + "id": "path2582", + "name": "path2582", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.39063,197.713 0.0664,0.0305 0.0671,0.0255 0.0688,0.0255 0.0697,0.0255 0.0714,0.0255 0.0731,0.0255 0.0747,0.0255 0.0764,0.0255 0.0774,0.0255 0.0191,0.008 0.0797,0.0227 0.0807,0.0227 0.0824,0.0227 0.0831,0.0227 0.0847,0.0227 0.0859,0.0227 0.0873,0.0199 0.0885,0.0199 0.0824,0.0142", + "fill": { + "paint": "transparent" + }, + "id": "path2583", + "name": "path2583", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 178.81061,192.20179 -0.0191,-0.003 -0.0864,-0.0142 -0.0852,-0.0199 -0.084,-0.0199 -0.0831,-0.0199 -0.0814,-0.0199 -0.0807,-0.0227 -0.0797,-0.0227 -0.0781,-0.0227 -0.0773,-0.0227 -0.0436,-0.0114 -0.0748,-0.0227 -0.0731,-0.0227 -0.0721,-0.0255 -0.0705,-0.0255 -0.0688,-0.0254 -0.0681,-0.0255 -0.0664,-0.0255 -0.0647,-0.0255 -0.0638,-0.0254", + "fill": { + "paint": "transparent" + }, + "id": "path2584", + "name": "path2584", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 181.30075,198.6261 0.16926,0.0255 0.17185,0.0227 0.17399,0.0227 0.10734,0.0114 0.17752,0.0142 0.17899,0.0114 0.17997,0.0114 0.10329,0.003 0.1007,0.003 0.18165,0.003 0.18163,9.9e-4 0.1814,-0.002 0.10452,-0.002 0.17949,-0.008 0.17806,-0.009 0.1769,-0.0114 0.10914,-0.009 0.17296,-0.0142 0.17034,-0.0199 0.16808,-0.0227 0.11472,-0.0142 0.16228,-0.0255 0.15873,-0.0306 0.15536,-0.0306 0.11963,-0.0255 0.14787,-0.0345 0.14373,-0.0382 0.13963,-0.0396 0.12262,-0.0382 0.13066,-0.043 0.12578,-0.0447 0.12131,-0.0461", + "fill": { + "paint": "transparent" + }, + "id": "path2585", + "name": "path2585", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 186.11111,223.97075 -2.6e-4,0.003 v 0.0199 0.0199 0.0142 l -0.009,0.0142 v 0.009 l -0.009,0.0142 -0.009,0.0142 -0.009,0.0114 -0.009,0.0114 -0.009,0.009 -0.009,0.0114 -0.009,0.0113 -0.009,0.009 -0.009,0.008 -0.009,0.009 -0.0113,0.008 -0.0113,0.009 -0.0113,0.008 -0.0113,0.008", + "fill": { + "paint": "transparent" + }, + "id": "path2586", + "name": "path2586", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 181.30075,224.34696 -9e-5,0.0199 4.2e-4,0.0227 v 0.0142 0.0227 0.0142 0.0142 0.0142 0.0113 l 9.9e-4,0.002 0.009,0.0113 0.009,0.009 v 0.003 l 0.009,0.009 0.009,0.008 v 0.003 l 0.01,0.003 0.009,0.003 0.009,0.002 0.01,0.002 0.009,0.001", + "fill": { + "paint": "transparent" + }, + "id": "path2587", + "name": "path2587", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 178.81061,223.87952 -1e-4,0.0142 4.9e-4,0.0227 v 0.0199 0.0199 0.0142 0.0142 l 4.9e-4,0.002 0.009,0.0142 0.01,0.0114 v 0.003 l 0.009,0.0114 0.009,0.009 v 0.003 l 0.01,0.009 0.009,0.008 0.009,0.003 0.009,0.008 0.009,0.003 0.01,0.002 0.01,0.002 0.009,0.002", + "fill": { + "paint": "transparent" + }, + "id": "path2588", + "name": "path2588", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.39063,223.43382 1.6e-4,0.0114 v 0.0142 0.0142 0.0142 0.0142 l 0.009,0.0142 0.009,0.0142 0.01,0.0113 0.009,0.0114 0.01,0.0114 0.01,0.0113", + "fill": { + "paint": "transparent" + }, + "id": "path2589", + "name": "path2589", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 186.11111,192.0868 -0.11962,0.0515 -0.12428,0.0501 -0.12822,0.049 -0.12802,0.045 -0.13719,0.0453 -0.14112,0.0433 -0.14485,0.0413 -0.1273,0.0345 -0.15237,0.0382 -0.15536,0.0342 -0.15873,0.0305 -0.12448,0.0227 -0.16416,0.0255 -0.16642,0.0255 -0.16866,0.0227 -0.12131,0.0142 -0.17235,0.0199 -0.17378,0.0142 -0.17497,0.0114 -0.11807,0.009 -0.11545,0.003 -0.1766,0.003 -0.1766,0.002 -0.17635,-0.001 -0.11902,-0.002 -0.17472,-0.008 -0.17376,-0.009 -0.17235,-0.0113 -0.12282,-0.0114 -0.16875,-0.0142 -0.16663,-0.0199 -0.16423,-0.0227", + "fill": { + "paint": "transparent" + }, + "id": "path2590", + "name": "path2590", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 181.30075,185.76575 0.16926,0.0255 0.17185,0.0227 0.17399,0.0199 0.10734,0.0114 0.17752,0.0142 0.17899,0.0114 0.17997,0.0114 0.10329,0.003 0.1007,0.003 0.18165,0.003 0.18163,10e-4 0.1814,-0.002 0.10452,-0.002 0.17949,-0.009 0.17806,-0.008 0.1769,-0.0114 0.10914,-0.008 0.17296,-0.0142 0.17034,-0.0199 0.16808,-0.0227 0.11472,-0.0142 0.16228,-0.0254 0.15873,-0.0307 0.15536,-0.0305 0.11963,-0.0255 0.14787,-0.0345 0.14373,-0.0382 0.13963,-0.0396 0.12262,-0.0382 0.13066,-0.0427 0.12578,-0.0444 0.12131,-0.0462", + "fill": { + "paint": "transparent" + }, + "id": "path2591", + "name": "path2591", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.43447,223.58706 v -0.001 l -0.0121,-0.0114 -0.0121,-0.0114 -0.01,-0.0114 -0.009,-0.0114 -0.01,-0.0113 -0.009,-0.0114 -0.009,-0.0114 -0.009,-0.0142 -0.01,-0.0142 v -0.0142 -0.0142 l -4.3e-4,-0.003 v -0.0142", + "fill": { + "paint": "transparent" + }, + "id": "path2592", + "name": "path2592", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 181.30075,179.76253 0.16424,0.0227 0.16662,0.0199 0.16876,0.0142 0.12279,0.0114 0.17233,0.0114 0.17378,0.008 0.17474,0.008 0.119,0.002 0.17637,0.001 0.1766,-0.002 0.1766,-0.003 0.11546,-0.003 0.11809,-0.009 0.17496,-0.0114 0.17374,-0.0142 0.17238,-0.0199 0.12128,-0.0142 0.16883,-0.0227 0.16643,-0.0255 0.16415,-0.0255 0.12448,-0.0227 0.15873,-0.0342 0.15537,-0.0345 0.15237,-0.0382 0.12729,-0.0342 0.14488,-0.0408 0.14114,-0.0436 0.13719,-0.0456 0.12802,-0.0456 0.12823,-0.0484 0.12409,-0.0501 0.11963,-0.0515", + "fill": { + "paint": "transparent" + }, + "id": "path2593", + "name": "path2593", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.42959,217.14796 -0.009,0.003 v 0.003 l -7e-5,2e-4 v 0.009 0.008 l -9e-5,1.4e-4 v 0.009 l -9.8e-4,0.008 7e-5,0.009 9.9e-4,0.008 v 0.008 0.009 l 0.01,0.0114 v 0.003 0.003 l 0.009,0.0114 0.009,0.0114 0.009,0.0114", + "fill": { + "paint": "transparent" + }, + "id": "path2594", + "name": "path2594", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.39063,184.85262 0.0664,0.0305 0.0671,0.0255 0.0688,0.0255 0.0697,0.0255 0.0714,0.0255 0.0731,0.0255 0.0747,0.0255 0.0764,0.0254 0.0774,0.0255 0.0191,0.008 0.0797,0.0227 0.0807,0.0227 0.0824,0.0227 0.0831,0.0227 0.0847,0.0227 0.0859,0.0227 0.0873,0.0199 0.0885,0.0199 0.0824,0.0142", + "fill": { + "paint": "transparent" + }, + "id": "path2595", + "name": "path2595", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.39063,178.90783 0.0638,0.0255 0.0648,0.0255 0.0664,0.0255 0.0681,0.0255 0.0688,0.0255 0.0704,0.0255 0.0721,0.0255 0.0731,0.0227 0.0747,0.0227 0.0429,0.0114 0.0774,0.0227 0.0781,0.0227 0.0797,0.0227 0.0807,0.0199 0.0814,0.0199 0.0831,0.0199 0.084,0.0199 0.0852,0.0199 0.0864,0.0142 0.0191,0.003", + "fill": { + "paint": "transparent" + }, + "id": "path2596", + "name": "path2596", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 186.11111,217.80762 v -0.0199 -0.0199 -0.0199 l -0.009,-0.0227 v -0.0113 l -0.009,-0.0227 -0.009,-0.0227 -0.009,-0.0227 -0.009,-0.0227 -0.009,-0.008 -0.0113,-0.0227 -0.0151,-0.0227 -0.0151,-0.0227 -0.0151,-0.0227 v -0.008 -0.003 l -0.0168,-0.0227 -0.0168,-0.0227 -0.0191,-0.0227 -0.0191,-0.0227", + "fill": { + "paint": "transparent" + }, + "id": "path2597", + "name": "path2597", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 181.30075,218.34381 -9e-5,-0.0255 v -0.0306 -0.0199 -0.0342 -0.0342 -0.0199 l 0.009,-0.0342 0.009,-0.0342 0.01,-0.0382 0.01,-0.0382 0.009,-0.0305 0.009,-0.0142 0.0121,-0.0342 0.0121,-0.0342 0.009,-0.0199 0.0121,-0.0305 0.0121,-0.0306 0.01,-0.0199 0.0121,-0.0255 0.0143,-0.0227 0.0121,-0.0199 0.0121,-0.0199 0.0121,-0.0199", + "fill": { + "paint": "transparent" + }, + "id": "path2598", + "name": "path2598", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 178.81061,217.92261 7e-5,-0.0255 v -0.0255 -0.0254 -0.0306 l 0.009,-0.0306 0.01,-0.0227 0.009,-0.0307 0.01,-0.0305 0.009,-0.0305 0.009,-0.0307 0.0121,-0.0305 0.009,-0.0114 0.01,-0.0227 0.0121,-0.0307 0.0143,-0.0305 0.0121,-0.0227 0.0143,-0.0255 0.0143,-0.0255 0.0143,-0.0227 0.0143,-0.0227 0.0143,-0.0227 v -0.003 l 0.0143,-0.0199 0.0143,-0.0142 0.0143,-0.0142", + "fill": { + "paint": "transparent" + }, + "id": "path2599", + "name": "path2599", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.39063,217.48903 4.9e-4,-0.0199 v -0.0199 -0.0199 -0.0199 l 0.01,-0.0227 v -0.009 -0.008 l 0.01,-0.0227 0.009,-0.0227 0.009,-0.0227 0.009,-0.0227 0.01,-0.0227", + "fill": { + "paint": "transparent" + }, + "id": "path2600", + "name": "path2600", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.28608,217.41145 v 0.008 l 0.01,0.009 v 0.003 l 0.009,0.008 0.01,0.009 v 0.002 l 0.01,0.009 0.009,0.008 0.009,0.008 0.009,0.003 0.01,0.003", + "fill": { + "paint": "transparent" + }, + "id": "path2601", + "name": "path2601", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.35225,217.47176 v -0.0142 -0.0142 -0.0142 -0.0142 l 0.01,-0.0142 0.009,-0.0142 0.009,-0.0114 0.009,-0.0142 0.01,-0.0142 0.0121,-0.0142 0.0121,-0.0142 0.0121,-0.0142 0.0143,-0.0142 v -0.003", + "fill": { + "paint": "transparent" + }, + "id": "path2602", + "name": "path2602", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 178.00894,217.01718 -0.009,-5.2e-4 -0.0329,-0.002 -0.0329,-0.001 -0.0319,-2.7e-4 -0.0319,5.3e-4 -0.0121,5.3e-4 -0.0302,10e-4 -0.0302,0.002 -0.0293,0.003 -0.0285,0.003 -0.0168,0.002 -0.0269,0.008 -0.0259,0.008 -0.0252,0.009 -0.0241,0.008 -0.0236,0.009 -0.0214,0.009 -0.0214,0.009 -0.0191,0.009 -0.0191,0.008", + "fill": { + "paint": "transparent" + }, + "id": "path2603", + "name": "path2603", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.44942,217.26974 0.0168,-0.0142 0.0168,-0.0142 0.0191,-0.0142 0.0191,-0.0142 0.0214,-0.0142 0.0191,-0.0114 0.0236,-0.0142 0.0241,-0.0142 0.0252,-0.0114 0.0259,-0.0114 0.0276,-0.0113 0.0121,-0.003 0.0286,-0.0114 0.0293,-0.0114 0.0302,-0.0113 0.0312,-0.0114 0.0319,-0.009 v -2.6e-4 l 0.0285,-0.008 0.0329,-0.009 0.0329,-0.008 0.0329,-0.009 0.0326,-0.008", + "fill": { + "paint": "transparent" + }, + "id": "path2604", + "name": "path2604", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 178.81061,179.34138 0.11854,0.0227 0.24772,0.0467 0.24808,0.0459 0.12925,0.0227 0.24855,0.0439 0.2489,0.0427 0.24928,0.0416 0.24958,0.0402 0.24973,0.0393 0.25006,0.0382 0.25034,0.0382", + "fill": { + "paint": "transparent" + }, + "id": "path2605", + "name": "path2605", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 186.11111,211.11037 -2.6e-4,0.003 v 0.0199 0.0199 0.0142 l -0.009,0.0142 v 0.009 l -0.009,0.0142 -0.009,0.0142 -0.009,0.0114 -0.009,0.0114 -0.009,0.008 -0.009,0.0114 -0.009,0.0114 -0.009,0.008 -0.009,0.008 -0.009,0.009 -0.0113,0.008 -0.0113,0.009 -0.0113,0.008 -0.0113,0.009", + "fill": { + "paint": "transparent" + }, + "id": "path2606", + "name": "path2606", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 181.30075,211.48657 -9e-5,0.0199 4.2e-4,0.0227 v 0.0142 0.0227 0.0142 0.0142 0.0142 0.0113 l 9.9e-4,0.002 0.009,0.0114 0.009,0.009 v 0.003 l 0.009,0.009 0.009,0.008 v 0.003 l 0.01,0.003 0.009,0.003 0.009,0.002 0.01,0.002 0.009,0.001", + "fill": { + "paint": "transparent" + }, + "id": "path2607", + "name": "path2607", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 178.81061,211.01917 -1e-4,0.0142 4.9e-4,0.0227 v 0.0199 0.0199 0.0142 0.0142 l 4.9e-4,0.002 0.009,0.0142 0.01,0.0114 v 0.003 l 0.009,0.0113 0.009,0.009 v 0.003 l 0.01,0.009 0.009,0.008 0.009,0.003 0.009,0.008 0.009,0.003 0.01,0.002 0.01,0.002 0.009,0.002", + "fill": { + "paint": "transparent" + }, + "id": "path2608", + "name": "path2608", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.39063,210.57339 1.6e-4,0.0114 v 0.0142 0.0142 0.0142 0.0142 l 0.009,0.0142 0.009,0.0142 0.01,0.0113 0.009,0.0114 0.01,0.0114 0.01,0.0113", + "fill": { + "paint": "transparent" + }, + "id": "path2609", + "name": "path2609", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.43447,210.72661 v -0.001 l -0.0121,-0.0114 -0.0121,-0.0114 -0.01,-0.0114 -0.009,-0.0114 -0.01,-0.0113 -0.009,-0.0114 -0.009,-0.0114 -0.009,-0.0142 -0.01,-0.0142 v -0.0142 -0.0142 l -4.3e-4,-0.003 v -0.0142", + "fill": { + "paint": "transparent" + }, + "id": "path2610", + "name": "path2610", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.28265,223.34624 4.9e-4,0.009 v 0.008 0.008 0.009 l 0.01,0.008 0.009,0.009 0.009,0.008 0.01,0.009 0.009,0.003 0.009,0.009 0.01,0.008 0.009,0.003", + "fill": { + "paint": "transparent" + }, + "id": "path2611", + "name": "path2611", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.28265,184.76501 4.9e-4,0.008 v 0.009 0.009 0.008 l 0.01,0.009 0.009,0.008 0.009,0.009 0.01,0.008 0.009,0.003 0.009,0.008 0.01,0.008 0.009,0.003", + "fill": { + "paint": "transparent" + }, + "id": "path2612", + "name": "path2612", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.42842,223.59102 9.9e-4,5.3e-4 v 10e-4 0.001 5.2e-4 0.001 5.3e-4 5.3e-4 7.9e-4 5.3e-4 5.3e-4 5.3e-4", + "fill": { + "paint": "transparent" + }, + "id": "path2613", + "name": "path2613", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 186.11111,204.94724 v -0.0199 -0.0199 -0.0199 l -0.009,-0.0227 v -0.008 l -0.009,-0.0227 -0.009,-0.0227 -0.009,-0.0227 -0.009,-0.0227 v -0.008 l -0.0113,-0.0227 -0.0113,-0.0227 -0.0151,-0.0227 -0.0151,-0.0227 v -0.002 l -4.3e-4,-5.3e-4 -0.0168,-0.0227 -0.0168,-0.0227 -0.0191,-0.0227 -0.0191,-0.0227", + "fill": { + "paint": "transparent" + }, + "id": "path2614", + "name": "path2614", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 181.30075,205.48335 -9e-5,-0.0255 v -0.0307 -0.0199 -0.0342 -0.0345 -0.0199 l 0.009,-0.0345 0.009,-0.0342 0.01,-0.0382 0.01,-0.0382 0.009,-0.0306 0.009,-0.0142 0.0121,-0.0342 0.0121,-0.0342 0.009,-0.0199 0.0121,-0.0305 0.0121,-0.0307 0.01,-0.0199 0.0121,-0.0255 0.0143,-0.0227 0.0121,-0.0199 0.0121,-0.0199 0.0121,-0.0199", + "fill": { + "paint": "transparent" + }, + "id": "path2615", + "name": "path2615", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 178.81061,205.06221 7e-5,-0.0255 v -0.0255 -0.0254 -0.0306 l 0.009,-0.0305 0.01,-0.0227 0.009,-0.0306 0.01,-0.0306 0.009,-0.0305 0.009,-0.0305 0.0121,-0.0306 0.009,-0.0114 0.01,-0.0227 0.0121,-0.0306 0.0143,-0.0307 0.0121,-0.0227 0.0143,-0.0255 0.0143,-0.0255 0.0143,-0.0227 0.0143,-0.0227 0.0143,-0.0227 v -0.003 l 0.0143,-0.0199 0.0143,-0.0142 0.0143,-0.0142", + "fill": { + "paint": "transparent" + }, + "id": "path2616", + "name": "path2616", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.39063,204.62859 4.9e-4,-0.0199 v -0.0199 -0.0199 -0.0199 l 0.01,-0.0227 v -0.008 -0.009 l 0.01,-0.0227 0.009,-0.0227 0.009,-0.0227 0.009,-0.0227 0.01,-0.0227", + "fill": { + "paint": "transparent" + }, + "id": "path2617", + "name": "path2617", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.5376,223.65605 -0.009,-0.002 -0.009,-0.003 -0.01,-0.009 -0.009,-0.002 -0.01,-0.008 -0.01,-0.009 -0.009,-0.008 -0.009,-0.009 -0.009,-0.008 -0.01,-0.008 -0.009,-0.009", + "fill": { + "paint": "transparent" + }, + "id": "path2618", + "name": "path2618", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.35225,204.61137 v -0.0142 -0.0142 -0.0142 -0.0142 l 0.01,-0.0142 0.009,-0.0142 0.009,-0.0114 0.009,-0.0142 0.01,-0.0142 0.0121,-0.0142 0.0121,-0.0142 0.0121,-0.0142 0.0143,-0.0142 v -0.003", + "fill": { + "paint": "transparent" + }, + "id": "path2619", + "name": "path2619", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.42842,185.00978 9.9e-4,5.3e-4 v 0.001 0.001 5.3e-4 9.9e-4 5.3e-4 5.2e-4 5.3e-4 7.9e-4 5.3e-4 5.3e-4", + "fill": { + "paint": "transparent" + }, + "id": "path2620", + "name": "path2620", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 178.00894,204.1568 -0.009,-5.3e-4 -0.0329,-0.002 -0.0329,-0.001 -0.0319,-2.4e-4 -0.0319,5.2e-4 -0.0121,5.2e-4 -0.0302,0.001 -0.0302,0.002 -0.0293,0.003 -0.0285,0.003 -0.0168,0.002 -0.0269,0.008 -0.0259,0.008 -0.0252,0.009 -0.0241,0.008 -0.0236,0.009 -0.0214,0.008 -0.0214,0.009 -0.0191,0.008 -0.0191,0.008", + "fill": { + "paint": "transparent" + }, + "id": "path2621", + "name": "path2621", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.44942,204.40939 0.0168,-0.0142 0.0168,-0.0142 0.0191,-0.0142 0.0191,-0.0142 0.0214,-0.0142 0.0191,-0.0113 0.0236,-0.0142 0.0241,-0.0142 0.0252,-0.0114 0.0259,-0.0113 0.0276,-0.0114 0.0121,-0.003 0.0286,-0.0114 0.0293,-0.0114 0.0302,-0.0113 0.0312,-0.0114 0.0319,-0.009 v -2.2e-4 l 0.0285,-0.009 0.0329,-0.008 0.0329,-0.009 0.0329,-0.008 0.0326,-0.008", + "fill": { + "paint": "transparent" + }, + "id": "path2622", + "name": "path2622", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 186.11111,198.24999 -2.6e-4,0.003 v 0.0199 0.0199 0.0142 l -0.009,0.0142 v 0.009 l -0.009,0.0142 -0.009,0.0142 -0.009,0.0114 -0.009,0.0113 -0.009,0.009 -0.009,0.0114 -0.009,0.0113 -0.009,0.009 -0.009,0.008 -0.009,0.009 -0.0113,0.008 -0.0113,0.008 -0.0113,0.009 -0.0113,0.008", + "fill": { + "paint": "transparent" + }, + "id": "path2623", + "name": "path2623", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 181.30075,198.6261 -9e-5,0.0199 4.2e-4,0.0227 v 0.0142 0.0227 0.0142 0.0142 0.0142 0.0114 l 9.9e-4,0.002 0.009,0.0113 0.009,0.009 v 0.003 l 0.009,0.008 0.009,0.009 v 0.003 l 0.01,0.003 0.009,0.003 0.009,0.002 0.01,0.002 0.009,0.001", + "fill": { + "paint": "transparent" + }, + "id": "path2624", + "name": "path2624", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 178.81061,198.15876 -1e-4,0.0142 4.9e-4,0.0227 v 0.0199 0.0199 0.0142 0.0142 l 4.9e-4,0.002 0.009,0.0142 0.01,0.0114 v 0.003 l 0.009,0.0114 0.009,0.009 v 0.003 l 0.01,0.009 0.009,0.008 0.009,0.003 0.009,0.008 0.009,0.003 0.01,0.002 0.01,0.002 0.009,0.002", + "fill": { + "paint": "transparent" + }, + "id": "path2625", + "name": "path2625", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.39063,197.713 1.6e-4,0.0114 v 0.0142 0.0142 0.0142 0.0142 l 0.009,0.0142 0.009,0.0142 0.01,0.0114 0.009,0.0114 0.01,0.0113 0.01,0.0114", + "fill": { + "paint": "transparent" + }, + "id": "path2626", + "name": "path2626", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.5376,185.07485 -0.009,-0.002 -0.009,-0.003 -0.01,-0.008 -0.009,-0.002 -0.01,-0.008 -0.01,-0.008 -0.009,-0.009 -0.009,-0.008 -0.009,-0.009 -0.01,-0.008 -0.009,-0.009", + "fill": { + "paint": "transparent" + }, + "id": "path2627", + "name": "path2627", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.43447,197.86623 v -0.001 l -0.0121,-0.0114 -0.0121,-0.0114 -0.01,-0.0113 -0.009,-0.0114 -0.01,-0.0114 -0.009,-0.0114 -0.009,-0.0114 -0.009,-0.0142 -0.01,-0.0142 v -0.0142 -0.0142 l -4.3e-4,-0.003 v -0.0142", + "fill": { + "paint": "transparent" + }, + "id": "path2628", + "name": "path2628", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.28407,184.76461 1.7e-4,5.3e-4 2.5e-4,0.001 4.2e-4,0.001 4e-4,10e-4 4.3e-4,9.9e-4 4.3e-4,0.001 4.9e-4,0.001 5e-4,0.001 2.6e-4,5.3e-4 4.9e-4,0.001 4.9e-4,0.001", + "fill": { + "paint": "transparent" + }, + "id": "path2629", + "name": "path2629", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.28853,184.77608 v 0.003 l 0.01,0.008 0.009,0.009 0.01,0.008 0.009,0.008 v 0.002 l 0.01,0.009 0.009,0.003 0.009,0.003 0.01,0.003 0.009,0.003", + "fill": { + "paint": "transparent" + }, + "id": "path2630", + "name": "path2630", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.28407,197.62502 1.7e-4,5.3e-4 2.5e-4,0.001 4.2e-4,0.001 4e-4,10e-4 4.3e-4,9.9e-4 4.3e-4,0.001 4.9e-4,0.001 5e-4,0.001 2.6e-4,5.3e-4 4.9e-4,0.001 4.9e-4,9.9e-4", + "fill": { + "paint": "transparent" + }, + "id": "path2631", + "name": "path2631", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.28853,197.63649 v 0.003 l 0.01,0.008 0.009,0.009 0.01,0.008 0.009,0.009 v 0.002 l 0.01,0.008 0.009,0.003 0.009,0.003 0.01,0.003 0.009,0.003", + "fill": { + "paint": "transparent" + }, + "id": "path2632", + "name": "path2632", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 186.11111,192.0868 v -0.0199 -0.0199 -0.0199 l -0.009,-0.0227 v -0.0114 l -0.009,-0.0227 -0.009,-0.0227 -0.009,-0.0227 -0.009,-0.0227 v -0.009 l -0.0113,-0.0227 -0.0113,-0.0227 -0.0151,-0.0227 -0.0151,-0.0227 v -0.003 -0.002 l -0.0168,-0.0227 -0.0168,-0.0227 -0.0191,-0.0227 -0.0191,-0.0227", + "fill": { + "paint": "transparent" + }, + "id": "path2633", + "name": "path2633", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 181.30075,192.62299 -9e-5,-0.0255 v -0.0306 -0.0199 -0.0342 -0.0342 -0.0199 l 0.009,-0.0345 0.009,-0.0342 0.01,-0.0382 0.01,-0.0382 0.009,-0.0306 0.009,-0.0142 0.0121,-0.0342 0.0121,-0.0342 0.009,-0.0199 0.0121,-0.0305 0.0121,-0.0307 0.01,-0.0199 0.0121,-0.0255 0.0143,-0.0227 0.0121,-0.0199 0.0121,-0.0199 0.0121,-0.0199", + "fill": { + "paint": "transparent" + }, + "id": "path2634", + "name": "path2634", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 178.81061,192.20179 7e-5,-0.0255 v -0.0254 -0.0255 -0.0307 l 0.009,-0.0305 0.01,-0.0227 0.009,-0.0306 0.01,-0.0305 0.009,-0.0306 0.009,-0.0306 0.0121,-0.0305 0.009,-0.0114 0.01,-0.0227 0.0121,-0.0306 0.0143,-0.0305 0.0121,-0.0227 0.0143,-0.0255 0.0143,-0.0255 0.0143,-0.0227 0.0143,-0.0227 0.0143,-0.0227 v -0.003 l 0.0143,-0.0199 0.0143,-0.0142 0.0143,-0.0142", + "fill": { + "paint": "transparent" + }, + "id": "path2635", + "name": "path2635", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.39063,191.76821 4.9e-4,-0.0199 v -0.0199 -0.0199 -0.0199 l 0.01,-0.0227 v -0.008 -0.009 l 0.01,-0.0227 0.009,-0.0227 0.009,-0.0227 0.009,-0.0227 0.01,-0.0227", + "fill": { + "paint": "transparent" + }, + "id": "path2636", + "name": "path2636", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 178.00894,191.29642 -0.009,-5.3e-4 -0.0329,-0.002 -0.0329,-9.9e-4 -0.0319,-2.7e-4 -0.0319,5.2e-4 -0.0121,5.3e-4 -0.0302,0.001 -0.0302,0.002 -0.0293,0.003 -0.0285,0.003 -0.0168,0.002 -0.0269,0.008 -0.0259,0.008 -0.0252,0.009 -0.0241,0.008 -0.0236,0.009 -0.0214,0.008 -0.0214,0.009 -0.0191,0.008 -0.0191,0.008", + "fill": { + "paint": "transparent" + }, + "id": "path2637", + "name": "path2637", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.44942,191.54892 0.0168,-0.0142 0.0168,-0.0142 0.0191,-0.0142 0.0191,-0.0142 0.0214,-0.0142 0.0191,-0.0114 0.0236,-0.0142 0.0241,-0.0142 0.0252,-0.0113 0.0259,-0.0114 0.0276,-0.0114 0.0121,-0.003 0.0286,-0.0114 0.0293,-0.0114 0.0302,-0.0114 0.0312,-0.0114 0.0319,-0.008 v -2.6e-4 l 0.0285,-0.008 0.0329,-0.009 0.0329,-0.008 0.0329,-0.008 0.0326,-0.009", + "fill": { + "paint": "transparent" + }, + "id": "path2638", + "name": "path2638", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.35225,191.75096 v -0.0142 -0.0142 -0.0142 -0.0142 l 0.01,-0.0142 0.009,-0.0142 0.009,-0.0113 0.009,-0.0142 0.01,-0.0142 0.0121,-0.0142 0.0121,-0.0142 0.0121,-0.0142 0.0143,-0.0142 v -0.003", + "fill": { + "paint": "transparent" + }, + "id": "path2639", + "name": "path2639", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.28407,210.48546 1.7e-4,5.3e-4 2.5e-4,0.001 4.2e-4,0.001 4e-4,0.001 4.3e-4,9.9e-4 4.3e-4,0.001 4.9e-4,0.001 5e-4,10e-4 2.6e-4,5.2e-4 4.9e-4,10e-4 4.9e-4,9.9e-4", + "fill": { + "paint": "transparent" + }, + "id": "path2640", + "name": "path2640", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.28853,210.49685 v 0.003 l 0.01,0.008 0.009,0.009 0.01,0.008 0.009,0.009 v 0.002 l 0.01,0.008 0.009,0.003 0.009,0.003 0.01,0.003 0.009,0.003", + "fill": { + "paint": "transparent" + }, + "id": "path2641", + "name": "path2641", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.44942,191.54892 v -0.003 l -0.01,-0.0113 -0.01,-0.0114 -0.009,-0.0114 v -0.003 l -0.009,-0.0114 v -0.008 -0.009 l -9.9e-4,-0.008 -7e-5,-0.009 9.9e-4,-0.008 v -0.009 l 7e-5,-1.6e-4 v -0.009 -0.009 l 9e-5,-2e-4 v -0.003 l 0.01,-0.003", + "fill": { + "paint": "transparent" + }, + "id": "path2642", + "name": "path2642", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.28239,204.54331 4.9e-4,0.008 v 0.009 0.008 0.008 l 0.009,0.009 0.01,0.008 0.01,0.009 0.009,0.008 0.009,0.009 0.01,0.008 0.009,0.008 0.0121,0.009", + "fill": { + "paint": "transparent" + }, + "id": "path2643", + "name": "path2643", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.35225,191.75096 v -0.002 l -0.009,-0.003 -0.009,-0.003 -0.01,-0.008 -0.009,-0.009 -0.01,-0.008 -0.009,-0.003 -0.01,-0.009 -0.009,-0.008 -0.009,-0.009 v -0.009", + "fill": { + "paint": "transparent" + }, + "id": "path2644", + "name": "path2644", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 186.11111,185.38961 -2.6e-4,0.003 v 0.0199 0.0199 0.0142 l -0.009,0.0142 v 0.008 l -0.009,0.0142 -0.009,0.0142 -0.009,0.0113 -0.009,0.0114 -0.009,0.009 -0.009,0.0113 -0.009,0.0114 -0.009,0.008 -0.009,0.009 -0.009,0.008 -0.0113,0.009 -0.0113,0.008 -0.0113,0.009 -0.0113,0.008", + "fill": { + "paint": "transparent" + }, + "id": "path2645", + "name": "path2645", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 181.30075,185.76575 -9e-5,0.0199 4.2e-4,0.0227 v 0.0142 0.0227 0.0142 0.0142 0.0142 0.0114 l 9.9e-4,0.002 0.009,0.0114 0.009,0.008 v 0.003 l 0.009,0.008 0.009,0.009 v 0.003 l 0.01,0.003 0.009,0.003 0.009,0.002 0.01,0.002 0.009,10e-4", + "fill": { + "paint": "transparent" + }, + "id": "path2646", + "name": "path2646", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 178.81061,185.29837 -1e-4,0.0142 4.9e-4,0.0227 v 0.0199 0.0199 0.0142 0.0142 l 4.9e-4,0.002 0.009,0.0142 0.01,0.0114 v 0.003 l 0.009,0.0114 0.009,0.009 v 0.003 l 0.01,0.009 0.009,0.008 0.009,0.003 0.009,0.008 0.009,0.003 0.01,0.002 0.01,0.002 0.009,0.002", + "fill": { + "paint": "transparent" + }, + "id": "path2647", + "name": "path2647", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.39063,184.85262 1.6e-4,0.0114 v 0.0142 0.0142 0.0142 0.0142 l 0.009,0.0142 0.009,0.0142 0.01,0.0114 0.009,0.0114 0.01,0.0114 0.01,0.0114", + "fill": { + "paint": "transparent" + }, + "id": "path2648", + "name": "path2648", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.28407,223.34587 1.7e-4,5.3e-4 2.5e-4,0.001 4.2e-4,0.001 4e-4,0.001 4.3e-4,9.9e-4 4.3e-4,0.001 4.9e-4,0.001 5e-4,10e-4 2.6e-4,5.3e-4 4.9e-4,0.001 4.9e-4,9.9e-4", + "fill": { + "paint": "transparent" + }, + "id": "path2649", + "name": "path2649", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.28853,223.35729 v 0.003 l 0.01,0.009 0.009,0.008 0.01,0.009 0.009,0.008 v 0.002 l 0.01,0.009 0.009,0.003 0.009,0.003 0.01,0.003 0.009,0.003", + "fill": { + "paint": "transparent" + }, + "id": "path2650", + "name": "path2650", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.28239,217.40366 4.9e-4,0.009 v 0.008 0.009 0.008 l 0.009,0.009 0.01,0.008 0.01,0.008 0.009,0.009 0.009,0.008 0.01,0.009 0.009,0.008 0.0121,0.009", + "fill": { + "paint": "transparent" + }, + "id": "path2651", + "name": "path2651", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.43447,185.00579 v -10e-4 l -0.0121,-0.0114 -0.0121,-0.0114 -0.01,-0.0114 -0.009,-0.0113 -0.01,-0.0114 -0.009,-0.0114 -0.009,-0.0114 -0.009,-0.0142 -0.01,-0.0142 v -0.0142 -0.0142 l -4.3e-4,-0.003 v -0.0142", + "fill": { + "paint": "transparent" + }, + "id": "path2652", + "name": "path2652", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 185.90543,178.8173 0.0191,0.0227 0.0191,0.0227 0.0191,0.0227 0.0168,0.0227 0.009,0.009 0.009,0.0114 0.0168,0.0227 0.0151,0.0227 0.0151,0.0227 0.0113,0.0227 0.009,0.0142 0.0113,0.0227 0.009,0.0227 0.009,0.0227 0.009,0.0227 0.009,0.0199 0.009,0.0227 v 0.0199 0.0199 0.0199", + "fill": { + "paint": "transparent" + }, + "id": "path2653", + "name": "path2653", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 181.48145,179.13852 -0.0121,0.0199 -0.0121,0.0199 -0.0121,0.0199 -0.0143,0.0227 -0.0121,0.0255 -0.01,0.0199 -0.0121,0.0305 -0.0121,0.0306 -0.01,0.0199 -0.0121,0.0342 -0.0121,0.0342 -0.01,0.0142 -0.009,0.0306 -0.009,0.0382 -0.009,0.0382 -0.01,0.0342 -0.01,0.0342 v 0.0199 0.0342 0.0342 0.0199 0.0306 l 9e-5,0.0255", + "fill": { + "paint": "transparent" + }, + "id": "path2654", + "name": "path2654", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 179.03917,178.7259 -0.0143,0.0142 -0.0143,0.0142 -0.0143,0.0199 v 0.003 l -0.0143,0.0227 -0.0143,0.0227 -0.0143,0.0227 -0.0143,0.0254 -0.0143,0.0255 -0.0121,0.0227 -0.0143,0.0306 -0.0121,0.0305 -0.01,0.0227 -0.009,0.0114 -0.0121,0.0305 -0.01,0.0306 -0.01,0.0305 -0.009,0.0307 -0.009,0.0305 -0.01,0.0227 -0.009,0.0306 v 0.0306 0.0255 0.0255 l -1e-4,0.0254", + "fill": { + "paint": "transparent" + }, + "id": "path2655", + "name": "path2655", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.44942,178.68857 v 0.003 l -0.01,0.0227 -0.01,0.0227 -0.009,0.0227 -0.009,0.0227 -0.01,0.0227 v 0.008 l -0.009,0.0227 v 0.0199 0.0199 0.0199 l -4.9e-4,0.0199", + "fill": { + "paint": "transparent" + }, + "id": "path2656", + "name": "path2656", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.44942,178.68857 0.0168,-0.0142 0.0168,-0.0142 0.0191,-0.0142 0.0191,-0.0142 0.0214,-0.0142 0.0191,-0.0114 0.0236,-0.0142 0.0241,-0.0142 0.0252,-0.0114 0.0259,-0.0113 0.0276,-0.0114 0.0121,-0.003 0.0286,-0.0113 0.0293,-0.0114 0.0302,-0.0114 0.0312,-0.0114 0.0319,-0.009 v -2.5e-4 l 0.0285,-0.009 0.0329,-0.008 0.0329,-0.009 0.0329,-0.008 0.0326,-0.008", + "fill": { + "paint": "transparent" + }, + "id": "path2657", + "name": "path2657", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 178.00894,178.436 -0.009,-5.2e-4 -0.0329,-0.002 -0.0329,-9.9e-4 -0.0319,-2.7e-4 -0.0319,5.3e-4 -0.0121,5.2e-4 -0.0302,0.001 -0.0302,0.002 -0.0293,0.003 -0.0285,0.003 -0.0168,0.002 -0.0269,0.008 -0.0259,0.009 -0.0252,0.008 -0.0241,0.009 -0.0236,0.008 -0.0214,0.009 -0.0214,0.008 -0.0191,0.008 -0.0191,0.009", + "fill": { + "paint": "transparent" + }, + "id": "path2658", + "name": "path2658", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.35225,178.89052 v -0.0142 -0.0142 -0.0142 -0.0142 l 0.01,-0.0142 0.009,-0.0142 0.009,-0.0114 0.009,-0.0142 0.01,-0.0142 0.0121,-0.0142 0.0121,-0.0142 0.0121,-0.0142 0.0143,-0.0142 v -0.003", + "fill": { + "paint": "transparent" + }, + "id": "path2659", + "name": "path2659", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.44942,178.68857 v -0.003 l -0.01,-0.0113 -0.01,-0.0114 -0.009,-0.0114 v -0.003 l -0.009,-0.0114 v -0.008 -0.009 l -9.9e-4,-0.008 -7e-5,-0.009 9.9e-4,-0.008 v -0.009 l 7e-5,-1.5e-4 v -0.009 -0.008 l 9e-5,-2e-4 v -0.003 l 0.01,-0.003", + "fill": { + "paint": "transparent" + }, + "id": "path2660", + "name": "path2660", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 177.35225,178.89055 v -0.002 l -0.009,-0.003 -0.009,-0.003 -0.01,-0.008 -0.009,-0.009 -0.01,-0.008 -0.009,-0.003 -0.01,-0.009 -0.009,-0.008 -0.009,-0.009 v -0.008", + "fill": { + "paint": "transparent" + }, + "id": "path2661", + "name": "path2661", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 129.76832,154.84769 5.4e-4,0.0142 v 0.0199 0.0199 0.0199 l 0.009,0.0199 0.009,0.0199 0.01,0.0142 0.009,0.0199 0.009,0.0199 0.0121,0.0199 0.0121,0.0199 0.0121,0.0199 0.0143,0.0199 0.009,0.008 0.01,0.009 0.0168,0.0199 0.0168,0.0199 0.0168,0.0199 0.0168,0.0142 0.0191,0.0142 0.0191,0.0142 0.0143,0.0113 0.0191,0.0142 0.0191,0.0113 0.0191,0.0114 0.0191,0.0114 0.0191,0.008 0.0191,0.008", + "fill": { + "paint": "transparent" + }, + "id": "path2662", + "name": "path2662", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 169.32419,172.92749 0.0121,0.009 0.0191,0.008 0.0168,0.009 0.0168,0.008 0.0168,0.003 0.0168,0.003 0.0168,0.002 0.0143,0.001 v 1.4e-4 l 0.0143,5.3e-4 0.0143,-2.5e-4 0.0143,-0.001 0.0143,-0.002 0.0143,-0.002 0.0121,-0.003 0.0121,-0.003 0.0121,-0.003", + "fill": { + "paint": "transparent" + }, + "id": "path2663", + "name": "path2663", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 169.56218,172.94581 0.0121,-0.009 0.01,-0.009 0.009,-0.009 0.01,-0.008 0.01,-0.009 0.009,-0.008 0.009,-0.009 0.009,-0.0113 v -0.001 l 0.01,-0.0114 0.01,-0.0113 0.009,-0.0114 v -0.0114 -0.0142 -0.0142 -0.0142 l 2.4e-4,-0.0114", + "fill": { + "paint": "transparent" + }, + "id": "path2664", + "name": "path2664", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 169.49249,210.26043 0.009,0.003 0.0121,0.003 0.0121,0.003 0.0121,0.002 0.0121,0.002 0.0121,9.9e-4 0.009,2.6e-4 0.0121,-2.6e-4 0.009,-9.9e-4 0.009,-0.002 0.01,-0.002 0.009,-0.003", + "fill": { + "paint": "transparent" + }, + "id": "path2665", + "name": "path2665", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 129.76832,192.25634 5.4e-4,0.0114 v 0.0113 0.0114 0.0114 l 0.009,0.0113 0.009,0.0142 0.01,0.0142 0.009,0.0142 0.009,0.0142 v 0.009 0.008 l 0.0121,0.0142 0.0121,0.0113 0.0121,0.0114 0.0121,0.0114 0.0121,0.009 0.0143,0.008 0.0143,0.009 0.0143,0.008 0.0143,0.009", + "fill": { + "paint": "transparent" + }, + "id": "path2666", + "name": "path2666", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 169.61148,210.26958 0.009,-0.003 0.01,-0.003 0.009,-0.009 0.01,-0.008 0.009,-0.009 v -0.009 l 0.01,-0.009 v -0.009 -0.009 -0.009 -0.008 l 3.2e-4,-0.008", + "fill": { + "paint": "transparent" + }, + "id": "path2667", + "name": "path2667", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 229.21218,250.62836 0.0254,0.0114 0.0297,0.0114 0.0286,0.0114 0.0289,0.009 0.0279,0.008 0.0276,0.008 0.0271,0.009 0.0269,0.008 0.0259,0.009 0.0259,0.003 0.0254,0.003 0.0254,0.002 0.0254,10e-4 0.0254,5.3e-4 0.0254,-1.4e-4 0.0254,-8e-4 0.0226,-0.002 0.0226,-0.002 0.0226,-0.003 0.0201,-0.003 0.0201,-0.003 0.0201,-0.008 v -2.5e-4 l 0.0201,-0.009 0.0201,-0.008 0.0201,-0.009 0.0176,-0.008 0.0176,-0.009", + "fill": { + "paint": "transparent" + }, + "id": "path2668", + "name": "path2668", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 237.05658,126.87141 0.0628,6.04984 0.1038,11.88122 0.0779,11.88135 0.0286,5.83143 0.0395,11.88157 0.0151,11.88162 -0.0101,11.88162 -0.0377,11.88154 -0.0648,11.88146 -0.0905,11.88139 -0.11661,11.8812", + "fill": { + "paint": "transparent" + }, + "id": "path2669", + "name": "path2669", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 145.77751,91.804975 -0.0191,0.0074 -0.0191,0.0074 -0.0168,0.0074 -0.0168,0.0091 -0.0168,0.0091 -0.0168,0.01105 -0.0143,0.01105 -0.0146,0.01105 -0.0143,0.01303 -0.0143,0.01303 -0.0121,0.01501 -0.0121,0.01501 -0.0121,0.01501 -0.01,0.01501 -0.0121,0.01671 -0.009,0.01841 -0.01,0.01841 -0.009,0.01898 -0.01,0.01982 -0.009,0.02067 -0.01,0.02152 -0.009,0.02209 -0.009,0.02294 v 0.02379 0.02436 0.02521 l -4.9e-4,0.01841", + "fill": { + "paint": "transparent" + }, + "id": "path2670", + "name": "path2670", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 153.18423,89.512946 -0.68506,0.235344 -0.68509,0.235342 -0.68506,0.235343 -0.68509,0.235344 -0.68509,0.235343 -0.68507,0.235344 -0.68508,0.235343 -0.6851,0.235344 -0.68506,0.235342 -0.68509,0.235343", + "fill": { + "paint": "transparent" + }, + "id": "path2671", + "name": "path2671", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 236.46456,246.60668 v 0.0227 l -1e-4,0.0227 v 0.0227 0.0227 0.0227 0.0199 l -0.01,0.0199 -0.0101,0.0199 -0.0101,0.0199 -0.0101,0.0199 -0.01,0.0142 -0.0101,0.0114 -0.0101,0.0142 -0.0126,0.0142 -0.0101,0.0142 -0.0126,0.0142 -0.0101,0.0142 -0.0151,0.0114 -0.0151,0.0114 -0.0151,0.0113 -0.0151,0.0114 -0.0151,0.008 -0.0151,0.009", + "fill": { + "paint": "transparent" + }, + "id": "path2672", + "name": "path2672", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 235.61949,126.23283 0.0352,0.015 0.0352,0.0167 0.0347,0.0167 0.0347,0.0184 0.0347,0.0187 0.0334,0.0199 0.0337,0.021 0.0332,0.0218 0.0332,0.023 0.0319,0.0244 0.0322,0.0252 0.0314,0.0264 0.0304,0.0271 0.0304,0.0284 0.0297,0.0294 0.0286,0.0305 0.0289,0.0314 0.0276,0.0325 0.0259,0.0336 0.0101,0.0131 0.0101,0.0111 0.0254,0.0344 0.0254,0.0344 0.0226,0.0344 0.0201,0.0348 0.0201,0.0344 0.0176,0.0344 0.0176,0.0344 0.0151,0.0344 0.0101,0.034 0.01,0.0336 0.0101,0.0336 0.0101,0.0332 0.0101,0.0328 0.01,0.0328 0.0101,0.0325 v 0.0322 0.0317 l 3.6e-4,0.0314 v 0.0309", + "fill": { + "paint": "transparent" + }, + "id": "path2673", + "name": "path2673", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 230.04682,130.23592 v -0.0306 -0.0314 -0.0318 l -0.0101,-0.0325 -0.0101,-0.0331 -0.0101,-0.0337 -0.01,-0.0342 -0.0101,-0.0348 -0.0101,-0.0357 -0.01,-0.017 -0.0151,-0.0362 -0.0176,-0.0362 -0.0176,-0.0362 -0.0201,-0.0362 -0.0201,-0.0362 -0.0226,-0.0362 -0.0254,-0.0359 -0.0254,-0.0359 -0.0254,-0.0337 -0.0259,-0.0331 -0.0279,-0.0339 -0.0289,-0.0331 -0.0297,-0.0326 -0.0304,-0.0314 -0.0314,-0.0305 -0.0322,-0.0295 -0.0324,-0.0286 -0.0334,-0.0283 -0.0176,-0.0142 -0.0334,-0.0255 -0.0334,-0.0255 -0.0337,-0.0227 -0.0337,-0.0227 -0.0334,-0.0199 -0.0334,-0.0199 -0.0334,-0.017 -0.0334,-0.017 -0.0337,-0.017", + "fill": { + "paint": "transparent" + }, + "id": "path2674", + "name": "path2674", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 230.04682,130.23592 0.0636,6.11255 0.10606,12.00205 0.0794,12.00217 0.0297,5.88959 0.0405,12.00229 0.0151,12.00248 -0.0101,12.00238 -0.0385,12.0024 -0.0656,12.00234 -0.0925,12.0022 -0.11913,12.00191", + "fill": { + "paint": "transparent" + }, + "id": "path2675", + "name": "path2675", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 146.33344,91.866087 -0.0285,-0.01303 -0.0293,-0.01105 -0.0285,-0.01105 -0.0279,-0.0091 -0.0276,-0.0091 -0.0269,-0.0074 -0.0269,-0.0074 -0.0259,-0.0057 -0.0259,-0.0037 -0.0252,-0.0037 -0.0252,-0.0037 -0.0191,-0.0019 -0.0241,-0.0013 -0.0241,-6.32e-4 -0.0241,1.1e-4 -0.0236,6.59e-4 -0.0236,0.0019 -0.0214,0.0019 -0.0214,0.0037 -0.0191,0.0037 -0.0191,0.0037 -0.0191,0.0057 -0.0191,0.0057", + "fill": { + "paint": "transparent" + }, + "id": "path2676", + "name": "path2676", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 236.45936,127.35782 0.0628,6.07247 0.10454,11.92464 0.0789,11.92488 0.0297,5.85225 0.0402,11.92502 0.0151,11.92504 -0.0126,11.92505 -0.0385,11.92506 -0.0648,11.92496 -0.0915,11.92481 -0.11737,11.92468", + "fill": { + "paint": "transparent" + }, + "id": "path2677", + "name": "path2677", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 236.10402,246.81186 -0.60514,0.34496 -0.60519,0.34492 -0.60522,0.34457 -0.60522,0.34492 -0.60522,0.34457 -0.60524,0.34493 -0.60512,0.34455 -0.60521,0.34493 -0.6052,0.34456 -0.60521,0.34493", + "fill": { + "paint": "transparent" + }, + "id": "path2678", + "name": "path2678", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 236.45936,127.35782 -0.64133,0.2878 -0.64116,0.28781 -0.64138,0.2878 -0.64123,0.28781 -0.64123,0.2878 -0.64121,0.28779 -0.64138,0.28781 -0.64113,0.28782 -0.64134,0.2878 -0.64115,0.2878", + "fill": { + "paint": "transparent" + }, + "id": "path2679", + "name": "path2679", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 153.06667,89.301295 0.0168,-0.0057 0.0191,-0.0057 0.0191,-0.0037 0.0191,-0.0037 0.0214,-0.0019 0.0214,-0.0019 0.0214,-0.0013 0.0236,-6.06e-4 0.0236,2.21e-4 0.0236,0.0013 0.0236,0.0019 0.0168,0.0019 0.0236,0.0037 0.0236,0.0037 0.0241,0.0057 0.0241,0.0057 0.0241,0.0074 0.0252,0.0074 0.0252,0.0091 0.0259,0.0091 0.0269,0.01105 0.0269,0.01303 0.0276,0.01303 v 0.0013", + "fill": { + "paint": "transparent" + }, + "id": "path2680", + "name": "path2680", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 236.45936,127.35782 0.0362,-0.0184 0.0498,-0.025 0.0473,-0.0241 0.0445,-0.0238 0.042,-0.0238 0.0402,-0.0233 0.0101,-0.004 0.0362,-0.0221 0.0334,-0.021 0.0314,-0.021 0.0286,-0.0207 0.0271,-0.0204 0.0254,-0.0199 0.0101,-0.004 0.0226,-0.0184 0.0201,-0.0168 0.0176,-0.0167 0.0151,-0.0168 0.0151,-0.015 0.0101,-0.015 0.0101,-0.015 4.2e-4,-5.3e-4 0.0101,-0.015 0.0101,-0.013 0.01,-0.0131 0.0101,-0.013 v -0.0131 -0.0111 -0.0111 l 4.6e-4,-0.0111", + "fill": { + "paint": "transparent" + }, + "id": "path2681", + "name": "path2681", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 236.46144,126.07663 -0.0101,-0.006 -0.0151,-0.004 -0.0151,-0.004 -0.0176,-0.004 -0.0176,-0.004 -0.0201,-0.002 -0.0201,-0.002 -0.0226,-0.001 -1.5e-4,-2e-5 -0.0254,-5.3e-4 -0.0254,2.7e-4 -0.0254,10e-4 -0.0254,0.002 -0.0271,0.004 -0.0286,0.004 -0.0304,0.006 -0.0101,0.001 -0.0352,0.007 -0.0362,0.007 -0.0369,0.009 -0.0385,0.009 -0.0402,0.0111 -0.042,0.013 -0.0101,0.004 -0.045,0.015 -0.047,0.0168 -0.048,0.0184 -0.0505,0.0187 -0.0523,0.0207 -0.0397,0.0168", + "fill": { + "paint": "transparent" + }, + "id": "path2682", + "name": "path2682", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 153.598,89.370845 0.0345,-0.01303 0.0352,-0.01105 0.0362,-0.01105 0.0362,-0.0091 0.0369,-0.0091 0.0369,-0.0091 0.0369,-0.0074 v -2.23e-4 l 0.0378,-0.0074 0.0378,-0.0057 0.0378,-0.0057 0.0378,-0.0037 0.0378,-0.0037 0.0378,-0.0019 0.0378,-0.0019 0.0378,-0.0013 0.0378,-2.07e-4 0.0378,6.59e-4 0.0369,0.0013 0.0369,0.0019 0.0378,0.0037 0.0378,0.0037 0.0378,0.0037 0.0378,0.0057 0.0378,0.0074 0.0386,0.0074 0.0386,0.0091 0.0386,0.0091 0.0386,0.0091 0.0386,0.01105 0.0386,0.01105 0.0386,0.01303 0.0378,0.01303 0.0378,0.01501 0.0378,0.01501 0.0378,0.01671 0.0121,0.0037", + "fill": { + "paint": "transparent" + }, + "id": "path2683", + "name": "path2683", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 237.06169,245.6857 -1.3e-4,0.009 v 0.0342 0.0342 0.0342 l -0.0101,0.0345 -0.0101,0.0306 -0.0101,0.0307 -0.0101,0.0305 -0.0101,0.0306 -0.0101,0.0306 -0.0101,0.0305 -0.0101,0.0306 -0.0101,0.0305 -0.0101,0.0255 -0.0151,0.0255 -0.0151,0.0255 -0.0151,0.0255 -0.0176,0.0255 -0.0176,0.0254 -0.0201,0.0255 -0.0201,0.0255 -0.0201,0.0255 -0.0226,0.0227 -0.0226,0.0227 -0.0254,0.0227 -0.0254,0.0227 -0.0254,0.0227 -0.0254,0.0227 -0.0269,0.0227 -0.0269,0.0227 -0.0276,0.0199 -0.0286,0.0199 -0.0297,0.0199 -0.0297,0.0199 -0.0304,0.0199 -0.0304,0.0142", + "fill": { + "paint": "transparent" + }, + "id": "path2684", + "name": "path2684", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 229.84207,250.6562 0.0176,-0.008 0.0151,-0.0114 0.0151,-0.0113 0.0151,-0.0114 0.0151,-0.0114 0.0151,-0.0113 0.0151,-0.0142 0.0126,-0.0142 0.0101,-0.0142 0.01,-0.0142 0.0101,-0.0142 0.0101,-0.0113 0.0101,-0.0199 0.01,-0.0199 0.0101,-0.0199 0.0101,-0.0199 0.0101,-0.0227 0.01,-0.0227 0.0101,-0.0227 v -0.0227 -0.0227 -0.0255 l 5.1e-4,-0.0227", + "fill": { + "paint": "transparent" + }, + "id": "path2685", + "name": "path2685", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 235.61949,126.23283 -0.64131,0.28781 -0.64126,0.28784 -0.64125,0.28781 -0.64123,0.2878 -0.64134,0.28781 -0.64123,0.2878 -0.64123,0.2878 -0.64133,0.28779 -0.64118,0.2878 -0.64131,0.28783", + "fill": { + "paint": "transparent" + }, + "id": "path2686", + "name": "path2686", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 169.80496,160.00504 -0.0143,-0.69274 -0.0436,-0.70869 -0.0731,-0.72541 -0.10354,-0.74251 -0.0638,-0.37863 -0.15091,-0.76942 -0.18185,-0.78044 -0.21377,-0.79182 -0.24629,-0.80369 -0.0909,-0.2753 -0.29115,-0.82047 -0.32281,-0.8255 -0.35488,-0.83043 -0.38706,-0.83485 -0.0881,-0.18127 -0.42677,-0.83977 -0.45709,-0.83838 -0.48739,-0.83661 -0.51813,-0.83456 -0.0731,-0.11301 -0.12689,-0.19488 -0.55785,-0.8279 -0.58245,-0.81593 -0.60632,-0.8029 -0.62932,-0.78919 -0.65166,-0.77442 -0.67314,-0.75912 -0.6939,-0.74293 -0.71389,-0.72614 -0.1433,-0.14162 -0.72749,-0.69643 -0.73874,-0.67216 -0.74974,-0.64814 -0.76066,-0.62451 -0.23941,-0.18976 -0.76754,-0.58838 -0.77215,-0.56121 -0.77654,-0.53433 -0.78047,-0.50779", + "fill": { + "paint": "transparent" + }, + "id": "path2687", + "name": "path2687", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 153.52602,134.78301 -0.4145,-0.25803 -0.56288,-0.3378 -0.56022,-0.32178 -0.55785,-0.30627 -0.55569,-0.29103 -0.5539,-0.27644 -0.55222,-0.26199 -0.55064,-0.24756 -0.54954,-0.23395 -0.16569,-0.068 -0.54056,-0.213 -0.53373,-0.1977 -0.52739,-0.18269 -0.52141,-0.16824 -0.51527,-0.15409 -0.50981,-0.14021 -0.50421,-0.1266 -0.49907,-0.11329 -0.49404,-0.10028 -0.43232,-0.0776 -0.47875,-0.0748 -0.47085,-0.0623 -0.4633,-0.0495 -0.4559,-0.0371 -0.0214,-0.001 -0.44842,-0.0254 -0.44105,-0.0142 -0.4334,-9.9e-4 -0.42561,0.0114 -0.41752,0.0227 -0.0697,0.003 -0.40972,0.0342 -0.40252,0.0456 -0.3946,0.0564 -0.38637,0.0671 -0.37789,0.0774 -0.0866,0.0199 -0.37109,0.0906 -0.36446,0.1014 -0.3568,0.11188 -0.34826,0.12151 -0.33886,0.13085", + "fill": { + "paint": "transparent" + }, + "id": "path2688", + "name": "path2688", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 220.54144,230.28249 -0.0201,-0.0114 -0.0201,-0.0114 -0.0201,-0.0114 -0.0201,-0.0114 -0.0201,-0.0142 -0.0201,-0.0142 -0.0201,-0.0142 -0.0176,-0.0142 -0.0176,-0.0142 -0.0176,-0.0199 -0.0176,-0.0199 -0.0151,-0.0199 -0.0151,-0.0199 -0.0151,-0.0199 -0.0101,-0.0227 -8e-5,-1.1e-4 -0.0101,-0.0227 -0.0101,-0.0227 -0.0101,-0.0227 -0.01,-0.0227 -0.0101,-0.0227 -0.0101,-0.0255 -0.0101,-0.0255 -0.0101,-0.0254 -0.0101,-0.0255 -0.0101,-0.0255 v -0.0306 -0.0305 -0.0305 l -4.1e-4,-0.0342 v -0.008", + "fill": { + "paint": "transparent" + }, + "id": "path2689", + "name": "path2689", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 176.61939,177.50893 0.0191,-0.008 0.0191,-0.009 0.0214,-0.008 0.0214,-0.008 0.0214,-0.003 0.0236,-0.003 0.0236,-0.003 0.0241,-0.002 0.0252,-0.002 0.0252,-0.001 0.0259,-2e-4 0.0269,5.3e-4 0.0277,0.001 0.0276,0.002 0.0285,0.003 0.0285,0.003 0.0293,0.003 0.0293,0.008 0.0191,0.003", + "fill": { + "paint": "transparent" + }, + "id": "path2690", + "name": "path2690", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 176.57649,190.38671 0.0191,-0.008 0.0191,-0.009 0.0214,-0.008 0.0214,-0.009 0.0214,-0.003 0.0236,-0.003 0.0236,-0.003 0.0241,-0.002 0.0252,-0.002 0.0252,-0.001 0.0259,-2e-4 0.0269,5.3e-4 0.0276,10e-4 0.0276,0.002 0.0285,0.003 0.0285,0.003 0.0293,0.003 0.0293,0.009 0.0191,0.003", + "fill": { + "paint": "transparent" + }, + "id": "path2691", + "name": "path2691", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 176.56667,203.25108 0.0191,-0.008 0.0191,-0.008 0.0191,-0.009 0.0214,-0.008 0.0214,-0.003 0.0236,-0.003 0.0236,-0.003 0.0241,-0.002 0.0252,-0.002 0.0252,-0.001 0.0259,-2.2e-4 0.0269,5.2e-4 0.0276,0.001 0.0276,0.002 0.0285,0.003 0.0285,0.003 0.0293,0.009 0.0295,0.008 0.0191,0.003", + "fill": { + "paint": "transparent" + }, + "id": "path2692", + "name": "path2692", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 176.58983,216.10212 0.0191,-0.008 0.0191,-0.008 0.0191,-0.009 0.0214,-0.008 0.0214,-0.003 0.0236,-0.003 0.0236,-0.003 0.0241,-0.002 0.0252,-0.002 0.0252,-0.001 0.0259,-2e-4 0.0269,5.3e-4 0.0276,0.001 0.0279,0.002 0.0285,0.003 0.0285,0.003 0.0293,0.009 0.0293,0.008 0.0168,0.003", + "fill": { + "paint": "transparent" + }, + "id": "path2693", + "name": "path2693", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 180.1097,248.72659 -0.0595,-0.0199 -0.19876,-0.0708 -0.19545,-0.072 -0.19233,-0.0731 -0.18927,-0.0742 -0.0705,-0.0255 -0.18424,-0.0757 -0.18089,-0.0768 -0.17733,-0.0776 -0.17379,-0.0788 -0.17044,-0.0796 -0.1669,-0.0802 -0.1635,-0.0813 -0.15994,-0.0822 -0.15687,-0.083 -0.1533,-0.0839 -0.14999,-0.0847 -0.14687,-0.0853 -0.14378,-0.0861", + "fill": { + "paint": "transparent" + }, + "id": "path2694", + "name": "path2694", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 153.3595,236.68488 -0.11663,-0.0393 -0.1766,-0.0615 -0.17401,-0.0626 -0.17188,-0.0635 -0.0462,-0.0142 -0.16833,-0.0643 -0.16542,-0.0654 -0.16307,-0.066 -0.16019,-0.0669 -0.1576,-0.0677 -0.15496,-0.0686 -0.15235,-0.0691 -0.14974,-0.07 -0.14709,-0.0708 -0.14473,-0.0714 -0.14212,-0.072", + "fill": { + "paint": "transparent" + }, + "id": "path2695", + "name": "path2695", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 150.96844,235.68957 -0.0352,-0.0199 -0.0671,-0.0345 -0.0671,-0.0342 -0.0312,-0.0142 -0.0664,-0.0342 -0.0664,-0.0382 -0.0655,-0.0382 -0.0654,-0.0382 -0.0648,-0.0382 -0.0647,-0.0382 -0.0648,-0.0382", + "fill": { + "paint": "transparent" + }, + "id": "path2696", + "name": "path2696", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 129.28252,157.09777 0.0121,-0.003 0.0143,-0.003 0.0143,-0.003 0.0143,-0.002 0.0168,-0.002 0.0168,-0.001 0.0168,-2e-4 0.0168,5.3e-4 0.0121,5.3e-4 0.0168,0.002 0.0168,0.002 0.0191,0.003 0.0191,0.003 0.0191,0.008 0.0191,0.008 0.0191,0.009 0.0214,0.008 v 9.9e-4", + "fill": { + "paint": "transparent" + }, + "id": "path2697", + "name": "path2697", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 133.05794,128.01816 -0.21568,0.10956 -0.21399,0.11389 -0.21186,0.11791 -0.20972,0.12207 -0.20734,0.12605 -0.20472,0.13029 -0.20211,0.13398 -0.19924,0.13792 -0.1959,0.14163 -0.19284,0.1453 -0.18946,0.14899 -0.1859,0.15238 -0.1821,0.1555 -0.0335,0.0291 -0.17733,0.15918 -0.17472,0.16344 -0.17162,0.16739 -0.16876,0.17165 -0.16569,0.1756 -0.16255,0.17986 -0.15949,0.18382 -0.15591,0.18807 -0.1526,0.19204 -0.14898,0.19572 -0.14544,0.19968 -0.14189,0.20337 -0.11214,0.16739", + "fill": { + "paint": "transparent" + }, + "id": "path2698", + "name": "path2698", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 128.37651,132.13234 -0.0241,0.0374 -0.0512,0.0788 -0.0505,0.0791 -0.026,0.0413 -0.0488,0.0793 -0.0488,0.0796 -0.0479,0.0799 -0.0471,0.0802 -0.0462,0.0805 -0.0453,0.0808 -0.0452,0.0811", + "fill": { + "paint": "transparent" + }, + "id": "path2699", + "name": "path2699", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 127.89573,132.93079 -0.10877,0.20195 -0.1059,0.20564 -0.10259,0.20846 -0.0993,0.21186 -0.0714,0.15947 -0.0938,0.2178 -0.0902,0.22094 -0.0869,0.22403 -0.0831,0.22716 -0.0797,0.23084 -0.0764,0.23367 -0.0731,0.23736 -0.0688,0.24046 -0.0655,0.24387 -0.0621,0.24727 -0.0579,0.25039 -0.0545,0.25378 -0.0505,0.2569 -0.0336,0.18665", + "fill": { + "paint": "transparent" + }, + "id": "path2700", + "name": "path2700", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 220.19445,229.65542 v -0.0524 l 0.0101,-0.0535 0.0101,-0.0538 0.0101,-0.0547 0.0126,-0.0555 0.0151,-0.0566 0.0176,-0.0572 0.0226,-0.0581 0.0254,-0.0592 0.0271,-0.0601 0.0294,-0.0606 0.0324,-0.0615 0.0226,-0.0382 8e-5,-2.3e-4 0.0377,-0.0626 0.0402,-0.0615 0.042,-0.06 0.0445,-0.0589 0.046,-0.0578 0.0477,-0.0561 0.0498,-0.0547 0.0523,-0.0535 0.054,-0.0518 0.0555,-0.0504 0.0573,-0.049 0.0586,-0.0473 0.0151,-0.0114 0.0586,-0.0439 0.0585,-0.0416 0.0593,-0.0391 0.0596,-0.0382 0.0593,-0.0342 0.0596,-0.0305 0.0384,-0.0199 0.0585,-0.0255 0.0583,-0.0255 0.0573,-0.0227 0.0571,-0.0199 0.0563,-0.0199 0.0563,-0.0142 0.0176,-0.003 0.054,-0.0113 0.0523,-0.009 0.0505,-0.008 0.0488,-0.009 0.048,-0.003 0.046,-0.001 0.0455,5.3e-4 0.0276,0.001 0.0445,0.003 0.0437,0.009 0.042,0.008 0.0402,0.008 0.0385,0.0114 0.0367,0.0114 0.0352,0.0114", + "fill": { + "paint": "transparent" + }, + "id": "path2701", + "name": "path2701", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 169.80496,211.25748 v 0.009 0.0227 0.0199 0.0199 0.0199 l -0.009,0.0142 -0.009,0.0142 -0.01,0.0142 -0.009,0.0142 -0.009,0.0142 -2.6e-4,5.3e-4 -0.009,0.0142 -0.01,0.0114 -0.01,0.0113 -0.0121,0.0114 -0.0121,0.0114 -0.0121,0.0113 -0.0121,0.009 -0.0121,0.008 -0.0121,0.008 -0.0143,0.009", + "fill": { + "paint": "transparent" + }, + "id": "path2702", + "name": "path2702", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 169.80496,173.32235 v 0.002 l -4.9e-4,0.0199 v 0.0142 0.0142 0.0142 0.0142 l -0.009,0.0142 -0.009,0.0114 -0.009,0.0113 -0.01,0.009 -0.01,0.0113 -0.009,0.0114 -0.01,0.0114 -0.009,0.008 -0.009,0.009 -0.0121,0.009 -0.0121,0.009 -0.0121,0.009", + "fill": { + "paint": "transparent" + }, + "id": "path2703", + "name": "path2703", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 169.38448,175.01881 0.0214,0.0113 0.0214,0.0114 0.0214,0.0114 0.0214,0.0113 0.0214,0.0114 0.0214,0.0142 0.0214,0.0142 0.0191,0.0142 0.0191,0.0142 0.0191,0.0199 0.0191,0.0199 0.0191,0.0199 0.0191,0.0227 0.0168,0.0227 0.0143,0.0142 0.0121,0.0142 0.0168,0.0227 0.0143,0.0227 0.0143,0.0227 0.0121,0.0227 0.0121,0.0227 0.009,0.0227 0.009,0.0227 0.01,0.0227 0.009,0.0227 0.009,0.0227 v 0.0227 0.0199 0.0199 l 5e-4,0.0199", + "fill": { + "paint": "transparent" + }, + "id": "path2704", + "name": "path2704", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 187.84924,185.1311 -5.1e-4,0.0199 v 0.0199 0.0199 0.0142 0.0142 l -0.009,0.0142 -0.009,0.0142 -0.009,0.0142 -0.009,0.0114 -0.009,0.008 -0.009,0.0114 -0.009,0.0114 -0.009,0.0113 -0.0113,0.0114 -0.0113,0.008 -0.0113,0.009 -0.0113,0.008 -0.0113,0.009 -0.0113,0.008", + "fill": { + "paint": "transparent" + }, + "id": "path2705", + "name": "path2705", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 187.84924,210.85195 -5.1e-4,0.0199 v 0.0199 0.0199 0.0142 0.0142 l -0.009,0.0142 -0.009,0.0142 -0.009,0.0142 -0.009,0.0114 -0.009,0.009 -0.009,0.0113 -0.009,0.0114 -0.009,0.0114 -0.0113,0.0113 -0.0113,0.009 -0.0113,0.008 -0.0113,0.009 -0.0113,0.008 -0.0113,0.009", + "fill": { + "paint": "transparent" + }, + "id": "path2706", + "name": "path2706", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 187.84924,223.7123 -5.1e-4,0.0199 v 0.0199 0.0199 0.0142 0.0142 l -0.009,0.0142 -0.009,0.0142 -0.009,0.0142 -0.009,0.0114 -0.009,0.009 -0.009,0.0114 -0.009,0.0113 -0.009,0.0114 -0.0113,0.0114 -0.0113,0.008 -0.0113,0.009 -0.0113,0.008 -0.0113,0.008 -0.0113,0.009", + "fill": { + "paint": "transparent" + }, + "id": "path2707", + "name": "path2707", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 187.84924,197.99151 -5.1e-4,0.0199 v 0.0199 0.0199 0.0142 0.0142 l -0.009,0.0142 -0.009,0.0142 -0.009,0.0142 -0.009,0.0114 -0.009,0.009 -0.009,0.0113 -0.009,0.0114 -0.009,0.0114 -0.0113,0.0114 -0.0113,0.009 -0.0113,0.009 -0.0113,0.009 -0.0113,0.008 -0.0113,0.008", + "fill": { + "paint": "transparent" + }, + "id": "path2708", + "name": "path2708", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 177.05549,216.08601 0.66911,0.14813 0.67719,0.14134 0.68551,0.13425 0.69354,0.12718 0.70173,0.12038 0.70968,0.11301 0.71775,0.10621 0.72556,0.0985 0.73336,0.0912 0.11284,0.0114 0.74215,0.083 0.74606,0.0751 0.74983,0.0669 0.75319,0.0589 0.75654,0.0513 0.75947,0.0425 0.76246,0.0342 0.765,0.0255 0.74613,0.0199", + "fill": { + "paint": "transparent" + }, + "id": "path2709", + "name": "path2709", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 177.03256,203.23483 0.67047,0.1487 0.67885,0.1419 0.68709,0.13454 0.69526,0.12774 0.7033,0.12066 0.71144,0.11358 0.71944,0.10621 0.72741,0.0991 0.73513,0.0912 0.12355,0.0142 0.74411,0.083 0.74797,0.0748 0.75175,0.0669 0.75522,0.0589 0.75845,0.0513 0.76145,0.0427 0.76425,0.0342 0.76705,0.0255 0.75817,0.0199", + "fill": { + "paint": "transparent" + }, + "id": "path2710", + "name": "path2710", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 177.08638,177.49237 0.66703,0.14756 0.67525,0.14049 0.68333,0.13369 0.69154,0.12689 0.69951,0.12009 0.70751,0.11301 0.71557,0.10594 0.72329,0.0983 0.73101,0.0909 0.0988,0.0114 0.73975,0.083 0.74357,0.0748 0.74726,0.0669 0.75076,0.0589 0.75392,0.0513 0.75703,0.043 0.75991,0.0342 0.76259,0.0255 0.73002,0.0199", + "fill": { + "paint": "transparent" + }, + "id": "path2711", + "name": "path2711", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 177.0428,190.3704 0.66988,0.14841 0.6782,0.14191 0.68633,0.13453 0.6945,0.12775 0.7027,0.12065 0.7107,0.11386 0.71875,0.10622 0.72658,0.0985 0.73436,0.0915 0.11877,0.0142 0.7433,0.083 0.74727,0.0748 0.7508,0.0671 0.75443,0.0589 0.75763,0.0513 0.76056,0.0427 0.76351,0.0342 0.76607,0.0255 0.75286,0.0199", + "fill": { + "paint": "transparent" + }, + "id": "path2712", + "name": "path2712", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 212.68864,257.58429 0.0621,-5.86661 0.10631,-11.95397 0.0789,-11.95404 0.0304,-6.08743 0.0395,-11.95425 0.01,-11.9543 -0.0151,-11.9543 -0.0395,-11.95433 -0.0663,-11.95427 -0.0922,-11.95408 -0.11787,-11.95382", + "fill": { + "paint": "transparent" + }, + "id": "path2713", + "name": "path2713", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 222.81838,228.55574 v 0.0527 l -0.0101,0.0532 -0.0101,0.0544 -0.01,0.0549 -0.0101,0.0558 -0.0151,0.0567 -0.0176,0.0578 -0.0226,0.0583 -0.0254,0.0592 -0.0271,0.06 -0.0304,0.0612 -0.0324,0.0615 -0.0286,0.0493 -0.0101,0.0142 -0.0395,0.0626 -0.0412,0.0612 -0.0437,0.06 -0.045,0.0583 -0.0467,0.0572 -0.0495,0.0558 -0.0513,0.0544 -0.0528,0.0524 -0.0548,0.0515 -0.0563,0.0495 -0.0581,0.0479 -0.0596,0.0461 -0.0254,0.0142 -0.0593,0.0427 -0.0593,0.0402 -0.0593,0.0382 -0.0596,0.0342 -0.0598,0.0342 -0.0593,0.0306 -0.0498,0.0227 -0.0588,0.0254 -0.0581,0.0227 -0.0573,0.0199 -0.0563,0.0199 -0.0555,0.0142 -0.0555,0.0114 -0.0289,0.008 -0.0523,0.009 -0.0513,0.008 -0.0498,0.009 -0.048,0.003 -0.046,0.001 -0.0445,-5.3e-4 -0.0435,-0.002 -0.0329,-0.003 -0.043,-0.009 -0.042,-0.008 -0.0402,-0.008 -0.0397,-0.0114 -0.0377,-0.0114 -0.0352,-0.0142 -0.0334,-0.0142", + "fill": { + "paint": "transparent" + }, + "id": "path2714", + "name": "path2714", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 123.83792,143.12904 v -0.61757 l -0.0419,-0.66644 -0.0831,-0.73285 -0.0191,-0.13029 -0.14114,-0.85675 -0.19756,-0.97801 -0.10876,-0.48695 -0.34507,-1.43871 -0.23923,-0.9512 -0.0688,-0.27304 -0.53829,-2.14687 -0.41662,-1.76475 -0.35152,-1.62792 -0.28846,-1.49675 -0.144,-0.83396 -0.21377,-1.40875 -0.16949,-1.36236 -0.12689,-1.32151 -0.084,-1.24314 -0.0471,-1.25684 -0.01,-1.22645 0.0293,-1.19751 0.0214,-0.43886 0.0797,-1.14931 0.11548,-1.11839 0.15069,-1.09048 0.1852,-1.06512 0.009,-0.0363 0.22017,-1.03755 0.25269,-1.01027 0.28434,-0.98235 0.31498,-0.95403 0.3449,-0.92547 0.37361,-0.89687 0.40175,-0.86827 0.42912,-0.83991 0.45566,-0.81179 0.48168,-0.78401", + "fill": { + "paint": "transparent" + }, + "id": "path2715", + "name": "path2715", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 170.85114,126.67515 0.24514,0.55407 0.23113,0.58695 0.21807,0.625 0.20615,0.67043 0.1181,0.42554 0.19137,0.76831 0.1757,0.81468 0.16137,0.87249 0.0985,0.611 0.14136,1.0129 0.12378,1.07857 0.10424,1.13454 0.0909,1.27517 0.0714,1.36861 0.0276,0.71575 0.0412,1.57634 0.0168,1.65941 -0.01,1.76243 -0.0362,1.89549 v 0.13567 l -0.0688,2.09325 -0.0971,2.11225 -0.12543,2.13186 -0.0605,0.88759", + "fill": { + "paint": "transparent" + }, + "id": "path2716", + "name": "path2716", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 156.84932,120.38244 0.61235,-0.0284 0.63679,-0.0199 0.61951,-0.009 0.60343,-7e-5 0.32687,0.004 0.56161,0.015 0.53947,0.0233 0.5199,0.0322 0.50251,0.0407 0.28872,0.0275 0.45373,0.0515 0.42986,0.0585 0.40932,0.0652 0.39132,0.0721 0.37546,0.0789 0.22231,0.0517 0.3485,0.0889 0.33264,0.095 0.31751,0.10098 0.30314,0.10694 0.28932,0.11253 0.27585,0.11834 0.12163,0.0558 0.26445,0.12967 0.25587,0.13728 0.24662,0.14451 0.23865,0.15252 0.23279,0.16142 0.22611,0.17065 0.0738,0.0589 0.21661,0.18193 0.21402,0.19427 0.2114,0.20713 0.20902,0.22073 0.20686,0.23515 0.17972,0.21874 0.20401,0.26526 0.20236,0.28236 0.20236,0.30226 0.20379,0.326 0.14137,0.23894 0.21447,0.38153 0.21591,0.40833 0.21995,0.44173 0.13948,0.29343", + "fill": { + "paint": "transparent" + }, + "id": "path2717", + "name": "path2717", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 222.42294,227.9056 0.0254,0.008 0.0226,0.0114 0.0226,0.0114 0.0226,0.0113 0.0226,0.0114 0.0201,0.0114 0.0201,0.0142 v 0.002 l 0.0201,0.0142 0.0176,0.0142 0.0176,0.0142 0.0176,0.0142 0.0176,0.0199 0.0151,0.0199 0.0151,0.0199 0.0151,0.0199 0.0151,0.0199 v 0.002 l 0.0101,0.0227 0.0126,0.0227 0.0101,0.0227 0.0101,0.0227 0.0101,0.0227 0.0101,0.0227 0.0101,0.0255 0.0101,0.0255 0.0101,0.0255 0.01,0.0255 0.0101,0.0306 v 0.0306 0.0306 0.0305 l 4e-4,0.0306 v 0.002", + "fill": { + "paint": "transparent" + }, + "id": "path2718", + "name": "path2718", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 157.20487,119.61721 0.53914,0.002 0.68045,0.013 0.662,0.0227 0.64492,0.0321 0.20686,0.013 0.60606,0.0437 0.58121,0.0523 0.55955,0.0606 0.53979,0.0689 0.0912,0.0131 0.50403,0.076 0.47859,0.0825 0.45607,0.0889 0.43619,0.0954 0.41827,0.10234 0.39201,0.10622 0.38277,0.11457 0.36614,0.1204 0.35025,0.12635 0.33491,0.13225 0.32045,0.13803 0.31365,0.14753 0.30779,0.15723 0.30105,0.16671 0.29366,0.17581 0.28552,0.18436 0.009,0.004 0.27637,0.19281 0.26696,0.20052 0.26528,0.21406 0.26411,0.22828 0.26318,0.24339 0.26311,0.25967 0.10688,0.11032 0.26404,0.28471 0.2646,0.30329 0.26671,0.32452 0.27132,0.34929 0.11259,0.15086 0.28377,0.39423 0.28813,0.42168 0.29592,0.45529 0.16066,0.25628", + "fill": { + "paint": "transparent" + }, + "id": "path2719", + "name": "path2719", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 124.47395,104.90731 0.0121,-0.0168 0.16451,-0.24004 0.16687,-0.23385 0.16926,-0.22778 0.17162,-0.22189 0.17374,-0.21602 0.17595,-0.21039 0.17828,-0.20484 0.18067,-0.19938 0.18303,-0.19407 0.1852,-0.18884 0.18758,-0.18362 0.18994,-0.17864 0.0259,-0.0232 0.19284,-0.17348 0.19519,-0.16861 0.19756,-0.16366 0.19972,-0.15875 0.20161,-0.1538 0.20351,-0.14879 0.20498,-0.1438 0.2066,-0.13878 0.20829,-0.13386 0.2095,-0.12882 0.21065,-0.1238 0.21186,-0.11865 0.21304,-0.11378", + "fill": { + "paint": "transparent" + }, + "id": "path2720", + "name": "path2720", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 204.90862,141.0561 0.39285,-0.28324 0.39954,-0.28097 0.4061,-0.27871 0.41261,-0.27644 0.4192,-0.27389 0.4257,-0.27134 0.43214,-0.2688 0.43088,-0.26171 0.34453,-0.2045 0.4303,-0.24953 0.42518,-0.24048 0.42075,-0.23197 0.41643,-0.22319 0.41273,-0.21526 0.40932,-0.20704 0.40628,-0.19969", + "fill": { + "paint": "transparent" + }, + "id": "path2721", + "name": "path2721", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 175.11588,166.17436 0.01,0.003 0.0236,0.008 0.0241,0.009 0.0143,0.008 0.0241,0.009 0.0241,0.008 0.0252,0.009 0.0252,0.008 0.0252,0.008 0.0252,0.009 0.0259,0.008", + "fill": { + "paint": "transparent" + }, + "id": "path2722", + "name": "path2722", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 175.11588,234.25885 0.01,0.003 0.0236,0.0114 0.0241,0.008 0.0143,0.009 0.0241,0.008 0.0241,0.009 0.0252,0.008 0.0252,0.008 0.0252,0.009 0.0252,0.008 0.0259,0.009", + "fill": { + "paint": "transparent" + }, + "id": "path2723", + "name": "path2723", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 123.6482,143.01356 0.009,0.009 0.0168,0.0113 0.0168,0.0114 0.0121,0.009 0.0191,0.0114 0.0191,0.0114 0.0191,0.0113 0.0191,0.0114 0.0191,0.0114 0.0191,0.0114 0.0191,0.009", + "fill": { + "paint": "transparent" + }, + "id": "path2724", + "name": "path2724", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 121.16184,222.18188 -0.0505,-0.0227 -0.13473,-0.0688 -0.12187,-0.0723 -0.10947,-0.0754 -0.0378,-0.0306 -0.0964,-0.0822 -0.0857,-0.0861 -0.0747,-0.0889 -0.0647,-0.0937 -0.0562,-0.0997 -0.0462,-0.10537 -0.0121,-0.0342 -0.0329,-0.1116 -0.0236,-0.11811 -0.0143,-0.12576 v -0.0227 -0.13567 l 0.009,-0.14418 0.0191,-0.14444 0.0345,-0.16627 0.0479,-0.17759 0.0395,-0.12576 0.0754,-0.21016 0.0921,-0.22235 0.1109,-0.2399 0.13451,-0.26596 0.0781,-0.14728 0.1959,-0.35065 0.23684,-0.40325 0.3155,-0.51898 0.0191,-0.0305 0.12187,-0.19912 0.34052,-0.56074 0.26015,-0.44236 0.21709,-0.38633 0.0647,-0.11896 0.18472,-0.35566 0.16451,-0.33806 0.14593,-0.32351 0.12951,-0.31244 0.11379,-0.3025 0.099,-0.29406 0.0881,-0.29638 0.0764,-0.29867 0.0236,-0.0963 0.0614,-0.30097 0.0505,-0.30171 0.0386,-0.3029 0.0285,-0.31127 0.0168,-0.3201 0.009,-0.32887 v -0.25746", + "fill": { + "paint": "transparent" + }, + "id": "path2725", + "name": "path2725", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 123.6482,211.10658 0.009,0.003 0.0168,0.0114 0.0168,0.0114 0.0121,0.008 0.0191,0.0114 0.0191,0.0114 0.0191,0.0113 0.0191,0.009 0.0191,0.009 0.0191,0.008 0.0191,0.009", + "fill": { + "paint": "transparent" + }, + "id": "path2726", + "name": "path2726", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 211.82401,136.9269 0.0347,0.017 0.0347,0.017 0.0347,0.017 0.0347,0.0199 0.0347,0.0199 0.0347,0.0227 0.0347,0.0227 0.0347,0.0255 0.0347,0.0255 0.0101,0.006 0.0347,0.0286 0.0334,0.0294 0.0329,0.0303 0.0322,0.0314 0.0322,0.032 0.0304,0.0328 0.0297,0.0337 0.0286,0.0342 0.0226,0.0284 0.0271,0.0359 0.0259,0.0362 0.0254,0.0368 0.0254,0.0371 0.0226,0.0379 0.0226,0.0382 0.0201,0.0388 0.0201,0.0391 0.0101,0.0199 3.3e-4,5.2e-4 0.0151,0.0368 0.0151,0.0348 0.0101,0.0331 0.0101,0.032 0.0101,0.0309 0.0101,0.0297 0.0101,0.0286 v 0.0284 0.0283 0.0255", + "fill": { + "paint": "transparent" + }, + "id": "path2727", + "name": "path2727", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 211.49316,137.08971 0.0347,0.017 0.0347,0.017 0.0347,0.017 0.0347,0.0199 0.0347,0.0199 0.0347,0.0227 0.0347,0.0227 0.0344,0.0255 0.0347,0.0255 0.0101,0.008 0.0347,0.0283 0.0347,0.0291 0.0334,0.0298 0.0332,0.0309 0.0322,0.0317 0.0314,0.0328 0.0304,0.0337 0.0297,0.0342 0.0254,0.0284 0.0254,0.0291 0.0259,0.0359 0.0254,0.0359 0.0254,0.0362 0.0226,0.0362 0.0226,0.0362 0.0201,0.0362 0.0176,0.0362 0.0176,0.0362 0.0101,0.0142 0.0151,0.0357 0.0126,0.0348 0.01,0.034 0.0101,0.0331 0.0101,0.0328 0.0101,0.032 0.01,0.0315 v 0.0308 0.0303", + "fill": { + "paint": "transparent" + }, + "id": "path2728", + "name": "path2728", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 204.90862,141.0561 0.0934,0.0745 0.0972,0.0785 0.10146,0.0836 0.0419,0.0339 0.1054,0.0883 0.10465,0.0892 0.0562,0.0487 0.10369,0.0895 0.0944,0.0833 0.087,0.0779 0.0807,0.0737 0.0756,0.0708", + "fill": { + "paint": "transparent" + }, + "id": "path2729", + "name": "path2729", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 212.68864,257.58429 v 10e-4 0.0255 0.0254 0.0227 0.0227 l -0.0101,0.0227 -0.0101,0.0227 -0.01,0.0227 -0.0101,0.0199 -0.0101,0.0199 -0.0101,0.0199 -0.01,0.0199 -0.0101,0.0114 -0.0101,0.0142 -0.0126,0.0142 -0.0101,0.0142 -0.0151,0.0142 -0.0151,0.0142 -0.0151,0.0114 -0.0151,0.0114 -0.0151,0.0114 -0.0151,0.0114 -0.0176,0.008 -0.0176,0.009", + "fill": { + "paint": "transparent" + }, + "id": "path2730", + "name": "path2730", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 212.72247,257.57019 -10e-4,0.0254 v 0.0255 0.0227 0.0227 l -0.0101,0.0227 -0.01,0.0227 -0.0101,0.0199 -0.0101,0.0199 -0.01,0.0199 -0.0101,0.0199 -0.0101,0.0199 -0.0101,0.0142 -0.01,0.0142 -0.0101,0.0142 -0.0126,0.0142 -0.0101,0.0142 -0.0151,0.0142 -0.0151,0.0114 -0.0151,0.0113 -0.0151,0.0114 -0.0151,0.0114 -0.0151,0.008 -0.0176,0.009 -0.0176,0.008 -0.0176,0.008", + "fill": { + "paint": "transparent" + }, + "id": "path2731", + "name": "path2731", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 187.71068,185.38117 -0.0113,0.008 -0.0151,0.009 -0.0151,0.003 -0.0151,0.003 -0.0168,0.003 -0.0168,0.002 -0.0168,0.002 -0.0168,9.9e-4 -0.0191,5.3e-4 -0.0191,-2.7e-4 -0.009,-2.5e-4 -0.0191,-9.9e-4 -0.0191,-0.002 -0.0191,-0.003 -0.0191,-0.003 -0.0191,-0.009 -0.0211,-0.009 -0.0211,-0.009 -0.0211,-0.009 -0.0236,-0.009 -0.0168,-0.008", + "fill": { + "paint": "transparent" + }, + "id": "path2732", + "name": "path2732", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 175.36335,166.25536 v -0.14416 l 0.0143,-0.37821 0.0428,-0.37402 0.0697,-0.3675 0.0954,-0.35869 0.12212,-0.35374 0.15257,-0.3591 0.18401,-0.36404 0.21588,-0.3698 v -0.002 l 0.24943,-0.37478 0.28711,-0.38563 0.32961,-0.40056 0.12591,-0.14418 0.39839,-0.43083 0.44879,-0.44927 0.35404,-0.33465 0.56607,-0.50655 0.63671,-0.53795 0.14544,-0.11896 0.75838,-0.60327 0.70146,-0.53612 0.98991,-0.73021 1.11049,-0.79055 1.07694,-0.74557 1.55868,-1.0541 1.81901,-1.20385 0.0715,-0.0467 2.37571,-1.54549 1.28893,-0.83151 1.073,-0.69042 2.76115,-1.7754 1.20091,-0.77449 2.7502,-1.78567", + "fill": { + "paint": "transparent" + }, + "id": "path2733", + "name": "path2733", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 199.33765,146.38748 0.32335,-0.21129 0.66772,-0.43806 0.66651,-0.43917 0.34366,-0.22715 0.66448,-0.44115 0.66291,-0.44253 0.66117,-0.444 0.65936,-0.44574 0.65737,-0.44752 0.6552,-0.4495 0.65272,-0.45148", + "fill": { + "paint": "transparent" + }, + "id": "path2734", + "name": "path2734", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 172.71307,153.44353 0.0897,0.51867 0.079,0.52353 0.0681,0.52858 0.0571,0.53332 0.0452,0.53778 0.0336,0.53069 0.0143,0.3147 0.0168,0.54056 0.01,0.53708 -0.01,0.53334 -0.0191,0.52957 -0.0302,0.52569 -0.0214,0.28794 -0.0471,0.50893 -0.0571,0.49869 -0.0681,0.48916 -0.0774,0.4799 -0.0878,0.47099 -0.0697,0.33422 -0.10307,0.44803 -0.11166,0.43559 -0.1202,0.42404 -0.12852,0.4129 -0.13712,0.40237", + "fill": { + "paint": "transparent" + }, + "id": "path2735", + "name": "path2735", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 126.91851,144.51348 -0.0966,-0.37129 -0.0947,-0.39156 -0.0859,-0.38703 -0.0771,-0.38278 -0.0688,-0.37857 -0.0614,-0.37439 -0.0528,-0.37059 -0.0445,-0.3668 -0.0369,-0.36291 -0.0293,-0.35923 -0.0191,-0.29768 -0.0143,-0.34992 -0.009,-0.34484 7e-5,-0.33989 0.01,-0.33498 0.0143,-0.33023 0.0214,-0.32547 0.0293,-0.32077 0.0362,-0.31618 0.0429,-0.31162 0.0495,-0.30712", + "fill": { + "paint": "transparent" + }, + "id": "path2736", + "name": "path2736", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 205.9521,141.94957 0.40125,-0.27587 0.40912,-0.27418 0.41716,-0.27304 0.42507,-0.27191 0.43332,-0.27049 0.44154,-0.26936 0.44983,-0.26823 0.27428,-0.1603 0.094,-0.0544 0.45247,-0.25859 0.44699,-0.24926 0.44229,-0.24075 0.43777,-0.23254 0.43357,-0.22433 0.42992,-0.21639 0.42669,-0.20932", + "fill": { + "paint": "transparent" + }, + "id": "path2737", + "name": "path2737", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 156.84932,120.38244 0.0191,-0.0227 0.0191,-0.0233 0.0191,-0.0244 0.0191,-0.0255 0.0191,-0.0266 0.0191,-0.0281 0.0191,-0.029 0.0191,-0.0306 0.0168,-0.0321 0.0168,-0.034 0.0168,-0.0359 0.01,-0.009 0.0168,-0.0389 0.0168,-0.04 0.0168,-0.0409 0.0143,-0.0418 0.0143,-0.0431 0.0146,-0.0444 0.0143,-0.0457 0.0121,-0.0472 0.0121,-0.0487 0.0121,-0.0495", + "fill": { + "paint": "transparent" + }, + "id": "path2738", + "name": "path2738", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 170.85114,126.67515 0.0612,-0.007 0.0614,-0.007 0.0621,-0.007 0.0621,-0.009 0.0631,-0.009 0.0259,-0.004 0.0638,-0.0111 0.0638,-0.0131 0.0637,-0.013 0.0638,-0.015 0.0631,-0.015 0.0631,-0.0168 0.0631,-0.0167 0.0631,-0.0167 0.0622,-0.0184 0.0621,-0.019 0.0622,-0.0199 0.0614,-0.0207 0.0605,-0.0216 0.0605,-0.0221 0.0555,-0.021 0.0595,-0.0237", + "fill": { + "paint": "transparent" + }, + "id": "path2739", + "name": "path2739", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 172.71307,153.44353 0.15521,-0.008 0.15994,-0.009 0.16519,-0.008 0.17137,-0.003 0.17828,-10e-4 0.18638,2.6e-4 0.19638,0.002 0.20854,0.003 0.1295,0.003 0.13521,0.003 0.20708,0.008 0.19475,0.009 0.18472,0.0113 0.17617,0.0114 0.16901,0.0114 0.16282,0.0142 0.15735,0.0142 0.15235,0.0142", + "fill": { + "paint": "transparent" + }, + "id": "path2740", + "name": "path2740", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 212.28098,257.76177 -0.0201,0.008 -0.19577,0.0779 -0.19854,0.0745 -0.2008,0.0711 -0.20256,0.0672 -0.20407,0.0634 -0.20583,0.0601 -0.20733,0.0558 -0.20834,0.0518 -0.20935,0.0481 -0.20985,0.0442 -0.21035,0.0402 -0.21085,0.0382 -0.21085,0.0305 -0.21111,0.0255 -0.2106,0.0227 -0.21161,0.0199 -0.21286,0.0142 -0.21412,0.0114 -0.21538,0.008 -0.21664,0.003 -0.21738,5.2e-4 -0.21764,-0.003 -0.2184,-0.009 -0.21814,-0.0113 -0.21814,-0.0142 -0.21789,-0.0199 -0.21739,-0.0227 -0.21638,-0.0255 -0.21588,-0.0305 -0.16989,-0.0255", + "fill": { + "paint": "transparent" + }, + "id": "path2741", + "name": "path2741", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 205.96907,258.43732 -0.4078,-0.0723 -0.41146,-0.0788 -0.41516,-0.0855 -0.41916,-0.092 -0.42304,-0.0991 -0.4273,-0.10622 -0.43155,-0.11357 -0.43592,-0.12038 -0.44046,-0.12774 -0.44524,-0.13538 -0.0756,-0.0227 -0.45093,-0.14445 -0.45332,-0.15182 -0.45584,-0.15832 -0.4585,-0.16542 -0.46142,-0.17306 -0.46433,-0.18042 -0.4675,-0.18836 -0.47067,-0.19599 -0.4743,-0.20423 -0.18195,-0.0799", + "fill": { + "paint": "transparent" + }, + "id": "path2742", + "name": "path2742", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 197.29761,255.73947 -0.92477,-0.42189 -0.92962,-0.44927 -0.9348,-0.47729 -0.86287,-0.46323 -0.94585,-0.53312 -0.94433,-0.55905 -0.94285,-0.58557 -0.69444,-0.44885 -0.94076,-0.63279 -0.93173,-0.65552 -0.92222,-0.67816 -0.56859,-0.43322 -0.90569,-0.71492 -0.52999,-0.43307 -0.87313,-0.73883 -0.85167,-0.75316 -0.62032,-0.57008 -0.79418,-0.75899 -0.762,-0.76208 -0.73008,-0.76521 -0.2016,-0.21837 -0.65856,-0.73444 -0.60965,-0.71583 -0.565,-0.70077 -0.5235,-0.68841 -0.25185,-0.34685 -0.44062,-0.63853 -0.39444,-0.61415 -0.33819,-0.57013 -0.29491,-0.54402 -0.25623,-0.5247 -0.13186,-0.29671 -0.19186,-0.47959 -0.15591,-0.45707 -0.12234,-0.43729 -0.0909,-0.41973 -0.0605,-0.40393 -0.0319,-0.38959 v -0.37668", + "fill": { + "paint": "transparent" + }, + "id": "path2743", + "name": "path2743", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 175.36335,234.34832 0.15091,-6.6255 0.11832,-6.80901 0.0824,-6.8094 0.0479,-6.80966 0.0168,-6.80981 -9e-5,-0.18354 -0.0168,-6.80979 -0.0488,-6.80961 -0.0823,-6.80944 -0.11639,-6.80904 -0.15187,-6.80858", + "fill": { + "paint": "transparent" + }, + "id": "path2744", + "name": "path2744", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 129.69896,193.72762 -0.0252,-0.0113 -0.0252,-0.0114 -0.0252,-0.0114 -0.0241,-0.0142 -0.0241,-0.0142 -0.0241,-0.0142 -0.0236,-0.0142 -0.0236,-0.0199 -0.0236,-0.0199 -0.0236,-0.0199 -0.0236,-0.0199 -0.0236,-0.0227 -0.0214,-0.0227 -0.0214,-0.0227 -0.0214,-0.0227 -0.0191,-0.0255 -0.0168,-0.0227 -0.0168,-0.0227 -0.0191,-0.0255 -0.0168,-0.0255 -0.0168,-0.0255 -0.0143,-0.0255 -0.0143,-0.0255 -0.0121,-0.0255 -0.0121,-0.0255 -0.009,-0.0255 -0.01,-0.0254 -0.01,-0.0227 -0.009,-0.0227 -0.009,-0.0227 v -0.0227 -0.0227 -0.0227 l -4.9e-4,-0.0227", + "fill": { + "paint": "transparent" + }, + "id": "path2745", + "name": "path2745", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 129.56948,155.61773 -0.0236,-0.0114 -0.0214,-0.0114 -0.0214,-0.0113 -0.0214,-0.0114 -0.0214,-0.0114 -0.0214,-0.0142 -0.0191,-0.0142 -0.0191,-0.0142 -0.0191,-0.0142 -0.0191,-0.0199 -0.0191,-0.0199 -0.0191,-0.0199 -0.0191,-0.0227 -0.0168,-0.0227 -0.0121,-0.0142 -0.0121,-0.0142 -0.0168,-0.0227 -0.0143,-0.0227 -0.0143,-0.0227 -0.0121,-0.0227 -0.0121,-0.0227 -0.009,-0.0227 -0.009,-0.0227 -0.01,-0.0227 -0.009,-0.0227 -0.009,-0.0227 v -0.0227 -0.0199 -0.0199 l -4.9e-4,-0.0199", + "fill": { + "paint": "transparent" + }, + "id": "path2746", + "name": "path2746", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 129.14884,157.31419 4.3e-4,-0.0199 v -0.0199 -0.0142 -0.0142 -0.0142 l 0.01,-0.0142 0.009,-0.0114 0.009,-0.0114 0.009,-0.0114 v -0.008 l 0.01,-0.0114 0.009,-0.0114 0.009,-0.008 0.009,-0.009 0.0121,-0.008 0.0121,-0.008 0.0121,-0.009 0.0121,-0.008 0.0121,-0.009", + "fill": { + "paint": "transparent" + }, + "id": "path2747", + "name": "path2747", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 187.71068,211.10199 -0.0113,0.009 -0.0151,0.009 -0.0151,0.003 -0.0151,0.003 -0.0168,0.003 -0.0168,0.002 -0.0168,0.002 -0.0168,0.001 -0.0191,5.3e-4 -0.0191,-2.7e-4 -0.009,-2.5e-4 -0.0191,-10e-4 -0.0191,-0.002 -0.0191,-0.003 -0.0191,-0.003 -0.0191,-0.009 -0.0211,-0.008 -0.0211,-0.009 -0.0211,-0.008 -0.0236,-0.008 -0.0168,-0.009", + "fill": { + "paint": "transparent" + }, + "id": "path2748", + "name": "path2748", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 169.69201,173.5294 -0.0121,0.008 -0.0121,0.008 -0.0143,0.003 -0.0143,0.003 -0.0143,0.003 -0.0143,0.002 -0.0168,9.9e-4 -0.0168,7.9e-4 h -0.0168 l -0.009,-2.6e-4 -0.0168,-9.9e-4 -0.0168,-0.002 -0.0168,-0.002 -0.0191,-0.003 -0.0191,-0.003 -0.0191,-0.009 -0.0191,-0.008 -0.0191,-0.009 -0.0191,-0.008", + "fill": { + "paint": "transparent" + }, + "id": "path2749", + "name": "path2749", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 169.65328,211.53027 -0.0143,0.009 -0.0143,0.008 -0.0143,0.008 -0.0168,0.003 -0.0168,0.003 -0.0168,0.003 -0.0191,0.002 -0.0191,0.001 -0.0191,5.3e-4 -0.0191,-6e-5 -0.0143,-5.3e-4 -0.0191,-10e-4 -0.0191,-0.002 -0.0191,-0.003 -0.0191,-0.003 -0.0214,-0.009 -0.0214,-0.008 -0.0214,-0.009 -0.0236,-0.008 -0.0236,-0.009 -0.0241,-0.0113 v -5.3e-4", + "fill": { + "paint": "transparent" + }, + "id": "path2750", + "name": "path2750", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 135.46228,131.33528 -0.29444,0.12462 -0.28986,0.13313 -0.28454,0.14162 -0.27846,0.14927 -0.2694,0.15549 -0.26467,0.16428 -0.2591,0.17221 -0.25301,0.18042 -0.24664,0.18836 -0.23518,0.19203 -0.2328,0.20309 -0.22734,0.21242 -0.22161,0.22121 -0.21568,0.22971 -0.20947,0.23906 -0.20281,0.24754 -0.1959,0.25633 -0.18851,0.26456 -0.18117,0.27276 -0.11785,0.18863 -0.16732,0.28545 -0.15926,0.29352 -0.15092,0.30195 -0.14279,0.31053 -0.13426,0.31935 -0.1259,0.32841 -0.11732,0.33787 -0.10854,0.3474 -0.0995,0.35736 -0.0236,0.0906 -0.0881,0.37023 -0.0781,0.37767 -0.0681,0.38538 -0.0571,0.39319 -0.0471,0.40132 -0.0362,0.40959 -0.0252,0.4181 -0.0143,0.42686 v 0.30633", + "fill": { + "paint": "transparent" + }, + "id": "path2751", + "name": "path2751", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 187.71068,223.9624 -0.0113,0.009 -0.0151,0.008 -0.0151,0.003 -0.0151,0.003 -0.0168,0.003 -0.0168,0.002 -0.0168,0.002 -0.0168,0.001 -0.0191,5.3e-4 -0.0191,-2.7e-4 -0.009,-2.5e-4 -0.0191,-0.001 -0.0191,-0.002 -0.0191,-0.003 -0.0191,-0.003 -0.0191,-0.009 -0.0211,-0.008 -0.0211,-0.009 -0.0211,-0.008 -0.0236,-0.009 -0.0168,-0.008", + "fill": { + "paint": "transparent" + }, + "id": "path2752", + "name": "path2752", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 187.71068,198.24164 -0.0113,0.008 -0.0151,0.009 -0.0151,0.003 -0.0151,0.003 -0.0168,0.003 -0.0168,0.002 -0.0168,0.002 -0.0168,0.001 -0.0191,5.3e-4 -0.0191,-2.7e-4 -0.009,-2.2e-4 -0.0191,-0.001 -0.0191,-0.002 -0.0191,-0.003 -0.0191,-0.003 -0.0191,-0.009 -0.0211,-0.008 -0.0211,-0.009 -0.0211,-0.008 -0.0236,-0.009 -0.0168,-0.008", + "fill": { + "paint": "transparent" + }, + "id": "path2753", + "name": "path2753", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 176.40912,223.41663 v -0.70356 -0.70355 -0.70359 -0.70356 -0.70362 -0.70354 -0.70354 -0.70354 -0.70359 -0.70362", + "fill": { + "paint": "transparent" + }, + "id": "path2754", + "name": "path2754", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 190.80546,204.79726 -4.9e-4,0.76945 -9.9e-4,0.76938 v 0.7694 0.76939 0.76941 0.7694 0.76938 0.76945 0.76943 0.76938", + "fill": { + "paint": "transparent" + }, + "id": "path2755", + "name": "path2755", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 128.25425,132.51916 -0.0143,-0.0284 -0.0168,-0.0291 -0.0168,-0.0294 -0.0191,-0.0303 -0.0121,-0.0199 -0.0214,-0.0317 -0.0236,-0.0318 -0.0241,-0.032 -0.0252,-0.032 -0.0269,-0.0325 -0.0285,-0.0325 -0.0302,-0.0328 -0.0319,-0.0331 -0.0336,-0.0337 -0.0352,-0.034 -0.0369,-0.0345 -0.0386,-0.0348 -0.0345,-0.0298", + "fill": { + "paint": "transparent" + }, + "id": "path2756", + "name": "path2756", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 176.36713,210.57508 v -0.70445 -0.7045 -0.70447 -0.7045 -0.7045 -0.70447 l -9.8e-4,-0.70447 -5e-4,-0.70456 -4.9e-4,-0.70447 -4.2e-4,-0.7045", + "fill": { + "paint": "transparent" + }, + "id": "path2757", + "name": "path2757", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 190.79219,191.9311 v 0.77061 0.77052 0.77055 0.77056 0.77054 0.77053 0.77066 0.77049 l 9.9e-4,0.77059 4.9e-4,0.77055", + "fill": { + "paint": "transparent" + }, + "id": "path2758", + "name": "path2758", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 176.35814,197.71881 4.3e-4,-0.70536 4.9e-4,-0.70523 4.9e-4,-0.70518 9.9e-4,-0.70536 v -0.70523 -0.70521 -0.7053 -0.70522 -0.70524 -0.70533", + "fill": { + "paint": "transparent" + }, + "id": "path2759", + "name": "path2759", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 176.38199,184.84766 v -0.70589 -0.70589 -0.70592 -0.70588 -0.70586 -0.70589 -0.70592 -0.70583 -0.70586 -0.70594", + "fill": { + "paint": "transparent" + }, + "id": "path2760", + "name": "path2760", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 123.6482,143.01356 v -0.46199 l -0.0236,-0.48862 -0.0478,-0.52223 -0.0754,-0.56648 -0.0998,-0.59397 -0.14401,-0.72513 -0.18331,-0.80839 -0.23822,-0.95307 -0.095,-0.36411 -0.43424,-1.61831 -0.34985,-1.2938 -0.0252,-0.0923 -0.39975,-1.5283 -0.3254,-1.31737 -0.0562,-0.23792 -0.27866,-1.2329 -0.24319,-1.17653 -0.21066,-1.1295 -0.18019,-1.08949 -0.15164,-1.05486 -0.01,-0.0495 -0.12378,-1.03081 -0.0978,-1.00928 -0.0721,-0.9889 -0.0479,-0.96954 -0.0236,-0.95119 3.4e-4,-0.93357", + "fill": { + "paint": "transparent" + }, + "id": "path2761", + "name": "path2761", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 123.6482,211.10658 -0.009,-0.18608 -0.14808,-6.80862 -0.11332,-6.80912 -0.0797,-6.80936 -0.0471,-6.80969 -0.0143,-6.80977 0.0143,-6.62289 0.0462,-6.80969 0.0797,-6.80943 0.11496,-6.80907 0.15164,-6.80856", + "fill": { + "paint": "transparent" + }, + "id": "path2762", + "name": "path2762", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 126.91851,144.51348 -0.0488,-0.26256 -0.0697,-0.41112 -0.0614,-0.40634 -0.0538,-0.4018 -0.0452,-0.3973 -0.0379,-0.39291 -0.0293,-0.38858 -0.0214,-0.38449 -0.0143,-0.38039 -0.01,-0.3764 -2.6e-4,-0.0255 v -0.37022 l 0.009,-0.36456 0.0168,-0.35892 0.0236,-0.35348 0.0293,-0.34815 0.0369,-0.34293 0.0438,-0.33779 0.0505,-0.33269 0.0571,-0.32773 0.0631,-0.32287", + "fill": { + "paint": "transparent" + }, + "id": "path2763", + "name": "path2763", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 126.89307,137.06192 0.0329,-0.14417 0.0562,-0.23367 0.0595,-0.23055 0.0631,-0.22744 0.0664,-0.22405 0.0191,-0.0635 0.0705,-0.22036 0.0741,-0.21696 0.0771,-0.21384 0.0807,-0.21073 0.0831,-0.20762 0.0866,-0.2045 0.0895,-0.20109 0.0926,-0.19798 0.0955,-0.19488 0.0983,-0.19146 0.10118,-0.18836 0.10402,-0.18524 0.10666,-0.18213 0.10949,-0.17871", + "fill": { + "paint": "transparent" + }, + "id": "path2764", + "name": "path2764", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 128.45956,133.14345 0.0259,-0.0416 0.37554,-0.55679 0.40317,-0.52523 0.4286,-0.49268 0.4524,-0.45955 0.0774,-0.0737 0.48506,-0.42713 0.50998,-0.39699 0.53175,-0.36537 0.55078,-0.33269 0.57719,-0.30445 0.60479,-0.27674 0.62865,-0.24641 0.11116,-0.0396 0.64998,-0.20903 0.66559,-0.17598 0.69231,-0.14638 0.71682,-0.11516 0.73816,-0.0832 0.11355,-0.009 0.75864,-0.045 0.78233,-0.0111 0.80575,0.0227 0.82825,0.0582 0.0352,0.004 0.85051,0.096 0.87026,0.1332 0.89074,0.1715 0.80399,0.1844 0.93196,0.24783 0.94642,0.2883 0.96236,0.33037 0.69735,0.26257 0.99352,0.40672 1.00142,0.44928 1.0109,0.49347 0.56904,0.29544 1.02812,0.56642 1.02813,0.60891 1.02854,0.65286 0.44003,0.29287 1.02989,0.7183 1.02165,0.75919 1.01326,0.80131 0.3245,0.26709 1.0025,0.85887 0.9806,0.89212 0.95767,0.92505 0.93332,0.9575 0.90768,0.98918 0.88084,1.02023 0.38537,0.46657 0.31819,0.39533 0.8207,1.06486 0.77837,1.0781 0.73547,1.09027 0.6924,1.10143 0.64871,1.11171 0.60471,1.121 0.32802,0.64919 0.52234,1.10806 0.47119,1.09865 0.42037,1.08849 0.37026,1.07786 0.32079,1.06663 0.27198,1.05504", + "fill": { + "paint": "transparent" + }, + "id": "path2765", + "name": "path2765", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 171.80284,156.13478 0.0505,0.21611 0.0605,0.27191 0.0562,0.27021 0.0269,0.13257 0.0512,0.26821 0.0478,0.26625 0.0446,0.26426 0.0412,0.26228 0.0378,0.26143 0.0345,0.25945 0.0312,0.25747 0.0285,0.25633", + "fill": { + "paint": "transparent" + }, + "id": "path2766", + "name": "path2766", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 129.0714,100.26714 0.0168,-0.007 0.009,-0.004 0.0168,-0.007 0.0191,-0.006 0.0191,-0.006 0.0191,-0.004 0.0191,-0.004 0.0214,-0.004 0.0214,-0.002 0.0214,-0.001 0.0236,-5.2e-4 0.0236,7e-5 0.0236,5.3e-4 0.0236,0.002 1.7e-4,2e-5", + "fill": { + "paint": "transparent" + }, + "id": "path2767", + "name": "path2767", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 129.34737,100.22556 0.0241,0.002 0.0252,0.004 0.0259,0.004 v 1.9e-4 l 0.0269,0.006 0.0269,0.007 0.0279,0.007 0.0276,0.007 0.0285,0.009 0.0286,0.011 0.0293,0.011 0.0293,0.013 0.0168,0.007", + "fill": { + "paint": "transparent" + }, + "id": "path2768", + "name": "path2768", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 129.4075,100.10917 0.0168,-0.007 0.0168,-0.007 0.0191,-0.006 0.0191,-0.006 0.0191,-0.004 0.0191,-0.004 0.0214,-0.004 0.0214,-0.002 0.0236,-0.002 0.0236,-0.001 0.0236,-2.6e-4 0.0241,5.3e-4 0.0214,0.001 0.0241,0.002 0.0252,0.002 0.0252,0.004 0.0252,0.004 0.0259,0.006 0.0269,0.007 0.0269,0.007 0.0276,0.009 0.0285,0.009 0.0293,0.011 0.0302,0.013 0.0302,0.013", + "fill": { + "paint": "transparent" + }, + "id": "path2769", + "name": "path2769", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 175.11588,234.25885 0.14426,-6.6295 0.11284,-6.80819 0.079,-6.80854 0.0462,-6.80882 0.0146,-6.80887 -1.7e-4,-0.17816 -0.0168,-6.80887 -0.0462,-6.80878 -0.0781,-6.80852 -0.1109,-6.80822 -0.14519,-6.80785", + "fill": { + "paint": "transparent" + }, + "id": "path2770", + "name": "path2770", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 190.77455,186.76275 -0.0352,3e-5 -0.0352,-5.3e-4 -0.0352,-0.001 -0.0329,-0.002 -0.0168,-0.001 -0.0346,-0.003 -0.0335,-0.003 -0.033,-0.009 -0.032,-0.008 -0.0313,-0.009 -0.0294,-0.008 -0.0286,-0.009 -0.0277,-0.008 -0.0269,-0.008 -0.026,-0.009 -0.0252,-0.008 -0.0236,-0.0114", + "fill": { + "paint": "transparent" + }, + "id": "path2771", + "name": "path2771", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 190.80546,199.6367 -0.0352,5e-5 -0.0352,-7.9e-4 -0.0352,-9.9e-4 -0.0329,-0.002 -0.0168,-0.001 -0.0346,-0.003 -0.0335,-0.003 -0.0329,-0.008 -0.032,-0.008 -0.0313,-0.009 -0.0294,-0.008 -0.0286,-0.009 -0.0277,-0.008 -0.0269,-0.009 -0.026,-0.009 -0.0252,-0.008 -0.0236,-0.0114", + "fill": { + "paint": "transparent" + }, + "id": "path2772", + "name": "path2772", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 190.79219,212.49133 -0.0352,3e-5 -0.0352,-5.3e-4 -0.0352,-10e-4 -0.0329,-0.002 -0.0168,-0.001 -0.0346,-0.003 -0.0337,-0.003 -0.0329,-0.003 -0.032,-0.008 -0.0303,-0.009 -0.0294,-0.008 -0.0286,-0.008 -0.0277,-0.009 -0.0269,-0.008 -0.026,-0.009 -0.0252,-0.008 -0.0236,-0.0114", + "fill": { + "paint": "transparent" + }, + "id": "path2773", + "name": "path2773", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 190.73508,225.32663 h -0.0352 l -0.0352,-5.3e-4 -0.0352,-0.002 -0.0329,-0.002 -0.0168,-9.9e-4 -0.0346,-0.003 -0.0335,-0.003 -0.033,-0.009 -0.032,-0.008 -0.0313,-0.008 -0.0294,-0.009 -0.0286,-0.008 -0.0277,-0.009 -0.0269,-0.008 -0.026,-0.009 -0.0252,-0.008 -0.0236,-0.0114", + "fill": { + "paint": "transparent" + }, + "id": "path2774", + "name": "path2774", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 176.40912,177.78878 2.4e-4,-0.0114 v -0.0142 -0.0142 -0.0142 l 0.009,-0.0142 0.009,-0.0142 0.01,-0.0142 0.009,-0.0142 0.01,-0.0142 0.01,-0.0114 0.009,-0.0114 0.009,-0.0113 0.0121,-0.0114 0.0121,-0.0114 0.0143,-0.0113 0.0143,-0.0114 0.0143,-0.0114 0.0168,-0.0113 0.0168,-0.009 0.0121,-0.008 0.0168,-0.009 0.0168,-0.009", + "fill": { + "paint": "transparent" + }, + "id": "path2775", + "name": "path2775", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 177.05549,185.45243 -0.0302,-0.009 -0.0302,-0.008 -0.0293,-0.009 -0.0293,-0.008 -0.0293,-0.008 -0.0285,-0.0114 -0.0285,-0.0114 -0.0277,-0.0113 -0.0276,-0.0114 -0.0168,-0.009 -0.0269,-0.0142 -0.0259,-0.0142 -0.0252,-0.0142 -0.0252,-0.0142 -0.0241,-0.0142 -0.0236,-0.0142 -0.0236,-0.0199 -0.0214,-0.0199 -5e-4,-5.3e-4 -0.0214,-0.0199 -0.0191,-0.0199 -0.0191,-0.0199 -0.0168,-0.0199 -0.0168,-0.0199 -0.0143,-0.0199 -0.0143,-0.0199 -0.0121,-0.0199 -0.0121,-0.0199 -0.0121,-0.0199 -0.009,-0.0199 -0.01,-0.0199 -0.009,-0.0199 -0.01,-0.0199 -0.01,-0.0199 v -0.0199 -0.0199 -0.0199 l -4.9e-4,-0.0199", + "fill": { + "paint": "transparent" + }, + "id": "path2776", + "name": "path2776", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 176.36713,190.66615 2.5e-4,-0.0114 v -0.0142 -0.0142 -0.0142 l 0.009,-0.0142 0.009,-0.0142 0.01,-0.0142 0.009,-0.0142 0.009,-0.0142 0.009,-0.0114 0.01,-0.0114 0.01,-0.0113 0.0121,-0.0114 0.0121,-0.0114 0.0143,-0.0114 0.0143,-0.0114 0.0143,-0.0114 0.0168,-0.008 0.0168,-0.009 0.0121,-0.008 0.0168,-0.008 0.0168,-0.009", + "fill": { + "paint": "transparent" + }, + "id": "path2777", + "name": "path2777", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 177.03256,198.32312 -0.0302,-0.008 -0.0302,-0.009 -0.0293,-0.008 -0.0293,-0.009 -0.0293,-0.008 -0.0285,-0.0114 -0.0285,-0.0114 -0.0276,-0.0114 -0.0276,-0.0114 -0.0143,-0.008 -0.0269,-0.0142 -0.0259,-0.0142 -0.0252,-0.0142 -0.0241,-0.0142 -0.0241,-0.0142 -0.0236,-0.0142 -0.0236,-0.0199 -0.0214,-0.0199 -2.6e-4,-2.6e-4 -0.0214,-0.0199 -0.0191,-0.0199 -0.0191,-0.0199 -0.0168,-0.0199 -0.0168,-0.0199 -0.0143,-0.0199 -0.0143,-0.0199 -0.0121,-0.0199 -0.0121,-0.0199 -0.0121,-0.0199 -0.009,-0.0199 -0.01,-0.0199 -0.009,-0.0199 -0.009,-0.0199 -0.009,-0.0199 v -0.0199 -0.0199 -0.0199 l -5e-4,-0.0199", + "fill": { + "paint": "transparent" + }, + "id": "path2778", + "name": "path2778", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 176.35814,203.53019 1.7e-4,-0.0114 v -0.0142 -0.0142 -0.0142 -0.0142 l 0.009,-0.0142 0.009,-0.0142 0.009,-0.0142 0.01,-0.0142 0.01,-0.0114 0.009,-0.0113 0.009,-0.0114 0.0121,-0.0114 0.0121,-0.0113 0.0143,-0.0114 0.0143,-0.0114 0.0143,-0.0113 0.0168,-0.009 0.0168,-0.008 0.0121,-0.009 0.0168,-0.008 0.0168,-0.009", + "fill": { + "paint": "transparent" + }, + "id": "path2779", + "name": "path2779", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 177.0428,211.17889 -0.0302,-0.009 -0.0302,-0.008 -0.0293,-0.008 -0.0295,-0.009 -0.0293,-0.008 -0.0285,-0.0114 -0.0285,-0.0114 -0.0276,-0.0114 -0.0276,-0.0114 -0.0143,-0.008 -0.0269,-0.0142 -0.0259,-0.0142 -0.0252,-0.0142 -0.0252,-0.0142 -0.0241,-0.0142 -0.0236,-0.0142 -0.0236,-0.0199 -0.0214,-0.0199 -7e-5,-3e-5 -0.0214,-0.0199 -0.0191,-0.0199 -0.0191,-0.0199 -0.0168,-0.0199 -0.0168,-0.0199 -0.0143,-0.0199 -0.0143,-0.0199 -0.0143,-0.0199 -0.0121,-0.0199 -0.0121,-0.0199 -0.01,-0.0199 -0.01,-0.0199 -0.009,-0.0199 -0.009,-0.0199 -0.01,-0.0199 v -0.0199 -0.0199 -0.0199 l -4.9e-4,-0.0199", + "fill": { + "paint": "transparent" + }, + "id": "path2780", + "name": "path2780", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 123.83792,211.21356 -0.01,-0.17816 -0.144,-6.80785 -0.11023,-6.80822 -0.0773,-6.80855 -0.0452,-6.80878 -0.0143,-6.80884 0.0143,-6.6306 0.0452,-6.80878 0.0781,-6.80859 0.11191,-6.80824 0.1476,-6.80774", + "fill": { + "paint": "transparent" + }, + "id": "path2781", + "name": "path2781", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 176.38199,216.38092 2.6e-4,-0.0114 v -0.0142 -0.0142 -0.0142 -0.0142 l 0.01,-0.0142 0.01,-0.0142 0.009,-0.0142 0.009,-0.0142 0.01,-0.0114 0.009,-0.0114 0.01,-0.0113 0.0121,-0.0114 0.0121,-0.0114 0.0143,-0.0113 0.0143,-0.0114 0.0143,-0.0114 0.0168,-0.008 0.0168,-0.008 0.0121,-0.009 0.0168,-0.008 0.0168,-0.009", + "fill": { + "paint": "transparent" + }, + "id": "path2782", + "name": "path2782", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 177.08638,224.01976 -0.0302,-0.008 -0.0302,-0.009 -0.0293,-0.008 -0.0293,-0.009 -0.0293,-0.0113 -0.0285,-0.0114 -0.0285,-0.0114 -0.0277,-0.0113 -0.0276,-0.0114 -0.0143,-0.008 -0.0269,-0.0142 -0.0259,-0.0142 -0.0252,-0.0142 -0.0252,-0.0142 -0.0241,-0.0142 -0.0236,-0.0142 -0.0236,-0.0199 -0.0214,-0.0199 -0.0214,-0.0199 -0.0191,-0.0199 -0.0191,-0.0199 -0.0168,-0.0199 -0.0168,-0.0199 -0.0143,-0.0199 -0.0143,-0.0199 -0.0143,-0.0199 -0.0121,-0.0199 -0.0121,-0.0199 -0.009,-0.0199 -0.01,-0.0199 -0.01,-0.0199 -0.009,-0.0199 -0.009,-0.0199 v -0.0199 -0.0199 -0.0199 l -4.9e-4,-0.0199", + "fill": { + "paint": "transparent" + }, + "id": "path2783", + "name": "path2783", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 175.80381,153.53451 -0.0214,0.46043 -0.0335,0.46604 -0.0452,0.47165 -0.0579,0.47732 -0.0705,0.483 -0.084,0.48865 -0.0964,0.49436 -0.009,0.0439 -0.11091,0.50049 -0.12257,0.49884 -0.0236,0.0862 -0.13616,0.49655 -0.14808,0.4944 -0.15948,0.49201 -0.17092,0.48949 -0.14019,0.37708 -0.18589,0.47074 -0.19399,0.46061 -0.20236,0.45082 -0.21045,0.44127 -0.2183,0.43188 -0.15682,0.29559 -0.22543,0.40444 -0.2297,0.38987 -0.234,0.37592 -0.239,0.36288 -0.24363,0.35071", + "fill": { + "paint": "transparent" + }, + "id": "path2784", + "name": "path2784", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 119.71155,220.24729 v -0.10875 l 0.0143,-0.11472 0.0236,-0.12264 0.0352,-0.1317 0.0295,-0.0909 0.0579,-0.1555 0.0714,-0.16428 0.0864,-0.17646 0.095,-0.17703 0.13142,-0.22744 0.154,-0.24811 0.18545,-0.28268 0.0191,-0.0255 0.2497,-0.36405 0.3386,-0.48015 0.0495,-0.07 0.18612,-0.26313 0.30727,-0.44149 0.24865,-0.3694 0.0781,-0.11896 0.20472,-0.32278 0.18115,-0.30055 0.16162,-0.28493 0.14473,-0.27248 0.0521,-0.10366 0.1276,-0.2671 0.1157,-0.26369 0.10402,-0.25973 0.0926,-0.25633 0.0814,-0.25323 0.0705,-0.24981 0.0614,-0.25151 0.0521,-0.2569 0.0435,-0.26313 0.0345,-0.26964 0.0259,-0.27588 0.0168,-0.28182 0.009,-0.28758 v -0.28324", + "fill": { + "paint": "transparent" + }, + "id": "path2785", + "name": "path2785", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 123.86134,104.92687 0.009,-0.007 0.01,-0.007 0.01,-0.007 0.009,-0.006 0.009,-0.006 0.009,-0.006 0.0121,-0.006 0.0121,-0.004 0.0143,-0.004 0.0143,-0.004 0.0168,-0.004 0.0191,-0.002 0.0214,-0.002 0.0236,-0.002 0.0236,-0.001 0.0276,-5.3e-4 0.0276,1.6e-4 0.0276,5.3e-4 0.0285,0.002 0.0312,0.002 0.0345,0.004 0.009,5.3e-4 0.0438,0.006 0.0445,0.007 0.0452,0.007 0.0462,0.009 0.0452,0.009", + "fill": { + "paint": "transparent" + }, + "id": "path2786", + "name": "path2786", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 190.23055,179.02279 0.009,0.76494 0.009,0.765 v 0.76484 0.76499 0.76492 0.765 0.76494 0.76495 0.76494 0.76498", + "fill": { + "paint": "transparent" + }, + "id": "path2787", + "name": "path2787", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 190.28623,191.90855 v 0.76376 0.76378 0.76378 0.76373 0.76378 0.76376 0.76374 l 0.001,0.76373 9.9e-4,0.76382 4.8e-4,0.76374", + "fill": { + "paint": "transparent" + }, + "id": "path2788", + "name": "path2788", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 190.29885,204.77477 -4.9e-4,0.76256 -9.9e-4,0.76266 -9.9e-4,0.76259 v 0.76261 0.7626 0.76259 0.76265 0.76257 0.76261 0.76254", + "fill": { + "paint": "transparent" + }, + "id": "path2789", + "name": "path2789", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 172.17762,126.34623 0.30038,0.57008 0.28813,0.6034 0.27713,0.64132 0.26747,0.6856 0.13521,0.37449 0.25697,0.77186 0.2437,0.81655 0.23184,0.87084 0.15353,0.63534 0.21781,0.99916 0.20304,1.0581 0.18972,1.13111 0.0121,0.0799 0.17733,1.23359 0.16114,1.31068 0.0931,0.86912 0.13709,1.48745 0.1152,1.548 0.0928,1.61865 0.0705,1.70303 0.0241,0.80575 0.0352,1.81483 0.01,1.85666 -0.0191,1.85321 -0.0478,1.84955", + "fill": { + "paint": "transparent" + }, + "id": "path2790", + "name": "path2790", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 190.26851,217.6215 v 0.76151 0.76144 0.76142 0.76149 0.76144 0.76147 0.76145 l -0.009,0.76146 -0.009,0.76146 -0.009,0.76149", + "fill": { + "paint": "transparent" + }, + "id": "path2791", + "name": "path2791", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 190.73508,225.32663 -0.62697,0.003 -0.62703,-0.001 -0.6269,-0.009 -0.51058,-0.0113 -0.34834,-0.009 -0.62335,-0.0227 -0.62074,-0.0255 -0.61808,-0.0342 -0.61497,-0.0382 -0.61185,-0.0444 -0.60859,-0.0501 -0.60511,-0.0555 -0.60144,-0.0612 -0.59775,-0.0666 -0.59387,-0.072 -0.58986,-0.0774", + "fill": { + "paint": "transparent" + }, + "id": "path2792", + "name": "path2792", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 181.30965,224.7574 -0.13116,-0.0199 -0.25236,-0.0342 -0.2521,-0.0382 -0.12113,-0.0199 -0.25169,-0.0382 -0.25142,-0.0393 -0.25119,-0.0402 -0.25084,-0.0416 -0.25048,-0.0427 -0.25024,-0.0439 -0.24993,-0.045", + "fill": { + "paint": "transparent" + }, + "id": "path2793", + "name": "path2793", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 178.79716,224.35908 -0.0888,-0.0142 -0.1719,-0.0306 -0.17162,-0.0306 -0.0831,-0.0142 -0.17137,-0.0342 -0.17114,-0.0342 -0.17113,-0.0342 -0.17069,-0.0342 -0.17069,-0.0342 -0.17044,-0.0342 -0.1702,-0.0382", + "fill": { + "paint": "transparent" + }, + "id": "path2794", + "name": "path2794", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 175.11588,166.17436 0.01,-0.44137 0.0168,-0.22121 0.0595,-0.43863 0.0938,-0.43214 0.12689,-0.4225 0.15994,-0.41509 0.19949,-0.42432 0.24094,-0.43491 0.28484,-0.4472 0.01,-0.0114 0.33344,-0.46222 0.38487,-0.47967 0.4449,-0.50507 0.11116,-0.12037 0.54098,-0.55643 0.6137,-0.58806 0.36421,-0.3323 0.77711,-0.67914 0.88393,-0.73365 0.0293,-0.0227 1.04888,-0.83134 0.77528,-0.59471 1.3558,-1.01043 0.57864,-0.42217 1.71843,-1.2302 0.31117,-0.22007 2.19309,-1.52952 2.10683,-1.44675 1.18532,-0.80857 3.36987,-2.29064 1.60831,-1.09466 3.1105,-2.13259 0.13345,-0.092 2.46955,-1.72042 2.14647,-1.52517", + "fill": { + "paint": "transparent" + }, + "id": "path2795", + "name": "path2795", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 205.18626,258.87773 0.0236,5.3e-4 0.0236,-2e-4 0.0236,-0.001 0.0236,-0.002 0.0241,-0.002 0.0241,-0.003 0.0252,-0.003 0.0252,-0.008 0.0252,-0.009 0.026,-0.009 0.026,-0.008 0.026,-0.009 0.026,-0.009 0.026,-0.0114 0.026,-0.0114 0.0252,-0.0113 0.0252,-0.0114 v -0.001 l 0.0249,-0.0142 0.0251,-0.0142 0.0251,-0.0142 0.0251,-0.0142 0.0251,-0.0199 0.0251,-0.0199 0.0251,-0.0199 0.0251,-0.0227 v -0.002 l 0.0251,-0.0227 0.0251,-0.0227 0.0251,-0.0227 0.0226,-0.0255 0.0226,-0.0255 0.0226,-0.0255 0.0201,-0.0254 0.0101,-0.0114", + "fill": { + "paint": "transparent" + }, + "id": "path2796", + "name": "path2796", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 196.93891,256.23754 -0.90854,-0.42098 -0.91356,-0.44904 -0.91922,-0.47769 -0.92389,-0.50647 -0.93168,-0.53757 -0.93026,-0.56433 -0.92928,-0.59153 -0.74252,-0.49319 -0.92792,-0.64222 -0.91923,-0.66592 -0.91013,-0.68945 -0.60405,-0.47486 -0.89383,-0.72894 -0.8742,-0.74509 -0.85395,-0.76077 -0.52739,-0.48707 -0.62781,-0.59845 -0.78443,-0.77808 -0.7525,-0.78178 -0.72094,-0.78536 -0.20019,-0.22461 -0.65065,-0.75494 -0.60228,-0.7364 -0.55769,-0.72113 -0.51629,-0.70846 -0.24345,-0.35067 -0.43491,-0.65837 -0.38889,-0.63355 -0.32474,-0.5731 -0.29124,-0.56297 -0.25226,-0.54246 -0.0959,-0.22404 -0.19475,-0.50202 -0.15853,-0.47893 -0.1245,-0.45864 -0.0924,-0.44046 -0.0621,-0.42405 -0.0329,-0.40916 -0.01,-0.39549", + "fill": { + "paint": "transparent" + }, + "id": "path2797", + "name": "path2797", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 190.79219,212.49133 -0.62958,0.009 -0.62976,-0.001 -0.62979,-0.008 -0.51838,-0.009 -0.36725,-0.008 -0.62613,-0.0227 -0.62342,-0.0255 -0.62075,-0.0342 -0.61774,-0.0382 -0.61464,-0.0442 -0.61128,-0.0501 -0.60771,-0.0555 -0.6042,-0.0612 -0.60045,-0.0666 -0.59648,-0.0723 -0.59245,-0.0776", + "fill": { + "paint": "transparent" + }, + "id": "path2798", + "name": "path2798", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 181.30218,211.92318 -0.29779,-0.0413 -0.39628,-0.0572 -0.39436,-0.06 -0.1295,-0.0199 -0.39042,-0.0626 -0.38763,-0.0649 -0.38471,-0.0677 -0.38168,-0.0697 -0.37872,-0.072 -0.37581,-0.0742 -0.37275,-0.0765 -0.36984,-0.0785", + "fill": { + "paint": "transparent" + }, + "id": "path2799", + "name": "path2799", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 133.05794,128.01816 0.58649,-0.27094 0.61177,-0.24478 0.63318,-0.21667 0.39453,-0.11739 0.65845,-0.16818 0.68231,-0.14009 0.70406,-0.11103 0.42476,-0.0515 0.7332,-0.0631 0.75552,-0.0321 0.77672,-5.2e-4 0.40777,0.0111 0.80595,0.0482 0.82665,0.0817 0.84808,0.11628 0.3527,0.0576 0.87958,0.16688 0.89382,0.20295 0.90914,0.23995 0.92483,0.27809 0.94112,0.31752 0.95801,0.35819 0.45499,0.18212 0.98354,0.42059 0.98839,0.45946 0.99562,0.50043 0.0638,0.0328 1.00648,0.54668 1.0093,0.58763 0.98362,0.61118 1.01678,0.67265 1.0083,0.7096 0.9995,0.74702 0.99024,0.78508 0.9806,0.82366 0.71397,0.63004 0.96245,0.89183 0.93844,0.92022 0.91342,0.94814 0.88754,0.9756 0.86077,1.00249 0.45623,0.55588 0.41198,0.51782 0.79645,1.04736 0.75788,1.06076 0.71892,1.07297 0.67912,1.08432 0.63915,1.0946 0.37277,0.67746 0.56357,1.09038 0.51729,1.08639 0.47104,1.08153 0.425,1.07585 0.37956,1.06948", + "fill": { + "paint": "transparent" + }, + "id": "path2800", + "name": "path2800", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 190.77455,186.76275 -0.62882,0.003 -0.62892,-0.001 -0.62888,-0.009 -0.51602,-0.008 -0.36154,-0.008 -0.62521,-0.0227 -0.62267,-0.0255 -0.61982,-0.0345 -0.6169,-0.0382 -0.61379,-0.0442 -0.61044,-0.0496 -0.60695,-0.0555 -0.6033,-0.0612 -0.59958,-0.0666 -0.59566,-0.0723 -0.5917,-0.0776", + "fill": { + "paint": "transparent" + }, + "id": "path2801", + "name": "path2801", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 181.30435,186.1946 -0.13094,-0.0199 -0.25235,-0.0342 -0.25218,-0.0382 -0.12113,-0.0199 -0.25177,-0.0382 -0.25149,-0.0393 -0.25127,-0.0402 -0.25086,-0.0416 -0.25056,-0.0427 -0.25026,-0.0439 -0.24991,-0.045", + "fill": { + "paint": "transparent" + }, + "id": "path2802", + "name": "path2802", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 178.79154,185.79665 -0.0902,-0.0142 -0.17451,-0.0305 -0.17427,-0.0342 -0.084,-0.0142 -0.17401,-0.0342 -0.17376,-0.0342 -0.17353,-0.0342 -0.17331,-0.0342 -0.17305,-0.0342 -0.17278,-0.0382 -0.17281,-0.0382", + "fill": { + "paint": "transparent" + }, + "id": "path2803", + "name": "path2803", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 138.36315,125.39233 0.68944,-0.334 0.70164,-0.32567 0.71372,-0.31709 0.7253,-0.30831 0.73681,-0.29923 0.73074,-0.28352 0.70769,-0.2625 0.76242,-0.26977 0.76773,-0.25825 0.7724,-0.24653 0.77688,-0.23489 0.78087,-0.22302 0.17494,-0.0482 0.77535,-0.20583 0.771,-0.19204 0.76653,-0.1782 0.76216,-0.16502 0.75781,-0.15143 0.75344,-0.13818 v -1.6e-4 l 0.73674,-0.12299 0.72094,-0.10846 0.70639,-0.0943 0.69247,-0.0804 0.67948,-0.0671 0.66693,-0.0539 0.65526,-0.0409", + "fill": { + "paint": "transparent" + }, + "id": "path2804", + "name": "path2804", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 127.78473,131.95376 0.21045,-0.25151 0.21638,-0.2501 0.22282,-0.24953 0.229,-0.24841 0.16162,-0.1708 0.23968,-0.24641 0.24619,-0.24585 0.25261,-0.24501 0.25913,-0.24386 0.26564,-0.24274 0.27198,-0.24161 0.27847,-0.24046 0.28486,-0.23934 0.29113,-0.23736 0.29763,-0.23593 0.30374,-0.23464 0.30996,-0.23296 0.31607,-0.23124 0.11116,-0.0799", + "fill": { + "paint": "transparent" + }, + "id": "path2805", + "name": "path2805", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 132.55334,127.58602 0.62327,-0.43448 0.64526,-0.42762 0.66735,-0.42051 0.68928,-0.41318 0.71114,-0.40532 0.73287,-0.39726 0.75409,-0.38874 0.51251,-0.25319 0.78914,-0.37362 0.80542,-0.36195 0.82136,-0.35003 0.83725,-0.33786 0.85286,-0.32551 0.86805,-0.31289 0.88312,-0.30008 0.19233,-0.0631 0.2066,-0.0668 0.89705,-0.27873 0.89988,-0.26194 0.90192,-0.24487 0.90323,-0.22778 0.90403,-0.21073 0.90408,-0.19345 0.9035,-0.17633 0.76402,-0.1358 0.87874,-0.14082 0.86645,-0.12222 0.85482,-0.10415 0.17187,-0.0187 0.8302,-0.0819 0.81121,-0.0639 0.793,-0.0463 0.77569,-0.0286", + "fill": { + "paint": "transparent" + }, + "id": "path2806", + "name": "path2806", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 126.91851,144.51348 -0.0714,-0.16625 -0.18542,-0.45265 -0.17019,-0.44877 -0.15569,-0.44488 -0.14091,-0.44109 -0.12661,-0.43706 -0.11234,-0.43313 -0.0983,-0.42928 -0.009,-0.0199 -0.084,-0.42451 -0.0697,-0.4199 -0.0562,-0.41518 -0.0429,-0.41032 -0.0293,-0.40549 -0.0168,-0.40047 v -0.39558 l 0.01,-0.39061 0.0168,-0.31547 0.0326,-0.37971 0.0445,-0.37343 0.0562,-0.36715 0.0688,-0.36088 0.0807,-0.35442 0.0917,-0.34796 0.10306,-0.34153 0.11428,-0.33507 0.074,-0.19741 0.13186,-0.32519 0.14257,-0.31831 0.1528,-0.31105 0.16283,-0.30341 0.17233,-0.29541 0.18165,-0.28715 0.19042,-0.27871 0.19924,-0.27021 0.20734,-0.26143", + "fill": { + "paint": "transparent" + }, + "id": "path2807", + "name": "path2807", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 190.80546,199.6367 -0.31525,0.003 -0.31509,0.002 -0.63038,-5.3e-4 -0.63043,-0.008 -0.52033,-0.009 -0.3715,-0.008 -0.62672,-0.0227 -0.62411,-0.0255 -0.62136,-0.0342 -0.61838,-0.0382 -0.61523,-0.0445 -0.61185,-0.0496 -0.60841,-0.0555 -0.6048,-0.0612 -0.601,-0.0666 -0.59716,-0.0723 -0.59297,-0.0776", + "fill": { + "paint": "transparent" + }, + "id": "path2808", + "name": "path2808", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 181.30049,199.06892 -0.29903,-0.0416 -0.39689,-0.0572 -0.39484,-0.06 -0.13212,-0.0199 -0.391,-0.0632 -0.38813,-0.0655 -0.38495,-0.0677 -0.38217,-0.0697 -0.37925,-0.0723 -0.3762,-0.0742 -0.37321,-0.0765 -0.37016,-0.0788", + "fill": { + "paint": "transparent" + }, + "id": "path2809", + "name": "path2809", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 172.31492,159.12072 0.0143,0.13171 0.0312,0.34645 0.0252,0.34263 0.0191,0.33958 0.0121,0.33651 0.01,0.21187 v 0.32924 0.32544 l -0.01,0.32046 -0.0143,0.31663 -0.0191,0.31244 -0.0241,0.30825 -0.0302,0.30436 -0.0352,0.30021 -0.0402,0.29635 -0.0462,0.29217 -0.0512,0.28836 -0.0562,0.28489 -0.0614,0.28125", + "fill": { + "paint": "transparent" + }, + "id": "path2810", + "name": "path2810", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 144.03502,92.588301 0.0201,-0.0099", + "fill": { + "paint": "transparent" + }, + "id": "path2979", + "name": "path2979", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 144.05526,92.578549 0.84338,-0.379007", + "fill": { + "paint": "transparent" + }, + "id": "path2980", + "name": "path2980", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 144.65166,92.623627 0.84161,-0.378246", + "fill": { + "paint": "transparent" + }, + "id": "path2981", + "name": "path2981", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 144.65166,92.623627 -0.40847,0.210077", + "fill": { + "paint": "transparent" + }, + "id": "path2982", + "name": "path2982", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 137.84503,130.74179 -2.23445,1.00419", + "fill": { + "paint": "transparent" + }, + "id": "path2983", + "name": "path2983", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 153.031,238.47158 v 0.26483", + "fill": { + "paint": "transparent" + }, + "id": "path2984", + "name": "path2984", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 227.522,129.86709 0.84161,-0.37825", + "fill": { + "paint": "transparent" + }, + "id": "path2985", + "name": "path2985", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 228.36311,130.99358 0.84163,-0.37827", + "fill": { + "paint": "transparent" + }, + "id": "path2986", + "name": "path2986", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 179.3426,256.92817 -2.75535,-7.84624", + "fill": { + "paint": "transparent" + }, + "id": "path2987", + "name": "path2987", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 169.77431,159.67564 -0.11344,0.0512", + "fill": { + "paint": "transparent" + }, + "id": "path2988", + "name": "path2988", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "M 144.65166,92.623627 227.522,129.86709", + "fill": { + "paint": "transparent" + }, + "id": "path2989", + "name": "path2989", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 145.49327,92.245389 82.87034,37.243451", + "fill": { + "paint": "transparent" + }, + "id": "path2990", + "name": "path2990", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 228.36831,251.01304 0.84158,-0.37822", + "fill": { + "paint": "transparent" + }, + "id": "path2991", + "name": "path2991", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 228.12602,251.4279 0.83743,-0.37635", + "fill": { + "paint": "transparent" + }, + "id": "path2992", + "name": "path2992", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 228.12602,251.4279 -0.0101,0.003", + "fill": { + "paint": "transparent" + }, + "id": "path2993", + "name": "path2993", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 212.72247,257.57016 15.64584,-6.55712", + "fill": { + "paint": "transparent" + }, + "id": "path2994", + "name": "path2994", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 164.44071,145.28769 c -0.13865,-0.19883 -0.27947,-0.39611 -0.42248,-0.59276", + "fill": { + "paint": "transparent" + }, + "id": "path3041", + "name": "path3041", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 166.35706,148.35911 c -0.12855,-0.23226 -0.26025,-0.46423 -0.39478,-0.6947", + "fill": { + "paint": "transparent" + }, + "id": "path3042", + "name": "path3042", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 167.75116,151.21285 c -0.037,-0.0875 -0.0747,-0.17504 -0.11302,-0.26256", + "fill": { + "paint": "transparent" + }, + "id": "path3043", + "name": "path3043", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 179.3426,256.92817 0.0672,0.16966 0.0823,0.17051 0.0976,0.17051 0.0672,0.10395 0.12166,0.16881 0.13747,0.16767 0.15361,0.1674 0.0862,0.0862 0.17896,0.16541 0.19558,0.16399 0.21261,0.16201 0.0873,0.0623 0.23739,0.15947 0.25429,0.15578 0.27192,0.15295 0.073,0.0393 0.29561,0.14899 0.31221,0.14416 0.32953,0.13964 0.047,0.0199 0.35068,0.1337 0.36639,0.12773 0.38276,0.12151 0.0128,0.003 0.4005,0.11415 0.41451,0.1065 0.40474,0.0932 0.44248,0.0906 0.45423,0.0819 0.40747,0.0643 0.47666,0.0643 0.48351,0.0535 0.48983,0.0433 0.49555,0.0306 0.50094,0.0227 0.31523,0.009 0.29761,0.003 0.50505,-0.003 0.5026,-0.0142 0.49941,-0.0255 0.49577,-0.0382 0.49169,-0.0473 0.36176,-0.0425 0.4722,-0.0646 0.46095,-0.0742 0.45006,-0.0838 0.43928,-0.0926 0.42851,-0.10169 0.0226,-0.008 0.40998,-0.10962 0.39292,-0.11613 0.37638,-0.12264 0.36041,-0.12915 0.34491,-0.13568 0.32979,-0.1419", + "fill": { + "paint": "transparent" + }, + "id": "path3062", + "name": "path3062", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 199.44238,257.21531 -0.0421,0.0802 -0.0453,0.0802 -0.0487,0.0802 -0.052,0.0808 -0.0554,0.0802 -0.0588,0.0802 -0.0631,0.0802 -0.0496,0.0598 -0.0689,0.0796 -0.0723,0.0791 -0.0766,0.0791 -0.0797,0.0788 -0.0841,0.0788 -0.0872,0.0785 -0.0912,0.0779 -0.0462,0.0382 -0.0972,0.0777 -0.10108,0.0774 -0.10464,0.0765 -0.10837,0.0759 -0.11231,0.0754 -0.11644,0.0751 -0.12056,0.0745 -0.0234,0.0142 -0.1254,0.0737 -0.12936,0.0725 -0.13309,0.072 -0.13702,0.0711 -0.14094,0.07 -0.14506,0.0691 -0.13608,0.0623", + "fill": { + "paint": "transparent" + }, + "id": "path3063", + "name": "path3063", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 135.61058,131.746 -0.27838,0.13001 -0.27393,0.13822 -0.26881,0.14615 -0.26301,0.1538 -0.23036,0.14418 -0.25048,0.16738 -0.24524,0.17533 -0.23955,0.18325 -0.23372,0.19119 -0.19719,0.17136 -0.22151,0.20506 -0.21562,0.21357 -0.20953,0.2215 -0.20331,0.2297 -0.15629,0.1875 -0.19105,0.2433 -0.18422,0.25209 -0.1776,0.26029 -0.17047,0.2688 -0.11352,0.19033 -0.15818,0.28268 -0.15048,0.29094 -0.14268,0.29924 -0.13478,0.3078 -0.0731,0.17929 -0.12201,0.32125 -0.11337,0.32944 -0.10465,0.33798 -0.0957,0.34674 -0.0395,0.15748 -0.0831,0.36003 -0.0731,0.36761 -0.063,0.37527 -0.0529,0.38311 -0.0428,0.39107 -0.0328,0.39928 -0.0219,0.40749 -0.0116,0.41591 v 0.22574", + "fill": { + "paint": "transparent" + }, + "id": "path3064", + "name": "path3064", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 169.66086,159.72659 -0.008,-0.38087 -0.0133,-0.38529 -0.0224,-0.39004 -0.031,-0.39496 -0.0403,-0.39972 -0.0504,-0.40481 -0.0596,-0.40982 -0.0688,-0.41509 -0.0789,-0.4203 -0.0887,-0.42576 -0.0252,-0.11387 -0.10158,-0.43264 -0.11118,-0.43548 -0.12081,-0.43806 -0.13076,-0.44092 -0.14049,-0.44361 -0.15056,-0.44641 -0.16061,-0.4493 -0.1708,-0.452 -0.18112,-0.45493 -0.15836,-0.38051", + "fill": { + "paint": "transparent" + }, + "id": "path3065", + "name": "path3065", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 167.63812,150.95047 -0.11503,-0.25974 -0.11817,-0.2603 -0.0597,-0.12887 -0.0638,-0.13595 -0.12427,-0.26031 -0.12689,-0.25944 -0.12955,-0.25859 -0.13202,-0.25747 -0.13471,-0.25718 -0.13719,-0.25633 -0.13963,-0.2552", + "fill": { + "paint": "transparent" + }, + "id": "path3066", + "name": "path3066", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 165.96228,147.66441 -0.0697,-0.11839 -0.14345,-0.24076 -0.14572,-0.23991 -0.0747,-0.1215 -0.14895,-0.23905 -0.15117,-0.23849 -0.15325,-0.23708 -0.15544,-0.23622 -0.15752,-0.23566 -0.15972,-0.23451 -0.16172,-0.23367", + "fill": { + "paint": "transparent" + }, + "id": "path3067", + "name": "path3067", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 164.01823,144.69493 -0.32726,-0.44288 -0.41123,-0.53767 -0.42098,-0.53059 -0.43062,-0.5234 -0.44021,-0.51578 -0.44919,-0.50799 -0.45801,-0.49997 -0.46657,-0.49164 -0.4748,-0.48318 -0.4827,-0.47445 -0.4905,-0.46563 -0.25765,-0.2382 -0.49713,-0.44771 -0.5016,-0.43619 -0.50588,-0.4248 -0.51032,-0.41356 -0.51469,-0.40246 -0.34103,-0.25915 -0.51755,-0.38102 -0.51897,-0.36838 -0.52049,-0.35569 -0.52174,-0.34326 -0.5231,-0.33094", + "fill": { + "paint": "transparent" + }, + "id": "path3068", + "name": "path3068", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 153.43601,134.82074 -0.47925,-0.29186 -0.55256,-0.32314 -0.5498,-0.30757 -0.54735,-0.29239 -0.54484,-0.27757 -0.54249,-0.26256 -0.53997,-0.24841 -0.53787,-0.23423 -0.53569,-0.22037 -0.34011,-0.13312 -0.52518,-0.19544 -0.51931,-0.1807 -0.51419,-0.16683 -0.50932,-0.15295 -0.40611,-0.11329 -0.49706,-0.12774 -0.4905,-0.11443 -0.48438,-0.10111 -0.47816,-0.0883 -0.45909,-0.0737 -0.46356,-0.0632 -0.45616,-0.0507 -0.44893,-0.0385 -0.44172,-0.0255 -0.0554,-0.002 -0.43407,-0.0142 -0.4266,-0.002 -0.41896,0.008 -0.41123,0.0199 -0.40318,0.0308 -0.0981,0.009 -0.39502,0.0447 -0.38806,0.0555 -0.38016,0.066 -0.37217,0.0762 -0.36346,0.0861 -0.10545,0.0255 -0.35682,0.10027 -0.35043,0.11075 -0.34288,0.12066 -0.33457,0.13 -0.3254,0.13936", + "fill": { + "paint": "transparent" + }, + "id": "path3069", + "name": "path3069", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 144.89855,92.199431 0.0168,-0.0074 0.0176,-0.0065 0.0186,-0.0062 0.0194,-0.0054 0.0201,-0.0045 0.0209,-0.0037 0.0216,-0.0034 0.0224,-0.0026 0.0226,-0.002 0.0234,-0.0013 0.0244,-2.24e-4 0.0244,6.33e-4 0.0201,0.0013 0.0244,0.002 0.0252,0.0034 0.0252,0.0037 0.0252,0.0045 0.0261,0.0062 0.0261,0.0068 0.0269,0.0077 0.0277,0.0088 0.0277,0.0099 0.0285,0.01076 0.0294,0.0119 0.0285,0.01275", + "fill": { + "paint": "transparent" + }, + "id": "path3070", + "name": "path3070", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 228.36361,129.48884 0.0334,0.0142 0.0337,0.017 0.0334,0.017 0.0334,0.0199 0.0334,0.0199 0.0337,0.0227 0.0334,0.0227 0.0337,0.0254 0.0334,0.0255 0.0176,0.0142 0.0334,0.0284 0.0332,0.0289 0.0322,0.0297 0.0314,0.0307 0.0304,0.0317 0.0297,0.0325 0.0289,0.0331 0.0281,0.0339 0.0254,0.0328 0.0254,0.0331 0.0254,0.0357 0.0254,0.0359 0.0226,0.0359 0.0201,0.0362 0.0201,0.0362 0.0176,0.0368 0.0176,0.0368 0.0151,0.0365 0.0101,0.017 0.0101,0.0359 0.0101,0.0348 0.01,0.0345 0.0101,0.0337 0.0101,0.0328 0.0101,0.0325 v 0.0317 0.0309 0.0305", + "fill": { + "paint": "transparent" + }, + "id": "path3071", + "name": "path3071", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 229.20989,250.63474 -4.8e-4,0.0227 v 0.0255 0.0227 0.0227 l -0.0101,0.0227 -0.0101,0.0227 -0.0101,0.0227 -0.0101,0.0199 -0.0101,0.0199 -0.0101,0.0199 -0.0101,0.0199 -0.0101,0.0142 -0.0101,0.0113 -0.0126,0.0142 -0.0101,0.0142 -0.0101,0.0142 -0.0151,0.0142 -0.0151,0.0114 -0.0151,0.0114 -0.0151,0.0113 -0.0151,0.0114 -0.0176,0.0114 -0.0176,0.008 -0.0176,0.008 -0.0176,0.009", + "fill": { + "paint": "transparent" + }, + "id": "path3072", + "name": "path3072", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 229.20474,130.61531 0.0636,6.11241 0.1058,12.00177 0.0797,12.00186 0.0297,5.88945 0.0402,12.00203 0.0151,12.00214 -0.0101,12.00214 -0.0384,12.00211 -0.0653,12.00203 -0.0925,12.00185 -0.11887,12.00164", + "fill": { + "paint": "transparent" + }, + "id": "path3073", + "name": "path3073", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 144.24319,92.833673 -1.42398,0.732128 -1.42408,0.732123 -1.42398,0.732141 -1.42408,0.732121 -1.42399,0.732125 -1.4239,0.732136 -1.42408,0.732128 -1.42398,0.732137 -1.42408,0.732127 -1.42399,0.732131", + "fill": { + "paint": "transparent" + }, + "id": "path3074", + "name": "path3074", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 212.68864,138.04283 1.5675,-0.70489 1.56736,-0.70496 1.56748,-0.70492 1.56735,-0.70493 1.5675,-0.70492 1.56741,-0.70493 1.56743,-0.7049 1.5675,-0.70498 1.56743,-0.70487 1.56751,-0.70495", + "fill": { + "paint": "transparent" + }, + "id": "path3075", + "name": "path3075", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + }, + { + "d": "m 228.36311,130.99358 0.0636,6.11239 0.1058,12.00177 0.0797,12.00185 0.0297,5.88944 0.0402,12.00206 0.0151,12.00211 -0.0126,12.00217 -0.0385,12.00206 -0.0656,12.002 -0.0925,12.00186 -0.11887,12.00175", + "fill": { + "paint": "transparent" + }, + "id": "path3076", + "name": "path3076", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 227.522,129.86709 0.0337,0.0142 0.0334,0.017 0.0337,0.017 0.0334,0.0199 0.0334,0.0199 0.0337,0.0227 0.0334,0.0227 0.0334,0.0255 0.0334,0.0254 0.0201,0.0142 0.0334,0.0283 0.0332,0.0292 0.0322,0.0297 0.0314,0.0309 0.0304,0.0317 0.0297,0.0328 0.0286,0.0337 0.0276,0.0348 0.0254,0.0314 0.0254,0.0314 0.0254,0.0362 0.0254,0.0362 0.0226,0.0362 0.0226,0.0362 0.0201,0.0362 0.0176,0.0362 0.0176,0.0368 0.0151,0.0368 0.0101,0.0199 0.0126,0.0354 0.0101,0.0348 0.0101,0.0339 0.01,0.0332 0.0101,0.0328 0.0101,0.032 v 0.0315 0.0308 0.0304", + "fill": { + "paint": "transparent" + }, + "id": "path3077", + "name": "path3077", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 228.36831,251.01304 -4.8e-4,0.0227 v 0.0255 0.0227 0.0227 0.0227 l -0.0101,0.0227 -0.0101,0.0199 -0.0101,0.0199 -0.01,0.0199 -0.0101,0.0199 -0.0101,0.0199 -0.0101,0.0142 -0.01,0.0114 -0.0101,0.0142 -0.0101,0.0142 -0.01,0.0142 -0.0151,0.0142 -0.0151,0.0114 -0.0151,0.0113 -0.0151,0.0114 -0.0151,0.0114 -0.0151,0.0113 -0.0176,0.009 -0.0176,0.008 -0.0176,0.008", + "fill": { + "paint": "transparent" + }, + "id": "path3078", + "name": "path3078", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 144.05526,92.578549 0.0168,-0.0074 0.0176,-0.0068 0.0186,-0.0062 0.0194,-0.0054 0.0201,-0.0045 0.0209,-0.0037 0.0216,-0.0034 0.0226,-0.0026 0.0224,-0.002 0.0234,-0.0013 0.0244,-2.52e-4 0.0244,5.54e-4 0.0194,0.0013 0.0244,0.002 0.0252,0.0026 0.0252,0.0037 0.0252,0.0045 0.026,0.0054 0.0261,0.0065 0.0269,0.0074 0.0269,0.0088 0.0277,0.0099 0.0285,0.01076 0.0294,0.0119 0.0302,0.01303 v 4.49e-4", + "fill": { + "paint": "transparent" + }, + "id": "path3079", + "name": "path3079", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.06692" + }, + "type": "path" + }, + { + "d": "m 211.82404,136.92687 1.56971,-0.706 1.5699,-0.70597 1.56966,-0.70595 1.56987,-0.706 1.56979,-0.70595 1.56984,-0.70597 1.56984,-0.706 1.56972,-0.706 1.56987,-0.70595 1.56976,-0.70599", + "fill": { + "paint": "transparent" + }, + "id": "path3080", + "name": "path3080", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "0.266729" + }, + "type": "path" + } + ], + "id": "layer1", + "name": "layer1", + "transform": "translate(-65.352061,-85.993237)", + "type": "group" + } + ], + "viewBox": "0 0 240 180" + }, + "type": "ia.shapes.svg" + } + ], + "meta": { + "name": "root" + }, + "props": { + "direction": "column" + }, + "type": "ia.container.flex" + } +} \ No newline at end of file diff --git a/.resources/c47878fe834504deb573850c8dc086ad49551e70852a086ce474008868b8a9ce b/.resources/c47878fe834504deb573850c8dc086ad49551e70852a086ce474008868b8a9ce new file mode 100644 index 00000000..c7e9e87d --- /dev/null +++ b/.resources/c47878fe834504deb573850c8dc086ad49551e70852a086ce474008868b8a9ce @@ -0,0 +1,44 @@ +def handleClick(data): + if not data or len(data) != 1: + return + + row = data[0] + clickedTagPath = row.get("FullTag", "") + MCM = row.get("Location", "") + + MCM_Pages_Map = { + "MCM01": "autStand/Detailed_Views/MCM01-FLUID INBOUND", + "MCM02": "autStand/Detailed_Views/MCM02-NC SORTER", + } + + + page = MCM_Pages_Map.get(MCM) + + if not page: + return + + device = row.get("Device", "") + + if not device or not clickedTagPath: + return + + pathToDevice = "" + + # check for the mcm + if "MCM" in device: + parts = clickedTagPath.split("/") + pathToDevice = "/".join(parts[:3]) + + else: + index = clickedTagPath.find(device) + if index == -1: + return + pathToDevice = clickedTagPath[:index + len(device)] + + priority = row.get("Priority", "") + + #combining with priority + combined = pathToDevice + "||" + priority + + # Navigate to target view, passing the tag to highlight + system.perspective.navigate(view = page, params = {'highlightTagPath': str(combined)}) \ No newline at end of file diff --git a/.resources/ee0fa93af05933d19c71dcf1f22aaa4b855265f6bf1f02a693cf5218bfcc0247 b/.resources/c5114b673dc55f800ed09a0f7da5e02301ba032e71d6077672a3570c4b164608 similarity index 99% rename from .resources/ee0fa93af05933d19c71dcf1f22aaa4b855265f6bf1f02a693cf5218bfcc0247 rename to .resources/c5114b673dc55f800ed09a0f7da5e02301ba032e71d6077672a3570c4b164608 index 073131d5..b809ed77 100644 --- a/.resources/ee0fa93af05933d19c71dcf1f22aaa4b855265f6bf1f02a693cf5218bfcc0247 +++ b/.resources/c5114b673dc55f800ed09a0f7da5e02301ba032e71d6077672a3570c4b164608 @@ -464,7 +464,6 @@ ], "custom": { "priorities": { - "critical": false, "diagnostic": false, "high": false, "low": false, @@ -672,7 +671,7 @@ "component": { "onRowDoubleClick": { "config": { - "script": "\n\tmyData \u003d self.props.selection.data\n\n\talarms.alarm_click.handleClick(myData)\n\t\n\t" + "script": "\n\tmyData \u003d self.props.selection.data\n\n\tautStand.Alarms.handleClick(myData)\n\t\n\t" }, "scope": "G", "type": "script" @@ -3069,7 +3068,7 @@ "value": { "$": [ "ts", - 192, + 201, 1755608469647 ], "$ts": 1755608469646 @@ -3261,7 +3260,7 @@ "$": [ "ts", 192, - 1755608469647 + 1758280365675 ], "$ts": 1755606669646 }, @@ -3269,7 +3268,7 @@ "$": [ "ts", 192, - 1755608469647 + 1758280365675 ], "$ts": 1755608469646 } @@ -4411,7 +4410,7 @@ "$": [ "ts", 192, - 1755608469647 + 1758280365675 ], "$ts": 1755606669646 }, @@ -4419,7 +4418,7 @@ "$": [ "ts", 192, - 1755608469647 + 1758280365675 ], "$ts": 1755608469646 }, diff --git a/.resources/c5a6419678f97e45b9e39398319106a18721f8131118816a4c7de610fa74d91d b/.resources/c5a6419678f97e45b9e39398319106a18721f8131118816a4c7de610fa74d91d deleted file mode 100644 index d0564db6..00000000 Binary files a/.resources/c5a6419678f97e45b9e39398319106a18721f8131118816a4c7de610fa74d91d and /dev/null differ diff --git a/.resources/c5e617eaa2448f7f501a590a123a127fbbaae053fb602c547b52e914577990eb b/.resources/c5e617eaa2448f7f501a590a123a127fbbaae053fb602c547b52e914577990eb deleted file mode 100644 index 083d011f..00000000 Binary files a/.resources/c5e617eaa2448f7f501a590a123a127fbbaae053fb602c547b52e914577990eb and /dev/null differ diff --git a/.resources/c60bef4e5cb9860c346a4dd5ebcf9349cb01d325cea9e079810d3f2219f053ac b/.resources/c60bef4e5cb9860c346a4dd5ebcf9349cb01d325cea9e079810d3f2219f053ac new file mode 100644 index 00000000..a9a7933b --- /dev/null +++ b/.resources/c60bef4e5cb9860c346a4dd5ebcf9349cb01d325cea9e079810d3f2219f053ac @@ -0,0 +1,5280 @@ +{ + "custom": {}, + "params": { + "highlightTagPath": "" + }, + "propConfig": { + "params.highlightTagPath": { + "onChange": { + "enabled": null, + "script": "\tutils.handleTagHighlight(self.view, currentValue)" + }, + "paramDirection": "input", + "persistent": true + } + }, + "props": { + "defaultSize": { + "height": 1080, + "width": 1920 + } + }, + "root": { + "children": [ + { + "meta": { + "name": "MCM03 Fluid Inbound" + }, + "position": { + "height": 1, + "width": 1 + }, + "props": { + "elements": [ + { + "id": "defs1", + "name": "defs1", + "type": "defs" + }, + { + "elements": [ + { + "d": "m 583.59942,492.84869 c 0,0 0.62731,-15.18729 6.78515,-23.85315 6.15784,-8.66587 18.92763,-14.76567 18.92763,-14.76567 l 10.04922,17.5097 c 0,0 -7.38732,4.06826 -11.05395,9.39509 -3.66672,5.32684 -3.99967,11.80338 -3.99967,11.80338 z", + "fill": { + "paint": "#ffffff" + }, + "id": "path9-4-6-2-4-8-9-8", + "name": "path9-4-6-2-4-8-9-8", + "stroke": { + "dasharray": "none", + "dashoffset": "0", + "paint": "#000000", + "width": "1" + }, + "type": "path" + }, + { + "d": "m 659.4381,503.38522 c 0,0 0.6273,-15.18727 6.7852,-23.85313 6.1579,-8.66589 18.92768,-14.76569 18.92768,-14.76569 l 10.049,17.5097 c 0,0 -7.3872,4.06826 -11.0539,9.39511 -3.6666,5.32683 -3.9995,11.80336 -3.9995,11.80336 z", + "fill": { + "paint": "#ffffff" + }, + "id": "path9-4-6-2-4-8-9", + "name": "path9-4-6-2-4-8-9", + "stroke": { + "dasharray": "none", + "dashoffset": "0", + "paint": "#000000", + "width": "1" + }, + "type": "path" + }, + { + "d": "m 735.30918,515.60971 c 0,0 0.6273,-15.18728 6.7852,-23.85313 6.1579,-8.66587 18.9276,-14.76567 18.9276,-14.76567 l 10.0492,17.50968 c 0,0 -7.3873,4.06827 -11.0538,9.39511 -3.6668,5.32683 -3.9998,11.80338 -3.9998,11.80338 z", + "fill": { + "paint": "#ffffff" + }, + "id": "path9-4-6-2-4-8", + "name": "path9-4-6-2-4-8", + "stroke": { + "dasharray": "none", + "dashoffset": "0", + "paint": "#000000", + "width": "1" + }, + "type": "path" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "47.417732", + "id": "rect1-6-2-3-0-54-1-5-5-5-6-2-3-8-3", + "name": "rect1-6-2-3-0-54-1-5-5-5-6-2-3-8-3", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "rotate(-118.65477)", + "type": "rect", + "width": "20.471441", + "x": "-803.82092", + "y": "442.67944" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "20.284283", + "id": "rect1-6-2-3-0-54-1-5-5-5-6-2-4", + "name": "rect1-6-2-3-0-54-1-5-5-5-6-2-4", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "rotate(-118.65477)", + "type": "rect", + "width": "20.471441", + "x": "-756.27002", + "y": "380.56982" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "20.284283", + "id": "rect1-6-2-3-0-54-1-5-5-5-5-3", + "name": "rect1-6-2-3-0-54-1-5-5-5-5-3", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "rotate(-118.65477)", + "type": "rect", + "width": "20.471441", + "x": "-756.68005", + "y": "403.47058" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "20.284283", + "id": "rect1-6-2-3-0-54-1-5-5-3-3", + "name": "rect1-6-2-3-0-54-1-5-5-3-3", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "rotate(-118.65477)", + "type": "rect", + "width": "20.471441", + "x": "-757.09326", + "y": "426.89008" + }, + { + "d": "m 785.06648,411.52078 9.7083,16.70776 32.3145,-16.79931 z", + "fill": { + "paint": "#ffffff" + }, + "id": "path5-6-62", + "name": "path5-6-62", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "type": "path" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "39.206818", + "id": "rect1-6-2-3-0-54-1-5-8-8", + "name": "rect1-6-2-3-0-54-1-5-8-8", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "rotate(-118.65477)", + "type": "rect", + "width": "20.471441", + "x": "-757.26428", + "y": "449.88385" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "25.315859", + "id": "rect1-6-2-3-0-54-1-5-5-5-6-2-3-8-5", + "name": "rect1-6-2-3-0-54-1-5-5-5-6-2-3-8-5", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "rotate(-118.65477)", + "type": "rect", + "width": "20.471441", + "x": "-710.87549", + "y": "320.49847" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "26.407169", + "id": "rect1-6-2-3-0-54-1-5-5-5-5-9-2-1", + "name": "rect1-6-2-3-0-54-1-5-5-5-5-9-2-1", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "rotate(-118.65477)", + "type": "rect", + "width": "20.471441", + "x": "-710.7428", + "y": "348.77063" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "29.383572", + "id": "rect1-6-2-3-0-54-1-5-5-3-4-5-7", + "name": "rect1-6-2-3-0-54-1-5-5-3-4-5-7", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "rotate(-118.65477)", + "type": "rect", + "width": "20.471441", + "x": "-710.91064", + "y": "378.17303" + }, + { + "d": "m 691.52678,410.04836 9.7082,16.70778 32.3146,-16.79933 z", + "fill": { + "paint": "#ffffff" + }, + "id": "path5-6-6-5-6", + "name": "path5-6-6-5-6", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "type": "path" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "25.315859", + "id": "rect1-6-2-3-0-54-1-5-5-5-6-2-3-8", + "name": "rect1-6-2-3-0-54-1-5-5-5-6-2-3-8", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "rotate(-118.65477)", + "type": "rect", + "width": "20.471441", + "x": "-803.16565", + "y": "493.05017" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "26.407169", + "id": "rect1-6-2-3-0-54-1-5-5-5-5-9-2", + "name": "rect1-6-2-3-0-54-1-5-5-5-5-9-2", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "rotate(-118.65477)", + "type": "rect", + "width": "20.471441", + "x": "-803.80896", + "y": "520.68365" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "29.383572", + "id": "rect1-6-2-3-0-54-1-5-5-3-4-5", + "name": "rect1-6-2-3-0-54-1-5-5-3-4-5", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "rotate(-118.65477)", + "type": "rect", + "width": "20.471441", + "x": "-803.74829", + "y": "549.47589" + }, + { + "d": "m 887.01648,409.9197 9.7084,16.70778 32.3145,-16.79932 z", + "fill": { + "paint": "#ffffff" + }, + "id": "path5-6-6-5", + "name": "path5-6-6-5", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "type": "path" + }, + { + "d": "m 810.25248,537.28588 c 0,0 0.6274,-15.18728 6.7853,-23.85313 6.1579,-8.66588 18.9276,-14.76568 18.9276,-14.76568 l 10.0492,17.50969 c 0,0 -7.3875,4.06827 -11.054,9.39512 -3.6667,5.32682 -3.9998,11.80336 -3.9998,11.80336 z", + "fill": { + "paint": "#ffffff" + }, + "id": "path9-4-6-2-4", + "name": "path9-4-6-2-4", + "stroke": { + "dasharray": "none", + "dashoffset": "0", + "paint": "#000000", + "width": "1" + }, + "type": "path" + }, + { + "d": "m 985.05448,550.70095 c 0,0 -0.7617,-12.56946 5.39624,-24.86824 6.1578,-12.29879 27.79628,-20.90961 27.79628,-20.90961 l 10.2756,17.20746 c 0,0 -11.3003,7.20207 -16.2492,14.18508 -4.9487,6.98305 -5.7626,14.20753 -5.7626,14.20753 z", + "fill": { + "paint": "#ffffff" + }, + "id": "path9-4-6-2-6", + "name": "path9-4-6-2-6", + "stroke": { + "dasharray": "none", + "dashoffset": "0", + "paint": "#000000", + "width": "1" + }, + "type": "path" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "25.315859", + "id": "rect1-6-2-3-0-54-1-5-5-5-6-2-3", + "name": "rect1-6-2-3-0-54-1-5-5-5-6-2-3", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "rotate(-118.65477)", + "type": "rect", + "width": "20.471441", + "x": "-858.41162", + "y": "497.74054" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "26.407169", + "id": "rect1-6-2-3-0-54-1-5-5-5-5-9", + "name": "rect1-6-2-3-0-54-1-5-5-5-5-9", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "rotate(-118.65477)", + "type": "rect", + "width": "20.471441", + "x": "-859.0553", + "y": "525.37408" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "29.383572", + "id": "rect1-6-2-3-0-54-1-5-5-3-4", + "name": "rect1-6-2-3-0-54-1-5-5-3-4", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "rotate(-118.65477)", + "type": "rect", + "width": "20.471441", + "x": "-858.99475", + "y": "554.1665" + }, + { + "d": "m 917.62508,456.15031 9.7081,16.70777 32.3146,-16.7993 z", + "fill": { + "paint": "#ffffff" + }, + "id": "path5-6-6", + "name": "path5-6-6", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "type": "path" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "20.284283", + "id": "rect1-6-2-3-0-54-1-5-5-5-6-2", + "name": "rect1-6-2-3-0-54-1-5-5-5-6-2", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "rotate(-118.65477)", + "type": "rect", + "width": "20.471441", + "x": "-904.53003", + "y": "569.18195" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "20.284283", + "id": "rect1-6-2-3-0-54-1-5-5-5-5", + "name": "rect1-6-2-3-0-54-1-5-5-5-5", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "rotate(-118.65477)", + "type": "rect", + "width": "20.471441", + "x": "-904.91638", + "y": "591.86646" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "20.284283", + "id": "rect1-6-2-3-0-54-1-5-5-3", + "name": "rect1-6-2-3-0-54-1-5-5-3", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "rotate(-118.65477)", + "type": "rect", + "width": "20.471441", + "x": "-905.08167", + "y": "615.05603" + }, + { + "d": "m 887.72228,550.22119 c 0,0 -0.7617,-12.56946 5.3962,-24.86822 6.1579,-12.2988 27.7964,-20.90963 27.7964,-20.90963 l 9.8595,17.60066 c 0,0 -10.8842,6.80888 -15.833,13.79188 -4.9489,6.98305 -5.7628,14.20753 -5.7628,14.20753 z", + "fill": { + "paint": "#ffffff" + }, + "id": "path9-4-6-2", + "name": "path9-4-6-2", + "stroke": { + "dasharray": "none", + "dashoffset": "0", + "paint": "#000000", + "width": "1" + }, + "type": "path" + }, + { + "d": "m 1011.6425,456.38869 9.7081,16.70779 32.3147,-16.79932 z", + "fill": { + "paint": "#ffffff" + }, + "id": "path5-6", + "name": "path5-6", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "type": "path" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "28.172321", + "id": "rect1-6-2-3-0-54-1-5-8", + "name": "rect1-6-2-3-0-54-1-5-8", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "rotate(-118.65477)", + "type": "rect", + "width": "20.471441", + "x": "-905.40674", + "y": "638.33105" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "20.284283", + "id": "rect1-6-2-3-0-54-1-5-5-5-6", + "name": "rect1-6-2-3-0-54-1-5-5-5-6", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "rotate(-118.65477)", + "type": "rect", + "width": "20.471441", + "x": "-951.74182", + "y": "654.90222" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "20.284283", + "id": "rect1-6-2-3-0-54-1-5-5-5", + "name": "rect1-6-2-3-0-54-1-5-5-5", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "rotate(-118.65477)", + "type": "rect", + "width": "20.471441", + "x": "-951.95569", + "y": "677.66675" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "20.284283", + "id": "rect1-6-2-3-0-54-1-5-5", + "name": "rect1-6-2-3-0-54-1-5-5", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "rotate(-118.65477)", + "type": "rect", + "width": "20.471441", + "x": "-952.12122", + "y": "700.85626" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "49.171974", + "id": "rect1-6-2-0-0-6-8-8", + "name": "rect1-6-2-0-0-6-8-8", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "scale(1,-1)", + "type": "rect", + "width": "20.471323", + "x": "1238.4275", + "y": "-255.9286" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "20.487658", + "id": "rect1-6-2-3-6-8-3-6-19", + "name": "rect1-6-2-3-6-8-3-6-19", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "scale(1,-1)", + "type": "rect", + "width": "20.471323", + "x": "1239.0521", + "y": "-158.34618" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "20.487658", + "id": "rect1-6-2-3-6-8-3-6-2-5", + "name": "rect1-6-2-3-6-8-3-6-2-5", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "scale(1,-1)", + "type": "rect", + "width": "20.471323", + "x": "1238.9332", + "y": "-181.05083" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "20.487658", + "id": "rect1-6-2-3-6-8-3-6-4-3", + "name": "rect1-6-2-3-6-8-3-6-4-3", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "scale(1,-1)", + "type": "rect", + "width": "20.471323", + "x": "1238.6913", + "y": "-204.04964" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "49.171974", + "id": "rect1-6-2-0-0-6-8-86", + "name": "rect1-6-2-0-0-6-8-86", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "scale(1,-1)", + "type": "rect", + "width": "20.471323", + "x": "1091.493", + "y": "-255.37599" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "20.487658", + "id": "rect1-6-2-3-6-8-3-6-77", + "name": "rect1-6-2-3-6-8-3-6-77", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "scale(1,-1)", + "type": "rect", + "width": "20.471323", + "x": "1092.011", + "y": "-157.68669" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "20.487658", + "id": "rect1-6-2-3-6-8-3-6-2-22", + "name": "rect1-6-2-3-6-8-3-6-2-22", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "scale(1,-1)", + "type": "rect", + "width": "20.471323", + "x": "1091.8922", + "y": "-180.39131" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "20.487658", + "id": "rect1-6-2-3-6-8-3-6-4-94", + "name": "rect1-6-2-3-6-8-3-6-4-94", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "scale(1,-1)", + "type": "rect", + "width": "20.471323", + "x": "1091.6503", + "y": "-203.39018" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "142.13246", + "id": "rect1-6-2-0-0-6-8-8-9", + "name": "rect1-6-2-0-0-6-8-8-9", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "scale(1,-1)", + "type": "rect", + "width": "20.471323", + "x": "1238.6431", + "y": "-401.2056" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "95.741646", + "id": "rect1-6-2-0-0-6-8-8-9-9", + "name": "rect1-6-2-0-0-6-8-8-9-9", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "scale(1,-1)", + "type": "rect", + "width": "20.471323", + "x": "1091.8306", + "y": "-354.3522" + }, + { + "d": "m 1259.0562,404.18224 c 0,0 -2.3268,19.11372 -14.9582,33.41093 -12.6314,14.29726 -36.5569,15.82303 -36.5569,15.82303 v -19.80951 c 0,0 12.0434,0.16381 21.4211,-9.10653 9.3777,-9.27026 9.4646,-20.52246 9.4646,-20.52246 z", + "fill": { + "paint": "#ffffff" + }, + "id": "path2", + "name": "path2", + "stroke": { + "dasharray": "none", + "dashoffset": "0", + "paint": "#000000", + "width": "1" + }, + "type": "path" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "308.68222", + "id": "rect1-6-2-3-7-2-1-6-9-0-3-6", + "name": "rect1-6-2-3-7-2-1-6-9-0-3-6", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "rotate(-90)", + "type": "rect", + "width": "20.471441", + "x": "-453.75156", + "y": "896.09808" + }, + { + "d": "m 1112.2995,358.18448 c 0,0 -2.3267,19.11374 -14.958,33.41097 -12.6312,14.29723 -36.5569,15.823 -36.5569,15.823 v -19.8095 c 0,0 12.0433,0.16382 21.4213,-9.10653 9.3776,-9.27025 9.4644,-20.52246 9.4644,-20.52246 z", + "fill": { + "paint": "#ffffff" + }, + "id": "path2-8", + "name": "path2-8", + "stroke": { + "dasharray": "none", + "dashoffset": "0", + "paint": "#000000", + "width": "1" + }, + "type": "path" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "402.49969", + "id": "rect1-6-2-3-7-2-1-6-9-0-3-6-8", + "name": "rect1-6-2-3-7-2-1-6-9-0-3-6-8", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "rotate(-90)", + "type": "rect", + "width": "20.471441", + "x": "-407.5726", + "y": "654.85822" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "264.34674", + "id": "rect1-6-2-3-7-2-1-6-9-0-3-4-2-2", + "name": "rect1-6-2-3-7-2-1-6-9-0-3-4-2-2", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "scale(-1)", + "type": "rect", + "width": "20.471441", + "x": "-1005.8058", + "y": "-817.11401" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "78.679672", + "id": "rect1-6-2-3-7-2-1-6-9-0-3-4-0-2-2", + "name": "rect1-6-2-3-7-2-1-6-9-0-3-4-0-2-2", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "scale(-1)", + "type": "rect", + "width": "20.471441", + "x": "-1005.5806", + "y": "-900.59833" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "319.70706", + "id": "rect1-6-2-3-7-2-1-6-9-0-3-4-2-4", + "name": "rect1-6-2-3-7-2-1-6-9-0-3-4-2-4", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "scale(-1)", + "type": "rect", + "width": "20.471441", + "x": "-604.2915", + "y": "-817.17517" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "77.796043", + "id": "rect1-6-2-3-7-2-1-6-9-0-3-4-0-2-5", + "name": "rect1-6-2-3-7-2-1-6-9-0-3-4-0-2-5", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "scale(-1)", + "type": "rect", + "width": "20.471441", + "x": "-604.27472", + "y": "-899.63861" + }, + { + "d": "m 874.90804,889.77831 -0.15142,-39.2083 h 12.32502 l 0.15152,-14.13746 21.6707,-0.0887 -0.15142,14.13747 10.96553,0.0613 0.15163,39.14699 6.00265,3.46933 -0.0763,10.73639 -56.56321,-0.037 c -0.0693,-0.27832 0,-10.52202 0,-10.52202 z", + "fill": { + "paint": "#ffffff" + }, + "id": "path117-7-9-2-91-2-0-0-2", + "name": "path117-7-9-2-91-2-0-0-2", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1.12131" + }, + "type": "path" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "231.76694", + "id": "rect1-6-2-3-7-2-1-6-9-0-3-4-7-5-1-0-7-6", + "name": "rect1-6-2-3-7-2-1-6-9-0-3-4-7-5-1-0-7-6", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "scale(-1)", + "type": "rect", + "width": "20.471323", + "x": "-908.22772", + "y": "-784.06073" + }, + { + "d": "m 1109.4911,456.52297 9.7083,16.70777 32.3144,-16.79932 z", + "fill": { + "paint": "#ffffff" + }, + "id": "path5", + "name": "path5", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "type": "path" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "28.172321", + "id": "rect1-6-2-3-0-54-1-5", + "name": "rect1-6-2-3-0-54-1-5", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "rotate(-118.65477)", + "type": "rect", + "width": "20.471441", + "x": "-952.44604", + "y": "724.13141" + }, + { + "d": "M 797.37404,890.20923 797.2227,851.7661 h 12.32645 l 0.15134,-13.86158 21.67407,-0.087 -0.15164,13.8616 10.96689,0.0601 0.15134,38.38301 6.00385,3.40163 -0.0743,10.52698 -56.57059,-0.0363 c -0.0693,-0.27277 0,-10.31662 0,-10.31662 z", + "fill": { + "paint": "#ffffff" + }, + "id": "path117-7-9-2-91-2-0-0-2-1", + "name": "path117-7-9-2-91-2-0-0-2-1", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1.12131" + }, + "type": "path" + }, + { + "d": "m 722.12164,889.93984 -0.15145,-38.18816 h 12.32709 l 0.15155,-13.76961 21.67454,-0.0864 -0.15135,13.76961 10.96727,0.0598 0.15145,38.12844 6.00411,3.37895 -0.0743,10.45713 -56.57321,-0.0355 c -0.0693,-0.27095 0,-10.24822 0,-10.24822 z", + "fill": { + "paint": "#ffffff" + }, + "id": "path117-7-9-2-91-2-0-0-2-2", + "name": "path117-7-9-2-91-2-0-0-2-2", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1.12131" + }, + "type": "path" + }, + { + "d": "m 646.98775,889.58162 -0.15137,-37.67808 h 12.32819 l 0.15136,-13.58571 21.67665,-0.0852 -0.15156,13.58569 10.96865,0.0589 0.15136,37.61907 6.00445,3.33392 -0.0743,10.31746 -56.57813,-0.0356 c -0.0696,-0.26745 0,-10.11134 0,-10.11134 z", + "fill": { + "paint": "#ffffff" + }, + "id": "path117-7-9-2-91-2-0-0-2-13", + "name": "path117-7-9-2-91-2-0-0-2-13", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1.12131" + }, + "type": "path" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "244.76251", + "id": "rect1-6-2-3-7-2-1-6-9-0-3-4-7-5-1-0-7-6-9", + "name": "rect1-6-2-3-7-2-1-6-9-0-3-4-7-5-1-0-7-6-9", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "scale(-1)", + "type": "rect", + "width": "20.471323", + "x": "-830.93976", + "y": "-784.79749" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "265.61572", + "id": "rect1-6-2-3-7-2-1-6-9-0-3-4-7-5-1-0-7-6-9-3", + "name": "rect1-6-2-3-7-2-1-6-9-0-3-4-7-5-1-0-7-6-9-3", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "scale(-1)", + "type": "rect", + "width": "20.471323", + "x": "-754.78156", + "y": "-784.55664" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "278.00681", + "id": "rect1-6-2-3-7-2-1-6-9-0-3-4-7-5-1-0-7-6-9-3-7", + "name": "rect1-6-2-3-7-2-1-6-9-0-3-4-7-5-1-0-7-6-9-3-7", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "scale(-1)", + "type": "rect", + "width": "20.471323", + "x": "-680.19446", + "y": "-783.46857" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "49.201767", + "id": "rect1", + "name": "rect1", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "scale(-1)", + "type": "rect", + "width": "20.471436", + "x": "-680.22113", + "y": "-835.44666" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "47.326763", + "id": "rect2", + "name": "rect2", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "scale(-1)", + "type": "rect", + "width": "20.471436", + "x": "-755.12738", + "y": "-835.29041" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "47.326759", + "id": "rect3", + "name": "rect3", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "scale(-1)", + "type": "rect", + "width": "20.471436", + "x": "-830.97113", + "y": "-835.13416" + }, + { + "fill": { + "paint": "#ffffff" + }, + "height": "45.295498", + "id": "rect4", + "name": "rect4", + "stroke": { + "dasharray": "none", + "paint": "#000000", + "width": "1" + }, + "transform": "scale(-1)", + "type": "rect", + "width": "20.471436", + "x": "-908.22113", + "y": "-832.63409" + } + ], + "id": "layer1", + "name": "layer1", + "type": "group" + } + ], + "preserveAspectRatio": "none", + "viewBox": "0 0 1920 1080" + }, + "type": "ia.shapes.svg" + }, + { + "meta": { + "name": "UL7_3" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -50 + }, + "width": 0.0104, + "x": 0.3075, + "y": 0.4293 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Conveyor/VFD/UL7_3_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL8_4" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -50 + }, + "width": 0.0104, + "x": 0.347, + "y": 0.4391 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Conveyor/VFD/UL8_4_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL9_4" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -50 + }, + "width": 0.0104, + "x": 0.3865, + "y": 0.4513 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Conveyor/VFD/UL9_4_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL9_5" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -28 + }, + "width": 0.0104, + "x": 0.4064, + "y": 0.4282 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Conveyor/VFD/UL9_5_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL8_5" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -28 + }, + "width": 0.0104, + "x": 0.36, + "y": 0.4232 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Conveyor/VFD/UL8_5_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL8_6" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -28 + }, + "width": 0.0104, + "x": 0.3705, + "y": 0.4134 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Conveyor/VFD/UL8_6_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL8_7" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -28 + }, + "width": 0.0104, + "x": 0.3813, + "y": 0.4033 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Conveyor/VFD/UL8_7_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL8_9" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -28 + }, + "width": 0.0104, + "x": 0.4112, + "y": 0.3762 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Conveyor/VFD/UL8_9_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL8_8" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -28 + }, + "width": 0.0104, + "x": 0.3962, + "y": 0.389 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Conveyor/VFD/UL8_8_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL7_4" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -28 + }, + "width": 0.0104, + "x": 0.3223, + "y": 0.4119 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Conveyor/VFD/UL7_4_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL7_5" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -28 + }, + "width": 0.0104, + "x": 0.3354, + "y": 0.399 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Conveyor/VFD/UL7_5_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL7_6" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -28 + }, + "width": 0.0104, + "x": 0.3496, + "y": 0.3854 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Conveyor/VFD/UL7_6_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL7_7" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -28 + }, + "width": 0.0104, + "x": 0.3625, + "y": 0.3748 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Conveyor/VFD/UL7_7_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL9_6" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -28 + }, + "width": 0.0104, + "x": 0.4242, + "y": 0.4103 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Conveyor/VFD/UL9_6_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL9_7" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -28 + }, + "width": 0.0104, + "x": 0.4373, + "y": 0.3983 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Conveyor/VFD/UL9_7_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL9_8" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -28 + }, + "width": 0.0104, + "x": 0.4511, + "y": 0.3848 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Conveyor/VFD/UL9_8_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL9_9" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -28 + }, + "width": 0.0104, + "x": 0.4643, + "y": 0.3747 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Conveyor/VFD/UL9_9_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL10_4" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -50 + }, + "width": 0.0104, + "x": 0.4256, + "y": 0.4714 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Conveyor/VFD/UL10_4_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL12_3" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -50 + }, + "width": 0.0104, + "x": 0.517, + "y": 0.4828 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Conveyor/VFD/UL12_3_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL10_5" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -28 + }, + "width": 0.0104, + "x": 0.4402, + "y": 0.4531 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Conveyor/VFD/UL10_5_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL10_6" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -28 + }, + "width": 0.0104, + "x": 0.4532, + "y": 0.4411 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Conveyor/VFD/UL10_6_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL10_7" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -28 + }, + "width": 0.0104, + "x": 0.467, + "y": 0.4276 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Conveyor/VFD/UL10_7_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL10_8" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -28 + }, + "width": 0.0104, + "x": 0.4803, + "y": 0.4175 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Conveyor/VFD/UL10_8_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL11_5" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -28 + }, + "width": 0.0104, + "x": 0.4832, + "y": 0.4599 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Conveyor/VFD/UL11_5_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL11_6" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -28 + }, + "width": 0.0104, + "x": 0.4937, + "y": 0.4502 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Conveyor/VFD/UL11_6_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL11_7" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -28 + }, + "width": 0.0104, + "x": 0.5043, + "y": 0.44 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Conveyor/VFD/UL11_7_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL11_4" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -50 + }, + "width": 0.0104, + "x": 0.4663, + "y": 0.4824 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Conveyor/VFD/UL11_4_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL11_9" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -28 + }, + "width": 0.0104, + "x": 0.5292, + "y": 0.4177 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Conveyor/VFD/UL11_9_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL11_8" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -28 + }, + "width": 0.0104, + "x": 0.5168, + "y": 0.4282 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Conveyor/VFD/UL11_8_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL12_4" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -28 + }, + "width": 0.0104, + "x": 0.5342, + "y": 0.4602 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Conveyor/VFD/UL12_4_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL12_5" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -28 + }, + "width": 0.0104, + "x": 0.5446, + "y": 0.4503 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Conveyor/VFD/UL12_5_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL12_6" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -28 + }, + "width": 0.0104, + "x": 0.5553, + "y": 0.4401 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Conveyor/VFD/UL12_6_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS4_4A" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -90 + }, + "width": 0.0104, + "x": 0.6454, + "y": 0.2121 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Conveyor/VFD/PS4_4A_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS4_7" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -90 + }, + "width": 0.0104, + "x": 0.6457, + "y": 0.1277 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Conveyor/VFD/PS4_7_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS4_6" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -90 + }, + "width": 0.0104, + "x": 0.6457, + "y": 0.1487 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Conveyor/VFD/PS4_6_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS4_5" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -90 + }, + "width": 0.0104, + "x": 0.6455, + "y": 0.17 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Conveyor/VFD/PS4_5_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS3_4A" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -90 + }, + "width": 0.0104, + "x": 0.5689, + "y": 0.2116 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Conveyor/VFD/PS3_4A_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS3_7" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -90 + }, + "width": 0.0104, + "x": 0.5691, + "y": 0.127 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Conveyor/VFD/PS3_7_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS3_6" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -90 + }, + "width": 0.0104, + "x": 0.5691, + "y": 0.1481 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Conveyor/VFD/PS3_6_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS3_5" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -90 + }, + "width": 0.0104, + "x": 0.569, + "y": 0.1694 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Conveyor/VFD/PS3_5_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS4_3" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -90 + }, + "width": 0.0104, + "x": 0.6455, + "y": 0.2962 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Conveyor/VFD/PS4_3_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS3_3" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -90 + }, + "width": 0.0104, + "x": 0.569, + "y": 0.2743 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Conveyor/VFD/PS3_3_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS4_2" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -40 + }, + "width": 0.0104, + "x": 0.6394, + "y": 0.3888 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Conveyor/VFD/PS4_2_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS4_1" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 0 + }, + "width": 0.0104, + "x": 0.5422, + "y": 0.4012 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Conveyor/VFD/PS4_1_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS3_2" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -40 + }, + "width": 0.0104, + "x": 0.5629, + "y": 0.3462 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Conveyor/VFD/PS3_2_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS3_1" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 0 + }, + "width": 0.0104, + "x": 0.4409, + "y": 0.3584 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Conveyor/VFD/PS3_1_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL12_2" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -90 + }, + "width": 0.0104, + "x": 0.5136, + "y": 0.6247 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Conveyor/VFD/UL12_2_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL12_1" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -90 + }, + "width": 0.0104, + "x": 0.5135, + "y": 0.788 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Conveyor/VFD/UL12_1_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL7_2" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -90 + }, + "width": 0.0104, + "x": 0.3045, + "y": 0.5991 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Conveyor/VFD/UL7_2_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL7_1" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -90 + }, + "width": 0.0104, + "x": 0.3045, + "y": 0.7875 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Conveyor/VFD/UL7_1_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL11_2" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -90 + }, + "width": 0.0104, + "x": 0.4622, + "y": 0.7384 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Conveyor/VFD/UL11_2_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL11_3" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -90 + }, + "width": 0.0104, + "x": 0.4628, + "y": 0.6092 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Conveyor/VFD/UL11_3_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL12_8" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -28 + }, + "width": 0.0104, + "x": 0.5802, + "y": 0.4179 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Conveyor/VFD/UL12_8_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL12_7" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -28 + }, + "width": 0.0104, + "x": 0.5678, + "y": 0.4283 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Conveyor/VFD/UL12_7_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL10_2" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -90 + }, + "width": 0.0104, + "x": 0.4224, + "y": 0.7432 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Conveyor/VFD/UL10_2_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL9_2" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -90 + }, + "width": 0.0104, + "x": 0.3827, + "y": 0.7401 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Conveyor/VFD/UL9_2_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL8_2" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -90 + }, + "width": 0.0104, + "x": 0.3441, + "y": 0.7386 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Conveyor/VFD/UL8_2_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL10_3" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -90 + }, + "width": 0.0104, + "x": 0.4225, + "y": 0.6039 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Conveyor/VFD/UL10_3_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL9_3" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -90 + }, + "width": 0.0104, + "x": 0.3828, + "y": 0.594 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Conveyor/VFD/UL9_3_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL8_3" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -90 + }, + "width": 0.0104, + "x": 0.344, + "y": 0.5872 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Conveyor/VFD/UL8_3_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL7_1_SS1" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.3041, + "y": 0.8343 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM03/Station/SS_PB/UL7_1_SS1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/SS_Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL12_1_SS1" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 90 + }, + "width": 0.0104, + "x": 0.5135, + "y": 0.8361 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM03/Station/SS_PB/UL12_1_SS1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/SS_Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL7_2_JR1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.3177, + "y": 0.4657 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM03/Station/JR/UL7_2_JR1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL8_3_JR1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.3568, + "y": 0.4759 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM03/Station/JR/UL8_3_JR1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL9_3_JR1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.3958, + "y": 0.4907 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM03/Station/JR/UL9_3_JR1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL10_3_JR1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.4354, + "y": 0.5056 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM03/Station/JR/UL10_3_JR1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL11_3_JR1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.476, + "y": 0.5185 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM03/Station/JR/UL11_3_JR1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL12_2_JR1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.5271, + "y": 0.5194 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM03/Station/JR/UL12_2_JR1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS3_1_JR1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.4448, + "y": 0.3391 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM03/Station/JR/PS3_1_JR1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS3_1_JR2" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.5531, + "y": 0.3363 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM03/Station/JR/PS3_1_JR2", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS4_1_JR1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.563, + "y": 0.3831 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM03/Station/JR/PS4_1_JR1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS4_1_JR2" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.6281, + "y": 0.3744 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM03/Station/JR/PS4_1_JR2", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS3_7_EPC1" + }, + "position": { + "height": 0.0296, + "rotate": { + "angle": 0 + }, + "width": 0.0083, + "x": 0.5589, + "y": 0.1235 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Station/EPC/PS3_7_EPC1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS3_7_EPC1_Line" + }, + "position": { + "height": 0.0056, + "rotate": { + "angle": 90 + }, + "width": 0.0573, + "x": 0.5344, + "y": 0.1966 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Station/EPC/PS3_7_EPC1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_Line" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS3_7_EPC1_End" + }, + "position": { + "height": 0.0278, + "rotate": { + "angle": 0 + }, + "width": 0.0073, + "x": 0.5594, + "y": 0.2466 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Station/EPC/PS3_7_EPC1_End", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_End" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS3_7_EPC2_End" + }, + "position": { + "height": 0.0278, + "rotate": { + "angle": 0 + }, + "width": 0.0073, + "x": 0.5813, + "y": 0.2466 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Station/EPC/PS3_7_EPC2_End", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_End" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS3_7_EPC2_Line" + }, + "position": { + "height": 0.0056, + "rotate": { + "angle": 90 + }, + "width": 0.0552, + "x": 0.5573, + "y": 0.1947 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Station/EPC/PS3_7_EPC2", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_Line" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS3_7_EPC2" + }, + "position": { + "height": 0.0296, + "rotate": { + "angle": 0 + }, + "width": 0.0083, + "x": 0.5813, + "y": 0.1235 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Station/EPC/PS3_7_EPC2", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS3_7_S2" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.5917, + "y": 0.1328 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM03/Station/S_PB/PS3_7_S2", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS4_7_EPC1" + }, + "position": { + "height": 0.0296, + "rotate": { + "angle": 0 + }, + "width": 0.0083, + "x": 0.6354, + "y": 0.1235 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Station/EPC/PS4_7_EPC1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS4_7_EPC_Line" + }, + "position": { + "height": 0.0056, + "rotate": { + "angle": 90 + }, + "width": 0.0573, + "x": 0.6109, + "y": 0.1966 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Station/EPC/PS4_7_EPC", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_Line" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS4_7_EPC1_End" + }, + "position": { + "height": 0.0278, + "rotate": { + "angle": 0 + }, + "width": 0.0073, + "x": 0.6359, + "y": 0.2466 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Station/EPC/PS4_7_EPC1_End", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_End" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS4_7_EPC2_End" + }, + "position": { + "height": 0.0278, + "rotate": { + "angle": 0 + }, + "width": 0.0073, + "x": 0.6578, + "y": 0.2466 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Station/EPC/PS4_7_EPC2_End", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_End" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS4_7_EPC2_Line" + }, + "position": { + "height": 0.0056, + "rotate": { + "angle": 90 + }, + "width": 0.0557, + "x": 0.6336, + "y": 0.1952 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Station/EPC/PS4_7_EPC2", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_Line" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS4_7_EPC2" + }, + "position": { + "height": 0.0296, + "rotate": { + "angle": 0 + }, + "width": 0.0083, + "x": 0.6578, + "y": 0.1235 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Station/EPC/PS4_7_EPC2", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS4_7_S2" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.6682, + "y": 0.1328 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM03/Station/S_PB/PS4_7_S2", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL7_1_EPC1_End" + }, + "position": { + "height": 0.0278, + "rotate": { + "angle": 0 + }, + "width": 0.0073, + "x": 0.2955, + "y": 0.6074 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Station/EPC/UL7_1_EPC1_End", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_End" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL7_1_EPC1_Line" + }, + "position": { + "height": 0.0056, + "rotate": { + "angle": 90 + }, + "width": 0.0995, + "x": 0.2491, + "y": 0.7213 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Station/EPC/UL7_1_EPC1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_Line" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL7_1_EPC1" + }, + "position": { + "height": 0.0296, + "rotate": { + "angle": -180 + }, + "width": 0.0083, + "x": 0.2939, + "y": 0.8056 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Station/EPC/UL7_1_EPC1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL7_1_EPC2" + }, + "position": { + "height": 0.0296, + "rotate": { + "angle": -180 + }, + "width": 0.0083, + "x": 0.3173, + "y": 0.8056 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Station/EPC/UL7_1_EPC2", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL7_1_EPC2_Line" + }, + "position": { + "height": 0.0056, + "rotate": { + "angle": 90 + }, + "width": 0.101, + "x": 0.271, + "y": 0.7167 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Station/EPC/UL7_1_EPC2", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_Line" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL7_1_EPC2_End" + }, + "position": { + "height": 0.0278, + "rotate": { + "angle": 0 + }, + "width": 0.0073, + "x": 0.3179, + "y": 0.6074 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Station/EPC/UL7_1_EPC2_End", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_End" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL12_1_EPC1_End" + }, + "position": { + "height": 0.0278, + "rotate": { + "angle": 0 + }, + "width": 0.0073, + "x": 0.5043, + "y": 0.6083 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Station/EPC/UL12_1_EPC1_End", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_End" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL12_1_EPC2_End" + }, + "position": { + "height": 0.0278, + "rotate": { + "angle": 0 + }, + "width": 0.0073, + "x": 0.5267, + "y": 0.6083 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Station/EPC/UL12_1_EPC2_End", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_End" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL12_1_EPC1_Line" + }, + "position": { + "height": 0.0056, + "rotate": { + "angle": 90 + }, + "width": 0.0995, + "x": 0.458, + "y": 0.7213 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Station/EPC/UL12_1_EPC1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_Line" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL12_1_EPC2_Line" + }, + "position": { + "height": 0.0056, + "rotate": { + "angle": 90 + }, + "width": 0.099, + "x": 0.4809, + "y": 0.7204 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Station/EPC/UL12_1_EPC2", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord_Line" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL12_1_EPC1" + }, + "position": { + "height": 0.0296, + "rotate": { + "angle": -180 + }, + "width": 0.0083, + "x": 0.5028, + "y": 0.8065 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Station/EPC/UL12_1_EPC1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL12_1_EPC2" + }, + "position": { + "height": 0.0296, + "rotate": { + "angle": -180 + }, + "width": 0.0083, + "x": 0.5262, + "y": 0.8065 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Station/EPC/UL12_1_EPC2", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/PullChord" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL7_2_FIO1" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 0 + }, + "width": 0.0104, + "x": 0.3047, + "y": 0.6615 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/IO_BLOCK/FIO/UL7_2_FIO1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/DeviceStatus" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL8_3_FIO1" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 0 + }, + "width": 0.0104, + "x": 0.3438, + "y": 0.6078 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/IO_BLOCK/FIO/UL8_3_FIO1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/DeviceStatus" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL9_3_FIO1" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 0 + }, + "width": 0.0104, + "x": 0.3828, + "y": 0.5653 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/IO_BLOCK/FIO/UL9_3_FIO1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/DeviceStatus" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL10_3_FIO1" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 0 + }, + "width": 0.0104, + "x": 0.4229, + "y": 0.5653 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/IO_BLOCK/FIO/UL10_3_FIO1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/DeviceStatus" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL11_3_FIO1" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 0 + }, + "width": 0.0104, + "x": 0.463, + "y": 0.5643 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/IO_BLOCK/FIO/UL11_3_FIO1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/DeviceStatus" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL12_2_FIO1" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 0 + }, + "width": 0.0104, + "x": 0.5135, + "y": 0.7004 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/IO_BLOCK/FIO/UL12_2_FIO1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/DeviceStatus" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS3_4B" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -90 + }, + "width": 0.0104, + "x": 0.5689, + "y": 0.194 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Conveyor/VFD/PS3_4B_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS4_4B" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -90 + }, + "width": 0.0104, + "x": 0.6454, + "y": 0.1945 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Conveyor/VFD/PS4_4B_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS4_7_S1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.6266, + "y": 0.1324 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM03/Station/S_PB/PS4_7_S1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS3_7_S1" + }, + "position": { + "height": 0.012, + "width": 0.0068, + "x": 0.5505, + "y": 0.1333 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM03/Station/S_PB/PS3_7_S1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "MCM03" + }, + "position": { + "height": 0.0139, + "rotate": { + "angle": 0 + }, + "width": 0.0156, + "x": 0.6014, + "y": 0.1889 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM03/MCM03", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/MCM" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS3_1_DPM1" + }, + "position": { + "height": 0.0139, + "rotate": { + "angle": 0 + }, + "width": 0.0156, + "x": 0.3781, + "y": 0.3381 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM03/IO_BLOCK/DPM/PS3_1_DPM1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/ControlCabinet" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS3_1_DPM2" + }, + "position": { + "height": 0.0139, + "rotate": { + "angle": 0 + }, + "width": 0.0156, + "x": 0.484, + "y": 0.3381 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM03/IO_BLOCK/DPM/PS3_1_DPM2", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/ControlCabinet" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS4_1_DPM1" + }, + "position": { + "height": 0.0139, + "rotate": { + "angle": 0 + }, + "width": 0.0156, + "x": 0.5078, + "y": 0.3837 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM03/IO_BLOCK/DPM/PS4_1_DPM1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/ControlCabinet" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS4_1_DPM2" + }, + "position": { + "height": 0.0139, + "rotate": { + "angle": 0 + }, + "width": 0.0156, + "x": 0.5854, + "y": 0.3852 + }, + "props": { + "params": { + "forceFaultStatus": null, + "forceRunningStatus": null, + "has_state": false, + "tagProps": [ + "System/MCM03/IO_BLOCK/DPM/PS4_1_DPM2", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/ControlCabinet" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL8_1" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -90 + }, + "width": 0.0104, + "x": 0.3441, + "y": 0.7942 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Conveyor/VFD/UL8_1_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL9_1" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -90 + }, + "width": 0.0104, + "x": 0.3827, + "y": 0.7956 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Conveyor/VFD/UL9_1_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL10_1" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -90 + }, + "width": 0.0104, + "x": 0.4224, + "y": 0.7987 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Conveyor/VFD/UL10_1_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL11_1" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": -90 + }, + "width": 0.0104, + "x": 0.4622, + "y": 0.7977 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/Conveyor/VFD/UL11_1_VFD1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/Status" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "MCM05_Button_0" + }, + "position": { + "height": 0.0426, + "width": 0.1521, + "x": 0.532, + "y": 0.0627 + }, + "props": { + "params": { + "pageid": "DetailedView/MCM04 Sorter Destination, Chutes and Bypass", + "panel_id": "value", + "text": "MCM04 Sorter Destination, Chutes and Bypass" + }, + "path": "Symbol-Views/Equipment-Views/Area_Nav_Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "MCM05_Button" + }, + "position": { + "height": 0.0426, + "width": 0.1521, + "x": 0.3636, + "y": 0.0626 + }, + "props": { + "params": { + "pageid": "DetailedView/MCM05 Sorter Destination and Chutes", + "panel_id": "value", + "text": "MCM05 Sorter Destination and Chutes" + }, + "path": "Symbol-Views/Equipment-Views/Area_Nav_Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PDP03_FIOM1" + }, + "position": { + "height": 0.0185, + "rotate": { + "angle": 0 + }, + "width": 0.0104, + "x": 0.7703, + "y": 0.1489 + }, + "props": { + "params": { + "directionLeft": false, + "forceFaultStatus": null, + "forceRunningStatus": null, + "tagProps": [ + "System/MCM03/IO_BLOCK/FIO/PDP03_FIOM1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "path": "Symbol-Views/Equipment-Views/DeviceStatus" + }, + "type": "ia.display.view" + } + ], + "meta": { + "name": "root" + }, + "props": { + "mode": "percent", + "style": { + "backgroundColor": "#FFFFFF" + } + }, + "type": "ia.container.coord" + } +} \ No newline at end of file diff --git a/.resources/c6ac9672e900b1a22c8a6f90558de450e64e7406948d51ee417d853196d7bb22 b/.resources/c6ac9672e900b1a22c8a6f90558de450e64e7406948d51ee417d853196d7bb22 deleted file mode 100644 index f6b86ef0..00000000 Binary files a/.resources/c6ac9672e900b1a22c8a6f90558de450e64e7406948d51ee417d853196d7bb22 and /dev/null differ diff --git a/.resources/c733a0c6bf7dd83d64296c3b94a4561dd4e6e28a2b1c799442c19f2a7a21bf17 b/.resources/c733a0c6bf7dd83d64296c3b94a4561dd4e6e28a2b1c799442c19f2a7a21bf17 new file mode 100644 index 00000000..addbf55c Binary files /dev/null and b/.resources/c733a0c6bf7dd83d64296c3b94a4561dd4e6e28a2b1c799442c19f2a7a21bf17 differ diff --git a/.resources/c81143922af44033e07fb9828b3238cfef50043e60556092305243dc6d0698e6 b/.resources/c81143922af44033e07fb9828b3238cfef50043e60556092305243dc6d0698e6 deleted file mode 100644 index 29da3ef8..00000000 Binary files a/.resources/c81143922af44033e07fb9828b3238cfef50043e60556092305243dc6d0698e6 and /dev/null differ diff --git a/.resources/c888665ee6294b1d6597530facbed83677442c0e3035c3e053e6e4e3caf7c1be b/.resources/c888665ee6294b1d6597530facbed83677442c0e3035c3e053e6e4e3caf7c1be deleted file mode 100644 index f718d6b1..00000000 Binary files a/.resources/c888665ee6294b1d6597530facbed83677442c0e3035c3e053e6e4e3caf7c1be and /dev/null differ diff --git a/.resources/c891e70141e8d17433c414a191ff54fbcafb013dffb592bd240e9c4c47cfee43 b/.resources/c891e70141e8d17433c414a191ff54fbcafb013dffb592bd240e9c4c47cfee43 deleted file mode 100644 index e649cc1c..00000000 Binary files a/.resources/c891e70141e8d17433c414a191ff54fbcafb013dffb592bd240e9c4c47cfee43 and /dev/null differ diff --git a/.resources/c9ff81fe3fca99de7a2fd0e063118aa3e257fd29ba88366bd744cb768777e6da b/.resources/c9ff81fe3fca99de7a2fd0e063118aa3e257fd29ba88366bd744cb768777e6da deleted file mode 100644 index f6ddfaed..00000000 Binary files a/.resources/c9ff81fe3fca99de7a2fd0e063118aa3e257fd29ba88366bd744cb768777e6da and /dev/null differ diff --git a/.resources/ca3414029cbcd856fe5c3ba0b4eed707b0661af66b781195ca0b1ee67a8beb4e b/.resources/ca3414029cbcd856fe5c3ba0b4eed707b0661af66b781195ca0b1ee67a8beb4e new file mode 100644 index 00000000..b861249f --- /dev/null +++ b/.resources/ca3414029cbcd856fe5c3ba0b4eed707b0661af66b781195ca0b1ee67a8beb4e @@ -0,0 +1,1115 @@ +{ + "custom": {}, + "params": { + "tagProps": [ + "TAG0", + "TAG1", + "TAG2", + "TAG3", + "TAG4", + "TAG5", + "TAG6", + "TAG7", + "TAG8", + "TAG9", + "TAG10", + "TAG11", + "TAG12", + "TAG13", + "TAG14" + ] + }, + "props": { + "defaultSize": { + "height": 1080, + "width": 1920 + } + }, + "root": { + "children": [ + { + "meta": { + "name": "DPM" + }, + "position": { + "height": 1, + "width": 1 + }, + "propConfig": { + "props.params.con_lines[0]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[0]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[10]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[10]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[11]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[11]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[12]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[12]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[13]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[13]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[14]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[14]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[1]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[1]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[2]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[2]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[3]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[3]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[4]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[4]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[5]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[5]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[6]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[6]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[7]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[7]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[8]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[8]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[9]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[9]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + } + }, + "props": { + "params": { + "con_lines": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "con_lines_visible": [ + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "in": false, + "out": false + }, + "path": "Windows/Tabs/Enternet Windows/Components/DPM_TO_HUB" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "DPM01_VS01C_FIO1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0377, + "y": 0.4991 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/FIO_SIO" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "DPM01_VS01C_FIO1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.0094, + "y": 0.5394 + }, + "props": { + "text": "DPM01_VS01C_FIO1 11.200.1.101", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "DPM01_VS01C_FIO2" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0375, + "y": 0.6677 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/FIO_SIO" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "DPM01_VS01C_FIO2_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.0068, + "y": 0.7315 + }, + "props": { + "text": "DPM01_VS01C_FIO2 11.200.1.102", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "DPM01_VS01C_FIO3" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0361, + "y": 0.8333 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/FIO_SIO" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "DPM01_VS01C_FIO3_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.0068, + "y": 0.8981 + }, + "props": { + "text": "DPM01_VS01C_FIO3 11.200.1.103", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "DPM01_VS01C_FIO4" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0374, + "y": 0.3333 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/FIO_SIO" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "DPM01_VS01C_FIO4_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.0068, + "y": 0.3986 + }, + "props": { + "text": "DPM01_VS01C_FIO4 11.200.1.104", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "DPM01_VS01C_FIO5" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0374, + "y": 0.1667 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/FIO_SIO" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "DPM01_VS01C_FIO5_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.0068, + "y": 0.2324 + }, + "props": { + "text": "DPM01_VS01C_FIO5 11.200.1.105", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "DPM01_VS01C_FIO6" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0389 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/FIO_SIO" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "DPM01_VS01C_FIO6_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.0068, + "y": 0.0653 + }, + "props": { + "text": "DPM01_VS01C_FIO6 11.200.1.106", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "DPM01_VS01C_FIO7" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.5 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/FIO_SIO" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "DPM01_VS01C_FIO7_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.5117, + "y": 0.1662 + }, + "props": { + "text": "DPM01_VS01C_FIO7 11.200.1.107", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "DPM01_VS01C_FIO8" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.625 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/FIO_SIO" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "DPM01_VS01C_FIO8_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.6312, + "y": 0.1664 + }, + "props": { + "text": "DPM01_VS01C_FIO8 11.200.1.108", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "DPM01_VS01C_FIO9" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.75 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/FIO_SIO" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "DPM01_VS01C_FIO9_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.75, + "y": 0.1664 + }, + "props": { + "text": "DPM01_VS01C_FIO9 11.200.1.109", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "DPM01_VS01C_FIO10" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.375 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/FIO_SIO" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "DPM01_VS01C_FIO10_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.3864, + "y": 0.1664 + }, + "props": { + "text": "DPM01_VS01C_FIO10 11.200.1.110", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "DPM01_VS01C_FIO11" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.2516, + "y": 0.0019 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/FIO_SIO" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "DPM01_VS01C_FIO11_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.315, + "y": 0.1682 + }, + "props": { + "text": "DPM01_VS01C_FIO11 11.200.1.111", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "DPM01_VS01C_FIO12" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.1245 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/FIO_SIO" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "DPM01_VS01C_FIO12_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.2072, + "y": 0.1646 + }, + "props": { + "text": "DPM01_VS01C_FIO12 11.200.1.112", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "DPM01_VS01C_FIO13" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.8389, + "y": 0.3332 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/FIO_SIO" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "DPM01_VS01C_FIO13_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.9349999999999999, + "y": 0.3943 + }, + "props": { + "text": "DPM01_VS01C_FIO13 11.200.1.113", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "DPM01_VS01C_FIO14" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.8394, + "y": 0.1667 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/FIO_SIO" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "DPM01_VS01C_FIO14_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.9349999999999999, + "y": 0.2276 + }, + "props": { + "text": "DPM01_VS01C_FIO14 11.200.1.114", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "DPM01_VS01C_FIO15" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.8408 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/FIO_SIO" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "DPM01_VS01C_FIO15_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.9349999999999999, + "y": 0.0619 + }, + "props": { + "text": "DPM01_VS01C_FIO15 11.200.1.115", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "DPM_label" + }, + "position": { + "height": 0.0694, + "width": 0.101, + "x": 0.5831, + "y": 0.6342 + }, + "props": { + "text": "DPM01_VS01C 11.200.1.2", + "textStyle": { + "fontSize": "2vmin" + } + }, + "type": "ia.display.label" + } + ], + "meta": { + "name": "root" + }, + "position": { + "x": 0.6348, + "y": -0.1546 + }, + "props": { + "mode": "percent" + }, + "type": "ia.container.coord" + } +} \ No newline at end of file diff --git a/.resources/ca85648a1d2721509f3d86e5b193d0007386aa92628dd8cc753397ac093c726b b/.resources/ca85648a1d2721509f3d86e5b193d0007386aa92628dd8cc753397ac093c726b new file mode 100644 index 00000000..0a8bb412 Binary files /dev/null and b/.resources/ca85648a1d2721509f3d86e5b193d0007386aa92628dd8cc753397ac093c726b differ diff --git a/.resources/ca943b61e06a2ffc98ce7773882af8743725ebf142ea09a98480d413ee3a22ea b/.resources/ca943b61e06a2ffc98ce7773882af8743725ebf142ea09a98480d413ee3a22ea deleted file mode 100644 index a117e46a..00000000 Binary files a/.resources/ca943b61e06a2ffc98ce7773882af8743725ebf142ea09a98480d413ee3a22ea and /dev/null differ diff --git a/.resources/cc7329eaf82d448507526213bc15f1b2e98ef426c7a61cddd9b7c2a245ef8ed9 b/.resources/cc7329eaf82d448507526213bc15f1b2e98ef426c7a61cddd9b7c2a245ef8ed9 deleted file mode 100644 index 5c8a4fcb..00000000 --- a/.resources/cc7329eaf82d448507526213bc15f1b2e98ef426c7a61cddd9b7c2a245ef8ed9 +++ /dev/null @@ -1,376 +0,0 @@ -{ - "custom": {}, - "params": {}, - "props": {}, - "root": { - "children": [ - { - "custom": { - "delay": 2000, - "duration_filter": "value", - "run_update": true, - "source_id_filter": "value", - "state_filter": "value", - "time_from_filter": "value", - "time_to_filter": "value" - }, - "events": { - "component": { - "onRowClick": { - "config": { - "script": "\trow \u003d event.value\n\tmhe_id \u003d row.get(\"SourceId\")\n\tnavigation.amzl_navigation.navigate_to_alarm(self, mhe_id)\n\tsystem.perspective.alterDock(\"Docked-South\", { \"handleIcon\": \"material/play_arrow\" } )\n#\tsystem.perspective.openDock(\"Docked-South\")" - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "Table" - }, - "position": { - "basis": "400px" - }, - "propConfig": { - "custom.update": { - "binding": { - "config": { - "expression": "now({this.custom.delay})" - }, - "type": "expr" - }, - "onChange": { - "enabled": null, - "script": "\t\n empty_row \u003d row_builder.build_row(\n Duration \u003d \"\",\n Timestamp \u003d \"\",\n Source \u003d \"\")\n no_filter \u003d False\n \n if self.custom.run_update and system.tag.exists(\"System/state_messages\"):\n \n tags_to_read \u003d system.tag.readBlocking([\"System/state_messages\",\"Configuration/DetailedViews\"])\n decode_state_data \u003d system.util.jsonDecode(tags_to_read[0].value)\n detailed_view_decoded \u003d system.util.jsonDecode(tags_to_read[1].value)\n if len(decode_state_data) \u003e 0:\n \n state_data \u003d state.state_tables.get_state_table(decode_state_data)\t\t\n self.props.data \u003d state_data\n else:\n self.props.data \u003d [empty_row]\n else:\n self.props.data \u003d [empty_row]" - } - } - }, - "props": { - "columns": [ - { - "align": "center", - "boolean": "checkbox", - "dateFormat": "MM/DD/YYYY", - "editable": false, - "field": "SourceId", - "footer": { - "align": "center", - "justify": "left", - "style": { - "classes": "" - }, - "title": "" - }, - "header": { - "align": "center", - "justify": "left", - "style": { - "classes": "" - }, - "title": "" - }, - "justify": "auto", - "number": "value", - "numberFormat": "0,0.##", - "progressBar": { - "bar": { - "color": "", - "style": { - "classes": "" - } - }, - "max": 100, - "min": 0, - "track": { - "color": "", - "style": { - "classes": "" - } - }, - "value": { - "enabled": true, - "format": "0,0.##", - "justify": "center", - "style": { - "classes": "" - } - } - }, - "render": "auto", - "resizable": true, - "sort": "none", - "sortable": true, - "strictWidth": false, - "style": { - "classes": "" - }, - "toggleSwitch": { - "color": { - "selected": "", - "unselected": "" - } - }, - "viewParams": {}, - "visible": true, - "width": "" - }, - { - "align": "center", - "boolean": "checkbox", - "dateFormat": "MM/DD/YYYY", - "editable": false, - "field": "Duration", - "footer": { - "align": "center", - "justify": "left", - "style": { - "classes": "" - }, - "title": "" - }, - "header": { - "align": "center", - "justify": "left", - "style": { - "classes": "" - }, - "title": "" - }, - "justify": "auto", - "number": "value", - "numberFormat": "0,0.##", - "progressBar": { - "bar": { - "color": "", - "style": { - "classes": "" - } - }, - "max": 100, - "min": 0, - "track": { - "color": "", - "style": { - "classes": "" - } - }, - "value": { - "enabled": true, - "format": "0,0.##", - "justify": "center", - "style": { - "classes": "" - } - } - }, - "render": "auto", - "resizable": true, - "sort": "none", - "sortable": true, - "strictWidth": false, - "style": { - "classes": "" - }, - "toggleSwitch": { - "color": { - "selected": "", - "unselected": "" - } - }, - "viewParams": {}, - "visible": true, - "width": "" - }, - { - "align": "center", - "boolean": "checkbox", - "dateFormat": "MM/DD/YYYY HH:mm:ss", - "editable": false, - "field": "TimeStamp", - "footer": { - "align": "center", - "justify": "left", - "style": { - "classes": "" - }, - "title": "" - }, - "header": { - "align": "center", - "justify": "left", - "style": { - "classes": "" - }, - "title": "" - }, - "justify": "auto", - "number": "value", - "numberFormat": "0,0.##", - "progressBar": { - "bar": { - "color": "", - "style": { - "classes": "" - } - }, - "max": 100, - "min": 0, - "track": { - "color": "", - "style": { - "classes": "" - } - }, - "value": { - "enabled": true, - "format": "0,0.##", - "justify": "center", - "style": { - "classes": "" - } - } - }, - "render": "auto", - "resizable": true, - "sort": "none", - "sortable": true, - "strictWidth": false, - "style": { - "classes": "" - }, - "toggleSwitch": { - "color": { - "selected": "", - "unselected": "" - } - }, - "viewParams": {}, - "viewPath": "", - "visible": true, - "width": "" - }, - { - "align": "center", - "boolean": "checkbox", - "dateFormat": "MM/DD/YYYY", - "editable": false, - "field": "State", - "footer": { - "align": "center", - "justify": "left", - "style": { - "classes": "" - }, - "title": "" - }, - "header": { - "align": "center", - "justify": "left", - "style": { - "classes": "" - }, - "title": "" - }, - "justify": "auto", - "number": "value", - "numberFormat": "0,0.##", - "progressBar": { - "bar": { - "color": "", - "style": { - "classes": "" - } - }, - "max": 100, - "min": 0, - "track": { - "color": "", - "style": { - "classes": "" - } - }, - "value": { - "enabled": true, - "format": "0,0.##", - "justify": "center", - "style": { - "classes": "" - } - } - }, - "render": "auto", - "resizable": true, - "sort": "none", - "sortable": true, - "strictWidth": false, - "style": { - "classes": "" - }, - "toggleSwitch": { - "color": { - "selected": "", - "unselected": "" - } - }, - "viewParams": {}, - "viewPath": "", - "visible": true, - "width": "" - } - ], - "data": [ - { - "style": null, - "value": { - "Duration": { - "value": "" - }, - "Source": { - "value": "" - }, - "Timestamp": { - "value": "" - } - } - } - ], - "headerStyle": { - "classes": "Background-Styles/Controller" - }, - "pager": { - "activePage": 4, - "bottom": false - }, - "selection": { - "data": [ - { - "style": null, - "value": { - "Duration": { - "value": "" - }, - "Source": { - "value": "" - }, - "Timestamp": { - "value": "" - } - } - } - ], - "selectedColumn": "SourceId", - "selectedRow": 0 - } - }, - "type": "ia.display.table" - } - ], - "meta": { - "name": "root" - }, - "props": { - "direction": "column" - }, - "type": "ia.container.flex" - } -} \ No newline at end of file diff --git a/.resources/cca9c9d53e27a4da9268c50a75607b04525032674a8c28aee3c15f1d660d2767 b/.resources/cca9c9d53e27a4da9268c50a75607b04525032674a8c28aee3c15f1d660d2767 new file mode 100644 index 00000000..de1f7e9c Binary files /dev/null and b/.resources/cca9c9d53e27a4da9268c50a75607b04525032674a8c28aee3c15f1d660d2767 differ diff --git a/.resources/cce63ded356dc9b727c91e482e7e4b14249c35d844ebde69fa0ad9b4c1e0e277 b/.resources/cce63ded356dc9b727c91e482e7e4b14249c35d844ebde69fa0ad9b4c1e0e277 deleted file mode 100644 index 8ce76405..00000000 --- a/.resources/cce63ded356dc9b727c91e482e7e4b14249c35d844ebde69fa0ad9b4c1e0e277 +++ /dev/null @@ -1,603 +0,0 @@ -{ - "custom": { - "FillColour": "value", - "alarm_message": null, - "covert_mode": true, - "disconnected": false, - "display_icon": true, - "error": false, - "isMatch": 0, - "plc": "value", - "priority": 0, - "priority_string": "No active alarms", - "running": false, - "running_status": 0, - "searchId": "value", - "show_error": false, - "show_running": true, - "state": 5, - "state_string": "Unknown" - }, - "params": { - "forceFaultStatus": null, - "forceRunningStatus": null, - "tagProps": [ - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value" - ] - }, - "propConfig": { - "custom.FillColour": { - "persistent": true - }, - "custom.alarm_message": { - "persistent": true - }, - "custom.covert_mode": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case(\t{value},\r\n\t\t0, {session.custom.alarm_filter.show_running},\r\n\t\t1, True,\r\n\t\t2, True,\r\n\t\t3, {session.custom.alarm_filter.show_low_alarm} || {session.custom.alarm_filter.show_running},\r\n\t\t4, {session.custom.alarm_filter.show_diagnostic} || {session.custom.alarm_filter.show_running},\r\n\t\t5, {session.custom.alarm_filter.show_running},\r\n\t\tFalse)", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.disconnected": { - "binding": { - "config": { - "fallbackDelay": 2.5, - "mode": "indirect", - "references": { - "fc": "{session.custom.fc}", - "plc": "{view.custom.plc}" - }, - "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{plc}/DCN" - }, - "transforms": [ - { - "expression": "if(isNull({value}), False, {value})", - "type": "expression" - } - ], - "type": "tag" - }, - "persistent": true - }, - "custom.display_icon": { - "binding": { - "config": { - "expression": "{this.custom.covert_mode}//||{this.custom.isMatch}\u003e0" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.error": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "0 \u003c {value} \u0026\u0026 {value} \u003c 5", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.isMatch": { - "binding": { - "config": { - "expression": "if({view.params.tagProps[0]}\u003d\"value\",0,\nif({this.custom.searchId}\u003d{view.params.tagProps[0]},100,0))" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.plc": { - "binding": { - "config": { - "path": "view.params.tagProps[0]" - }, - "transforms": [ - { - "expression": "split({value}, \"/\")[0]", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.priority": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "fallback": 0, - "inputType": "scalar", - "mappings": [ - { - "input": 1, - "output": 4 - }, - { - "input": 2, - "output": 3 - }, - { - "input": 3, - "output": 2 - }, - { - "input": 4, - "output": 1 - } - ], - "outputType": "scalar", - "type": "map" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.priority_string": { - "binding": { - "config": { - "expression": "case({view.custom.state},\r\n1, \"High\",\r\n2, \"Medium\",\r\n3, \"Low\",\r\n4, \"Diagnostic\",\r\n5, \"No active alarms\",\r\n\"Unknown\")" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.running": { - "binding": { - "config": { - "expression": "{view.custom.running_status} \u003d 3" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.running_status": { - "binding": { - "config": { - "fallbackDelay": 2.5, - "mode": "indirect", - "references": { - "0": "{view.params.tagProps[0]}", - "fc": "{session.custom.fc}" - }, - "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/STATE" - }, - "transforms": [ - { - "expression": "coalesce({value},{view.params.forceRunningStatus},0)", - "type": "expression" - } - ], - "type": "tag" - }, - "persistent": true - }, - "custom.searchId": { - "binding": { - "config": { - "path": "session.custom.searchId" - }, - "type": "property" - }, - "persistent": true - }, - "custom.show_error": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case(\t{value},\r\n\t\t1, True,\r\n\t\t2, True,\r\n\t\t3, {session.custom.alarm_filter.show_low_alarm},\r\n\t\t4, {session.custom.alarm_filter.show_diagnostic},\r\n\t\tFalse)", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.show_running": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case(\t{value},\r\n\t\t1, False,\r\n\t\t2, False,\r\n\t\t{session.custom.alarm_filter.show_running}\r\n\t\t)", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.state": { - "binding": { - "config": { - "fallbackDelay": 2.5, - "mode": "indirect", - "references": { - "0": "{view.params.tagProps[0]}", - "fc": "{session.custom.fc}" - }, - "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/ALARMST" - }, - "transforms": [ - { - "expression": "coalesce({value},{view.params.forceFaultStatus},0)", - "type": "expression" - }, - { - "fallback": null, - "inputType": "scalar", - "mappings": [ - { - "input": 4, - "output": 1 - }, - { - "input": 3, - "output": 2 - }, - { - "input": 2, - "output": 3 - }, - { - "input": 1, - "output": 4 - }, - { - "input": 0, - "output": 5 - } - ], - "outputType": "scalar", - "type": "map" - } - ], - "type": "tag" - }, - "persistent": true - }, - "custom.state_string": { - "binding": { - "config": { - "expression": "case({view.custom.running_status},\r\n1, \"Faulted\",\r\n2, \"Stopped\",\r\n3, \"Running\",\r\n\"Unknown\")" - }, - "type": "expr" - }, - "persistent": true - }, - "params.forceFaultStatus": { - "paramDirection": "input", - "persistent": true - }, - "params.forceRunningStatus": { - "paramDirection": "input", - "persistent": true - }, - "params.tagProps": { - "paramDirection": "inout", - "persistent": true - } - }, - "props": { - "defaultSize": { - "height": 100, - "width": 100 - } - }, - "root": { - "children": [ - { - "meta": { - "name": "Photocell 2 (Lift)" - }, - "position": { - "height": 1, - "width": 1 - }, - "propConfig": { - "props.elements[1].elements[0].fill.paint": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case({value},\r\n0,{session.custom.colours.state0},\r\n1,{session.custom.colours.state1},\r\n2,{session.custom.colours.state2},\r\n3,{session.custom.colours.state3},\r\n4,{session.custom.colours.state4},\r\n5,{session.custom.colours.state5},\r\n6,{session.custom.colours.state6},\r\n{session.custom.colours.fallback}\r\n)", - "type": "expression" - }, - { - "expression": "if({view.custom.display_icon}\u0026\u0026 {view.custom.isMatch}\u003d0,{value},{value}+\u002700\u0027)", - "type": "expression" - } - ], - "type": "property" - } - }, - "props.style.classes": { - "binding": { - "config": { - "expression": "if({session.custom.colours.colour_impaired} \u003d True \u0026\u0026 {view.custom.isMatch} \u003e 0,\r\n{view.custom.state} + 100 + {view.custom.isMatch},\r\n{view.custom.state} + {view.custom.isMatch})" - }, - "transforms": [ - { - "fallback": "", - "inputType": "scalar", - "mappings": [ - { - "input": 101, - "output": "State-Styles/State101" - }, - { - "input": 102, - "output": "State-Styles/State102" - }, - { - "input": 103, - "output": "State-Styles/State103" - }, - { - "input": 104, - "output": "State-Styles/State104" - }, - { - "input": 105, - "output": "State-Styles/State105" - }, - { - "input": 106, - "output": "State-Styles/State106" - }, - { - "input": 201, - "output": "State-Styles/State201" - }, - { - "input": 202, - "output": "State-Styles/State202" - }, - { - "input": 203, - "output": "State-Styles/State203" - }, - { - "input": 204, - "output": "State-Styles/State204" - }, - { - "input": 205, - "output": "State-Styles/State205" - } - ], - "outputType": "style-list", - "type": "map" - } - ], - "type": "expr" - } - } - }, - "props": { - "elements": [ - { - "id": "defs1", - "name": "defs1", - "type": "defs" - }, - { - "elements": [ - { - "d": "m 12.584327,-6.5 a 6.0843272,6.0843277 0 0 1 -3.0421635,5.2691824 6.0843272,6.0843277 0 0 1 -6.0843273,-1e-7 A 6.0843272,6.0843277 0 0 1 0.41567278,-6.5", - "fill": {}, - "id": "path1", - "name": "path1", - "stroke": { - "dasharray": "none", - "paint": "#000000", - "width": "0.264583" - }, - "transform": "scale(1,-1)", - "type": "path" - }, - { - "cx": "6.5", - "cy": "6.5", - "fill": { - "opacity": "1", - "paint": "#000000" - }, - "id": "path2", - "name": "path2", - "rx": "0.54629576", - "ry": "0.54629594", - "stroke": { - "dasharray": "none", - "paint": "#000000", - "width": "0.230325" - }, - "type": "ellipse" - } - ], - "id": "layer1", - "name": "layer1", - "type": "group" - } - ], - "style": {}, - "viewBox": "0 0 13.229166 13.229167" - }, - "type": "ia.shapes.svg" - } - ], - "events": { - "dom": { - "onClick": { - "config": { - "script": "\tsystem.perspective.openDock(\u0027Docked-East\u0027,params\u003d{\u0027tagProps\u0027:self.view.params.tagProps})" - }, - "scope": "G", - "type": "script" - }, - "onDoubleClick": { - "config": { - "script": "\ttagProps \u003d self.view.params.tagProps\n\tsystem.perspective.openPopup(\"StatusPopUP\", \"PopUp-Views/Controller-Equipment/Information\", params \u003d{\"tagProps\":tagProps})\n\t" - }, - "enabled": false, - "scope": "G", - "type": "script" - }, - "onMouseEnter": { - "config": { - "script": "\tfrom time import sleep\n\t\n\talarm \u003d []\n\tmessage \u003d None\n\t\n\tsleep(0.5)\n\t\n\tif system.tag.exists(\"System/aws_data\"):\n\t\tif self.view.params.tagProps[0] !\u003d \"\":\n\t\t\ttags_to_read \u003d system.tag.readBlocking(\"System/aws_data\")\n\t\t\tdecode_alarm_data \u003d system.util.jsonDecode(tags_to_read[0].value)\n\t\t\talarm \u003d [decode_alarm_data[i] for i in decode_alarm_data\n\t\t\t\t\tif decode_alarm_data[i][\u0027sourceId\u0027].startswith(self.view.params.tagProps[0])]\n\t\tif alarm:\n\t\t\talarm \u003d sorted(alarm, key \u003d lambda t:t[\u0027timestamp\u0027], reverse\u003dTrue)\n\t\t\tmessage \u003d max(alarm, key \u003d lambda p:p[\u0027priority\u0027]).get(\u0027message\u0027)\n\t\t\tif len(alarm) \u003e 1:\n\t\t\t\tmessage +\u003d \" (+\" + str(len(alarm)-1) + \")\"\n\tself.view.custom.alarm_message \u003d message" - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "root", - "tooltip": { - "enabled": true, - "location": "top-left", - "style": {} - } - }, - "propConfig": { - "meta.tooltip.style.backgroundColor": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case({value},\r\n0,{session.custom.colours.state0},\r\n1,{session.custom.colours.state1},\r\n2,{session.custom.colours.state2},\r\n3,{session.custom.colours.state3},\r\n4,{session.custom.colours.state4},\r\n5,{session.custom.colours.state5},\r\n6,{session.custom.colours.state6},\r\n{session.custom.colours.fallback}\r\n)", - "type": "expression" - } - ], - "type": "property" - } - }, - "meta.tooltip.style.classes": { - "binding": { - "config": { - "expression": "{view.custom.priority}" - }, - "transforms": [ - { - "fallback": "Alarms-Styles/NoAlarm", - "inputType": "scalar", - "mappings": [ - { - "input": 1, - "output": "Alarms-Styles/Diagnostic" - }, - { - "input": 2, - "output": "Alarms-Styles/Low" - }, - { - "input": 3, - "output": "Alarms-Styles/Medium" - }, - { - "input": 4, - "output": "Alarms-Styles/High" - } - ], - "outputType": "style-list", - "type": "map" - } - ], - "type": "expr" - } - }, - "meta.tooltip.style.color": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "if({session.custom.colours.colour_impaired},\r\n\t\u0027#000000\u0027,\r\n\tcase(\t{value},\r\n\t\t\t1,\u0027#FFFFFF\u0027,\r\n\t\t\t2,\u0027#000000\u0027,\r\n\t\t\t3,\u0027#000000\u0027,\r\n\t\t\t4,\u0027#FFFFFF\u0027,\r\n\t\t\t5,\u0027#FFFFFF\u0027,\r\n\t\t\t\u0027#000000\u0027)\r\n\t)", - "type": "expression" - } - ], - "type": "property" - } - }, - "meta.tooltip.text": { - "binding": { - "config": { - "expression": "if({view.custom.disconnected} \u003d False,\n\tif(isNull({view.custom.alarm_message}),\n\t\"Source Id: \" + {view.params.tagProps[0]} +\n\t\", Priority: \" + {view.custom.priority_string} +\n\t\", State: \" + {view.custom.state_string},\n\t\"Source Id: \" + {view.params.tagProps[0]} +\n\t\", Alarm: \" + {view.custom.alarm_message} +\n\t\", Priority: \" + {view.custom.priority_string} +\n\t\", State: \" + {view.custom.state_string}),\n\"Source Id: \" +{view.params.tagProps[0]} + \", Priority: Unknown, State: Unknown\")" - }, - "type": "expr" - } - }, - "props.style.classes": { - "binding": { - "config": { - "path": "view.custom.disconnected" - }, - "transforms": [ - { - "fallback": "Disconnects/Device-Connected", - "inputType": "scalar", - "mappings": [ - { - "input": true, - "output": "Disconnects/Device-Disconnected" - }, - { - "input": false, - "output": "Disconnects/Device-Connected" - } - ], - "outputType": "style-list", - "type": "map" - } - ], - "type": "property" - } - } - }, - "props": { - "aspectRatio": "1:1", - "mode": "percent", - "style": { - "cursor": "pointer" - } - }, - "type": "ia.container.coord" - } -} \ No newline at end of file diff --git a/.resources/ccf30baac056d8e9b968d10a3cb4e147ec6523d420506162c2bc0b84f7e5ec64 b/.resources/ccf30baac056d8e9b968d10a3cb4e147ec6523d420506162c2bc0b84f7e5ec64 new file mode 100644 index 00000000..2ffbb352 Binary files /dev/null and b/.resources/ccf30baac056d8e9b968d10a3cb4e147ec6523d420506162c2bc0b84f7e5ec64 differ diff --git a/.resources/cd8eecd5e83ed3087af07e7b47e754a1e5369dd25fee995c3fb44c1dc855f7d9 b/.resources/cd8eecd5e83ed3087af07e7b47e754a1e5369dd25fee995c3fb44c1dc855f7d9 deleted file mode 100644 index 474f8d61..00000000 Binary files a/.resources/cd8eecd5e83ed3087af07e7b47e754a1e5369dd25fee995c3fb44c1dc855f7d9 and /dev/null differ diff --git a/.resources/ce18d353ccf2463ed50d0dd7fbedb7df6e2a883b96dae5c2892a035fd112f91e b/.resources/ce18d353ccf2463ed50d0dd7fbedb7df6e2a883b96dae5c2892a035fd112f91e deleted file mode 100644 index cf0e6a03..00000000 Binary files a/.resources/ce18d353ccf2463ed50d0dd7fbedb7df6e2a883b96dae5c2892a035fd112f91e and /dev/null differ diff --git a/.resources/cf35a4492b1c26029a927b2b52f631068ab178d6c6ee417e04f1514db818f275 b/.resources/cf35a4492b1c26029a927b2b52f631068ab178d6c6ee417e04f1514db818f275 new file mode 100644 index 00000000..005db0a0 Binary files /dev/null and b/.resources/cf35a4492b1c26029a927b2b52f631068ab178d6c6ee417e04f1514db818f275 differ diff --git a/.resources/cf443c6fe268ac08eff032653b2d1004453cd5c75d4499cd0ac1596d7b17ae03 b/.resources/cf443c6fe268ac08eff032653b2d1004453cd5c75d4499cd0ac1596d7b17ae03 deleted file mode 100644 index 3c52e6a1..00000000 --- a/.resources/cf443c6fe268ac08eff032653b2d1004453cd5c75d4499cd0ac1596d7b17ae03 +++ /dev/null @@ -1,456 +0,0 @@ -{ - "custom": { - "api_region_name": "eu", - "enabled_whids": [ - "DNK7", - "EWR4" - ], - "stage_config": { - "account_id": "006306898152", - "api_call_role": "arn:aws:iam::609617486056:role/RMESDScadaS3ManagementAPIcallRole-prod-eu-west-1", - "endpoint": "https://eu-west-1.scada-s3-management.scada.eurme.amazon.dev/", - "lambda_name": "RMESDScadaS3ManagementFlaskLambda-prod", - "region": "eu-west-1", - "repo_bucket": "ignition-image-repo", - "s3_region": "eu-west-1", - "source_bucket": "ignition-image-source" - }, - "whid_options": [ - { - "label": "DNK7", - "value": "DNK7" - }, - { - "label": "EWR4", - "value": "EWR4" - } - ], - "whids_in_s3": [ - "BOS3", - "BRS1", - "CGN9", - "DAO1", - "DAO3", - "DAR2", - "DBE2", - "DBH3", - "DBI7", - "DBT3", - "DCT7", - "DCT9", - "DCZ3", - "DCZ4", - "DEH1", - "DER1", - "DER2", - "DER3", - "DER5", - "DFV1", - "DHA1", - "DHE3", - "DHE4", - "DHE6", - "DIF2", - "DIF6", - "DIP1", - "DLO1", - "DLO2", - "DLO3", - "DLO4", - "DLO5", - "DLO7", - "DLZ1", - "DLZ2", - "DLZ3", - "DMA3", - "DMA4", - "DMA6", - "DMV1", - "DMV3", - "DMZ2", - "DMZ4", - "DNC1", - "DNC2", - "DNE2", - "DNG2", - "DNM7", - "DNP1", - "DNX3", - "DNZ2", - "DPI3", - "DPU1", - "DRM2", - "DSI2", - "DSO2", - "DSY6", - "DTC2", - "DVN1", - "DVN2", - "DVN5", - "DWN2", - "IST2", - "MAD6", - "MAN2", - "QCB6" - ] - }, - "params": { - "enables": { - "site": true - }, - "image_count": 0, - "selected_whid": "EWR4", - "source_count": 0 - }, - "propConfig": { - "custom.api_region_name": { - "binding": { - "config": { - "path": "session.custom.aws.prefix" - }, - "type": "property" - }, - "persistent": true - }, - "custom.enabled_whids": { - "binding": { - "config": { - "expression": "{session.custom.fc}" - }, - "transforms": [ - { - "code": "\tchild_projects \u003d config.project_config.get_child_scada_projects()\n\treturn [x.replace(\u0027_SCADA\u0027,\u0027\u0027) for x in child_projects]", - "type": "script" - } - ], - "type": "expr" - }, - "persistent": true - }, - "custom.stage_config": { - "binding": { - "config": { - "expression": "{view.custom.api_region_name}" - }, - "transforms": [ - { - "code": "\treturn AWS.s3.STAGE_CONFIG[\u0027prod\u0027][value]", - "type": "script" - } - ], - "type": "expr" - }, - "persistent": true - }, - "custom.whid_options": { - "binding": { - "config": { - "path": "view.custom.enabled_whids" - }, - "transforms": [ - { - "code": "\treturn [{\u0027value\u0027: x, \u0027label\u0027: x} for x in value]", - "type": "script" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.whids_in_s3": { - "binding": { - "config": { - "expression": "{session.custom.fc}" - }, - "transforms": [ - { - "code": "\tfrom AWS.s3 import S3Manager\n\t\n\tusername \u003d self.session.props.auth.user.userName\n\tapi_region_name \u003d self.custom.api_region_name\n\t\n\ts3m \u003d S3Manager(\u0027prod\u0027, api_region_name, username)\n\t\n\tbucket \u003d self.custom.stage_config.repo_bucket\n\treturn s3m.fetch_site_list(bucket)", - "type": "script" - } - ], - "type": "expr" - }, - "persistent": true - }, - "params.enables": { - "paramDirection": "input", - "persistent": true - }, - "params.image_count": { - "paramDirection": "input", - "persistent": true - }, - "params.selected_whid": { - "paramDirection": "input", - "persistent": true - }, - "params.source_count": { - "paramDirection": "input", - "persistent": true - } - }, - "props": { - "defaultSize": { - "height": 78, - "width": 400 - } - }, - "root": { - "children": [ - { - "children": [ - { - "children": [ - { - "meta": { - "name": "Label" - }, - "position": { - "basis": "125px", - "shrink": 0 - }, - "props": { - "style": { - "classes": "Framework/Card/Label Text/RightAlign_with_Padding", - "paddingLeft": "5px" - }, - "text": "Site:" - }, - "type": "ia.display.label" - }, - { - "events": { - "component": { - "onActionPerformed": { - "config": { - "script": "\tselected_whid \u003d self.props.value\n\tsystem.perspective.sendMessage(\u0027update_selected_whid\u0027, \n\t\t\t\t\t\t\t\t{\u0027whid\u0027: selected_whid}, \n\t\t\t\t\t\t\t\tscope\u003d\u0027session\u0027)" - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "Dropdown", - "tooltip": { - "location": "bottom", - "style": { - "whiteSpace": "pre" - }, - "text": "Click here to select a different \nstage folder to manage" - } - }, - "position": { - "basis": "175px", - "shrink": 0 - }, - "propConfig": { - "props.enabled": { - "binding": { - "config": { - "path": "view.params.enables.site" - }, - "type": "property" - } - }, - "props.options": { - "binding": { - "config": { - "path": "view.custom.whid_options" - }, - "type": "property" - } - }, - "props.value": { - "binding": { - "config": { - "path": "view.params.selected_whid" - }, - "type": "property" - } - } - }, - "props": { - "style": { - "margin": "2px", - "marginRight": "26px" - } - }, - "type": "ia.input.dropdown" - } - ], - "meta": { - "name": "FlexContainer Site Selection" - }, - "position": { - "basis": "26px", - "shrink": 0 - }, - "type": "ia.container.flex" - }, - { - "children": [ - { - "children": [ - { - "meta": { - "name": "Label" - }, - "position": { - "basis": "125px", - "shrink": 0 - }, - "props": { - "style": { - "classes": "Framework/Card/Label Text/RightAlign_with_Padding", - "paddingLeft": "5px" - }, - "text": "Images (SVG):" - }, - "type": "ia.display.label" - }, - { - "meta": { - "name": "label_LeftAlign" - }, - "position": { - "basis": "200px", - "grow": 1 - }, - "propConfig": { - "props.params.text": { - "binding": { - "config": { - "path": "view.params.image_count" - }, - "type": "property" - } - } - }, - "props": { - "path": "Objects/Templates/Labels/label_LeftAlign", - "style": { - "classes": "Framework/Card/Value" - } - }, - "type": "ia.display.view" - } - ], - "meta": { - "name": "FlexContainer Images" - }, - "position": { - "basis": "50%", - "grow": 1 - }, - "type": "ia.container.flex" - }, - { - "children": [ - { - "meta": { - "name": "Label" - }, - "position": { - "basis": "125px", - "shrink": 0 - }, - "props": { - "style": { - "classes": "Framework/Card/Label Text/RightAlign_with_Padding", - "paddingLeft": "5px" - }, - "text": "Source (DRAWIO):" - }, - "type": "ia.display.label" - }, - { - "meta": { - "name": "label_LeftAlign" - }, - "position": { - "basis": "200px", - "grow": 1 - }, - "propConfig": { - "props.params.text": { - "binding": { - "config": { - "path": "view.params.source_count" - }, - "type": "property" - } - } - }, - "props": { - "path": "Objects/Templates/Labels/label_LeftAlign", - "style": { - "classes": "Framework/Card/Value" - } - }, - "type": "ia.display.view" - } - ], - "meta": { - "name": "FlexContainer Source" - }, - "position": { - "basis": "50%", - "grow": 1 - }, - "type": "ia.container.flex" - } - ], - "meta": { - "name": "FlexContainer File Counts" - }, - "position": { - "basis": "26px", - "shrink": 0 - }, - "type": "ia.container.flex" - } - ], - "meta": { - "name": "FlexContainer" - }, - "position": { - "basis": "100%", - "grow": 1 - }, - "props": { - "direction": "column" - }, - "type": "ia.container.flex" - } - ], - "meta": { - "name": "root" - }, - "props": { - "direction": "column" - }, - "scripts": { - "customMethods": [ - { - "name": "update_wo_view_param", - "params": [ - "d\u003dNone" - ], - "script": "\t# helper \"sanitize_tree\" function to make work order view param mutable\n\tfrom helper.helper import sanitize_tree\n\twork_order \u003d sanitize_tree(self.view.params.work_order)\n\t# sanity-check the update dict \"d\"\n\tif d is None or not isinstance(d, dict): d \u003d {}\n\t# update the embedded object inside the work order view param\n\twork_order.get(\u0027data\u0027, {}).get(\u0027WorkOrder\u0027, {}).update(d)\n\t# write the updated work_order object back to view param\n\tself.view.params.work_order \u003d work_order\n\t" - } - ], - "extensionFunctions": null, - "messageHandlers": [ - { - "messageType": "update_enabled_whids", - "pageScope": false, - "script": "\t# implement your handler here\n\tself.view.refreshBinding(\u0027custom.enabled_whids\u0027)\n\tself.view.refreshBinding(\u0027custom.whids_in_s3\u0027)", - "sessionScope": true, - "viewScope": true - } - ] - }, - "type": "ia.container.flex" - } -} \ No newline at end of file diff --git a/.resources/d1872523a94bf282015aed076a13d7a72a1a191a7af745ba9a53ba915f2c12a2 b/.resources/d1872523a94bf282015aed076a13d7a72a1a191a7af745ba9a53ba915f2c12a2 deleted file mode 100644 index 9ace1ccb..00000000 Binary files a/.resources/d1872523a94bf282015aed076a13d7a72a1a191a7af745ba9a53ba915f2c12a2 and /dev/null differ diff --git a/.resources/d1ee646b234d299a6c755d6268045b28d2889d65d81a38dd18275ecf312d5af2 b/.resources/d1ee646b234d299a6c755d6268045b28d2889d65d81a38dd18275ecf312d5af2 deleted file mode 100644 index 3979a588..00000000 --- a/.resources/d1ee646b234d299a6c755d6268045b28d2889d65d81a38dd18275ecf312d5af2 +++ /dev/null @@ -1,659 +0,0 @@ -{ - "custom": { - "FillColour": "value", - "alarm_message": null, - "covert_mode": true, - "disconnected": false, - "display_icon": true, - "error": false, - "isMatch": 0, - "plc": "value", - "priority": 0, - "priority_string": "No active alarms", - "running": false, - "running_status": 0, - "searchId": "value", - "show_error": false, - "show_running": true, - "state": 5, - "state_string": "Unknown" - }, - "params": { - "forceFaultStatus": null, - "forceRunningStatus": null, - "tagProps": [ - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value" - ] - }, - "propConfig": { - "custom.FillColour": { - "persistent": true - }, - "custom.alarm_message": { - "persistent": true - }, - "custom.covert_mode": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case(\t{value},\r\n\t\t0, {session.custom.alarm_filter.show_running},\r\n\t\t1, True,\r\n\t\t2, True,\r\n\t\t3, {session.custom.alarm_filter.show_low_alarm} || {session.custom.alarm_filter.show_running},\r\n\t\t4, {session.custom.alarm_filter.show_diagnostic} || {session.custom.alarm_filter.show_running},\r\n\t\t5, {session.custom.alarm_filter.show_running},\r\n\t\tFalse)", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.disconnected": { - "binding": { - "config": { - "fallbackDelay": 2.5, - "mode": "indirect", - "references": { - "fc": "{session.custom.fc}", - "plc": "{view.custom.plc}" - }, - "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{plc}/DCN" - }, - "transforms": [ - { - "expression": "if(isNull({value}), False, {value})", - "type": "expression" - } - ], - "type": "tag" - }, - "persistent": true - }, - "custom.display_icon": { - "binding": { - "config": { - "expression": "{this.custom.covert_mode}//||{this.custom.isMatch}\u003e0" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.error": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "0 \u003c {value} \u0026\u0026 {value} \u003c 5", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.isMatch": { - "binding": { - "config": { - "expression": "if({view.params.tagProps[0]}\u003d\"value\",0,\nif({this.custom.searchId}\u003d{view.params.tagProps[0]},100,0))" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.plc": { - "binding": { - "config": { - "path": "view.params.tagProps[0]" - }, - "transforms": [ - { - "expression": "split({value}, \"/\")[0]", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.priority": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "fallback": 0, - "inputType": "scalar", - "mappings": [ - { - "input": 1, - "output": 4 - }, - { - "input": 2, - "output": 3 - }, - { - "input": 3, - "output": 2 - }, - { - "input": 4, - "output": 1 - } - ], - "outputType": "scalar", - "type": "map" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.priority_string": { - "binding": { - "config": { - "expression": "case({view.custom.state},\r\n1, \"High\",\r\n2, \"Medium\",\r\n3, \"Low\",\r\n4, \"Diagnostic\",\r\n5, \"No active alarms\",\r\n\"Unknown\")" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.running": { - "binding": { - "config": { - "expression": "{view.custom.running_status} \u003d 3" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.running_status": { - "binding": { - "config": { - "fallbackDelay": 2.5, - "mode": "indirect", - "references": { - "0": "{view.params.tagProps[0]}", - "fc": "{session.custom.fc}" - }, - "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/STATE" - }, - "transforms": [ - { - "expression": "coalesce({value},{view.params.forceRunningStatus},0)", - "type": "expression" - } - ], - "type": "tag" - }, - "persistent": true - }, - "custom.searchId": { - "binding": { - "config": { - "path": "session.custom.searchId" - }, - "type": "property" - }, - "persistent": true - }, - "custom.show_error": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case(\t{value},\r\n\t\t1, True,\r\n\t\t2, True,\r\n\t\t3, {session.custom.alarm_filter.show_low_alarm},\r\n\t\t4, {session.custom.alarm_filter.show_diagnostic},\r\n\t\tFalse)", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.show_running": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case(\t{value},\r\n\t\t1, False,\r\n\t\t2, False,\r\n\t\t{session.custom.alarm_filter.show_running}\r\n\t\t)", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.state": { - "binding": { - "config": { - "fallbackDelay": 2.5, - "mode": "indirect", - "references": { - "0": "{view.params.tagProps[0]}", - "fc": "{session.custom.fc}" - }, - "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/ALARMST" - }, - "transforms": [ - { - "expression": "coalesce({value},{view.params.forceFaultStatus},0)", - "type": "expression" - }, - { - "fallback": null, - "inputType": "scalar", - "mappings": [ - { - "input": 4, - "output": 1 - }, - { - "input": 3, - "output": 2 - }, - { - "input": 2, - "output": 3 - }, - { - "input": 1, - "output": 4 - }, - { - "input": 0, - "output": 5 - } - ], - "outputType": "scalar", - "type": "map" - } - ], - "type": "tag" - }, - "persistent": true - }, - "custom.state_string": { - "binding": { - "config": { - "expression": "case({view.custom.running_status},\r\n1, \"Faulted\",\r\n2, \"Stopped\",\r\n3, \"Running\",\r\n\"Unknown\")" - }, - "type": "expr" - }, - "persistent": true - }, - "params.forceFaultStatus": { - "paramDirection": "input", - "persistent": true - }, - "params.forceRunningStatus": { - "paramDirection": "input", - "persistent": true - }, - "params.tagProps": { - "paramDirection": "inout", - "persistent": true - } - }, - "props": { - "defaultSize": { - "height": 100, - "width": 100 - } - }, - "root": { - "children": [ - { - "meta": { - "name": "SmartPac" - }, - "position": { - "height": 1, - "width": 1 - }, - "propConfig": { - "props.elements[1].elements[0].fill.paint": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case({value},\r\n0,{session.custom.colours.state0},\r\n1,{session.custom.colours.state1},\r\n2,{session.custom.colours.state2},\r\n3,{session.custom.colours.state3},\r\n4,{session.custom.colours.state4},\r\n5,{session.custom.colours.state5},\r\n6,{session.custom.colours.state6},\r\n{session.custom.colours.fallback}\r\n)", - "type": "expression" - }, - { - "expression": "if({view.custom.display_icon}\u0026\u0026 {view.custom.isMatch}\u003d0,{value},{value}+\u002700\u0027)", - "type": "expression" - } - ], - "type": "property" - } - }, - "props.style.classes": { - "binding": { - "config": { - "expression": "if({session.custom.colours.colour_impaired} \u003d True \u0026\u0026 {view.custom.isMatch} \u003e 0,\r\n{view.custom.state} + 100 + {view.custom.isMatch},\r\n{view.custom.state} + {view.custom.isMatch})" - }, - "transforms": [ - { - "fallback": "", - "inputType": "scalar", - "mappings": [ - { - "input": 101, - "output": "State-Styles/State101" - }, - { - "input": 102, - "output": "State-Styles/State102" - }, - { - "input": 103, - "output": "State-Styles/State103" - }, - { - "input": 104, - "output": "State-Styles/State104" - }, - { - "input": 105, - "output": "State-Styles/State105" - }, - { - "input": 106, - "output": "State-Styles/State106" - }, - { - "input": 201, - "output": "State-Styles/State201" - }, - { - "input": 202, - "output": "State-Styles/State202" - }, - { - "input": 203, - "output": "State-Styles/State203" - }, - { - "input": 204, - "output": "State-Styles/State204" - }, - { - "input": 205, - "output": "State-Styles/State205" - } - ], - "outputType": "style-list", - "type": "map" - } - ], - "type": "expr" - } - } - }, - "props": { - "elements": [ - { - "id": "defs1", - "name": "defs1", - "type": "defs" - }, - { - "elements": [ - { - "cx": "6.614583", - "cy": "6.614583", - "fill": {}, - "id": "path1", - "name": "path1", - "rx": "6.2085829", - "ry": "6.2085834", - "stroke": { - "dasharray": "none", - "linecap": "round", - "paint": "#000000", - "width": "0.282833" - }, - "type": "ellipse" - }, - { - "cx": "9.5583372", - "cy": "6.7405353", - "fill": { - "paint": "transparent" - }, - "id": "path3", - "name": "path3", - "rx": "2.1170385", - "ry": "2.1170387", - "stroke": { - "dasharray": "none", - "linecap": "butt", - "linejoin": "miter", - "paint": "#000000", - "width": "0.263839" - }, - "type": "ellipse" - }, - { - "cx": "3.6387777", - "cy": "6.7405353", - "fill": { - "paint": "transparent" - }, - "id": "ellipse3", - "name": "ellipse3", - "rx": "2.1170385", - "ry": "2.1170387", - "stroke": { - "dasharray": "none", - "linecap": "butt", - "linejoin": "miter", - "paint": "#000000", - "width": "0.263839" - }, - "type": "ellipse" - }, - { - "d": "m 6.614583,6.0733902 2e-7,3.9748358", - "fill": { - "paint": "transparent" - }, - "id": "path4", - "name": "path4", - "stroke": { - "dasharray": "none", - "linecap": "butt", - "linejoin": "miter", - "paint": "#000000", - "width": "0.278874" - }, - "type": "path" - }, - { - "d": "m 6.6145826,3.367424 2.3434352,4.0589491 -4.6868706,-2e-7 z", - "fill": { - "paint": "transparent" - }, - "id": "path5", - "name": "path5", - "stroke": { - "dasharray": "none", - "linecap": "butt", - "linejoin": "miter", - "paint": "#000000", - "width": "0.28489252" - }, - "transform": "matrix(-1.0350965,0,0,-0.83326286,13.461314,8.9334953)", - "type": "path" - } - ], - "id": "layer1", - "name": "layer1", - "type": "group" - } - ], - "style": {}, - "viewBox": "0 0 13.229167 13.229166" - }, - "type": "ia.shapes.svg" - } - ], - "events": { - "dom": { - "onClick": { - "config": { - "script": "\tsystem.perspective.openDock(\u0027Docked-East\u0027,params\u003d{\u0027tagProps\u0027:self.view.params.tagProps})" - }, - "scope": "G", - "type": "script" - }, - "onDoubleClick": { - "config": { - "script": "\ttagProps \u003d self.view.params.tagProps\n\tsystem.perspective.openPopup(\"StatusPopUP\", \"PopUp-Views/Controller-Equipment/Information\", params \u003d{\"tagProps\":tagProps})\n\t" - }, - "enabled": false, - "scope": "G", - "type": "script" - }, - "onMouseEnter": { - "config": { - "script": "\tfrom time import sleep\n\t\n\talarm \u003d []\n\tmessage \u003d None\n\t\n\tsleep(0.5)\n\t\n\tif system.tag.exists(\"System/aws_data\"):\n\t\tif self.view.params.tagProps[0] !\u003d \"\":\n\t\t\ttags_to_read \u003d system.tag.readBlocking(\"System/aws_data\")\n\t\t\tdecode_alarm_data \u003d system.util.jsonDecode(tags_to_read[0].value)\n\t\t\talarm \u003d [decode_alarm_data[i] for i in decode_alarm_data\n\t\t\t\t\tif decode_alarm_data[i][\u0027sourceId\u0027].startswith(self.view.params.tagProps[0])]\n\t\tif alarm:\n\t\t\talarm \u003d sorted(alarm, key \u003d lambda t:t[\u0027timestamp\u0027], reverse\u003dTrue)\n\t\t\tmessage \u003d max(alarm, key \u003d lambda p:p[\u0027priority\u0027]).get(\u0027message\u0027)\n\t\t\tif len(alarm) \u003e 1:\n\t\t\t\tmessage +\u003d \" (+\" + str(len(alarm)-1) + \")\"\n\tself.view.custom.alarm_message \u003d message" - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "root", - "tooltip": { - "enabled": true, - "location": "top-left", - "style": {} - } - }, - "propConfig": { - "meta.tooltip.style.backgroundColor": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case({value},\r\n0,{session.custom.colours.state0},\r\n1,{session.custom.colours.state1},\r\n2,{session.custom.colours.state2},\r\n3,{session.custom.colours.state3},\r\n4,{session.custom.colours.state4},\r\n5,{session.custom.colours.state5},\r\n6,{session.custom.colours.state6},\r\n{session.custom.colours.fallback}\r\n)", - "type": "expression" - } - ], - "type": "property" - } - }, - "meta.tooltip.style.classes": { - "binding": { - "config": { - "expression": "{view.custom.priority}" - }, - "transforms": [ - { - "fallback": "Alarms-Styles/NoAlarm", - "inputType": "scalar", - "mappings": [ - { - "input": 1, - "output": "Alarms-Styles/Diagnostic" - }, - { - "input": 2, - "output": "Alarms-Styles/Low" - }, - { - "input": 3, - "output": "Alarms-Styles/Medium" - }, - { - "input": 4, - "output": "Alarms-Styles/High" - } - ], - "outputType": "style-list", - "type": "map" - } - ], - "type": "expr" - } - }, - "meta.tooltip.style.color": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "if({session.custom.colours.colour_impaired},\r\n\t\u0027#000000\u0027,\r\n\tcase(\t{value},\r\n\t\t\t1,\u0027#FFFFFF\u0027,\r\n\t\t\t2,\u0027#000000\u0027,\r\n\t\t\t3,\u0027#000000\u0027,\r\n\t\t\t4,\u0027#FFFFFF\u0027,\r\n\t\t\t5,\u0027#FFFFFF\u0027,\r\n\t\t\t\u0027#000000\u0027)\r\n\t)", - "type": "expression" - } - ], - "type": "property" - } - }, - "meta.tooltip.text": { - "binding": { - "config": { - "expression": "if({view.custom.disconnected} \u003d False,\n\tif(isNull({view.custom.alarm_message}),\n\t\"Source Id: \" + {view.params.tagProps[0]} +\n\t\", Priority: \" + {view.custom.priority_string} +\n\t\", State: \" + {view.custom.state_string},\n\t\"Source Id: \" + {view.params.tagProps[0]} +\n\t\", Alarm: \" + {view.custom.alarm_message} +\n\t\", Priority: \" + {view.custom.priority_string} +\n\t\", State: \" + {view.custom.state_string}),\n\"Source Id: \" +{view.params.tagProps[0]} + \", Priority: Unknown, State: Unknown\")" - }, - "type": "expr" - } - }, - "props.style.classes": { - "binding": { - "config": { - "path": "view.custom.disconnected" - }, - "transforms": [ - { - "fallback": "Disconnects/Device-Connected", - "inputType": "scalar", - "mappings": [ - { - "input": true, - "output": "Disconnects/Device-Disconnected" - }, - { - "input": false, - "output": "Disconnects/Device-Connected" - } - ], - "outputType": "style-list", - "type": "map" - } - ], - "type": "property" - } - } - }, - "props": { - "aspectRatio": "1:1", - "mode": "percent", - "style": { - "cursor": "pointer" - } - }, - "type": "ia.container.coord" - } -} \ No newline at end of file diff --git a/.resources/2b0b6c5efb309a94c5da52dc4a2215ae477e8dbc15a4985d642488ae86e9c69c b/.resources/d22c5c49aa8fd47f11f5d244edd489cfa2b83e14dd84e940f24e47873500687a similarity index 98% rename from .resources/2b0b6c5efb309a94c5da52dc4a2215ae477e8dbc15a4985d642488ae86e9c69c rename to .resources/d22c5c49aa8fd47f11f5d244edd489cfa2b83e14dd84e940f24e47873500687a index 21e0b1a4..b74e8f6d 100644 --- a/.resources/2b0b6c5efb309a94c5da52dc4a2215ae477e8dbc15a4985d642488ae86e9c69c +++ b/.resources/d22c5c49aa8fd47f11f5d244edd489cfa2b83e14dd84e940f24e47873500687a @@ -1585,75 +1585,6 @@ "results": { "enabled": true } - }, - "selection": { - "data": [ - { - "Description": { - "style": { - "classes": "Alarms-Styles/Diagnostic" - }, - "value": "FL2078_2_VFD1 - Voltage" - }, - "Device": { - "style": { - "classes": "Alarms-Styles/Diagnostic" - }, - "value": "FL2078_2_VFD1" - }, - "Duration": { - "style": { - "classes": "Alarms-Styles/Diagnostic" - }, - "value": "07:05:16" - }, - "FullTag": { - "style": { - "classes": "Alarms-Styles/Diagnostic" - }, - "value": "System/MCM01/Conveyor/FL2078_2_VFD1/Voltage" - }, - "ID": { - "style": { - "classes": "Alarms-Styles/Diagnostic" - }, - "value": 8 - }, - "Location": { - "style": { - "classes": "Alarms-Styles/Diagnostic" - }, - "value": "MCM01" - }, - "Priority": { - "style": { - "classes": "Alarms-Styles/Diagnostic" - }, - "value": "Diagnostic" - }, - "StartTimestamp": { - "style": { - "classes": "Alarms-Styles/Diagnostic" - }, - "value": { - "$": [ - "ts", - 0, - 1750962272012 - ], - "$ts": 1750936755000 - } - }, - "Tag": { - "style": { - "classes": "Alarms-Styles/Diagnostic" - }, - "value": "FL2078_2_VFD1.HMI.Voltage" - } - } - ], - "selectedColumn": "Duration", - "selectedRow": 2 } }, "type": "ia.display.table" @@ -3350,7 +3281,7 @@ "$": [ "ts", 192, - 1750938073345 + 1754388338241 ], "$ts": 1750435156149 }, @@ -3358,7 +3289,7 @@ "$": [ "ts", 192, - 1750938073345 + 1754388338241 ], "$ts": 1750436956149 } @@ -4380,16 +4311,16 @@ "selection": { "data": [ { - "Description": "MCM01 - Hello world", - "Device": "MCM01", - "Duration": "06:30:56", + "Description": "ULC1_3 - Communication Fault", + "Device": "ULC1_3", + "Duration": "19:00:33", "EndTimestamp": null, - "FullTag": "System/MCM01/MCM01/Beacon_Light", + "FullTag": "System/MCM01/Conveyor/APF/ULC1_3/Alarms/Communication_Fault", "ID": 12, "Location": "MCM01", "Priority": "High", - "StartTimestamp": "Thu Jun 26 2025 15:57:50 GMT+0400 (Georgia Standard Time)", - "Tag": "MCM01.HMI.Beacon_Light" + "StartTimestamp": "Mon Aug 04 2025 18:40:16 GMT+0400 (Georgia Standard Time)", + "Tag": "ULC1_3.HMI.Communication_Fault" } ], "selectedColumn": "EndTimestamp", @@ -4518,7 +4449,7 @@ "$": [ "ts", 192, - 1750938073345 + 1754388338241 ], "$ts": 1750435156149 }, @@ -4526,7 +4457,7 @@ "$": [ "ts", 192, - 1750938073345 + 1754388338241 ], "$ts": 1750436956149 }, @@ -4785,7 +4716,6 @@ "contentStyle": { "classes": "Background-Styles/Grey-Background" }, - "currentTabIndex": 1, "menuType": "modern", "style": { "classes": "Background-Styles/Grey-Background" diff --git a/.resources/d260209b656425b9097bca270a8b11e41892cf13faadb3bb93030dc62e23ec18 b/.resources/d260209b656425b9097bca270a8b11e41892cf13faadb3bb93030dc62e23ec18 deleted file mode 100644 index 1cd1d739..00000000 Binary files a/.resources/d260209b656425b9097bca270a8b11e41892cf13faadb3bb93030dc62e23ec18 and /dev/null differ diff --git a/.resources/d628aadbd46ea1e2f91f1f98283b42c220ca218005e6b56d0e401cefb8d6d30c b/.resources/d628aadbd46ea1e2f91f1f98283b42c220ca218005e6b56d0e401cefb8d6d30c new file mode 100644 index 00000000..29adf28c --- /dev/null +++ b/.resources/d628aadbd46ea1e2f91f1f98283b42c220ca218005e6b56d0e401cefb8d6d30c @@ -0,0 +1,1450 @@ +{ + "custom": {}, + "params": { + "tagProps": [ + "TAG0", + "TAG1", + "TAG2", + "TAG3", + "TAG4", + "TAG5", + "TAG6", + "TAG7", + "TAG8", + "TAG9", + "TAG10", + "TAG11", + "TAG12", + "TAG13", + "TAG14", + "TAG15", + "TAG16", + "TAG17", + "TAG18", + "TAG19" + ] + }, + "props": { + "defaultSize": { + "height": 1080, + "width": 1920 + } + }, + "root": { + "children": [ + { + "meta": { + "name": "DPM" + }, + "position": { + "height": 1, + "width": 1 + }, + "propConfig": { + "props.params.con_lines[0]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[0]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[10]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[10]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[11]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[11]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[12]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[12]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[13]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[13]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[14]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[14]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[15]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[15]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[16]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[16]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[17]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[17]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[18]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[18]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[19]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[19]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[1]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[1]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[2]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[2]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[3]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[3]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[4]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[4]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[5]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[5]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[6]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[6]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[7]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[7]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[8]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[8]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[9]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[9]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + } + }, + "props": { + "params": { + "con_lines": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + false, + false, + false, + false + ], + "con_lines_visible": [ + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + false, + false, + false, + false + ], + "in": false, + "out": false + }, + "path": "Windows/Tabs/Enternet Windows/Components/DPM_TO_HUB" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011017_ZMX1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0232, + "y": 0.4991 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/ZMX" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011017_ZMX1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.0094, + "y": 0.5394 + }, + "props": { + "text": "S011017_ZMX1 11.200.1.125", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "S011018_ZMX1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.023, + "y": 0.6677 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/ZMX" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011018_ZMX1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.0068, + "y": 0.7315 + }, + "props": { + "text": "S011018_ZMX1 11.200.1.126", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "S011019_ZMX1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0216, + "y": 0.8333 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/ZMX" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011019_ZMX1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.0068, + "y": 0.8981 + }, + "props": { + "text": "S011019_ZMX1 11.200.1.127", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "S011020_ZMX1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0229, + "y": 0.3333 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/ZMX" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011020_ZMX1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.0068, + "y": 0.3986 + }, + "props": { + "text": "S011020_ZMX1 11.200.1.128", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "S011021_ZMX1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0229, + "y": 0.1667 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/ZMX" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011021_ZMX1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.0068, + "y": 0.2324 + }, + "props": { + "text": "S011021_ZMX1 11.200.1.129", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "S011022_ZMX1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0244 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/ZMX" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011022_ZMX1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.0068, + "y": 0.0653 + }, + "props": { + "text": "S011022_ZMX1 11.200.1.130", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "S011023_ZMX1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.5 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/ZMX" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011023_ZMX1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.5117, + "y": 0.1662 + }, + "props": { + "text": "S011023_ZMX1 11.200.1.131", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "S011024_ZMX1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.625 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/ZMX" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011024_ZMX1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.6312, + "y": 0.1664 + }, + "props": { + "text": "S011024_ZMX1 11.200.1.132", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "S011025_ZMX1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.75 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/ZMX" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011025_ZMX1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.75, + "y": 0.1664 + }, + "props": { + "text": "S011025_ZMX1 11.200.1.133", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "S011026_ZMX1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.375 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/ZMX" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011026_ZMX1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.3864, + "y": 0.1664 + }, + "props": { + "text": "S011026_ZMX1 11.200.1.134", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "S011027_ZMX1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.2516, + "y": 0.0019 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/ZMX" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011027_ZMX1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.315, + "y": 0.1682 + }, + "props": { + "text": "S011027_ZMX1 11.200.1.135", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "S011028_ZMX1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.1245 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/ZMX" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011028_ZMX1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.2072, + "y": 0.1646 + }, + "props": { + "text": "S011028_ZMX1 11.200.1.136", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "S011029_ZMX1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.8539, + "y": 0.3332 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/ZMX" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011029_ZMX1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.9455, + "y": 0.3943 + }, + "props": { + "text": "S011029_ZMX1 11.200.1.137", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "S011030_ZMX1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.8544, + "y": 0.1667 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/ZMX" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011030_ZMX1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.9455, + "y": 0.2276 + }, + "props": { + "text": "S011030_ZMX1 11.200.1.138", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "S011031_ZMX1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.8558 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/ZMX" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011031_ZMX1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.9455, + "y": 0.0619 + }, + "props": { + "text": "S011031_ZMX1 11.200.1.139", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "S011032_ZMX1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.8539, + "y": 0.4988 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/ZMX" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011032_ZMX1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.9455, + "y": 0.561 + }, + "props": { + "text": "S011032_ZMX1 11.200.1.140", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "VS01A_FIOM06" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.8381, + "y": 0.6639 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/FIO_SIO" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "VS01A_FIOM06_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.9349999999999999, + "y": 0.7257 + }, + "props": { + "text": "VS01A_FIOM06 11.200.1.141", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "VS01A_FIOM07" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.8395, + "y": 0.8329 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/FIO_SIO" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "VS01A_FIOM07_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.9349999999999999, + "y": 0.8927 + }, + "props": { + "text": "VS01A_FIOM07 11.200.1.142", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "VS01A_FIOM08" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.374, + "y": 0.8324 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/FIO_SIO" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "VS01A_FIOM08_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.4587, + "y": 0.8896 + }, + "props": { + "text": "VS01A_FIOM08 11.200.1.143", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "VS01A_FIOM09" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.2481, + "y": 0.8324 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/FIO_SIO" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "VS01A_FIOM09_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.3311, + "y": 0.8887 + }, + "props": { + "text": "VS01A_FIOM09 11.200.1.144", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "DPM_label" + }, + "position": { + "height": 0.0694, + "width": 0.101, + "x": 0.5831, + "y": 0.6342 + }, + "props": { + "text": "DPM02_VS01A 11.200.1.3", + "textStyle": { + "fontSize": "2vmin" + } + }, + "type": "ia.display.label" + } + ], + "meta": { + "name": "root" + }, + "position": { + "x": 0.6348, + "y": -0.1546 + }, + "props": { + "mode": "percent" + }, + "type": "ia.container.coord" + } +} \ No newline at end of file diff --git a/.resources/d7aa5056dbace986564dd1a17dd712f499af08510650ef551c6e3373c4ad2ccd b/.resources/d7aa5056dbace986564dd1a17dd712f499af08510650ef551c6e3373c4ad2ccd deleted file mode 100644 index 6be433c9..00000000 Binary files a/.resources/d7aa5056dbace986564dd1a17dd712f499af08510650ef551c6e3373c4ad2ccd and /dev/null differ diff --git a/.resources/d82e42e270fe7fc6507ea98adb444a71f486f4d406133801d73573716694b6e6 b/.resources/d82e42e270fe7fc6507ea98adb444a71f486f4d406133801d73573716694b6e6 new file mode 100644 index 00000000..165afa0e --- /dev/null +++ b/.resources/d82e42e270fe7fc6507ea98adb444a71f486f4d406133801d73573716694b6e6 @@ -0,0 +1,231 @@ +{ + "custom": { + "alarm_filter": { + "magnificaiton": "x2", + "orderby": false, + "show_buttons": true, + "show_camera_jams": true, + "show_diagnostic": true, + "show_fio": true, + "show_gateways": true, + "show_low_alarm": true, + "show_map": true, + "show_running": true, + "show_safety": true + }, + "alarms": [], + "aws": { + "prefix": "na", + "region": "us-east-1" + }, + "colours": { + "Fallback": "#00FF00", + "colour_impaired": false, + "state0": "#8C8C8C", + "state1": "#FF0000", + "state6": "#CCCCFF" + }, + "command_auth": { + "auth_time": { + "$": [ + "ts", + 192, + 1674052360661 + ], + "$ts": 1674052360661 + }, + "enabled": false, + "timeout_sp": 500 + }, + "covert": true, + "deviceSearchId": "", + "download_url": "https://scadacloud-storage-prod-downloadbucketdc1a1095-17r7vrw051y3t.s3.amazonaws.com/history/DNG2/58b56f26-c115-41b5-badb-a3394f312630-1672826106.csv?AWSAccessKeyId\u003dASIAVDEI3U6Y3J5KB2NA\u0026Signature\u003dzucRF2nCigK4y5M%2BNbjoI06UUng%3D\u0026x-amz-security-token\u003dIQoJb3JpZ2luX2VjEKL%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaCWV1LXdlc3QtMSJIMEYCIQCy78peP6YRJ1gyf9RROmmcfk%2BRHyPhxv6ejHJgyEG0KQIhALXnJXYIyDiWzr9vxehoDIa2c7sx818gUyuiFXYY6rb2KsoDCOv%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEQABoMMzUwMzI2ODU5Njk3IgzVrdKyNsVjl%2BNjqWQqngOJCTFOLVppHMmo1otgHZCXlVISlnBz6rz6ykr8SHgGQPc0EsaL9a1I0oQmS42i%2BlRHpEpQfMdjUbP3dr2OnVKXmopkkUJZ592SPzA3MZzS95SHXMvbbPDs0OAw5mKdS6LHQAQb90ZdQdeoEj%2FG1bPEIiifVT07PhHMA0JMS7ExgXmHzq1c6W%2Fjc%2BdfQOjl41qnWcE1GH5MaVfU%2FOKW5PffN6pLf%2BJ61YjjbXqPIpPHimJSGqMI5BmFzAfSlsYAtgFT8bMyJhbUDaPlDF7X42SSYLs1CeAbddPFMvrhDIUk%2BYTA3oV69SMjX91LrKBNqRhFS%2F0R4U8nbA4rSd%2BhMkdr5RSwa9Q22ZQpbzuqQU1H%2B4oQy6419lQg3lkBF5SBNGdvQajD6mav2ipHYe7OkX5GKq2pNzBLzJsqGGnsJvISB83ShA6SnuiZFx%2F2LXvDtEu3jTCS4yRjDegxiKRBs%2FiwH0dN2ztb8a3vnSJN0EqaoORf2eVb%2BozzAv1EBaqnUEZZAoOKb8iaxpbZtqLaUNOOd7VsHsUPoBQRkKqH2RAw95nVnQY6nQFAgIr2YAjgyrsuAfVgr2b41jc3Dj83zJ6I9LI%2BglDMgQFyfL0RNPmoxEu3DDfq5yLy8MtiPlYcs71J3J8Z%2B7xIkH%2BIPWKwmKLsvaEtN7Io1kOfvFgEcMhhIPRwwEj70AVokPncUQ8HtKQhXnq7l1YZ4yyAw2poT%2Ff%2FgJwv7suOu2dZeh%2BH%2B9OwE4M%2BRmVoFO7tTWIakPgODw2ZFzqs\u0026Expires\u003d1672829705", + "dpm_view_path": "value", + "enable_activity_logging": false, + "fc": "SAT9", + "id_to_state": "{\"PLC01/0820_06_09\":1,\"PLC02/0820_91_16/B4510\":1,\"PLC03/0820_82_04/B312_3\":1,\"PLC09/0120_33_01/B425_0\":1,\"PLC09/1210_03_27\":3,\"PLC02/0820_07_39_BT1\":1,\"ARSAW1501/05_10/B12_6\":3,\"PLC09/0110_13_40\":1,\"FSC10/TRZ_0850_01/CAS_0850_01_0299\":2,\"PLC02/0820_05_31/B4000_2\":1,\"PLC09/1210_03_30\":3,\"PLC09/1210_03_36\":3,\"PLC1000/1000_43_01\":1,\"PLC09/0120_35_18/B505_2\":1,\"PLC02/0820_05_20/B3804_6\":1,\"PLC01/0820_06_05\":1,\"PLC01/0820_06_07\":1,\"PLC1000/1000_22_02/B501_3\":1,\"PLC01/0820_01_41/B6103_2\":1,\"PLC1000/1000_42_04/B517_7\":1,\"PLC09/2210_08_60/B911_1\":1,\"PLC02/0820_05_06/B3702_6\":1,\"PLC09/2210_08_60/B911_5\":1,\"PLC09/0110_23_40/B304_2\":1,\"PLC09/1210_02_01/B705_0\":1,\"PLC09/1210_03_25\":3,\"PLC01/0820_01_75/B6401_6\":1,\"PLC01/0820_64_03\":1,\"PLC02/0820_07_29_BT1/TN12A\":1,\"PLC02/0820_05_03/B3701_2\":1,\"PLC01/0820_06_14\":1,\"PLC09/2210_03_45/B1007_4\":1,\"PLC01/0820_06_17\":1,\"PLC01/0820_06_18\":1,\"FSC10/OFZ_0850_31/CH_0850_31_06\":2,\"FSC10/OFZ_0850_31/CH_0850_31_07\":2,\"FSC10/OFZ_0850_31/CH_0850_31_04\":2,\"FSC10/OFZ_0850_31/CH_0850_31_05\":2,\"FSC10/OFZ_0850_31/CH_0850_31_08\":2,\"FSC10/OFZ_0850_31/CH_0850_31_09\":2,\"PLC09/1210_03_06\":3,\"PLC09/1210_03_04\":3,\"PLC02/0820_05_41/B4100_2\":1,\"FSC10/OFZ_0850_31/CH_0850_31_02\":2,\"PLC02/0820_91_08/B4318\":1,\"FSC10/OFZ_0850_31/CH_0850_31_03\":2,\"FSC10/OFZ_0850_31/CH_0850_31_01\":2,\"FSC10/TRZ_0850_01/CAS_0850_01_0148\":3,\"PLC02/0820_01_07\":1,\"PLC09/1210_03_13\":3,\"PLC09/1210_03_12\":1,\"PLC26/0513_11_02/B118_1\":3,\"PLC09/0120_52_23/B528_6\":1,\"PLC09/0120_51_01/B510_0\":1,\"ARSAW1303\":3,\"PLC09/2210_02_01\":1,\"PLC09/1210_02_30\":3,\"PLC1000/1000_42_04\":1,\"PLC09/1210_03_02\":3,\"PLC1000/1000_43_01/B525_0\":1,\"PLC26/0513_31_30/M1\":3,\"PLC01/0820_02_02/B6500_6\":1,\"FSC10/OFZ_0850_31/CH_0850_31_28\":2,\"FSC10/OFZ_0850_31/CH_0850_31_29\":2,\"FSC10/OFZ_0850_31/CH_0850_31_26\":2,\"PLC09/0110_23_40\":1,\"PLC01/0820_01_47/B6200_6\":1,\"FSC10/OFZ_0850_52/CH_0850_52_01\":2,\"FSC10/OFZ_0850_31/CH_0850_31_27\":2,\"FSC10/OFZ_0850_31/CH_0850_31_20\":2,\"FSC10/OFZ_0850_31/CH_0850_31_21\":2,\"FSC10/OFZ_0850_31/CH_0850_31_24\":2,\"FSC10/OFZ_0850_31/CH_0850_31_25\":2,\"FSC10/OFZ_0850_31/CH_0850_31_22\":2,\"FSC10/OFZ_0850_31/CH_0850_31_23\":2,\"FSC10/IFZ_0850_68/PCO_0850_68_98\":2,\"PLC09/0120_33_10\":1,\"PLC09/2210_09_60\":1,\"PLC09/0110_01_20\":1,\"FSC10/OFZ_0850_31/CH_0850_31_17\":2,\"FSC10/OFZ_0850_31/CH_0850_31_18\":2,\"FSC10/OFZ_0850_31/CH_0850_31_15\":2,\"FSC10/OFZ_0850_31/CH_0850_31_16\":2,\"FSC10/OFZ_0850_31/CH_0850_31_19\":2,\"PLC09/0120_52_08/B526_7\":1,\"FSC10/OFZ_0850_31/CH_0850_31_10\":2,\"PLC02/0820_91_14/B4422\":1,\"FSC10/OFZ_0850_31/CH_0850_31_13\":2,\"FSC10/OFZ_0850_31/CH_0850_31_14\":2,\"FSC10/OFZ_0850_31/CH_0850_31_11\":2,\"FSC10/OFZ_0850_31/CH_0850_31_12\":2,\"FSC10/TRZ_0850_01/CAS_0850_01_0147\":3,\"PLC01/0820_06_05/B6902_2\":1,\"FSC10/OFZ_0850_51/CH_0850_51_50\":2,\"PLC09/0120_33_01\":1,\"PLC09/1210_03_60\":3,\"FSC10/OFZ_0850_31/CH_0850_31_48\":2,\"FSC10/OFZ_0850_31/CH_0850_31_49\":2,\"PLC01/0820_02_04/B6501_6\":1,\"FSC10/OFZ_0850_31/CH_0850_31_42\":2,\"PLC02/0820_07_09_BT1\":1,\"FSC10/OFZ_0850_51/CH_0850_51_43\":2,\"PLC01/0820_03_18/B6802_6\":1,\"FSC10/OFZ_0850_31/CH_0850_31_43\":2,\"PLC09/1210_03_48\":3,\"FSC10/OFZ_0850_31/CH_0850_31_40\":2,\"FSC10/OFZ_0850_51/CH_0850_51_41\":2,\"FSC10/OFZ_0850_31/CH_0850_31_41\":2,\"PLC02/0820_91_18/B4518\":1,\"FSC10/OFZ_0850_31/CH_0850_31_46\":2,\"FSC10/OFZ_0850_31/CH_0850_31_47\":2,\"FSC10/OFZ_0850_51/CH_0850_51_44\":2,\"FSC10/OFZ_0850_31/CH_0850_31_44\":2,\"FSC10/OFZ_0850_31/CH_0850_31_45\":2,\"PLC01/0820_55_03/B420_1\":1,\"FSC10/OFZ_0850_31/CH_0850_31_39\":2,\"FSC10/OFZ_0850_31/CH_0850_31_37\":2,\"FSC10/OFZ_0850_31/CH_0850_31_38\":2,\"PLC09/1210_03_39\":3,\"FSC10/OFZ_0850_31/CH_0850_31_31\":2,\"FSC10/OFZ_0850_31/CH_0850_31_32\":2,\"PLC09/0120_32_02\":1,\"FSC10/OFZ_0850_31/CH_0850_31_30\":2,\"PLC09/0120_35_10/B504_1\":1,\"FSC10/OFZ_0850_31/CH_0850_31_35\":2,\"PLC09/2210_02_01/B905_0\":1,\"PLC09/0110_23_40/B305_1\":1,\"ARSAW1501\":3,\"PLC09/0110_23_40/B305_0\":1,\"FSC10/OFZ_0850_31/CH_0850_31_36\":2,\"FSC10/OFZ_0850_31/CH_0850_31_33\":2,\"PLC09/0110_23_40/B305_2\":1,\"FSC10/OFZ_0850_31/CH_0850_31_34\":2,\"PLC09/1210_03_42\":3,\"PLC01/0820_06_07/B6903_2\":1,\"PLC26/0513_11_02\":3,\"PLC09/1210_03_45\":3,\"PLC09/0120_32_11\":1,\"ARSAW1303/05_22\":3,\"PLC09/0110_01_20/B102_3\":1,\"PLC09/0110_01_20/B102_2\":1,\"PLC09/2210_03_45\":1,\"PLC01/0820_01_73/B6400_6\":1,\"PLC02/0820_07_49_BT1\":1,\"PLC80/0632_05_40/B113_3\":1,\"PLC80/0632_05_40/B113_4\":1,\"PLC26/S01/A902\":4,\"PLC80/0632_05_40/B113_5\":1,\"PLC26/S01/A901\":4,\"PLC26/0513_31_23\":3,\"PLC09/0120_43_01\":1,\"PLC80/0632_05_40/B113_2\":1,\"PLC80/0632_01_07/B103_6\":1,\"PLC14/0580_01_01\":3,\"PLC09/0120_51_08/B510_7\":1,\"PLC09/0120_41_20/B521_3\":1,\"PLC26/0513_31_19\":3,\"PLC01/0820_02_05/B6502_2\":1,\"PLC02/0820_07_29_BT1\":1,\"PLC02/0820_91_12/B4414\":1,\"PLC82/0640_21_02/BT1\":1,\"PLC01/0820_02_01/B6500_2\":1,\"FSC10/OFZ_0850_53/CH_0850_53_02\":2,\"PLC81/0631_05_40/B113_5\":1,\"PLC02/0820_91_13/B4418\":1,\"PLC09/1210_02_30/M1\":3,\"PLC81/0631_05_40/B113_4\":1,\"PLC81/0631_05_40/B113_3\":1,\"FSC10/OFZ_0850_55/CH_0850_55_04\":2,\"PLC1000/1000_22_02\":1,\"PLC69/0330_07_20/B118_4\":1,\"FSC10/OFZ_0850_55/CH_0850_55_02\":2,\"FSC10/OFZ_0850_55/CH_0850_55_03\":2,\"PLC69/0330_07_20/B118_3\":1,\"PLC16/0580_21_01\":3,\"PLC01/0820_01_43/B6104_2\":1,\"PLC1000/1000_33_12\":1,\"PLC01/0820_55_03\":1,\"PLC27/0514_04_20/B106_5\":1,\"PLC09/2210_04_22\":1,\"PLC02/0820_05_14/B3801_6\":1,\"PLC26/0513_31_30\":3,\"PLC26/0513_32_01\":3,\"PLC09/1210_03_27/B805_2\":3,\"PLC02/0820_05_24/B3901_6\":1,\"PLC09/1210_03_04/B802_3\":3,\"PLC82/0640_21_03\":1,\"PLC82/0640_21_04\":1,\"PLC82/0640_21_01\":1,\"PLC26/0513_31_23/B320_6\":3,\"PLC82/0640_21_02\":1,\"FSC10/OFZ_0850_53/CH_0850_53_20\":2,\"FSC10/TRZ_0850_01/CAS_0850_01_1180\":3,\"PLC02/0820_91_06/B4310\":1,\"PLC09/0110_21_20\":1,\"PLC1000/1000_33_01\":1,\"FSC10/OFZ_0850_53/CH_0850_53_29\":2,\"FSC10/OFZ_0850_53/CH_0850_53_26\":2,\"PLC01/0820_01_71/B6306_6\":1,\"PLC09/0120_35_26/B506_2\":1,\"PLC09/0120_51_01\":1,\"PLC09/0120_51_08\":1,\"PLC09/0120_41_14/B520_5\":1,\"PLC09/0120_41_20\":1,\"PLC09/0120_32_11/B423_2\":1,\"PLC82/0640_21_01/BT1\":1,\"PLC09/1210_09_60/M1\":3,\"PLC80/0632_05_40\":1,\"PLC09/0120_41_14\":1,\"FSC10\":4,\"PLC01/0820_57_03\":1,\"PLC02/0820_05_02/B3700_6\":1,\"PLC09/0120_51_15\":1,\"PLC02/0820_91_51/B5210\":1,\"PLC27/0514_04_20\":1,\"PLC09/1210_03_45/B807_4\":3,\"PLC09/1210_03_39/B806_6\":3,\"PLC01/0820_57_03/B421_1\":1,\"PLC09/0120_41_08\":1,\"PLC02/0820_91_52/B5214\":1,\"PLC09/0120_51_23\":1,\"PLC09/2210_03_12\":1,\"FSC10/TRZ_0850_01/CAS_0850_01_1174\":3,\"PLC09/0120_52_15/B527_6\":1,\"PLC01/0820_01_77/B6402_6\":1,\"PLC01/0820_06_18/B7003_6\":1,\"PLC02/0820_91_02/B4214\":1,\"FSC10/OFZ_0850_33/CH_0850_33_21\":2,\"PLC26/0513_31_19/B320_2\":3,\"FSC10/OFZ_0850_33/CH_0850_33_25\":2,\"PLC09/0120_52_01\":1,\"PLC02/0820_91_53/B5218\":1,\"FSC10/OFZ_0850_75\":2,\"FSC10/OFZ_0850_73\":2,\"PLC09/0120_52_08\":1,\"PLC01/0820_02_03/B6501_2\":1,\"PLC09/2210_07_01\":1,\"FSC10/OFZ_0850_54/CH_0850_54_08\":2,\"PLC01/0820_06_14/B7001_6\":1,\"FSC10/OFZ_0850_54/CH_0850_54_06\":2,\"FSC10/OFZ_0850_54/CH_0850_54_03\":2,\"PLC82/0640_21_04/BT1\":1,\"FSC10/MAZ_0850_98/CCO_0850_98_98\":3,\"PLC09/0120_52_15\":1,\"PLC02/0820_07_19_BT1/TN8A\":1,\"FSC10/OFZ_0850_33/CH_0850_33_13\":2,\"PLC02/0820_04_28/B3601_6\":1,\"FSC10/OFZ_0850_33/CH_0850_33_14\":2,\"FSC10/OFZ_0850_33/CH_0850_33_12\":2,\"PLC01/0820_06_09/B6904_2\":1,\"PLC09/2210_06_29\":1,\"FSC10/OFZ_0850_33/CH_0850_33_15\":2,\"PLC09/2210_03_12/B1003_3\":1,\"PLC81/0631_05_40\":1,\"FSC10/OFZ_0850_33/CH_0850_33_19\":2,\"FSC10/OFZ_0850_54/CH_0850_54_19\":2,\"PLC02/0820_07_39_BT1/TN16A\":1,\"FSC10/OFZ_0850_54/CH_0850_54_17\":2,\"PLC69\":1,\"PLC09/2210_09_60/B912_5\":1,\"PLC09/0120_52_23\":1,\"PLC02/0820_05_41\":1,\"PLC01/0820_01_49/B6201_6\":1,\"FSC10/OFZ_0850_55\":2,\"PLC09/2210_07_27\":1,\"FSC10/OFZ_0850_54\":2,\"FSC10/OFZ_0850_33/CH_0850_33_05\":2,\"FSC10/OFZ_0850_53\":2,\"PLC01/0820_64_03/B425_5\":1,\"FSC10/OFZ_0850_52\":2,\"FSC10/OFZ_0850_51\":2,\"PLC02/0820_07_19_BT1\":1,\"FSC10/OFZ_0850_75/CH_0850_75_08\":2,\"FSC10/OFZ_0850_54/CH_0850_54_20\":2,\"PLC02/0820_91_07/B4314\":1,\"PLC69/0330_09_30\":1,\"PLC69/0330_09_30/B120_2\":1,\"PLC69/0330_09_30/B120_4\":1,\"PLC07/0320_31_20/B520_1\":1,\"PLC80\":1,\"PLC09/0120_51_15/B511_6\":1,\"FSC10/MAZ_0850_98\":3,\"PLC03\":1,\"PLC01/0820_02_04\":1,\"PLC01/0820_02_03\":1,\"PLC01/0820_02_13/B6600_2\":1,\"PLC09/2210_04_22/B1011_5\":1,\"PLC01\":1,\"PLC01/0820_02_02\":1,\"PLC01/0820_02_01\":1,\"PLC02\":1,\"PLC07\":1,\"PLC02/0820_05_20\":1,\"FSC10/OFZ_0850_33\":2,\"FSC10/OFZ_0850_32\":2,\"FSC10/OFZ_0850_31\":2,\"PLC02/0820_05_24\":1,\"PLC02/0820_05_27\":1,\"PLC82/0640_21_03/BT1\":1,\"PLC09\":3,\"PLC01/0820_02_05\":1,\"PLC14\":3,\"PLC01/0820_01_47\":1,\"PLC01/0820_01_46\":1,\"PLC01/0820_02_13\":1,\"ARSAW1501/05_10\":3,\"PLC01/0820_06_17/B7003_2\":1,\"PLC01/0820_01_43\":1,\"PLC02/0820_91_17/B4514\":1,\"PLC01/0820_71_03/B428_1\":1,\"PLC01/0820_01_41\":1,\"PLC16\":3,\"PLC02/0820_05_31\":1,\"PLC1000/1000_12_02/B308_7\":1,\"PLC01/0820_01_50/B6202_2\":1,\"PLC01/0820_59_03/B422_1\":1,\"PLC09/1210_03_60/M1\":3,\"PLC03/0820_82_04\":1,\"PLC01/0820_01_49\":1,\"PLC26\":4,\"PLC01/0820_02_20\":1,\"PLC27\":1,\"PLC01/0820_71_03\":1,\"PLC01/0820_01_50\":1,\"PLC02/0820_05_03\":1,\"PLC02/0820_05_02\":1,\"PLC02/0820_91_28/B4718\":1,\"PLC02/0820_91_33/B4818\":1,\"PLC02/0820_05_06\":1,\"PLC1000/1000_12_02\":1,\"PLC80/0632_03_01/B106_0\":1,\"PLC02/0820_91_15/B4430\":1,\"PLC01/0820_03_07\":1,\"PLC01/0820_03_08\":1,\"PLC01/0820_01_63\":1,\"PLC02/0820_05_14\":1,\"ARSAW1303/05_22/B11_4\":3,\"PLC02/0820_05_15\":1,\"PLC09/2210_06_02\":1,\"PLC01/0820_59_03\":1,\"PLC09/0120_51_23/B512_6\":1,\"PLC09/1210_03_12/B803_3\":1,\"PLC09/1210_03_06/B802_5\":3,\"PLC09/2210_07_01/B1025_0\":1,\"PLC01/0820_03_18\":1,\"PLC01/0820_03_07/B6703_2\":1,\"FSC10/OFZ_0850_32/CH_0850_32_03\":2,\"PLC01/0820_01_79\":1,\"PLC09/0120_41_08/B519_7\":1,\"PLC01/0820_01_77\":1,\"PLC02/0820_91_18\":1,\"PLC02/0820_91_17\":1,\"PLC01/0820_01_75\":1,\"PLC02/0820_91_16\":1,\"PLC01/0820_01_73\":1,\"PLC02/0820_91_15\":1,\"PLC02/0820_91_14\":1,\"FSC10/OFZ_0850_31/CH_0850_31_64\":2,\"PLC01/0820_01_71\":1,\"FSC10/OFZ_0850_31/CH_0850_31_65\":2,\"PLC02/0820_91_13\":1,\"PLC02/0820_91_12\":1,\"FSC10/OFZ_0850_31/CH_0850_31_62\":2,\"FSC10/OFZ_0850_31/CH_0850_31_63\":2,\"FSC10/OFZ_0850_32/CH_0850_32_09\":2,\"FSC10/OFZ_0850_32/CH_0850_32_06\":2,\"FSC10/OFZ_0850_31/CH_0850_31_68\":2,\"FSC10/OFZ_0850_31/CH_0850_31_69\":2,\"FSC10/OFZ_0850_31/CH_0850_31_66\":2,\"PLC26/S01\":4,\"FSC10/OFZ_0850_31/CH_0850_31_67\":2,\"FSC10/TRZ_0850_01/CAS_0850_01_0694\":3,\"FSC10/OFZ_0850_31/CH_0850_31_60\":2,\"FSC10/OFZ_0850_31/CH_0850_31_61\":2,\"PLC02/0820_07_49_BT1/TN20A\":1,\"PLC02/0820_91_36/B4910\":1,\"FSC10/OFZ_0850_32/CH_0850_32_13\":2,\"FSC10/OFZ_0850_32/CH_0850_32_14\":2,\"FSC10/OFZ_0850_31/CH_0850_31_59\":2,\"FSC10/OFZ_0850_32/CH_0850_32_12\":2,\"PLC02/0820_91_08\":1,\"PLC02/0820_91_07\":1,\"FSC10/OFZ_0850_73/CH_0850_73_13\":2,\"PLC02/0820_91_06\":1,\"FSC10/OFZ_0850_32/CH_0850_32_10\":2,\"PLC80/0632_03_06/B106_5\":1,\"FSC10/OFZ_0850_73/CH_0850_73_11\":2,\"PLC09/2210_07_27/B1028_2\":1,\"FSC10/OFZ_0850_31/CH_0850_31_53\":2,\"PLC02/0820_91_02\":1,\"FSC10/OFZ_0850_31/CH_0850_31_54\":2,\"FSC10/OFZ_0850_73/CH_0850_73_18\":2,\"FSC10/OFZ_0850_31/CH_0850_31_51\":2,\"FSC10/OFZ_0850_73/CH_0850_73_15\":2,\"PLC02/0820_05_27/B3903_2\":1,\"FSC10/OFZ_0850_31/CH_0850_31_52\":2,\"FSC10/OFZ_0850_32/CH_0850_32_17\":2,\"PLC02/0820_04_28\":1,\"FSC10/OFZ_0850_31/CH_0850_31_57\":2,\"FSC10/OFZ_0850_31/CH_0850_31_58\":2,\"FSC10/OFZ_0850_32/CH_0850_32_18\":2,\"FSC10/OFZ_0850_32/CH_0850_32_15\":2,\"FSC10/OFZ_0850_73/CH_0850_73_19\":2,\"FSC10/OFZ_0850_31/CH_0850_31_55\":2,\"FSC10/OFZ_0850_31/CH_0850_31_56\":2,\"PLC07/0320_31_20\":1,\"FSC10/OFZ_0850_32/CH_0850_32_16\":2,\"FSC10/OFZ_0850_31/CH_0850_31_50\":2,\"PLC26/0513_03_10/B104_7\":3,\"PLC02/0820_01_07/B3103_2\":1,\"PLC69/0330_07_20\":1,\"FSC10/OFZ_0850_73/CH_0850_73_02\":2,\"FSC10/OFZ_0850_73/CH_0850_73_03\":2,\"FSC10/OFZ_0850_73/CH_0850_73_01\":2,\"PLC02/0820_91_36\":1,\"FSC10/OFZ_0850_73/CH_0850_73_04\":2,\"PLC02/0820_91_33\":1,\"PLC09/0110_13_40/B204_2\":1,\"FSC10/IFZ_0850_68\":2,\"PLC26/0513_03_10\":3,\"FSC10/OFZ_0850_31/CH_0850_31_80\":2,\"PLC09/1210_03_48/B807_7\":3,\"PLC80/0632_03_06\":1,\"PLC02/0820_91_28\":1,\"PLC09/2210_08_60\":1,\"PLC80/0632_03_01\":1,\"FSC10/OFZ_0850_31/CH_0850_31_75\":2,\"FSC10/OFZ_0850_31/CH_0850_31_76\":2,\"FSC10/OFZ_0850_31/CH_0850_31_73\":2,\"FSC10/OFZ_0850_31/CH_0850_31_74\":2,\"FSC10/OFZ_0850_31/CH_0850_31_79\":2,\"FSC10/TRZ_0850_01/CAS_0850_01_0557\":3,\"PLC1000/1000_33_12/B419_3\":1,\"FSC10/OFZ_0850_32/CH_0850_32_37\":2,\"FSC10/TRZ_0850_01/CAS_0850_01_0556\":3,\"FSC10/OFZ_0850_31/CH_0850_31_77\":2,\"FSC10/OFZ_0850_31/CH_0850_31_78\":2,\"FSC10/TRZ_0850_01/CAS_0850_01_0565\":2,\"FSC10/TRZ_0850_01/CAS_0850_01_0564\":2,\"FSC10/OFZ_0850_31/CH_0850_31_71\":2,\"FSC10/OFZ_0850_31/CH_0850_31_72\":2,\"FSC10/TRZ_0850_01/CAS_0850_01_0680\":3,\"FSC10/OFZ_0850_31/CH_0850_31_70\":2,\"PLC02/0820_05_15/B3802_2\":1,\"PLC09/0120_33_10/B426_1\":1,\"PLC09/1210_09_60\":3,\"FSC10/OFZ_0850_32/CH_0850_32_47\":2,\"PLC09/0120_35_26\":1,\"PLC81\":1,\"PLC82\":1,\"FSC10/TRZ_0850_01/CAS_0850_01_0891\":4,\"PLC09/1210_03_30/B805_5\":3,\"PLC09/0110_13_40/B205_1\":1,\"PLC02/0820_91_53\":1,\"PLC09/0110_13_40/B205_0\":1,\"PLC02/0820_91_52\":1,\"PLC09/0110_13_40/B205_2\":1,\"PLC02/0820_91_51\":1,\"PLC09/2210_06_02/B1018_1\":1,\"FSC10/TRZ_0850_01\":4,\"PLC80/0632_01_07\":1,\"PLC09/0110_03_40\":1,\"PLC1000/1000_33_01/B418_0\":1,\"FSC10/OFZ_0850_32/CH_0850_32_54\":2,\"PLC09/0120_35_18\":1,\"FSC10/TRZ_0850_01/CAS_0850_01_0780\":2,\"PLC09/0110_03_40/B105_2\":1,\"PLC09/0110_03_40/B105_0\":1,\"PLC01/0820_01_79/B6403_6\":1,\"PLC09/0110_03_40/B105_1\":1,\"PLC26/0513_32_01/B405_4\":3,\"FSC10/TRZ_0850_01/CAS_0850_01_0300\":2,\"FSC10/TRZ_0850_01/CAS_0850_01_0779\":2,\"PLC09/1210_03_13/B803_4\":3,\"FSC10/OFZ_0850_33/CH_0850_33_43\":2,\"PLC01/0820_01_46/B6200_2\":1,\"PLC09/0110_21_20/B302_3\":1,\"PLC09/0110_21_20/B302_2\":1,\"PLC1000\":1,\"PLC09/0120_35_10\":1,\"PLC09/1210_03_36/B806_3\":3,\"PLC09/1210_02_01\":1,\"PLC09/1210_03_42/B807_1\":3,\"PLC09/2210_06_29/B1021_4\":1,\"PLC09/0120_32_02/B422_1\":1,\"PLC09/0110_03_40/B104_2\":1,\"PLC09/1210_03_25/B805_0\":3,\"PLC02/0820_07_09_BT1/TN4A\":1,\"PLC01/0820_01_63/B6302_6\":1,\"PLC01/0820_02_20/B6603_6\":1,\"PLC09/1210_03_02/B802_1\":3,\"PLC26/S01/A999\":4,\"PLC09/0120_52_01/B526_0\":1,\"PLC01/0820_03_08/B6703_6\":1}", + "local": true, + "local_mode": true, + "page_id": "value", + "product_metrics": { + "enable": true + }, + "searchId": "PLC01", + "show_dpm_device_view": false, + "show_dpm_view": true, + "sources": [], + "view_in_focus": "/" + }, + "propConfig": { + "custom.alarmId": { + "persistent": false + }, + "custom.colours.state2": { + "binding": { + "config": { + "expression": "if({this.custom.colours.colour_impaired},\u0027#F00077\u0027,\u0027#FF8000\u0027)" + }, + "type": "expr" + } + }, + "custom.colours.state3": { + "binding": { + "config": { + "expression": "if({this.custom.colours.colour_impaired},\u0027#FF6000\u0027,\u0027#FFFF00\u0027)" + }, + "type": "expr" + } + }, + "custom.colours.state4": { + "binding": { + "config": { + "expression": "if({this.custom.colours.colour_impaired},\u0027#FCC400\u0027,\u0027#007EFC\u0027)" + }, + "type": "expr" + } + }, + "custom.colours.state5": { + "binding": { + "config": { + "expression": "if({this.custom.colours.colour_impaired},\u0027#007DFA\u0027,\u0027#00CC00\u0027)" + }, + "type": "expr" + } + }, + "custom.command_auth.auth_timeout": { + "binding": { + "config": { + "expression": "if({this.custom.command_auth.enabled},toInt(dateDiff({this.custom.command_auth.auth_time},now(),\u0027seconds\u0027)),0)" + }, + "type": "expr" + }, + "onChange": { + "enabled": null, + "script": "\tif currentValue.value \u003e self.custom.command_auth.timeout_sp:\n\t\tself.custom.command_auth.enabled \u003d False" + } + }, + "custom.command_auth.enabled": { + "onChange": { + "enabled": null, + "script": "\tif currentValue.value:\n\t\tself.custom.command_auth.auth_time \u003d system.date.now()" + } + }, + "custom.covert": { + "access": "PRIVATE" + }, + "custom.deviceSearchId": { + "access": "PRIVATE" + }, + "custom.downloads": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "fc": "{this.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]System/download" + }, + "transforms": [ + { + "code": "\tvalue_decoded \u003d system.util.jsonDecode(value)\n\tdownloads \u003d value_decoded.get(\"data\",[])\n\tfor i in downloads:\n\t\tsession_id \u003d i.get(\"session_id\")\n\t\turl \u003d i.get(\"url\")\n\t\tif session_id \u003d\u003d self.props.id:\n\t\t\tself.custom.download_url \u003d url\n\t\t\treturn True\n\t\telse:\n\t\t\treturn False", + "type": "script" + } + ], + "type": "tag" + } + }, + "custom.fc": { + "access": "PRIVATE" + }, + "custom.has_fc_role": { + "access": "PRIVATE", + "binding": { + "config": { + "expression": "{this.props.auth.user.roles}" + }, + "transforms": [ + { + "code": "\tuser_roles \u003d value\n\tfc_role \u003d self.custom.fc\n\trme_role \u003d fc_role.lower() + \"-rme-all\"\n\thas_role \u003d False\n\tfor roles in user_roles:\n\t\tif roles.lower() \u003d\u003d rme_role:\n\t\t\thas_role \u003d True\n\t\t\t\t\n\treturn has_role\n", + "type": "script" + } + ], + "type": "expr" + } + }, + "custom.id_to_state": { + "access": "PRIVATE", + "persistent": true + }, + "custom.show_south_dock": { + "access": "PRIVATE" + }, + "custom.state": { + "access": "PRIVATE" + }, + "custom.state_messages": { + "access": "PRIVATE" + }, + "custom.state_view": { + "access": "PRIVATE" + }, + "props.auth": { + "access": "PRIVATE", + "persistent": false + }, + "props.device.accelerometer": { + "access": "SYSTEM", + "persistent": false + }, + "props.device.identifier": { + "access": "SYSTEM", + "persistent": false + }, + "props.device.timezone": { + "access": "SYSTEM", + "persistent": false + }, + "props.device.type": { + "access": "SYSTEM", + "persistent": false + }, + "props.device.userAgent": { + "access": "SYSTEM", + "persistent": false + }, + "props.gateway": { + "access": "SYSTEM", + "persistent": false + }, + "props.geolocation.data": { + "access": "SYSTEM", + "persistent": false + }, + "props.geolocation.permissionGranted": { + "access": "SYSTEM", + "persistent": false + }, + "props.host": { + "access": "SYSTEM", + "persistent": false + }, + "props.id": { + "access": "SYSTEM", + "persistent": false + }, + "props.lastActivity": { + "access": "SYSTEM", + "persistent": false + } + }, + "props": { + "address": "127.0.0.1", + "appBar": { + "togglePosition": "hidden" + }, + "device": {}, + "geolocation": {}, + "locale": "en-US", + "timeZoneId": "Asia/Tbilisi" + } +} \ No newline at end of file diff --git a/.resources/d9a5dceae78ad1a17958fedad65bea2d00226cb19ffd90f01369a293d5a4732e b/.resources/d9a5dceae78ad1a17958fedad65bea2d00226cb19ffd90f01369a293d5a4732e deleted file mode 100644 index 41879b16..00000000 --- a/.resources/d9a5dceae78ad1a17958fedad65bea2d00226cb19ffd90f01369a293d5a4732e +++ /dev/null @@ -1,736 +0,0 @@ -{ - "custom": { - "alarm_message": null, - "covert_mode": true, - "disconnected": false, - "display_icon": true, - "error": false, - "isMatch": 0, - "plc": "value", - "priority": 0, - "priority_string": "No active alarms", - "searchId": "value", - "state": 5 - }, - "params": { - "forceFaultStatus": null, - "forceRunningStatus": null, - "tagProps": [ - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value" - ] - }, - "propConfig": { - "custom.alarm_message": { - "persistent": true - }, - "custom.covert_mode": { - "binding": { - "config": { - "path": "this.custom.state" - }, - "transforms": [ - { - "expression": "case(\t{value},\r\n\t\t0, {session.custom.alarm_filter.show_safety},\r\n\t\t1, True,\r\n\t\t2, True,\r\n\t\t3, {session.custom.alarm_filter.show_safety},\r\n\t\t4, {session.custom.alarm_filter.show_safety},\r\n\t\t5, {session.custom.alarm_filter.show_safety},\r\n\t\tFalse)", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.disconnected": { - "binding": { - "config": { - "fallbackDelay": 2.5, - "mode": "indirect", - "references": { - "fc": "{session.custom.fc}", - "plc": "{view.custom.plc}" - }, - "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{plc}/DCN" - }, - "transforms": [ - { - "expression": "if(isNull({value}), False, {value})", - "type": "expression" - } - ], - "type": "tag" - }, - "persistent": true - }, - "custom.display_icon": { - "binding": { - "config": { - "expression": "{this.custom.covert_mode}||{this.custom.isMatch}\u003e0" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.error": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "0 \u003c {value} \u0026\u0026 {value} \u003c 5", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.isMatch": { - "binding": { - "config": { - "expression": "if({view.params.tagProps[0]}\u003d\"value\",0,\nif({this.custom.searchId}\u003d{view.params.tagProps[0]},100,0))" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.plc": { - "binding": { - "config": { - "path": "view.params.tagProps[0]" - }, - "transforms": [ - { - "expression": "split({value}, \"/\")[0]", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.priority": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "fallback": 0, - "inputType": "scalar", - "mappings": [ - { - "input": 1, - "output": 4 - }, - { - "input": 2, - "output": 3 - }, - { - "input": 3, - "output": 2 - }, - { - "input": 4, - "output": 1 - } - ], - "outputType": "scalar", - "type": "map" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.priority_string": { - "binding": { - "config": { - "expression": "case({view.custom.state},\r\n1, \"High\",\r\n2, \"Medium\",\r\n3, \"Low\",\r\n4, \"Diagnostic\",\r\n5, \"No active alarms\",\r\n\"Unknown\")" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.searchId": { - "binding": { - "config": { - "path": "session.custom.searchId" - }, - "type": "property" - }, - "persistent": true - }, - "custom.state": { - "binding": { - "config": { - "fallbackDelay": 2.5, - "mode": "indirect", - "references": { - "0": "{view.params.tagProps[0]}", - "fc": "{session.custom.fc}" - }, - "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/ALARMST" - }, - "transforms": [ - { - "expression": "coalesce({value},{view.params.forceFaultStatus},0)", - "type": "expression" - }, - { - "fallback": null, - "inputType": "scalar", - "mappings": [ - { - "input": 4, - "output": 1 - }, - { - "input": 3, - "output": 2 - }, - { - "input": 2, - "output": 3 - }, - { - "input": 1, - "output": 4 - }, - { - "input": 0, - "output": 5 - } - ], - "outputType": "scalar", - "type": "map" - } - ], - "type": "tag" - }, - "persistent": true - }, - "params.forceFaultStatus": { - "paramDirection": "input", - "persistent": true - }, - "params.forceRunningStatus": { - "paramDirection": "input", - "persistent": true - }, - "params.tagProps": { - "paramDirection": "inout", - "persistent": true - } - }, - "props": { - "defaultSize": { - "height": 25, - "width": 25 - } - }, - "root": { - "children": [ - { - "meta": { - "name": "Closed" - }, - "position": { - "height": 1, - "width": 1 - }, - "propConfig": { - "meta.visible": { - "binding": { - "config": { - "expression": "{view.custom.state} \u003d 5" - }, - "type": "expr" - } - }, - "position.rotate.angle": { - "binding": { - "config": { - "path": "view.params.directionLeft" - }, - "enabled": false, - "transforms": [ - { - "expression": "if({value}, \u0027180deg\u0027, \u00270deg\u0027)", - "type": "expression" - } - ], - "type": "property" - } - }, - "props.elements[0].fill.paint": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case({value},\r\n0,{session.custom.colours.state0},\r\n1,{session.custom.colours.state1},\r\n2,{session.custom.colours.state2},\r\n3,{session.custom.colours.state3},\r\n4,{session.custom.colours.state4},\r\n5,{session.custom.colours.state5},\r\n6,{session.custom.colours.state6},\r\n{session.custom.colours.fallback}\r\n)", - "type": "expression" - } - ], - "type": "property" - } - }, - "props.style.classes": { - "binding": { - "config": { - "expression": "if({session.custom.colours.colour_impaired} \u003d True \u0026\u0026 {view.custom.isMatch} \u003e 0,\r\n{view.custom.state} + 100 + {view.custom.isMatch},\r\n{view.custom.state} + {view.custom.isMatch})" - }, - "transforms": [ - { - "fallback": "", - "inputType": "scalar", - "mappings": [ - { - "input": 101, - "output": "State-Styles/State101" - }, - { - "input": 102, - "output": "State-Styles/State102" - }, - { - "input": 103, - "output": "State-Styles/State103" - }, - { - "input": 104, - "output": "State-Styles/State104" - }, - { - "input": 105, - "output": "State-Styles/State105" - }, - { - "input": 106, - "output": "State-Styles/State106" - }, - { - "input": 201, - "output": "State-Styles/State201" - }, - { - "input": 202, - "output": "State-Styles/State202" - }, - { - "input": 203, - "output": "State-Styles/State203" - }, - { - "input": 204, - "output": "State-Styles/State204" - }, - { - "input": 205, - "output": "State-Styles/State205" - } - ], - "outputType": "style-list", - "type": "map" - } - ], - "type": "expr" - } - } - }, - "props": { - "elements": [ - { - "d": "M 8.6500001,0 H 26.15 c 2.0775,0 3.75,1.6725 3.75,3.75 v 22.5 C 29.9,28.3275 28.2275,30 26.15,30 H 8.6500001 c -2.0775,0 -3.75,-1.6725 -3.75,-3.75 V 3.75 c 0,-2.0775 1.6725,-3.75 3.75,-3.75 z", - "fill": {}, - "name": "path", - "stroke": { - "paint": "#000000", - "width": 1.5 - }, - "type": "path" - }, - { - "d": "m 12,15 a 1,1 0 0 1 -1,1 1,1 0 0 1 -1,-1 1,1 0 0 1 1,-1 1,1 0 0 1 1,1 z", - "fill": { - "paint": "#000000" - }, - "name": "path", - "stroke": { - "paint": "#000000", - "width": 1.5 - }, - "type": "path" - }, - { - "d": "m -0.1,28 h 34 v 3 h -34 z", - "fill": { - "paint": "#000000" - }, - "name": "path", - "stroke": { - "paint": "#000000", - "width": 1.5 - }, - "type": "path" - }, - { - "d": "M 12 14.97 L 13.7 14.97 Q 15.4 14.97 15.4 14.97 L 15.4 14.97", - "fill": { - "paint": "#000000" - }, - "name": "path", - "stroke": { - "paint": "#000000", - "width": 1.5 - }, - "type": "path" - } - ], - "preserveAspectRatio": "xMidYMin", - "style": { - "overflow": "hidden" - }, - "viewBox": "-0.5 -0.5 35 32" - }, - "type": "ia.shapes.svg" - }, - { - "meta": { - "name": "Open" - }, - "position": { - "height": 1, - "width": 1 - }, - "propConfig": { - "meta.visible": { - "binding": { - "config": { - "expression": "{view.custom.state} !\u003d 5" - }, - "type": "expr" - } - }, - "position.rotate.angle": { - "binding": { - "config": { - "path": "view.params.directionLeft" - }, - "enabled": false, - "transforms": [ - { - "expression": "if({value}, \u0027180deg\u0027, \u00270deg\u0027)", - "type": "expression" - } - ], - "type": "property" - } - }, - "props.elements[1].fill.paint": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case({value},\r\n0,{session.custom.colours.state1},\r\n1,{session.custom.colours.state1},\r\n2,{session.custom.colours.state1},\r\n3,{session.custom.colours.state1},\r\n4,{session.custom.colours.state1},\r\n5,{session.custom.colours.state5},\r\n6,{session.custom.colours.state6},\r\n{session.custom.colours.fallback}\r\n)", - "type": "expression" - } - ], - "type": "property" - } - }, - "props.style.classes": { - "binding": { - "config": { - "expression": "if({session.custom.colours.colour_impaired} \u003d True \u0026\u0026 {view.custom.isMatch} \u003e 0,\r\n{view.custom.state} + 100 + {view.custom.isMatch},\r\n{view.custom.state} + {view.custom.isMatch})" - }, - "transforms": [ - { - "fallback": "", - "inputType": "scalar", - "mappings": [ - { - "input": 101, - "output": "State-Styles/State101" - }, - { - "input": 102, - "output": "State-Styles/State102" - }, - { - "input": 103, - "output": "State-Styles/State103" - }, - { - "input": 104, - "output": "State-Styles/State104" - }, - { - "input": 105, - "output": "State-Styles/State105" - }, - { - "input": 106, - "output": "State-Styles/State106" - }, - { - "input": 201, - "output": "State-Styles/State201" - }, - { - "input": 202, - "output": "State-Styles/State202" - }, - { - "input": 203, - "output": "State-Styles/State203" - }, - { - "input": 204, - "output": "State-Styles/State204" - }, - { - "input": 205, - "output": "State-Styles/State205" - } - ], - "outputType": "style-list", - "type": "map" - } - ], - "type": "expr" - } - } - }, - "props": { - "elements": [ - { - "d": "m 8.75,0 h 17.5 C 28.3275,0 30,1.6725 30,3.75 v 22.5 C 30,28.3275 28.3275,30 26.25,30 H 8.75 C 6.6725,30 5,28.3275 5,26.25 V 3.75 C 5,1.6725 6.6725,0 8.75,0 Z", - "fill": { - "paint": "#D5D5D5" - }, - "name": "path", - "stroke": { - "paint": "#000000", - "width": 1.5 - }, - "type": "path" - }, - { - "d": "m 13,0 h 14 c 1.662,0 3,1.338 3,3 v 24 c 0,1.662 -1.338,3 -3,3 H 13 c -1.662,0 -3,-1.338 -3,-3 V 3 c 0,-1.662 1.338,-3 3,-3 z", - "fill": {}, - "name": "path", - "stroke": { - "paint": "#000000", - "width": 1.5 - }, - "type": "path" - }, - { - "d": "m 16.1,15 a 1,1 0 0 1 -1,1 1,1 0 0 1 -1,-1 1,1 0 0 1 1,-1 1,1 0 0 1 1,1 z", - "fill": { - "paint": "#000000" - }, - "name": "path", - "stroke": { - "paint": "#000000", - "width": 1.5 - }, - "type": "path" - }, - { - "d": "M 15 15 L 18 18", - "fill": { - "paint": "#000000" - }, - "name": "path", - "stroke": { - "paint": "#000000", - "width": 1.5 - }, - "type": "path" - }, - { - "d": "m 0,28 h 34 v 3 H 0 Z", - "fill": { - "paint": "#000000" - }, - "name": "path", - "stroke": { - "paint": "#000000", - "width": 1.5 - }, - "type": "path" - } - ], - "preserveAspectRatio": "xMidYMin", - "style": { - "overflow": "hidden" - }, - "viewBox": "-0.5 -0.5 35 32" - }, - "type": "ia.shapes.svg" - } - ], - "events": { - "dom": { - "onClick": { - "config": { - "script": "\tsystem.perspective.openDock(\u0027Docked-East\u0027,params\u003d{\u0027tagProps\u0027:self.view.params.tagProps})" - }, - "scope": "G", - "type": "script" - }, - "onDoubleClick": { - "config": { - "script": "\ttagProps \u003d self.view.params.tagProps\n\tsystem.perspective.openPopup(\"StatusPopUP\", \"PopUp-Views/Controller-Equipment/Information\", params \u003d{\"tagProps\":tagProps})\n\t" - }, - "enabled": false, - "scope": "G", - "type": "script" - }, - "onMouseEnter": { - "config": { - "script": "\tfrom time import sleep\n\t\n\talarm \u003d []\n\tmessage \u003d None\n\t\n\tsleep(0.5)\n\t\n\tif system.tag.exists(\"System/aws_data\"):\n\t\tif self.view.params.tagProps[0] !\u003d \"\":\n\t\t\ttags_to_read \u003d system.tag.readBlocking(\"System/aws_data\")\n\t\t\tdecode_alarm_data \u003d system.util.jsonDecode(tags_to_read[0].value)\n\t\t\talarm \u003d [decode_alarm_data[i] for i in decode_alarm_data\n\t\t\t\t\tif decode_alarm_data[i][\u0027sourceId\u0027].startswith(self.view.params.tagProps[0])]\n\t\tif alarm:\n\t\t\talarm \u003d sorted(alarm, key \u003d lambda t:t[\u0027timestamp\u0027], reverse\u003dTrue)\n\t\t\tmessage \u003d max(alarm, key \u003d lambda p:p[\u0027priority\u0027]).get(\u0027message\u0027)\n\t\t\tif len(alarm) \u003e 1:\n\t\t\t\tmessage +\u003d \" (+\" + str(len(alarm)-1) + \")\"\n\tself.view.custom.alarm_message \u003d message" - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "root", - "tooltip": { - "enabled": true, - "location": "top-left", - "style": {} - } - }, - "propConfig": { - "meta.tooltip.style.backgroundColor": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case({value},\r\n0,{session.custom.colours.state0},\r\n1,{session.custom.colours.state1},\r\n2,{session.custom.colours.state2},\r\n3,{session.custom.colours.state3},\r\n4,{session.custom.colours.state4},\r\n5,{session.custom.colours.state5},\r\n6,{session.custom.colours.state6},\r\n{session.custom.colours.fallback}\r\n)", - "type": "expression" - } - ], - "type": "property" - } - }, - "meta.tooltip.style.classes": { - "binding": { - "config": { - "expression": "{view.custom.priority}" - }, - "transforms": [ - { - "fallback": "Alarms-Styles/NoAlarm", - "inputType": "scalar", - "mappings": [ - { - "input": 1, - "output": "Alarms-Styles/Diagnostic" - }, - { - "input": 2, - "output": "Alarms-Styles/Low" - }, - { - "input": 3, - "output": "Alarms-Styles/Medium" - }, - { - "input": 4, - "output": "Alarms-Styles/High" - } - ], - "outputType": "style-list", - "type": "map" - } - ], - "type": "expr" - } - }, - "meta.tooltip.style.color": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "if({session.custom.colours.colour_impaired},\r\n\t\u0027#000000\u0027,\r\n\tcase(\t{value},\r\n\t\t\t1,\u0027#FFFFFF\u0027,\r\n\t\t\t2,\u0027#000000\u0027,\r\n\t\t\t3,\u0027#000000\u0027,\r\n\t\t\t4,\u0027#FFFFFF\u0027,\r\n\t\t\t5,\u0027#FFFFFF\u0027,\r\n\t\t\t\u0027#000000\u0027)\r\n\t)", - "type": "expression" - } - ], - "type": "property" - } - }, - "meta.tooltip.text": { - "binding": { - "config": { - "expression": "if({view.custom.disconnected} \u003d False,\n\tif(isNull({view.custom.alarm_message}),\n\t\"Source Id: \" + {view.params.tagProps[0]} +\n\t\", Priority: \" + {view.custom.priority_string},\n\t\"Source Id: \" + {view.params.tagProps[0]} +\n\t\", Alarm: \" + {view.custom.alarm_message} +\n\t\", Priority: \" + {view.custom.priority_string}),\n\"Source Id: \" +{view.params.tagProps[0]} + \", Priority: Unknown\")" - }, - "type": "expr" - } - }, - "meta.visible": { - "binding": { - "config": { - "path": "view.custom.display_icon" - }, - "type": "property" - } - }, - "props.style.classes": { - "binding": { - "config": { - "path": "view.custom.disconnected" - }, - "transforms": [ - { - "fallback": "Disconnects/Device-Connected", - "inputType": "scalar", - "mappings": [ - { - "input": true, - "output": "Disconnects/Device-Disconnected" - }, - { - "input": false, - "output": "Disconnects/Device-Connected" - } - ], - "outputType": "style-list", - "type": "map" - } - ], - "type": "property" - } - } - }, - "props": { - "aspectRatio": "1:1", - "mode": "percent", - "style": { - "cursor": "pointer" - } - }, - "type": "ia.container.coord" - } -} \ No newline at end of file diff --git a/.resources/d9b12c40418af326cceb6a5f6284e8d655058f0baa9538683620156ef97d2de9 b/.resources/d9b12c40418af326cceb6a5f6284e8d655058f0baa9538683620156ef97d2de9 new file mode 100644 index 00000000..f71ce6d1 Binary files /dev/null and b/.resources/d9b12c40418af326cceb6a5f6284e8d655058f0baa9538683620156ef97d2de9 differ diff --git a/.resources/c124fbc43fa7c43d6933661cc5f41626a7b867f6ba14b6b48ebb241b03924154 b/.resources/dabdc2fd6d05477b82b8aaec7096f9f2ece4a74944c87b1181e8f6182b1e1a2c similarity index 95% rename from .resources/c124fbc43fa7c43d6933661cc5f41626a7b867f6ba14b6b48ebb241b03924154 rename to .resources/dabdc2fd6d05477b82b8aaec7096f9f2ece4a74944c87b1181e8f6182b1e1a2c index c308db7a..756623b4 100644 --- a/.resources/c124fbc43fa7c43d6933661cc5f41626a7b867f6ba14b6b48ebb241b03924154 +++ b/.resources/dabdc2fd6d05477b82b8aaec7096f9f2ece4a74944c87b1181e8f6182b1e1a2c @@ -239,6 +239,50 @@ "viewPath": "autStand/Docked_Views/Docked-West" } ], + "right": [ + { + "anchor": "fixed", + "autoBreakpoint": 480, + "content": "cover", + "handle": "hide", + "iconUrl": "", + "id": "Docked-East-Conv", + "modal": false, + "resizable": false, + "show": "onDemand", + "size": 600, + "viewParams": {}, + "viewPath": "autStand/PopUp-Views/Controller-Equipment/Information-Docked-East-Conv" + }, + { + "anchor": "fixed", + "autoBreakpoint": 480, + "content": "cover", + "handle": "hide", + "iconUrl": "", + "id": "Docked-East-Device", + "modal": false, + "resizable": false, + "show": "onDemand", + "size": 600, + "viewParams": {}, + "viewPath": "autStand/PopUp-Views/Controller-Equipment/Information-Docked-East-Device" + }, + { + "anchor": "fixed", + "autoBreakpoint": 480, + "content": "cover", + "handle": "hide", + "iconUrl": "", + "id": "Docked-East-VFD", + "modal": false, + "resizable": false, + "show": "onDemand", + "size": 600, + "viewParams": {}, + "viewPath": "autStand/PopUp-Views/Controller-Equipment/Information-Docked-East-VFD" + } + ], "top": [ { "anchor": "fixed", diff --git a/.resources/dcb695db46254221b952f66e0cff681735e87353e179eea7d2b834c430161934 b/.resources/dcb695db46254221b952f66e0cff681735e87353e179eea7d2b834c430161934 new file mode 100644 index 00000000..53243a0c --- /dev/null +++ b/.resources/dcb695db46254221b952f66e0cff681735e87353e179eea7d2b834c430161934 @@ -0,0 +1,1517 @@ +{ + "custom": {}, + "params": { + "tagProps": [ + "TAG0", + "TAG1", + "TAG2", + "TAG3", + "TAG4", + "TAG5", + "TAG6", + "TAG7", + "TAG8", + "TAG9", + "TAG10", + "TAG11", + "TAG12", + "TAG13", + "TAG14", + "TAG15", + "TAG16", + "TAG17", + "TAG18", + "TAG19", + "TAG20" + ] + }, + "props": { + "defaultSize": { + "height": 1080, + "width": 1920 + } + }, + "root": { + "children": [ + { + "meta": { + "name": "DPM" + }, + "position": { + "height": 1, + "width": 1 + }, + "propConfig": { + "props.params.con_lines[0]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[0]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[10]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[10]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[11]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[11]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[12]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[12]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[13]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[13]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[14]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[14]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[15]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[15]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[16]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[16]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[17]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[17]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[18]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[18]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[19]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[19]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[1]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[1]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[20]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[20]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[2]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[2]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[3]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[3]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[4]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[4]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[5]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[5]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[6]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[6]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[7]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[7]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[8]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[8]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[9]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[9]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + } + }, + "props": { + "params": { + "con_lines": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + false, + false, + false + ], + "con_lines_visible": [ + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + false, + false, + false + ], + "in": false, + "out": false + }, + "path": "Windows/Tabs/Enternet Windows/Components/DPM_TO_HUB" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011001_ZMX1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0232, + "y": 0.4991 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/ZMX" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011001_ZMX1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.0094, + "y": 0.5394 + }, + "props": { + "text": "S011001_ZMX1 11.200.1.101", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "S011002_ZMX1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.023, + "y": 0.6677 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/ZMX" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011002_ZMX1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.0068, + "y": 0.7315 + }, + "props": { + "text": "S011002_ZMX1 11.200.1.102", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "S011003_ZMX1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0216, + "y": 0.8333 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/ZMX" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011003_ZMX1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.0068, + "y": 0.8981 + }, + "props": { + "text": "S011003_ZMX1 11.200.1.103", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "S011004_ZMX1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0229, + "y": 0.3333 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/ZMX" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011004_ZMX1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.0068, + "y": 0.3986 + }, + "props": { + "text": "S011004_ZMX1 11.200.1.104", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "S011005_ZMX1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0229, + "y": 0.1667 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/ZMX" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011005_ZMX1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.0068, + "y": 0.2324 + }, + "props": { + "text": "S011005_ZMX1 11.200.1.105", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "S011006_ZMX1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0244 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/ZMX" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011006_ZMX1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.0068, + "y": 0.0653 + }, + "props": { + "text": "S011006_ZMX1 11.200.1.106", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "S011007_ZMX1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.5 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/ZMX" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011007_ZMX1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.5117, + "y": 0.1662 + }, + "props": { + "text": "S011007_ZMX1 11.200.1.107", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "S011008_ZMX1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.625 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/ZMX" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011008_ZMX1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.6312, + "y": 0.1664 + }, + "props": { + "text": "S011008_ZMX1 11.200.1.108", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "S011009_ZMX1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.75 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/ZMX" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011009_ZMX1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.75, + "y": 0.1664 + }, + "props": { + "text": "S011009_ZMX1 11.200.1.109", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "S011010_ZMX1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.375 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/ZMX" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011010_ZMX1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.3864, + "y": 0.1664 + }, + "props": { + "text": "S011010_ZMX1 11.200.1.110", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "S011011_ZMX1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.2516, + "y": 0.0019 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/ZMX" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011011_ZMX1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.315, + "y": 0.1682 + }, + "props": { + "text": "S011011_ZMX1 11.200.1.111", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "S011012_ZMX1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.1245 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/ZMX" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011012_ZMX1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.2072, + "y": 0.1646 + }, + "props": { + "text": "S011012_ZMX1 11.200.1.112", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "S011013_ZMX1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.8544, + "y": 0.3332 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/ZMX" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011013_ZMX1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.946, + "y": 0.3943 + }, + "props": { + "text": "S011013_ZMX1 11.200.1.113", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "S011014_ZMX1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.8549, + "y": 0.1667 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/ZMX" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011014_ZMX1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.946, + "y": 0.2276 + }, + "props": { + "text": "S011014_ZMX1 11.200.1.114", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "S011015_ZMX1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.8563 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/ZMX" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011015_ZMX1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.946, + "y": 0.0619 + }, + "props": { + "text": "S011015_ZMX1 11.200.1.115", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "S011016_ZMX1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.8544, + "y": 0.4988 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/ZMX" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "S011016_ZMX1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.946, + "y": 0.561 + }, + "props": { + "text": "S011016_ZMX1 11.200.1.116", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "VS01A_FIOM01" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.8381, + "y": 0.6639 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/FIO_SIO" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "VS01A_FIOM01_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.9349999999999999, + "y": 0.7257 + }, + "props": { + "text": "VS01A_FIOM01 11.200.1.117", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "VS01A_FIOM02" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.8395, + "y": 0.8329 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/FIO_SIO" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "VS01A_FIOM02_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.9349999999999999, + "y": 0.8927 + }, + "props": { + "text": "VS01A_FIOM02 11.200.1.118", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "VS01A_FIOM03" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.374, + "y": 0.8324 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/FIO_SIO" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "VS01A_FIOM03_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.4587, + "y": 0.8896 + }, + "props": { + "text": "VS01A_FIOM03 11.200.1.119", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "VS01A_FIOM04" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.2481, + "y": 0.8324 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/FIO_SIO" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "VS01A_FIOM04_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.3311, + "y": 0.8887 + }, + "props": { + "text": "VS01A_FIOM04 11.200.1.120", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "VS01A_FIOM05" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.1222, + "y": 0.8333 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/FIO_SIO" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "VS01A_FIOM05_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.2071, + "y": 0.8886 + }, + "props": { + "text": "VS01A_FIOM05 11.200.1.121", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "DPM_label" + }, + "position": { + "height": 0.0694, + "width": 0.101, + "x": 0.5831, + "y": 0.6342 + }, + "props": { + "text": "DPM01_VS01A 11.200.1.2", + "textStyle": { + "fontSize": "2vmin" + } + }, + "type": "ia.display.label" + } + ], + "meta": { + "name": "root" + }, + "position": { + "x": 0.6348, + "y": -0.1546 + }, + "props": { + "mode": "percent" + }, + "type": "ia.container.coord" + } +} \ No newline at end of file diff --git a/.resources/dcca598c91d89d32beecfecd4257d72a79f9f58a87daca8b83d4ea3eb0f41698 b/.resources/dcca598c91d89d32beecfecd4257d72a79f9f58a87daca8b83d4ea3eb0f41698 new file mode 100644 index 00000000..b0c42bbc Binary files /dev/null and b/.resources/dcca598c91d89d32beecfecd4257d72a79f9f58a87daca8b83d4ea3eb0f41698 differ diff --git a/.resources/dcd5b5308210f45d3a692d8baf98b6806b8b1c616fd35c35b5bd2bf08303d20b b/.resources/dcd5b5308210f45d3a692d8baf98b6806b8b1c616fd35c35b5bd2bf08303d20b deleted file mode 100644 index b036545b..00000000 Binary files a/.resources/dcd5b5308210f45d3a692d8baf98b6806b8b1c616fd35c35b5bd2bf08303d20b and /dev/null differ diff --git a/.resources/dcf0a1f970c175402e34395f71da55a768ddc9955d9e9c5402d46b75834e1393 b/.resources/dcf0a1f970c175402e34395f71da55a768ddc9955d9e9c5402d46b75834e1393 new file mode 100644 index 00000000..53959c19 Binary files /dev/null and b/.resources/dcf0a1f970c175402e34395f71da55a768ddc9955d9e9c5402d46b75834e1393 differ diff --git a/.resources/dd1506ccd825ed471c865ae8033bd962853cbd23fecaf65f7f52161ea8de5dda b/.resources/dd1506ccd825ed471c865ae8033bd962853cbd23fecaf65f7f52161ea8de5dda new file mode 100644 index 00000000..ea3c6475 --- /dev/null +++ b/.resources/dd1506ccd825ed471c865ae8033bd962853cbd23fecaf65f7f52161ea8de5dda @@ -0,0 +1,849 @@ +{ + "custom": {}, + "params": { + "tagProps": [ + "TAG0", + "TAG1", + "TAG2", + "TAG3", + "TAG4", + "TAG5", + "TAG6", + "TAG7", + "TAG8", + "TAG9", + "TAG10" + ] + }, + "props": { + "defaultSize": { + "height": 1080, + "width": 1920 + } + }, + "root": { + "children": [ + { + "meta": { + "name": "DPM" + }, + "position": { + "height": 1, + "width": 1 + }, + "propConfig": { + "props.params.con_lines[0]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[0]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[10]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[10]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[1]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[1]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[2]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[2]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[3]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[3]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[4]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[4]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[5]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[5]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[6]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[6]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[7]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[7]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[8]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[8]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[9]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[9]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + } + }, + "props": { + "params": { + "con_lines": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "con_lines_visible": [ + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "in": false, + "out": false + }, + "path": "Windows/Tabs/Enternet Windows/Components/DPM_TO_HUB" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL3_2_EXTENDO" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0232, + "y": 0.4991 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL3_2_EXTENDO_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.0094, + "y": 0.5394 + }, + "props": { + "text": "UL3_2_EXTENDO 11.200.1.50", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL3_3" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.023, + "y": 0.6677 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL3_3_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.0068, + "y": 0.7315 + }, + "props": { + "text": "UL3_3_VFD1 11.200.1.51", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL3_4" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0216, + "y": 0.8333 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL3_4_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.0068, + "y": 0.8981 + }, + "props": { + "text": "UL3_4_VFD1 11.200.1.52", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL3_5" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0229, + "y": 0.3333 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL3_5_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.0068, + "y": 0.3986 + }, + "props": { + "text": "UL3_5_VFD1 11.200.1.53", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL3_6" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0229, + "y": 0.1667 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL3_6_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.0068, + "y": 0.2324 + }, + "props": { + "text": "UL3_6_VFD1 11.200.1.54", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL3_7" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0244 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL3_7_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.0068, + "y": 0.0653 + }, + "props": { + "text": "UL3_7_VFD1 11.200.1.55", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL3_8" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.5 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL3_8_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.5117, + "y": 0.1662 + }, + "props": { + "text": "UL3_8_VFD1 11.200.1.56", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL3_9" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.625 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL3_9_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.6312, + "y": 0.1664 + }, + "props": { + "text": "UL3_9_VFD1 11.200.1.57", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "PS1_1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.75 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS1_1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.75, + "y": 0.1664 + }, + "props": { + "text": "PS1_1_VFD1 11.200.1.58", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "PS1_2" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.375 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS1_2_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.3864, + "y": 0.1664 + }, + "props": { + "text": "PS1_2_VFD1 11.200.1.59", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "UL3_3_FIO1" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.2516, + "y": 0.0019 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/FIO_SIO" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "UL3_3_FIO1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0427, + "x": 0.315, + "y": 0.1682 + }, + "props": { + "text": "UL3_3_FIO1 11.200.1.60", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "DPM_label" + }, + "position": { + "height": 0.0694, + "width": 0.101, + "x": 0.5831, + "y": 0.6342 + }, + "props": { + "text": "DPM2_PS1-1 11.200.1.3", + "textStyle": { + "fontSize": "2vmin" + } + }, + "type": "ia.display.label" + } + ], + "meta": { + "name": "root" + }, + "position": { + "x": 0.6348, + "y": -0.1546 + }, + "props": { + "mode": "percent" + }, + "type": "ia.container.coord" + } +} \ No newline at end of file diff --git a/.resources/dd62dc9eb577f36976d4055f3fa6339501f7a2e64e11a13e3243eac406883342 b/.resources/dd62dc9eb577f36976d4055f3fa6339501f7a2e64e11a13e3243eac406883342 deleted file mode 100644 index dc4ed85f..00000000 --- a/.resources/dd62dc9eb577f36976d4055f3fa6339501f7a2e64e11a13e3243eac406883342 +++ /dev/null @@ -1,4007 +0,0 @@ -{ - "custom": {}, - "params": {}, - "props": { - "defaultSize": { - "height": 1080, - "width": 1920 - } - }, - "root": { - "children": [ - { - "events": { - "component": { - "onActionPerformed": { - "config": { - "script": "\tlogger \u003d system.util.getLogger(\"Command.send_request\")\n\tlogger.info(\"UI : runAction called\")\n\tsourceId \u003d str(self.getSibling(\"TextField\").props.text)\n\twhid \u003d\"DNG2\"\n\taction \u003d \"shelve\"\n\tparameters\u003d{}\n\tparameters[\"sourceId\"] \u003d sourceId\n\tparameters[\"siteId\"] \u003d whid\n\tlogger.info(\"UI : sending command\")\n\tCommands.button_commands.send_request(action,parameters)\n\tlogger.info(\"UI : command sent\")" - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "Button" - }, - "position": { - "height": 0.0315, - "width": 0.0417, - "x": 0.0203, - "y": 0.1009 - }, - "props": { - "image": { - "icon": { - "color": "#AAAAAA" - } - }, - "text": "Shelve" - }, - "type": "ia.input.button" - }, - { - "meta": { - "name": "TextField" - }, - "position": { - "height": 0.0296, - "width": 0.0781, - "x": 0.0672, - "y": 0.1019 - }, - "props": { - "text": "PLC09/L1_8/ES1" - }, - "type": "ia.input.text-field" - }, - { - "events": { - "component": { - "onActionPerformed": { - "config": { - "script": "\tlogger \u003d system.util.getLogger(\"Command.send_request\")\n\tlogger.info(\"UI : runAction called\")\n\tsourceId \u003d str(self.getSibling(\"TextField\").props.text)\n\twhid \u003d\"DNG2\"\n\taction \u003d \"unshelve\"\n\tparameters\u003d{}\n\tparameters[\"sourceId\"] \u003d sourceId\n\tparameters[\"siteId\"] \u003d whid\n\tlogger.info(\"UI : sending command\")\n\tCommands.button_commands.send_request(action,parameters)\n\tlogger.info(\"UI : command sent\")" - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "Button_0" - }, - "position": { - "height": 0.0315, - "width": 0.0417, - "x": 0.0203, - "y": 0.1417 - }, - "props": { - "image": { - "icon": { - "color": "#AAAAAA" - } - }, - "text": "unShelve" - }, - "type": "ia.input.button" - }, - { - "meta": { - "name": "TextField_0" - }, - "position": { - "height": 0.0296, - "width": 0.0781, - "x": 0.0672, - "y": 0.1426 - }, - "props": { - "text": "PLC09/L1_8/ES1" - }, - "type": "ia.input.text-field" - }, - { - "events": { - "component": { - "onActionPerformed": { - "config": { - "script": "\tlogger \u003d system.util.getLogger(\"Command.send_request\")\n\tlogger.info(\"UI : runAction called\")\n\tcommandTarget \u003d str(self.getSibling(\"TextField\").props.text)\n\twhid \u003d\"DNG2\"\n\taction \u003d \"command\"\n\tparameters\u003d{}\n\tparameters[\"siteId\"] \u003d whid\n\tparameters[\"commandTarget\"] \u003d commandTarget\n\tparameters[\"commandCode\"] \u003d 1\n\tparameters[\"commandParams\"] \u003d \u0027\u0027\n\tparameters[\"commandToken\"] \u003d \u0027\u0027\n\tparameters[\"commandTimeout\"] \u003d 2000\n\tlogger.info(\"UI : sending command\")\n\tCommands.button_commands.send_request(action,parameters)\n\tlogger.info(\"UI : command sent\")" - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "Button_1" - }, - "position": { - "height": 0.0315, - "width": 0.0417, - "x": 0.0203, - "y": 0.1824 - }, - "props": { - "image": { - "icon": { - "color": "#AAAAAA" - } - }, - "text": "Start" - }, - "type": "ia.input.button" - }, - { - "meta": { - "name": "TextField_1" - }, - "position": { - "height": 0.0296, - "width": 0.0781, - "x": 0.0672, - "y": 0.1833 - }, - "props": { - "text": "PLC09/L1_8/ES1" - }, - "type": "ia.input.text-field" - }, - { - "meta": { - "name": "TextField_2" - }, - "position": { - "height": 0.0296, - "width": 0.0781, - "x": 0.0672, - "y": 0.224 - }, - "props": { - "text": "PLC09/L1_8/ES1" - }, - "type": "ia.input.text-field" - }, - { - "events": { - "component": { - "onActionPerformed": { - "config": { - "script": "\tlogger \u003d system.util.getLogger(\"Command.send_request\")\n\tlogger.info(\"UI : runAction called\")\n\tcommandTarget \u003d str(self.getSibling(\"TextField\").props.text)\n\twhid \u003d\"DNG2\"\n\taction \u003d \"command\"\n\tparameters\u003d{}\n\tparameters[\"siteId\"] \u003d whid\n\tparameters[\"commandTarget\"] \u003d commandTarget\n\tparameters[\"commandCode\"] \u003d 2\n\tparameters[\"commandParams\"] \u003d \u0027\u0027\n\tparameters[\"commandToken\"] \u003d \u0027\u0027\n\tparameters[\"commandTimeout\"] \u003d 2000\n\tlogger.info(\"UI : sending command\")\n\tCommands.button_commands.send_request(action,parameters)\n\tlogger.info(\"UI : command sent\")" - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "Button_2" - }, - "position": { - "height": 0.0315, - "width": 0.0417, - "x": 0.0203, - "y": 0.2231 - }, - "props": { - "image": { - "icon": { - "color": "#AAAAAA" - } - }, - "text": "Stop" - }, - "type": "ia.input.button" - }, - { - "events": { - "component": { - "onActionPerformed": { - "config": { - "script": "\tlogger \u003d system.util.getLogger(\"Command.send_request\")\n\tlogger.info(\"UI : runAction called\")\n\tcommandTarget \u003d str(self.getSibling(\"TextField\").props.text)\n\twhid \u003d\"DNG2\"\n\taction \u003d \"command\"\n\tparameters\u003d{}\n\tparameters[\"siteId\"] \u003d whid\n\tparameters[\"commandTarget\"] \u003d commandTarget\n\tparameters[\"commandCode\"] \u003d 3\n\tparameters[\"commandParams\"] \u003d \u0027\u0027\n\tparameters[\"commandToken\"] \u003d \u0027\u0027\n\tparameters[\"commandTimeout\"] \u003d 2000\n\tlogger.info(\"UI : sending command\")\n\tCommands.button_commands.send_request(action,parameters)\n\tlogger.info(\"UI : command sent\")" - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "Button_3" - }, - "position": { - "height": 0.0315, - "width": 0.0417, - "x": 0.0203, - "y": 0.2639 - }, - "props": { - "image": { - "icon": { - "color": "#AAAAAA" - } - }, - "text": "Reset" - }, - "type": "ia.input.button" - }, - { - "meta": { - "name": "TextField_3" - }, - "position": { - "height": 0.0296, - "width": 0.0781, - "x": 0.0672, - "y": 0.2648 - }, - "props": { - "text": "PLC09/L1_8/ES1" - }, - "type": "ia.input.text-field" - }, - { - "events": { - "dom": { - "onClick": { - "config": { - "config": { - "backgroundColor": "AUTO", - "type": "ANY", - "uuid": "1957745e-fa42-4f8f-bfa1-f22d7ca47707" - }, - "context": {} - }, - "scope": "C", - "type": "native/barcode" - } - } - }, - "meta": { - "name": "Barcode" - }, - "position": { - "height": 0.162, - "width": 0.1042, - "x": 0.1979, - "y": 0.4962 - }, - "props": { - "type": "qrcode" - }, - "type": "ia.display.barcode" - }, - { - "meta": { - "name": "BarcodeScannerInput" - }, - "position": { - "height": 0.0741, - "width": 0.0729, - "x": 0.162, - "y": 0.0295 - }, - "type": "ia.input.barcodescannerinput" - }, - { - "meta": { - "name": "Priority4" - }, - "position": { - "height": 0.05, - "width": 0.0302, - "x": 0.0922, - "y": 0.3657 - }, - "props": { - "elements": [ - { - "id": "defs2", - "name": "defs2", - "type": "defs" - }, - { - "elements": [ - { - "elements": [ - { - "elements": [ - { - "fill": { - "paint": "transparent" - }, - "height": "920", - "id": "rect522", - "name": "rect522", - "stroke": { - "paint": "#000000" - }, - "type": "rect", - "width": "600", - "x": "0", - "y": "0" - }, - { - "fill": { - "paint": "transparent" - }, - "height": "30", - "id": "rect524", - "name": "rect524", - "stroke": { - "paint": "transparent" - }, - "type": "rect", - "width": "80", - "x": "0", - "y": "65" - }, - { - "id": "g530", - "name": "g530", - "transform": "translate(-0.5,-0.5)", - "type": "group" - }, - { - "fill": { - "paint": "transparent" - }, - "height": "30", - "id": "rect532", - "name": "rect532", - "stroke": { - "paint": "transparent" - }, - "type": "rect", - "width": "80", - "x": "0", - "y": "385" - }, - { - "id": "g538", - "name": "g538", - "transform": "translate(-0.5,-0.5)", - "type": "group" - }, - { - "fill": { - "paint": "transparent" - }, - "height": "30", - "id": "rect540", - "name": "rect540", - "stroke": { - "paint": "transparent" - }, - "type": "rect", - "width": "80", - "x": "0", - "y": "545" - }, - { - "id": "g546", - "name": "g546", - "transform": "translate(-0.5,-0.5)", - "type": "group" - }, - { - "fill": { - "paint": "transparent" - }, - "height": "30", - "id": "rect548", - "name": "rect548", - "stroke": { - "paint": "transparent" - }, - "type": "rect", - "width": "80", - "x": "0", - "y": "305" - }, - { - "id": "g554", - "name": "g554", - "transform": "translate(-0.5,-0.5)", - "type": "group" - }, - { - "fill": { - "paint": "transparent" - }, - "height": "30", - "id": "rect556", - "name": "rect556", - "stroke": { - "paint": "transparent" - }, - "type": "rect", - "width": "80", - "x": "0", - "y": "225" - }, - { - "id": "g562", - "name": "g562", - "transform": "translate(-0.5,-0.5)", - "type": "group" - }, - { - "fill": { - "paint": "transparent" - }, - "height": "30", - "id": "rect564", - "name": "rect564", - "stroke": { - "paint": "transparent" - }, - "type": "rect", - "width": "80", - "x": "0", - "y": "145" - }, - { - "id": "g570", - "name": "g570", - "transform": "translate(-0.5,-0.5)", - "type": "group" - }, - { - "fill": { - "paint": "transparent" - }, - "height": "30", - "id": "rect572", - "name": "rect572", - "stroke": { - "paint": "transparent" - }, - "type": "rect", - "width": "80", - "x": "0", - "y": "465" - }, - { - "id": "g578", - "name": "g578", - "transform": "translate(-0.5,-0.5)", - "type": "group" - }, - { - "fill": { - "paint": "transparent" - }, - "height": "30", - "id": "rect580", - "name": "rect580", - "stroke": { - "paint": "transparent" - }, - "type": "rect", - "width": "90", - "x": "0", - "y": "625" - }, - { - "id": "g586", - "name": "g586", - "transform": "translate(-0.5,-0.5)", - "type": "group" - }, - { - "fill": { - "paint": "transparent" - }, - "height": "30", - "id": "rect588", - "name": "rect588", - "stroke": { - "paint": "transparent" - }, - "type": "rect", - "width": "80", - "x": "151", - "y": "10" - }, - { - "id": "g594", - "name": "g594", - "transform": "translate(-0.5,-0.5)", - "type": "group" - }, - { - "fill": { - "paint": "transparent" - }, - "height": "30", - "id": "rect596", - "name": "rect596", - "stroke": { - "paint": "transparent" - }, - "type": "rect", - "width": "244", - "x": "320", - "y": "10" - }, - { - "id": "g602", - "name": "g602", - "transform": "translate(-0.5,-0.5)", - "type": "group" - }, - { - "d": "m 397,60 h 39.99 v 0 L 467,90 436.99,120 v 0 H 397 l 30.04,-30 z", - "fill": { - "paint": "#007dfa" - }, - "id": "path604", - "name": "path604", - "stroke": { - "miterlimit": "10", - "paint": "#000000" - }, - "type": "path" - }, - { - "d": "m 397,140 h 39.99 v 0 l 30.01,30 -30.01,30 v 0 H 397 l 30.04,-30 z", - "fill": { - "paint": "#8c8c8c" - }, - "id": "path606", - "name": "path606", - "stroke": { - "miterlimit": "10", - "paint": "#000000" - }, - "type": "path" - }, - { - "d": "m 419,230 30,30 -30,30 -30,-30 z", - "fill": { - "paint": "#ff0000" - }, - "id": "path608", - "name": "path608", - "stroke": { - "miterlimit": "10", - "paint": "#000000" - }, - "type": "path" - }, - { - "id": "g614", - "name": "g614", - "transform": "translate(-0.5,-0.5)", - "type": "group" - }, - { - "d": "m 425,230 h 19.96 v 0 l 30.04,30 -30.04,30 v 0 H 425 l 29.96,-30 z", - "fill": { - "paint": "#8c8c8c" - }, - "id": "path616", - "name": "path616", - "stroke": { - "miterlimit": "10", - "paint": "#000000" - }, - "type": "path" - }, - { - "d": "m 419,310 30,30 -30,30 -30,-30 z", - "fill": { - "paint": "#f00077" - }, - "id": "path618", - "name": "path618", - "stroke": { - "miterlimit": "10", - "paint": "#000000" - }, - "type": "path" - }, - { - "id": "g624", - "name": "g624", - "transform": "translate(-0.5,-0.5)", - "type": "group" - }, - { - "d": "m 425,310 h 19.96 v 0 l 30.04,30 -30.04,30 v 0 H 425 l 29.96,-30 z", - "fill": { - "paint": "#8c8c8c" - }, - "id": "path626", - "name": "path626", - "stroke": { - "miterlimit": "10", - "paint": "#000000" - }, - "type": "path" - }, - { - "d": "m 419,390 30,30 -30,30 -30,-30 z", - "fill": { - "paint": "#ff6000" - }, - "id": "path628", - "name": "path628", - "stroke": { - "miterlimit": "10", - "paint": "#000000" - }, - "type": "path" - }, - { - "id": "g634", - "name": "g634", - "transform": "translate(-0.5,-0.5)", - "type": "group" - }, - { - "d": "m 425,390 h 19.96 v 0 l 30.04,30 -30.04,30 v 0 H 425 l 29.96,-30 z", - "fill": { - "paint": "#007dfa" - }, - "id": "path636", - "name": "path636", - "stroke": { - "miterlimit": "10", - "paint": "#000000" - }, - "type": "path" - }, - { - "d": "m 419,470 30,30 -30,30 -30,-30 z", - "fill": { - "paint": "#ff6000" - }, - "id": "path638", - "name": "path638", - "stroke": { - "miterlimit": "10", - "paint": "#000000" - }, - "type": "path" - }, - { - "id": "g644", - "name": "g644", - "transform": "translate(-0.5,-0.5)", - "type": "group" - }, - { - "d": "m 425,470 h 19.96 v 0 l 30.04,30 -30.04,30 v 0 H 425 l 29.96,-30 z", - "fill": { - "paint": "#8c8c8c" - }, - "id": "path646", - "name": "path646", - "stroke": { - "miterlimit": "10", - "paint": "#000000" - }, - "type": "path" - }, - { - "d": "m 419,550 30,30 -30,30 -30,-30 z", - "fill": { - "paint": "#fcc400" - }, - "id": "path648", - "name": "path648", - "stroke": { - "miterlimit": "10", - "paint": "#000000" - }, - "type": "path" - }, - { - "id": "g654", - "name": "g654", - "transform": "translate(-0.5,-0.5)", - "type": "group" - }, - { - "d": "m 425,550 h 19.96 v 0 l 30.04,30 -30.04,30 v 0 H 425 l 29.96,-30 z", - "fill": { - "paint": "#007dfa" - }, - "id": "path656", - "name": "path656", - "stroke": { - "miterlimit": "10", - "paint": "#000000" - }, - "type": "path" - }, - { - "d": "m 419,630 30,30 -30,30 -30,-30 z", - "fill": { - "paint": "#fcc400" - }, - "id": "path658", - "name": "path658", - "stroke": { - "miterlimit": "10", - "paint": "#000000" - }, - "type": "path" - }, - { - "id": "g664", - "name": "g664", - "transform": "translate(-0.5,-0.5)", - "type": "group" - }, - { - "d": "m 425,630 h 19.96 v 0 l 30.04,30 -30.04,30 v 0 H 425 l 29.96,-30 z", - "fill": { - "paint": "#8c8c8c" - }, - "id": "path666", - "name": "path666", - "stroke": { - "miterlimit": "10", - "paint": "#000000" - }, - "type": "path" - }, - { - "d": "m 156,60 h 39.99 v 0 L 226,90 195.99,120 v 0 H 156 l 30.04,-30 z", - "fill": { - "paint": "#00cc00" - }, - "id": "path668", - "name": "path668", - "stroke": { - "miterlimit": "10", - "paint": "#000000" - }, - "type": "path" - }, - { - "elements": [ - { - "d": "m -82.240706,284.83398 30,30 -30,30 -30.000004,-30 z", - "fill": { - "paint": "#ff0000" - }, - "id": "path670", - "name": "path670", - "stroke": { - "miterlimit": "10", - "paint": "#000000" - }, - "type": "path" - }, - { - "id": "g676", - "name": "g676", - "transform": "translate(-255.67434,65.072266)", - "type": "group" - }, - { - "d": "m -76.240706,284.83398 h 19.96 v 0 l 30.04,30 -30.04,30 v 0 h -19.96 l 29.96,-30 z", - "fill": { - "paint": "#8c8c8c" - }, - "id": "path678", - "name": "path678", - "stroke": { - "miterlimit": "10", - "paint": "#000000" - }, - "type": "path" - } - ], - "id": "g1105", - "name": "g1105", - "transform": "matrix(0.52711014,0,0,0.67777713,-167.34865,118.01125)", - "type": "group" - }, - { - "d": "m 156,140 h 39.99 v 0 l 30.01,30 -30.01,30 v 0 H 156 l 30.04,-30 z", - "fill": { - "paint": "#8c8c8c" - }, - "id": "path680", - "name": "path680", - "stroke": { - "miterlimit": "10", - "paint": "#000000" - }, - "type": "path" - }, - { - "d": "m 170,300 30,30 -30,30 -30,-30 z", - "fill": { - "paint": "#ff8000" - }, - "id": "path682", - "name": "path682", - "stroke": { - "miterlimit": "10", - "paint": "#000000" - }, - "type": "path" - }, - { - "id": "g688", - "name": "g688", - "transform": "translate(-0.5,-0.5)", - "type": "group" - }, - { - "d": "m 176,300 h 19.96 v 0 l 30.04,30 -30.04,30 v 0 H 176 l 29.96,-30 z", - "fill": { - "paint": "#8c8c8c" - }, - "id": "path690", - "name": "path690", - "stroke": { - "miterlimit": "10", - "paint": "#000000" - }, - "type": "path" - }, - { - "d": "m 170,380 30,30 -30,30 -30,-30 z", - "fill": { - "paint": "#ffff00" - }, - "id": "path692", - "name": "path692", - "stroke": { - "miterlimit": "10", - "paint": "#000000" - }, - "type": "path" - }, - { - "id": "g698", - "name": "g698", - "transform": "translate(-0.5,-0.5)", - "type": "group" - }, - { - "d": "m 176,380 h 19.96 v 0 l 30.04,30 -30.04,30 v 0 H 176 l 29.96,-30 z", - "fill": { - "paint": "#00cc00" - }, - "id": "path700", - "name": "path700", - "stroke": { - "miterlimit": "10", - "paint": "#000000" - }, - "type": "path" - }, - { - "d": "m 170,460 30,30 -30,30 -30,-30 z", - "fill": { - "paint": "#ffff00" - }, - "id": "path702", - "name": "path702", - "stroke": { - "miterlimit": "10", - "paint": "#000000" - }, - "type": "path" - }, - { - "id": "g708", - "name": "g708", - "transform": "translate(-0.5,-0.5)", - "type": "group" - }, - { - "d": "m 176,460 h 19.96 v 0 l 30.04,30 -30.04,30 v 0 H 176 l 29.96,-30 z", - "fill": { - "paint": "#8c8c8c" - }, - "id": "path710", - "name": "path710", - "stroke": { - "miterlimit": "10", - "paint": "#000000" - }, - "type": "path" - }, - { - "d": "m 170,540 30,30 -30,30 -30,-30 z", - "fill": { - "paint": "#7ea6e0" - }, - "id": "path712", - "name": "path712", - "stroke": { - "paint": "transparent" - }, - "type": "path" - }, - { - "id": "g718", - "name": "g718", - "transform": "translate(-0.5,-0.5)", - "type": "group" - }, - { - "d": "m 176,540 h 19.96 v 0 l 30.04,30 -30.04,30 v 0 H 176 l 29.96,-30 z", - "fill": { - "paint": "#00cc00" - }, - "id": "path720", - "name": "path720", - "stroke": { - "miterlimit": "10", - "paint": "#000000" - }, - "type": "path" - }, - { - "d": "m 170,620 30,30 -30,30 -30,-30 z", - "fill": { - "paint": "#7ea6e0" - }, - "id": "path722", - "name": "path722", - "stroke": { - "paint": "transparent" - }, - "type": "path" - }, - { - "id": "g728", - "name": "g728", - "transform": "translate(-0.5,-0.5)", - "type": "group" - }, - { - "d": "m 176,620 h 19.96 v 0 l 30.04,30 -30.04,30 v 0 H 176 l 29.96,-30 z", - "fill": { - "paint": "#8c8c8c" - }, - "id": "path730", - "name": "path730", - "stroke": { - "miterlimit": "10", - "paint": "#000000" - }, - "type": "path" - }, - { - "d": "m 170,620 30,30 -30,30 -30,-30 z", - "fill": { - "paint": "#007dfa" - }, - "id": "path732", - "name": "path732", - "stroke": { - "miterlimit": "10", - "paint": "#000000" - }, - "type": "path" - }, - { - "id": "g738", - "name": "g738", - "transform": "translate(-0.5,-0.5)", - "type": "group" - }, - { - "d": "m 170,540 30,30 -30,30 -30,-30 z", - "fill": { - "paint": "#007efc" - }, - "id": "path740", - "name": "path740", - "stroke": { - "miterlimit": "10", - "paint": "#000000" - }, - "type": "path" - }, - { - "id": "g746", - "name": "g746", - "transform": "translate(-0.5,-0.5)", - "type": "group" - }, - { - "fill": { - "paint": "transparent" - }, - "height": "30", - "id": "rect748", - "name": "rect748", - "stroke": { - "paint": "transparent" - }, - "type": "rect", - "width": "372", - "x": "48", - "y": "730" - }, - { - "id": "g754", - "name": "g754", - "transform": "translate(-0.5,-0.5)", - "type": "group" - }, - { - "fill": { - "paint": "transparent" - }, - "height": "30", - "id": "rect756", - "name": "rect756", - "stroke": { - "paint": "transparent" - }, - "type": "rect", - "width": "372", - "x": "40", - "y": "770" - }, - { - "id": "g762", - "name": "g762", - "transform": "translate(-0.5,-0.5)", - "type": "group" - }, - { - "fill": { - "paint": "transparent" - }, - "height": "30", - "id": "rect764", - "name": "rect764", - "stroke": { - "paint": "transparent" - }, - "type": "rect", - "width": "372", - "x": "40", - "y": "800" - }, - { - "id": "g770", - "name": "g770", - "transform": "translate(-0.5,-0.5)", - "type": "group" - }, - { - "fill": { - "paint": "transparent" - }, - "height": "30", - "id": "rect772", - "name": "rect772", - "stroke": { - "paint": "transparent" - }, - "type": "rect", - "width": "372", - "x": "40", - "y": "830" - }, - { - "id": "g778", - "name": "g778", - "transform": "translate(-0.5,-0.5)", - "type": "group" - }, - { - "fill": { - "paint": "transparent" - }, - "height": "30", - "id": "rect780", - "name": "rect780", - "stroke": { - "paint": "transparent" - }, - "type": "rect", - "width": "372", - "x": "40", - "y": "870" - }, - { - "id": "g786", - "name": "g786", - "transform": "translate(-0.5,-0.5)", - "type": "group" - } - ], - "id": "g788", - "name": "g788", - "type": "group" - } - ], - "id": "g940", - "name": "g940", - "transform": "matrix(0.26458333,0,0,0.26458333,60.284253,-81.332525)", - "type": "group" - } - ], - "id": "layer1", - "name": "layer1", - "transform": "translate(-0.25437278,-0.84333903)", - "type": "group" - } - ], - "viewBox": "0 0 12.191251 11.013321" - }, - "type": "ia.shapes.svg" - }, - { - "meta": { - "name": "Priority2" - }, - "position": { - "height": 0.0907, - "width": 0.0536, - "x": 0.1979, - "y": 0.3565 - }, - "props": { - "elements": [ - { - "id": "defs2", - "name": "defs2", - "type": "defs" - }, - { - "elements": [ - { - "elements": [ - { - "elements": [ - { - "fill": { - "paint": "transparent" - }, - "height": "30", - "id": "rect1457", - "name": "rect1457", - "stroke": { - "paint": "transparent" - }, - "type": "rect", - "width": "244", - "x": "320", - "y": "10" - }, - { - "elements": [ - { - "d": "m 490.65035,981.01865 h 22.75736 v 0 l 34.25004,24.28225 -34.25004,24.2824 v 0 h -22.75736 l 34.15883,-24.2824 z", - "fill": { - "paint": "#8c8c8c" - }, - "id": "path1591", - "name": "path1591", - "stroke": { - "miterlimit": "10", - "paint": "#000000", - "width": "0.960651" - }, - "type": "path" - }, - { - "d": "m 488.14248,983.11489 30.11426,22.40621 -30.11426,22.4061 -30.11426,-22.4061 z", - "fill": { - "paint": "#007dfa" - }, - "id": "path1593", - "name": "path1593", - "stroke": { - "miterlimit": "10", - "paint": "#000000", - "width": "0.865861" - }, - "type": "path" - }, - { - "id": "g1599", - "name": "g1599", - "transform": "matrix(1.1457588,0,0,0.97675093,83.234844,335.9194)", - "type": "group" - }, - { - "elements": [ - { - "elements": [ - { - "fill": { - "paint": "transparent" - }, - "height": "30", - "id": "rect3295", - "name": "rect3295", - "stroke": { - "paint": "transparent" - }, - "type": "rect", - "width": "244", - "x": "320", - "y": "10" - }, - { - "id": "g3301", - "name": "g3301", - "transform": "translate(-0.5,-0.5)", - "type": "group" - }, - { - "d": "m 397,60 h 39.99 v 0 L 467,90 436.99,120 v 0 H 397 l 30.04,-30 z", - "fill": { - "paint": "#007dfa" - }, - "id": "path3303", - "name": "path3303", - "stroke": { - "miterlimit": "10", - "paint": "#000000" - }, - "type": "path" - }, - { - "d": "m 397,140 h 39.99 v 0 l 30.01,30 -30.01,30 v 0 H 397 l 30.04,-30 z", - "fill": { - "paint": "#8c8c8c" - }, - "id": "path3305", - "name": "path3305", - "stroke": { - "miterlimit": "10", - "paint": "#000000" - }, - "type": "path" - }, - { - "d": "m 419,230 30,30 -30,30 -30,-30 z", - "fill": { - "paint": "#ff0000" - }, - "id": "path3307", - "name": "path3307", - "stroke": { - "miterlimit": "10", - "paint": "#000000" - }, - "type": "path" - }, - { - "id": "g3313", - "name": "g3313", - "transform": "matrix(1.6699378,0,0,1.9507892,-317.91426,-208.76339)", - "type": "group" - }, - { - "d": "m 425,230 h 19.96 v 0 l 30.04,30 -30.04,30 v 0 H 425 l 29.96,-30 z", - "fill": { - "paint": "#8c8c8c" - }, - "id": "path3315", - "name": "path3315", - "stroke": { - "miterlimit": "10", - "paint": "#000000" - }, - "type": "path" - }, - { - "d": "m 419,310 30,30 -30,30 -30,-30 z", - "fill": { - "paint": "#f00077" - }, - "id": "path3317", - "name": "path3317", - "stroke": { - "miterlimit": "10", - "paint": "#000000" - }, - "type": "path" - }, - { - "id": "g3323", - "name": "g3323", - "transform": "translate(-24.489348,34.308074)", - "type": "group" - }, - { - "d": "m 425,310 h 19.96 v 0 l 30.04,30 -30.04,30 v 0 H 425 l 29.96,-30 z", - "fill": { - "paint": "#8c8c8c" - }, - "id": "path3325", - "name": "path3325", - "stroke": { - "miterlimit": "10", - "paint": "#000000" - }, - "type": "path" - }, - { - "d": "m 419,390 30,30 -30,30 -30,-30 z", - "fill": { - "paint": "#ff6000" - }, - "id": "path3327", - "name": "path3327", - "stroke": { - "miterlimit": "10", - "paint": "#000000" - }, - "type": "path" - }, - { - "id": "g3333", - "name": "g3333", - "transform": "translate(-0.5,-1.424355)", - "type": "group" - }, - { - "d": "m 425,390 h 19.96 v 0 l 30.04,30 -30.04,30 v 0 H 425 l 29.96,-30 z", - "fill": { - "paint": "#007dfa" - }, - "id": "path3335", - "name": "path3335", - "stroke": { - "miterlimit": "10", - "paint": "#000000" - }, - "type": "path" - }, - { - "d": "m 419,470 30,30 -30,30 -30,-30 z", - "fill": { - "paint": "#ff6000" - }, - "id": "path3337", - "name": "path3337", - "stroke": { - "miterlimit": "10", - "paint": "#000000" - }, - "type": "path" - }, - { - "id": "g3343", - "name": "g3343", - "transform": "translate(-0.5,-0.5)", - "type": "group" - }, - { - "d": "m 425,470 h 19.96 v 0 l 30.04,30 -30.04,30 v 0 H 425 l 29.96,-30 z", - "fill": { - "paint": "#8c8c8c" - }, - "id": "path3345", - "name": "path3345", - "stroke": { - "miterlimit": "10", - "paint": "#000000" - }, - "type": "path" - }, - { - "d": "m 419,550 30,30 -30,30 -30,-30 z", - "fill": { - "paint": "#fcc400" - }, - "id": "path3347", - "name": "path3347", - "stroke": { - "miterlimit": "10", - "paint": "#000000" - }, - "type": "path" - }, - { - "id": "g3353", - "name": "g3353", - "transform": "translate(-0.5,-0.5)", - "type": "group" - }, - { - "d": "m 425,550 h 19.96 v 0 l 30.04,30 -30.04,30 v 0 H 425 l 29.96,-30 z", - "fill": { - "paint": "#007dfa" - }, - "id": "path3355", - "name": "path3355", - "stroke": { - "miterlimit": "10", - "paint": "#000000" - }, - "type": "path" - }, - { - "d": "m 419,630 30,30 -30,30 -30,-30 z", - "fill": { - "paint": "#fcc400" - }, - "id": "path3357", - "name": "path3357", - "stroke": { - "miterlimit": "10", - "paint": "#000000" - }, - "type": "path" - }, - { - "id": "g3363", - "name": "g3363", - "transform": "translate(-0.5,-0.5)", - "type": "group" - }, - { - "d": "m 425,630 h 19.96 v 0 l 30.04,30 -30.04,30 v 0 H 425 l 29.96,-30 z", - "fill": { - "paint": "#8c8c8c" - }, - "id": "path3365", - "name": "path3365", - "stroke": { - "miterlimit": "10", - "paint": "#000000" - }, - "type": "path" - }, - { - "fill": { - "paint": "transparent" - }, - "height": "30", - "id": "rect3447", - "name": "rect3447", - "stroke": { - "paint": "transparent" - }, - "type": "rect", - "width": "372", - "x": "48", - "y": "730" - }, - { - "id": "g3453", - "name": "g3453", - "transform": "translate(-0.5,-0.5)", - "type": "group" - }, - { - "fill": { - "paint": "transparent" - }, - "height": "30", - "id": "rect3455", - "name": "rect3455", - "stroke": { - "paint": "transparent" - }, - "type": "rect", - "width": "372", - "x": "40", - "y": "770" - }, - { - "id": "g3461", - "name": "g3461", - "transform": "translate(-0.5,-0.5)", - "type": "group" - }, - { - "fill": { - "paint": "transparent" - }, - "height": "30", - "id": "rect3463", - "name": "rect3463", - "stroke": { - "paint": "transparent" - }, - "type": "rect", - "width": "372", - "x": "40", - "y": "800" - }, - { - "id": "g3469", - "name": "g3469", - "transform": "translate(-0.5,-0.5)", - "type": "group" - }, - { - "fill": { - "paint": "transparent" - }, - "height": "30", - "id": "rect3471", - "name": "rect3471", - "stroke": { - "paint": "transparent" - }, - "type": "rect", - "width": "372", - "x": "40", - "y": "830" - }, - { - "id": "g3477", - "name": "g3477", - "transform": "translate(-0.5,-0.5)", - "type": "group" - }, - { - "fill": { - "paint": "transparent" - }, - "height": "30", - "id": "rect3479", - "name": "rect3479", - "stroke": { - "paint": "transparent" - }, - "type": "rect", - "width": "372", - "x": "40", - "y": "870" - }, - { - "id": "g3485", - "name": "g3485", - "transform": "translate(-0.5,-0.5)", - "type": "group" - } - ], - "id": "g3487", - "name": "g3487", - "type": "group" - } - ], - "id": "g3639", - "name": "g3639", - "transform": "matrix(1.862586,0,0,1.2955924,-101.29241,402.21741)", - "type": "group" - } - ], - "id": "g1808", - "name": "g1808", - "transform": "matrix(0.53688798,0,0,0.77184771,-310.91046,-777.4312)", - "type": "group" - } - ], - "id": "g1649", - "name": "g1649", - "transform": "translate(-24.206493,-38.038774)", - "type": "group" - } - ], - "id": "g1801", - "name": "g1801", - "transform": "matrix(0.26458333,0,0,0.26458333,23.680108,16.682133)", - "type": "group" - } - ], - "id": "layer1", - "name": "layer1", - "type": "group" - } - ], - "viewBox": "0 0 12.7 12.7" - }, - "type": "ia.shapes.svg" - }, - { - "meta": { - "name": "Priority3" - }, - "position": { - "height": 0.0787, - "width": 0.0604, - "x": 0.0734, - "y": 0.4398 - }, - "props": { - "elements": [ - { - "id": "defs2", - "name": "defs2", - "type": "defs" - }, - { - "elements": [ - { - "elements": [ - { - "elements": [ - { - "fill": { - "paint": "transparent" - }, - "height": "30", - "id": "rect1457", - "name": "rect1457", - "stroke": { - "paint": "transparent" - }, - "type": "rect", - "width": "244", - "x": "320", - "y": "10" - }, - { - "elements": [ - { - "d": "m 490.65035,981.01865 h 22.75736 v 0 l 34.25004,24.28225 -34.25004,24.2824 v 0 h -22.75736 l 34.15883,-24.2824 z", - "fill": { - "paint": "#8c8c8c" - }, - "id": "path1591", - "name": "path1591", - "stroke": { - "miterlimit": "10", - "paint": "#000000", - "width": "0.960651" - }, - "type": "path" - }, - { - "d": "m 488.14248,983.11489 30.11426,22.40621 -30.11426,22.4061 -30.11426,-22.4061 z", - "fill": { - "paint": "#007dfa" - }, - "id": "path1593", - "name": "path1593", - "stroke": { - "miterlimit": "10", - "paint": "#000000", - "width": "0.865861" - }, - "type": "path" - }, - { - "id": "g1599", - "name": "g1599", - "transform": "matrix(1.1457588,0,0,0.97675093,83.234844,335.9194)", - "type": "group" - }, - { - "elements": [ - { - "elements": [ - { - "fill": { - "paint": "transparent" - }, - "height": "30", - "id": "rect3295", - "name": "rect3295", - "stroke": { - "paint": "transparent" - }, - "type": "rect", - "width": "244", - "x": "320", - "y": "10" - }, - { - "id": "g3301", - "name": "g3301", - "transform": "translate(-0.5,-0.5)", - "type": "group" - }, - { - "d": "m 397,60 h 39.99 v 0 L 467,90 436.99,120 v 0 H 397 l 30.04,-30 z", - "fill": { - "paint": "#007dfa" - }, - "id": "path3303", - "name": "path3303", - "stroke": { - "miterlimit": "10", - "paint": "#000000" - }, - "type": "path" - }, - { - "d": "m 397,140 h 39.99 v 0 l 30.01,30 -30.01,30 v 0 H 397 l 30.04,-30 z", - "fill": { - "paint": "#8c8c8c" - }, - "id": "path3305", - "name": "path3305", - "stroke": { - "miterlimit": "10", - "paint": "#000000" - }, - "type": "path" - }, - { - "d": "m 419,230 30,30 -30,30 -30,-30 z", - "fill": { - "paint": "#ff0000" - }, - "id": "path3307", - "name": "path3307", - "stroke": { - "miterlimit": "10", - "paint": "#000000" - }, - "type": "path" - }, - { - "id": "g3313", - "name": "g3313", - "transform": "matrix(1.6699378,0,0,1.9507892,-317.91426,-208.76339)", - "type": "group" - }, - { - "d": "m 425,230 h 19.96 v 0 l 30.04,30 -30.04,30 v 0 H 425 l 29.96,-30 z", - "fill": { - "paint": "#8c8c8c" - }, - "id": "path3315", - "name": "path3315", - "stroke": { - "miterlimit": "10", - "paint": "#000000" - }, - "type": "path" - }, - { - "d": "m 419,310 30,30 -30,30 -30,-30 z", - "fill": { - "paint": "#f00077" - }, - "id": "path3317", - "name": "path3317", - "stroke": { - "miterlimit": "10", - "paint": "#000000" - }, - "type": "path" - }, - { - "id": "g3323", - "name": "g3323", - "transform": "matrix(0.63064787,0,0,0.72984766,52.132513,218.46822)", - "type": "group" - }, - { - "d": "m 425,310 h 19.96 v 0 l 30.04,30 -30.04,30 v 0 H 425 l 29.96,-30 z", - "fill": { - "paint": "#8c8c8c" - }, - "id": "path3325", - "name": "path3325", - "stroke": { - "miterlimit": "10", - "paint": "#000000" - }, - "type": "path" - }, - { - "d": "m 419,390 30,30 -30,30 -30,-30 z", - "fill": { - "paint": "#ff6000" - }, - "id": "path3327", - "name": "path3327", - "stroke": { - "miterlimit": "10", - "paint": "#000000" - }, - "type": "path" - }, - { - "id": "g3333", - "name": "g3333", - "transform": "translate(38.223218,-57.895716)", - "type": "group" - }, - { - "d": "m 425,390 h 19.96 v 0 l 30.04,30 -30.04,30 v 0 H 425 l 29.96,-30 z", - "fill": { - "paint": "#007dfa" - }, - "id": "path3335", - "name": "path3335", - "stroke": { - "miterlimit": "10", - "paint": "#000000" - }, - "type": "path" - }, - { - "d": "m 419,470 30,30 -30,30 -30,-30 z", - "fill": { - "paint": "#ff6000" - }, - "id": "path3337", - "name": "path3337", - "stroke": { - "miterlimit": "10", - "paint": "#000000" - }, - "type": "path" - }, - { - "id": "g3343", - "name": "g3343", - "transform": "translate(-0.5,-0.5)", - "type": "group" - }, - { - "d": "m 425,470 h 19.96 v 0 l 30.04,30 -30.04,30 v 0 H 425 l 29.96,-30 z", - "fill": { - "paint": "#8c8c8c" - }, - "id": "path3345", - "name": "path3345", - "stroke": { - "miterlimit": "10", - "paint": "#000000" - }, - "type": "path" - }, - { - "d": "m 419,550 30,30 -30,30 -30,-30 z", - "fill": { - "paint": "#fcc400" - }, - "id": "path3347", - "name": "path3347", - "stroke": { - "miterlimit": "10", - "paint": "#000000" - }, - "type": "path" - }, - { - "id": "g3353", - "name": "g3353", - "transform": "translate(-0.5,-0.5)", - "type": "group" - }, - { - "d": "m 425,550 h 19.96 v 0 l 30.04,30 -30.04,30 v 0 H 425 l 29.96,-30 z", - "fill": { - "paint": "#007dfa" - }, - "id": "path3355", - "name": "path3355", - "stroke": { - "miterlimit": "10", - "paint": "#000000" - }, - "type": "path" - }, - { - "d": "m 419,630 30,30 -30,30 -30,-30 z", - "fill": { - "paint": "#fcc400" - }, - "id": "path3357", - "name": "path3357", - "stroke": { - "miterlimit": "10", - "paint": "#000000" - }, - "type": "path" - }, - { - "id": "g3363", - "name": "g3363", - "transform": "translate(-0.5,-0.5)", - "type": "group" - }, - { - "d": "m 425,630 h 19.96 v 0 l 30.04,30 -30.04,30 v 0 H 425 l 29.96,-30 z", - "fill": { - "paint": "#8c8c8c" - }, - "id": "path3365", - "name": "path3365", - "stroke": { - "miterlimit": "10", - "paint": "#000000" - }, - "type": "path" - }, - { - "fill": { - "paint": "transparent" - }, - "height": "30", - "id": "rect3447", - "name": "rect3447", - "stroke": { - "paint": "transparent" - }, - "type": "rect", - "width": "372", - "x": "48", - "y": "730" - }, - { - "id": "g3453", - "name": "g3453", - "transform": "translate(-0.5,-0.5)", - "type": "group" - }, - { - "fill": { - "paint": "transparent" - }, - "height": "30", - "id": "rect3455", - "name": "rect3455", - "stroke": { - "paint": "transparent" - }, - "type": "rect", - "width": "372", - "x": "40", - "y": "770" - }, - { - "id": "g3461", - "name": "g3461", - "transform": "translate(-0.5,-0.5)", - "type": "group" - }, - { - "fill": { - "paint": "transparent" - }, - "height": "30", - "id": "rect3463", - "name": "rect3463", - "stroke": { - "paint": "transparent" - }, - "type": "rect", - "width": "372", - "x": "40", - "y": "800" - }, - { - "id": "g3469", - "name": "g3469", - "transform": "translate(-0.5,-0.5)", - "type": "group" - }, - { - "fill": { - "paint": "transparent" - }, - "height": "30", - "id": "rect3471", - "name": "rect3471", - "stroke": { - "paint": "transparent" - }, - "type": "rect", - "width": "372", - "x": "40", - "y": "830" - }, - { - "id": "g3477", - "name": "g3477", - "transform": "translate(-0.5,-0.5)", - "type": "group" - }, - { - "fill": { - "paint": "transparent" - }, - "height": "30", - "id": "rect3479", - "name": "rect3479", - "stroke": { - "paint": "transparent" - }, - "type": "rect", - "width": "372", - "x": "40", - "y": "870" - }, - { - "id": "g3485", - "name": "g3485", - "transform": "translate(-0.5,-0.5)", - "type": "group" - } - ], - "id": "g3487", - "name": "g3487", - "type": "group" - } - ], - "id": "g3639", - "name": "g3639", - "transform": "matrix(1.862586,0,0,1.2955924,-101.29241,402.21741)", - "type": "group" - } - ], - "id": "g1808", - "name": "g1808", - "transform": "matrix(0.53688798,0,0,0.77184771,-310.91046,-777.4312)", - "type": "group" - } - ], - "id": "g1649", - "name": "g1649", - "transform": "translate(-24.206493,-38.038774)", - "type": "group" - } - ], - "id": "g1801", - "name": "g1801", - "transform": "matrix(0.26458333,0,0,0.26458333,23.680108,16.682133)", - "type": "group" - } - ], - "id": "layer1", - "name": "layer1", - "type": "group" - } - ], - "viewBox": "0 0 12.7 12.7" - }, - "type": "ia.shapes.svg" - }, - { - "meta": { - "name": "Priority5" - }, - "position": { - "height": 0.0593, - "width": 0.0464, - "x": 0.1297, - "y": 0.5157 - }, - "props": { - "elements": [ - { - "elements": [ - { - "elements": [ - { - "id": "stop8271", - "name": "stop8271", - "offset": "0", - "stopColor": "#ff0000", - "stopOpacity": "1", - "style": { - "stopColor": "#ff0000", - "stopOpacity": "1" - }, - "type": "stop" - }, - { - "id": "stop8273", - "name": "stop8273", - "offset": "1", - "stopColor": "#ff0000", - "stopOpacity": "0", - "style": { - "stopColor": "#ff0000", - "stopOpacity": "0" - }, - "type": "stop" - } - ], - "id": "linearGradient8275", - "name": "linearGradient8275", - "type": "linearGradient" - }, - { - "height": "12.373591", - "id": "rect7873", - "name": "rect7873", - "type": "rect", - "width": "6.960145", - "x": "-34.35881", - "y": "17.345123" - }, - { - "height": "19.333736", - "id": "rect7857", - "name": "rect7857", - "type": "rect", - "width": "8.617322", - "x": "12.925983", - "y": "13.478376" - }, - { - "height": "17.513809", - "id": "rect7801", - "name": "rect7801", - "type": "rect", - "width": "12.015919", - "x": "13.367897", - "y": "15.577467" - } - ], - "id": "defs7185", - "name": "defs7185", - "type": "defs" - }, - { - "elements": [ - { - "elements": [ - { - "d": "M 29.64905,-0.00379873 59.301882,29.999999 29.64905,60.003797 -0.00378149,29.999999 Z", - "fill": { - "paint": "#ff0000" - }, - "id": "path7353", - "name": "path7353", - "stroke": { - "miterlimit": "10", - "paint": "#000000", - "width": "0.99426" - }, - "type": "path" - }, - { - "id": "g7359", - "name": "g7359", - "transform": "matrix(0.98842772,0,0,1.0001266,-0.49799535,-0.50386203)", - "type": "group" - }, - { - "d": "m 35.579616,-0.00379873 h 19.729018 v 0 L 85.001002,29.999999 55.308634,60.003797 v 0 H 35.579616 L 65.192911,29.999999 Z", - "fill": { - "paint": "#8c8c8c" - }, - "id": "path7361", - "name": "path7361", - "stroke": { - "miterlimit": "10", - "paint": "#000000", - "width": "0.99426" - }, - "type": "path" - }, - { - "fill": { - "paint": "transparent" - }, - "id": "text7799", - "name": "text7799", - "stroke": { - "linecap": "round", - "linejoin": "round", - "paint": "#000000", - "width": "1.88976" - }, - "style": { - "opacity": "0.745318", - "paintOrder": "stroke fill markers", - "shapeInside": "url(#rect7801)", - "whiteSpace": "pre" - }, - "text": "", - "transform": "matrix(1.8153486,0,0,1.5943188,-1.6050095,-7.7561459)", - "type": "text" - }, - { - "fill": { - "paint": "transparent" - }, - "id": "text7855", - "name": "text7855", - "stroke": { - "linecap": "round", - "linejoin": "round", - "paint": "#000000", - "width": "1.88976" - }, - "style": { - "opacity": "0.745318", - "paintOrder": "stroke fill markers", - "shapeInside": "url(#rect7857)", - "whiteSpace": "pre" - }, - "text": "", - "transform": "matrix(1.8153486,0,0,1.5943188,-1.6050095,-7.7561459)", - "type": "text" - }, - { - "elements": [ - { - "id": "tspan8587", - "name": "tspan8587", - "text": "1", - "type": "tspan", - "x": "-34.359375", - "y": "25.679114" - } - ], - "fill": { - "opacity": "0.99182", - "paint": "#050505" - }, - "id": "text7871", - "name": "text7871", - "stroke": { - "dasharray": "none", - "linecap": "round", - "linejoin": "round", - "paint": "#000000", - "width": "0.25802" - }, - "style": { - "InkscapeFontSpecification": "\u0027Arial Narrow, Normal\u0027", - "fontFamily": "\u0027Arial Narrow\u0027", - "fontSize": "9.25159px", - "fontStretch": "normal", - "fontStyle": "normal", - "fontVariant": "normal", - "fontVariantCaps": "normal", - "fontVariantEastAsian": "normal", - "fontVariantLigatures": "normal", - "fontVariantNumeric": "normal", - "fontWeight": "normal", - "opacity": "0.745318", - "paintOrder": "stroke fill markers", - "shapeInside": "url(#rect7873)", - "whiteSpace": "pre" - }, - "text": "1", - "transform": "matrix(7.0991451,0,0,4.6510814,257.54231,-73.971779)", - "type": "text" - } - ], - "id": "g7387", - "name": "g7387", - "transform": "matrix(0.14574795,0,0,0.16595384,0.23392684,1.2871622)", - "type": "group" - } - ], - "id": "layer1", - "name": "layer1", - "type": "group" - } - ], - "viewBox": "0 0 12.7 12.7" - }, - "type": "ia.shapes.svg" - }, - { - "meta": { - "name": "EmbeddedView" - }, - "position": { - "height": 0.0426, - "width": 0.0245, - "x": 0.087, - "y": 0.6241 - }, - "type": "ia.display.view" - }, - { - "meta": { - "name": "Custom" - }, - "position": { - "height": 0.037, - "width": 0.0208, - "x": 0.0552, - "y": 0.3444 - }, - "props": { - "params": { - "tagProps": [ - "PLC09/L1_8/ES1", - "sensor_door", - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value" - ] - }, - "path": "Symbol-Views/AMZL/Equipment-Views/Custom" - }, - "type": "ia.display.view" - }, - { - "meta": { - "name": "Priority" - }, - "position": { - "height": 0.0287, - "rotate": { - "angle": "270deg" - }, - "width": 0.0177, - "x": 0.1879, - "y": 0.1273 - }, - "props": { - "path": "Symbol-Views/AMZL/Equipment-Views/Priority" - }, - "type": "ia.display.view" - }, - { - "meta": { - "name": "RFID_0" - }, - "position": { - "height": 0.0361, - "width": 0.026, - "x": 0.2344, - "y": 0.7361 - }, - "props": { - "elements": [ - { - "elements": [ - { - "d": "M6.35 0.2507 C4.0842 0.2507 1.9091 1.5163 0.3079 3.7675 L1.174 4.9681 C2.6039 2.9621 4.477 1.9591 6.35 1.9591 C8.223 1.9591 10.0961 2.9621 11.526 4.9681 L12.3921 3.7675 C10.7909 1.5163 8.6158 0.2507 6.35 0.2507 ZM6.35 3.6831 C4.7961 3.6831 3.2421 4.5117 2.0526 6.1688 L2.8834 7.4219 C3.7997 6.1213 5.0484 5.3909 6.35 5.3909 C7.6516 5.3909 8.9003 6.1213 9.8166 7.4219 L10.6474 6.1688 C9.4579 4.5117 7.9039 3.6831 6.35 3.6831 ZM6.35 7.1155 C5.4135 7.1155 4.477 7.617 3.762 8.6201 L4.6179 9.8557 C5.0761 9.2079 5.698 8.8427 6.35 8.8427 C7.002 8.8427 7.6239 9.2079 8.0821 9.8557 L8.938 8.6201 C8.223 7.617 7.2865 7.1155 6.35 7.1155 ZM6.35 10.5667 C6.0416 10.5667 5.7332 10.7299 5.4966 11.0563 L6.35 12.257 L7.2034 11.0563 C6.9668 10.7299 6.6584 10.5667 6.35 10.5667 Z", - "name": "path", - "stroke": { - "paint": "transparent" - }, - "type": "path" - } - ], - "fill": { - "opacity": 1, - "paint": "#FF4747" - }, - "name": "group", - "stroke": { - "opacity": "0.502", - "paint": "rgb(128,128,128)" - }, - "type": "group" - } - ], - "viewBox": "0 0 12.7 12.7" - }, - "type": "ia.shapes.svg" - }, - { - "meta": { - "name": "Goods_Lift" - }, - "position": { - "height": 0.0528, - "width": 0.026, - "x": 0.261, - "y": 0.1315 - }, - "props": { - "elements": [ - { - "id": "defs2", - "name": "defs2", - "type": "defs" - }, - { - "elements": [ - { - "elements": [ - { - "cx": "69.035934", - "cy": "129.08073", - "fill": { - "paint": "#FF0000" - }, - "id": "path509", - "name": "path509", - "rx": "9.5693493", - "ry": "9.4979048", - "stroke": { - "dasharray": "none", - "linejoin": "round", - "paint": "#000000", - "width": "1.3051" - }, - "style": { - "paintOrder": "stroke fill markers" - }, - "type": "ellipse" - }, - { - "d": "m 67.713019,128.18115 1.322917,-0.66146 1.322917,0.66146 v -3.06917 h -2.645834 z m -1.322916,3.54542 v -1.05833 h 2.645833 v 1.05833 z m -1.322918,2.11667 q -0.3175,0 -0.555625,-0.23812 -0.238125,-0.23813 -0.238125,-0.55563 v -7.93751 q 0,-0.3175 0.238125,-0.55562 0.238125,-0.23813 0.555625,-0.23813 h 7.937499 q 0.3175,0 0.55563,0.23813 0.23812,0.23812 0.23812,0.55562 v 7.93751 q 0,0.3175 -0.23812,0.55563 -0.23813,0.23812 -0.55563,0.23812 z m 0,-8.73126 v 7.93751 z m 0,7.93751 h 7.937499 v -7.93751 h -1.852081 v 4.3524 l -2.116667,-1.05834 -2.116666,1.05834 v -4.3524 h -1.852085 z", - "id": "path132", - "name": "path132", - "stroke": { - "dasharray": "none", - "width": "0" - }, - "type": "path" - }, - { - "d": "m 66.429788,123.74768 -0.568854,-0.56885 3.175,-3.175 3.175,3.16177 -0.568855,0.56885 -2.606145,-2.60614 z", - "id": "path2154", - "name": "path2154", - "stroke": { - "width": "0.264583" - }, - "type": "path" - }, - { - "d": "m 71.642074,134.41379 0.56886,0.56885 -3.175,3.175 -3.175,-3.16177 0.56885,-0.56885 2.60615,2.60614 z", - "id": "path2154-5", - "name": "path2154-5", - "stroke": { - "width": "0.264583" - }, - "type": "path" - } - ], - "id": "g2552", - "name": "g2552", - "type": "group" - } - ], - "id": "layer1", - "name": "layer1", - "transform": "translate(-58.814035,-118.93028)", - "type": "group" - } - ], - "viewBox": "0 0 20.443798 20.300909" - }, - "type": "ia.shapes.svg" - }, - { - "meta": { - "name": "Goods_Lift_0" - }, - "position": { - "height": 0.0787, - "width": 0.051, - "x": 0.187, - "y": 0.2491 - }, - "props": { - "elements": [ - { - "elements": [ - { - "d": "M10.2219 0.6525 C4.9369 0.6525 0.6525 4.9049 0.6525 10.1505 C0.6525 15.396 4.9369 19.6484 10.2219 19.6484 C15.5069 19.6484 19.7912 15.396 19.7912 10.1505 C19.7912 4.9049 15.5069 0.6525 10.2219 0.6525 Z", - "name": "path", - "stroke": { - "paint": "transparent" - }, - "type": "path" - } - ], - "fill": { - "opacity": "0.502", - "paint": "rgb(128,128,128)" - }, - "name": "group", - "stroke": { - "opacity": "0.502", - "paint": "rgb(128,128,128)" - }, - "type": "group" - } - ], - "viewBox": "0 0 20.443798 20.300909" - }, - "type": "ia.shapes.svg" - }, - { - "meta": { - "name": "Goods_Lift_1" - }, - "position": { - "height": 0.1611, - "width": 0.0839, - "x": 0.3557, - "y": 0.0426 - }, - "props": { - "elements": [ - { - "id": "defs2", - "name": "defs2", - "type": "defs" - }, - { - "elements": [ - { - "elements": [ - { - "cx": "69.035934", - "cy": "129.08073", - "fill": { - "paint": "#ffffff" - }, - "id": "path509", - "name": "path509", - "rx": "9.5693493", - "ry": "9.4979048", - "stroke": { - "dasharray": "none", - "linejoin": "round", - "paint": "#000000", - "width": "1" - }, - "style": { - "paintOrder": "stroke fill markers" - }, - "type": "ellipse" - }, - { - "d": "m 67.713019,128.18115 1.322917,-0.66146 1.322917,0.66146 v -3.06917 h -2.645834 z m -1.322916,3.54542 v -1.05833 h 2.645833 v 1.05833 z m -1.322918,2.11667 q -0.3175,0 -0.555625,-0.23812 -0.238125,-0.23813 -0.238125,-0.55563 v -7.93751 q 0,-0.3175 0.238125,-0.55562 0.238125,-0.23813 0.555625,-0.23813 h 7.937499 q 0.3175,0 0.55563,0.23813 0.23812,0.23812 0.23812,0.55562 v 7.93751 q 0,0.3175 -0.23812,0.55563 -0.23813,0.23812 -0.55563,0.23812 z m 0,-8.73126 v 7.93751 z m 0,7.93751 h 7.937499 v -7.93751 h -1.852081 v 4.3524 l -2.116667,-1.05834 -2.116666,1.05834 v -4.3524 h -1.852085 z", - "id": "path132", - "name": "path132", - "stroke": { - "dasharray": "none", - "width": "1" - }, - "type": "path" - }, - { - "d": "m 66.429788,123.74768 -0.568854,-0.56885 3.175,-3.175 3.175,3.16177 -0.568855,0.56885 -2.606145,-2.60614 z", - "id": "path2154", - "name": "path2154", - "stroke": { - "dasharray": "none", - "width": "1" - }, - "type": "path" - }, - { - "d": "m 71.642074,134.41379 0.56886,0.56885 -3.175,3.175 -3.175,-3.16177 0.56885,-0.56885 2.60615,2.60614 z", - "id": "path2154-5", - "name": "path2154-5", - "stroke": { - "dasharray": "none", - "width": "1" - }, - "type": "path" - } - ], - "id": "g2552", - "name": "g2552", - "stroke": { - "dasharray": "none", - "width": "1" - }, - "type": "group" - } - ], - "id": "layer1", - "name": "layer1", - "transform": "translate(-58.814035,-118.93028)", - "type": "group" - } - ], - "viewBox": "0 0 20.443798 20.300909" - }, - "type": "ia.shapes.svg" - }, - { - "meta": { - "name": "AUS" - }, - "position": { - "height": 0.0898, - "width": 0.0417, - "x": 0.5062, - "y": 0.3667 - }, - "props": { - "elements": [ - { - "id": "defs2", - "name": "defs2", - "type": "defs" - }, - { - "elements": [ - { - "elements": [ - { - "cx": "69.035934", - "cy": "129.08073", - "fill": { - "paint": "#ffffff" - }, - "id": "path509", - "name": "path509", - "rx": "9.5693493", - "ry": "9.4979048", - "stroke": { - "dasharray": "none", - "linejoin": "round", - "paint": "#000000", - "width": "1" - }, - "style": { - "paintOrder": "stroke fill markers" - }, - "type": "ellipse" - }, - { - "d": "m 64.008851,131.72656 2.143125,-5.29166 h 0.833438 l 2.129896,5.29166 h -0.833438 l -0.502708,-1.30968 h -2.434167 l -0.502708,1.30968 z m 1.600729,-1.9976 h 1.905 l -0.926041,-2.4474 h -0.05292 z m 4.590521,1.9976 v -0.82021 l 3.082396,-3.78354 h -2.844271 v -0.68791 h 3.598334 v 0.83343 l -3.055938,3.77032 h 3.082396 v 0.68791 z m -2.169583,-6.6675 1.27,-1.27 1.27,1.27 z m 1.27,9.31334 -1.27,-1.27 h 2.54 z", - "id": "path6803", - "name": "path6803", - "stroke": { - "width": "0.264583" - }, - "type": "path" - } - ], - "id": "g2552", - "name": "g2552", - "stroke": { - "dasharray": "none", - "width": "1" - }, - "type": "group" - } - ], - "id": "layer1", - "name": "layer1", - "transform": "translate(-58.814035,-118.93028)", - "type": "group" - } - ], - "viewBox": "0 0 20.443798 20.300909" - }, - "type": "ia.shapes.svg" - }, - { - "meta": { - "name": "GoodsLift" - }, - "position": { - "height": 0.0926, - "width": 0.0521, - "x": 0.3828, - "y": 0.3917 - }, - "props": { - "params": { - "tagProps": [ - "", - "", - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value" - ] - }, - "path": "Symbol-Views/Equipment-Views/GoodsLift" - }, - "type": "ia.display.view" - }, - { - "meta": { - "name": "AUS_0" - }, - "position": { - "height": 0.0898, - "width": 0.0417, - "x": 0.4166, - "y": 0.5297 - }, - "props": { - "elements": [ - { - "elements": [ - { - "d": "M10.2219 0.6525 C4.9369 0.6525 0.6525 4.9049 0.6525 10.1505 C0.6525 15.396 4.9369 19.6484 10.2219 19.6484 C15.5069 19.6484 19.7912 15.396 19.7912 10.1505 C19.7912 4.9049 15.5069 0.6525 10.2219 0.6525 Z", - "name": "path", - "stroke": { - "paint": "transparent" - }, - "type": "path" - } - ], - "fill": { - "opacity": "0.502", - "paint": "rgb(128,128,128)" - }, - "name": "group", - "stroke": { - "opacity": "0.502", - "paint": "rgb(128,128,128)" - }, - "type": "group" - } - ], - "viewBox": "0 0 20.443798 20.300909" - }, - "type": "ia.shapes.svg" - }, - { - "meta": { - "name": "SLAMs" - }, - "position": { - "height": 0.0926, - "width": 0.0521, - "x": 0.2968, - "y": 0.2648 - }, - "props": { - "params": { - "tagProps": [ - "", - "", - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value" - ] - }, - "path": "Symbol-Views/Equipment-Views/SLAMs" - }, - "type": "ia.display.view" - }, - { - "meta": { - "name": "jam-jar-icon" - }, - "position": { - "height": 0.0241, - "width": 0.0146, - "x": 0.0651, - "y": 0.7954 - }, - "props": { - "elements": [ - { - "d": "M20.34,21.47A83.51,83.51,0,0,0,9.12,28a18.88,18.88,0,0,0-3.75,3.35,17.9,17.9,0,0,0,3.08,1.41,15.17,15.17,0,0,0,4.62.86,12.37,12.37,0,0,0,5.09-1.58,19,19,0,0,1,7.4-2.21c2.68-.11,4.73.95,6.74,2a9.73,9.73,0,0,0,3.92,1.41,11.85,11.85,0,0,0,4.39-1.34,21,21,0,0,1,6.83-2,16.92,16.92,0,0,1,7.3,1.36,15.33,15.33,0,0,0,4.77,1.15A20.45,20.45,0,0,0,65,31.26a27.16,27.16,0,0,1,7.38-1.42,17.2,17.2,0,0,1,6.43,1.38,12,12,0,0,0,3.76.94,16.75,16.75,0,0,0,4.13-.51,17,17,0,0,0,2.16-.71,13.53,13.53,0,0,0-3.44-3.44,59.47,59.47,0,0,0-10.81-6Zm4.18,30.88H71.18a11.81,11.81,0,0,1,8.34,3.47v0A11.76,11.76,0,0,1,83,64.17V81.69A11.81,11.81,0,0,1,79.53,90h0a11.76,11.76,0,0,1-8.33,3.47H24.52a11.81,11.81,0,0,1-8.34-3.47v0a11.77,11.77,0,0,1-3.47-8.34V64.17a11.81,11.81,0,0,1,3.47-8.34h0a11.76,11.76,0,0,1,8.33-3.47ZM71.18,57H24.52a7.1,7.1,0,0,0-5.06,2.1h0a7.14,7.14,0,0,0-2.1,5.07V81.69a7.12,7.12,0,0,0,2.1,5.07h0a7.1,7.1,0,0,0,5.06,2.1H71.18a7.14,7.14,0,0,0,5.07-2.1h0a7.13,7.13,0,0,0,2.11-5.07V64.17a7.15,7.15,0,0,0-2.11-5.07h0A7.14,7.14,0,0,0,71.18,57ZM88.27,16.49l5.55.37a3.19,3.19,0,0,1-.43,6.36l-6.6-.44q.75.51,1.44,1c3.32,2.5,5.37,5.12,5.8,7.9a2.31,2.31,0,0,1-1.18,2.49,21.89,21.89,0,0,1-4.22,1.75A31.23,31.23,0,0,1,93.39,46,53.19,53.19,0,0,1,95,60.4v28h0c.17,10.13-2.24,18.14-7.35,24s-12.75,9.33-23.12,10.51a1.84,1.84,0,0,1-.41,0H32.27c-10-.39-17.24-3.75-22.38-9.31S2,100.6.75,91.72a2.73,2.73,0,0,1-.05-.5V62.14h0a53,53,0,0,1,2-17.06,29.52,29.52,0,0,1,3.88-8,24.66,24.66,0,0,1-5.49-2.89,2.33,2.33,0,0,1-1-2.66C.79,29.15,3,26.74,6.4,24.26a72,72,0,0,1,8.36-5.12,10.4,10.4,0,0,1-1.18-1h0a10.55,10.55,0,0,1,0-15h0A10.57,10.57,0,0,1,21.07,0H73a10.55,10.55,0,0,1,7.49,3.12h0a10.57,10.57,0,0,1,3.12,7.49,8.44,8.44,0,0,1-.05,1l8.25-3.75a3.18,3.18,0,0,1,2.64,5.79l-6.19,2.82ZM73,4.64H21.07a6,6,0,0,0-4.22,1.75h0a6,6,0,0,0,0,8.44h0a6,6,0,0,0,4.22,1.75H73a6,6,0,0,0,4.22-1.75h0a6,6,0,0,0,0-8.44h0A6,6,0,0,0,73,4.64ZM11.56,38.17a24.5,24.5,0,0,0-4.39,8.31A49.22,49.22,0,0,0,5.33,62.1v0h0v29c1.12,8,3.62,14.61,8,19.32s10.49,7.46,19.06,7.82H64c9.17-1,15.85-4,20.15-9s6.36-11.91,6.21-20.88v0h0v-28a48.93,48.93,0,0,0-1.45-13.16,26.53,26.53,0,0,0-5.52-10.43H82.6a15.52,15.52,0,0,1-5.32-1.23,13.74,13.74,0,0,0-4.8-1.1,23.74,23.74,0,0,0-6.14,1.23A23.73,23.73,0,0,1,59.49,37a18.89,18.89,0,0,1-6.27-1.4,13.21,13.21,0,0,0-5.38-1.13,17.34,17.34,0,0,0-5.38,1.69,15,15,0,0,1-6.27,1.72,13.09,13.09,0,0,1-6-1.92,9.48,9.48,0,0,0-4.44-1.48,15.42,15.42,0,0,0-5.64,1.79c-2.28,1.05-4.47,2.07-7.15,2-.46,0-.93,0-1.39-.09Z", - "name": "path", - "type": "path" - } - ], - "viewBox": "0 0 96.79 122.88" - }, - "type": "ia.shapes.svg" - }, - { - "meta": { - "name": "jar-solid (2)" - }, - "position": { - "height": 0.0324, - "width": 0.0182, - "x": 0.0829, - "y": 0.6945 - }, - "props": { - "elements": [ - { - "d": "M32 32C32 14.3 46.3 0 64 0H256c17.7 0 32 14.3 32 32s-14.3 32-32 32H64C46.3 64 32 49.7 32 32zM0 160c0-35.3 28.7-64 64-64H256c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V160zm96 64c-17.7 0-32 14.3-32 32v96c0 17.7 14.3 32 32 32H224c17.7 0 32-14.3 32-32V256c0-17.7-14.3-32-32-32H96z", - "name": "path", - "type": "path" - } - ], - "style": { - "color": "#FF8C00" - }, - "viewBox": "0 0 320 512" - }, - "type": "ia.shapes.svg" - }, - { - "meta": { - "name": "car_crash_white_24dp" - }, - "position": { - "height": 0.0222, - "width": 0.0125, - "x": 0.1294, - "y": 0.7574 - }, - "props": { - "elements": [ - { - "elements": [ - { - "fill": { - "paint": "transparent" - }, - "height": "24", - "name": "rect", - "type": "rect", - "width": "24" - } - ], - "name": "group", - "type": "group" - }, - { - "elements": [ - { - "elements": [ - { - "d": "M18,1c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5S20.76,1,18,1z M18.5,7h-1V3h1V7z M18.5,8v1h-1V8H18.5z M6,13.5 C6,12.67,6.67,12,7.5,12S9,12.67,9,13.5S8.33,15,7.5,15S6,14.33,6,13.5z M19,12.93c0.65-0.09,1.34-0.28,2-0.6h0V19 c0,0.55-0.45,1-1,1h-1c-0.55,0-1-0.45-1-1v-1H6v1c0,0.55-0.45,1-1,1H4c-0.55,0-1-0.45-1-1v-8l2.08-5.99C5.29,4.42,5.84,4,6.5,4 l4.79,0C11.1,4.63,11,5.31,11,6H6.85L5.81,9h5.86v0c0.36,0.75,0.84,1.43,1.43,2L5,11v5h14L19,12.93z M17.91,13 c-0.89-0.01-1.74-0.19-2.53-0.51C15.15,12.76,15,13.11,15,13.5c0,0.83,0.67,1.5,1.5,1.5s1.5-0.67,1.5-1.5 C18,13.32,17.97,13.16,17.91,13z", - "name": "path", - "type": "path" - } - ], - "name": "group", - "type": "group" - } - ], - "name": "group", - "type": "group" - } - ], - "fill": { - "paint": "#FFFFFF" - }, - "viewBox": "0 0 24 24" - }, - "type": "ia.shapes.svg" - }, - { - "meta": { - "name": "troubleshoot_white_24dp" - }, - "position": { - "height": 0.0222, - "width": 0.0125, - "x": 0.0078, - "y": 0.5194 - }, - "props": { - "elements": [ - { - "elements": [ - { - "fill": { - "paint": "transparent" - }, - "height": "24", - "name": "rect", - "type": "rect", - "width": "24" - } - ], - "name": "group", - "type": "group" - }, - { - "elements": [ - { - "elements": [ - { - "d": "M22,20.59l-4.69-4.69C18.37,14.55,19,12.85,19,11c0-4.42-3.58-8-8-8c-4.08,0-7.44,3.05-7.93,7h2.02C5.57,7.17,8.03,5,11,5 c3.31,0,6,2.69,6,6s-2.69,6-6,6c-2.42,0-4.5-1.44-5.45-3.5H3.4C4.45,16.69,7.46,19,11,19c1.85,0,3.55-0.63,4.9-1.69L20.59,22 L22,20.59z", - "name": "path", - "type": "path" - }, - { - "name": "polygon", - "points": "8.43,9.69 9.65,15 11.29,15 12.55,11.22 13.5,13.5 15.5,13.5 15.5,12 14.5,12 13.25,9 11.71,9 10.59,12.37 9.35,7 7.7,7 6.45,11 1,11 1,12.5 7.55,12.5", - "type": "polygon" - } - ], - "name": "group", - "type": "group" - } - ], - "name": "group", - "type": "group" - } - ], - "fill": { - "paint": "#FFFFFF" - }, - "viewBox": "0 0 24 24" - }, - "type": "ia.shapes.svg" - }, - { - "meta": { - "name": "PressureSwitch" - }, - "position": { - "height": 0.0231, - "width": 0.013, - "x": 0.3646, - "y": 0.6584 - }, - "props": { - "elements": [ - { - "name": "defs", - "type": "text" - }, - { - "elements": [ - { - "fill": { - "paint": "#FF4747" - }, - "height": "24", - "name": "rect", - "stroke": { - "paint": "rgb(0, 0, 0)" - }, - "type": "rect", - "width": "24", - "x": "0", - "y": "0" - }, - { - "name": "group", - "transform": "translate(-0.5 -0.5)", - "type": "group" - } - ], - "name": "group", - "type": "group" - } - ], - "style": { - "backgroundColor": " rgb(237, 237, 237)" - }, - "viewBox": "-0.5 -0.5 25 25" - }, - "type": "ia.shapes.svg" - }, - { - "meta": { - "name": "PressureSwitch_0" - }, - "position": { - "height": 0.0333, - "width": 0.0182, - "x": 0.3333, - "y": 0.5259 - }, - "props": { - "elements": [ - { - "elements": [ - { - "elements": [ - { - "id": "stop1507", - "name": "stop1507", - "offset": "0", - "stopColor": "#020101", - "stopOpacity": "1", - "style": { - "stopColor": "#020101", - "stopOpacity": "1" - }, - "type": "stop" - } - ], - "id": "linearGradient1509", - "name": "linearGradient1509", - "type": "linearGradient" - }, - { - "elements": [ - { - "id": "stop1391", - "name": "stop1391", - "offset": "0", - "stopColor": "#020101", - "stopOpacity": "1", - "style": { - "stopColor": "#020101", - "stopOpacity": "1" - }, - "type": "stop" - } - ], - "id": "linearGradient1393", - "name": "linearGradient1393", - "type": "linearGradient" - }, - { - "elements": [ - { - "id": "stop1381", - "name": "stop1381", - "offset": "0", - "stopColor": "#ffffff", - "stopOpacity": "1", - "style": { - "stopColor": "#ffffff", - "stopOpacity": "1" - }, - "type": "stop" - }, - { - "id": "stop1383", - "name": "stop1383", - "offset": "1", - "stopColor": "#ffffff", - "stopOpacity": "0", - "style": { - "stopColor": "#ffffff", - "stopOpacity": "0" - }, - "type": "stop" - } - ], - "id": "linearGradient1385", - "name": "linearGradient1385", - "type": "linearGradient" - }, - { - "gradientTransform": "scale(0.93677795,1.0674888)", - "gradientUnits": "userSpaceOnUse", - "href": "#linearGradient1509", - "id": "linearGradient3055", - "name": "linearGradient3055", - "type": "linearGradient", - "x1": "2.4719212", - "x2": "5.6080947", - "y1": "4.8826461", - "y2": "4.8826461" - } - ], - "id": "defs2", - "name": "defs2", - "type": "defs" - }, - { - "elements": [ - { - "elements": [ - { - "fill": { - "opacity": "1", - "url": "url(#linearGradient3055)" - }, - "id": "tspan1453", - "name": "tspan1453", - "stroke": { - "dasharray": "none", - "width": "0.263597" - }, - "text": "P", - "type": "tspan", - "x": "2.1310973", - "y": "7.0375786" - } - ], - "fill": { - "opacity": "1", - "url": "url(#linearGradient3055)" - }, - "id": "text1455", - "name": "text1455", - "stroke": { - "dasharray": "none", - "linejoin": "round", - "paint": "#000000", - "width": 0.5 - }, - "style": { - "InkscapeFontSpecification": "\u0027Arial Narrow, Normal\u0027", - "fontFamily": "\u0027Arial Narrow\u0027", - "fontSize": "3.55804px", - "paintOrder": "stroke fill markers" - }, - "text": "P", - "transform": "scale(1.0674889,0.9367779)", - "type": "text", - "x": "2.1310973", - "y": "7.0375786" - }, - { - "fill": { - "opacity": "0.0131332", - "paint": "#020101" - }, - "height": "5.0202694", - "id": "rect2295", - "name": "rect2295", - "stroke": { - "dasharray": "none", - "linejoin": "round", - "paint": "#000000", - "width": "0.278718" - }, - "style": { - "paintOrder": "stroke fill markers" - }, - "type": "rect", - "width": "5.0202694", - "x": "0.85620493", - "y": "2.8895655" - }, - { - "d": "M 5.8764744,5.3996999 H 8.910435", - "fill": { - "opacity": "0.0131332", - "paint": "#020101" - }, - "id": "path2444", - "name": "path2444", - "stroke": { - "dasharray": "0.535709, 0.535709", - "dashoffset": "0", - "linejoin": "round", - "paint": "#000000", - "width": "0.535709" - }, - "style": { - "paintOrder": "stroke fill markers" - }, - "type": "path" - }, - { - "d": "M 9.7533984,1.9768429 8.2352994,8.0007424 8.2115423,10.620118", - "fill": { - "opacity": "0.0131332", - "paint": "#020101" - }, - "id": "path2497", - "name": "path2497", - "stroke": { - "dasharray": "none", - "dashoffset": "0", - "linejoin": "round", - "paint": "#000000", - "width": "0.461924" - }, - "style": { - "paintOrder": "stroke fill markers" - }, - "type": "path" - }, - { - "d": "M 10.943707,2.4945992 H 8.2013803 l 10e-8,-1.69078389", - "fill": { - "opacity": "0.0131332", - "paint": "#020101" - }, - "id": "path2515", - "name": "path2515", - "stroke": { - "dasharray": "none", - "dashoffset": "0", - "linejoin": "round", - "paint": "#000000", - "width": "0.441581" - }, - "style": { - "paintOrder": "stroke fill markers" - }, - "type": "path" - }, - { - "fill": { - "opacity": "0.0131332", - "paint": "#020101" - }, - "height": "11.216189", - "id": "rect2517", - "name": "rect2517", - "stroke": { - "dasharray": "none", - "dashoffset": "0", - "linejoin": "round", - "paint": "#000000", - "width": "0.0883165" - }, - "style": { - "paintOrder": "stroke fill markers" - }, - "type": "rect", - "width": "11.216189", - "x": "6.1553953e-07", - "y": "0" - } - ], - "id": "layer1", - "name": "layer1", - "type": "group" - } - ], - "viewBox": "0 0 11.21619 11.21619" - }, - "type": "ia.shapes.svg" - }, - { - "meta": { - "name": "PressureSwitch_1" - }, - "position": { - "height": 0.0259, - "width": 0.0151, - "x": 0.3302, - "y": 0.7852 - }, - "props": { - "elements": [ - { - "elements": [ - { - "elements": [ - { - "id": "stop1507", - "name": "stop1507", - "offset": "0", - "stopColor": "#020101", - "stopOpacity": "1", - "style": { - "stopColor": "#020101", - "stopOpacity": "1" - }, - "type": "stop" - } - ], - "id": "linearGradient1509", - "name": "linearGradient1509", - "type": "linearGradient" - }, - { - "gradientTransform": "scale(1.0156665,0.98457489)", - "gradientUnits": "userSpaceOnUse", - "href": "#linearGradient1509", - "id": "linearGradient3055", - "name": "linearGradient3055", - "type": "linearGradient", - "x1": "2.4719212", - "x2": "5.6080947", - "y1": "4.8826461", - "y2": "4.8826461" - } - ], - "id": "defs2", - "name": "defs2", - "type": "defs" - }, - { - "elements": [ - { - "elements": [ - { - "fill": { - "opacity": "1", - "url": "url(#linearGradient3055)" - }, - "id": "tspan1453", - "name": "tspan1453", - "stroke": { - "dasharray": "none", - "width": "0.724446" - }, - "text": "P", - "type": "tspan", - "x": "0.99078566", - "y": "9.0214157" - } - ], - "fill": { - "opacity": "1", - "url": "url(#linearGradient3055)" - }, - "id": "text1455", - "name": "text1455", - "stroke": { - "dasharray": "none", - "linejoin": "round", - "paint": "#000000", - "width": "0.724446" - }, - "style": { - "InkscapeFontSpecification": "\u0027Arial Narrow, Normal\u0027", - "fontFamily": "\u0027Arial Narrow\u0027", - "fontSize": "9.7785px", - "paintOrder": "stroke fill markers" - }, - "text": "P", - "transform": "scale(0.98457515,1.0156665)", - "type": "text", - "x": "0.99078566", - "y": "9.0214157" - }, - { - "fill": { - "opacity": 1, - "paint": "#FF4747" - }, - "height": "11.216189", - "id": "rect5779", - "name": "rect5779", - "stroke": { - "dasharray": "none", - "linejoin": "round", - "paint": "#000000", - "width": "0.447246" - }, - "style": { - "paintOrder": "stroke fill markers" - }, - "type": "rect", - "width": "11.21619", - "x": "7.7715612e-16", - "y": "0" - }, - { - "d": "M 7.1327097,2.9635882 9.9122555,5.8103519 6.9937326,8.2419488", - "fill": { - "opacity": "0.0131332", - "paint": "#020101" - }, - "id": "path3213", - "name": "path3213", - "stroke": { - "dasharray": "none", - "linejoin": "round", - "paint": "#000000", - "width": "0.453321" - }, - "style": { - "paintOrder": "stroke fill markers" - }, - "type": "path" - } - ], - "id": "layer1", - "name": "layer1", - "type": "group" - } - ], - "viewBox": "0 0 11.21619 11.21619" - }, - "type": "ia.shapes.svg" - }, - { - "meta": { - "name": "PressureSwitch_2" - }, - "position": { - "height": 0.0213, - "width": 0.0099, - "x": 0.4766, - "y": 0.7213 - }, - "props": { - "elements": [ - { - "elements": [ - { - "elements": [ - { - "id": "stop1507", - "name": "stop1507", - "offset": "0", - "stopColor": "#020101", - "stopOpacity": "1", - "style": { - "stopColor": "#020101", - "stopOpacity": "1" - }, - "type": "stop" - } - ], - "id": "linearGradient1509", - "name": "linearGradient1509", - "type": "linearGradient" - }, - { - "gradientTransform": "matrix(1.0156665,0,0,0.98457489,-0.22712617,-0.22017344)", - "gradientUnits": "userSpaceOnUse", - "href": "#linearGradient1509", - "id": "linearGradient3055", - "name": "linearGradient3055", - "type": "linearGradient", - "x1": "2.4719212", - "x2": "5.6080947", - "y1": "4.8826461", - "y2": "4.8826461" - } - ], - "id": "defs2", - "name": "defs2", - "type": "defs" - }, - { - "elements": [ - { - "fill": { - "opacity": "0.0131332", - "paint": "#020101" - }, - "height": "11.216189", - "id": "rect5779", - "name": "rect5779", - "stroke": { - "dasharray": "none", - "linejoin": "round", - "paint": "#000000", - "width": 1.2 - }, - "style": { - "paintOrder": "stroke fill markers" - }, - "type": "rect", - "width": "11.21619", - "x": "7.7715612e-16", - "y": "0" - }, - { - "elements": [ - { - "fill": { - "opacity": "1", - "url": "url(#linearGradient3055)" - }, - "id": "tspan1453", - "name": "tspan1453", - "stroke": { - "dasharray": "none", - "width": "0.116835" - }, - "text": "P", - "type": "tspan", - "x": "0.99078566", - "y": "9.0214157" - } - ], - "fill": { - "opacity": "1", - "url": "blue" - }, - "id": "text1455", - "name": "text1455", - "stroke": { - "dasharray": "none", - "linejoin": "round", - "paint": "#000000", - "width": "0.116835" - }, - "style": { - "InkscapeFontSpecification": "\u0027Arial Narrow, Normal\u0027", - "fontFamily": "\u0027Arial Narrow\u0027", - "fontSize": "9.7785px", - "paintOrder": "stroke fill markers" - }, - "text": "P", - "transform": "scale(0.98457515,1.0156665)", - "type": "text", - "x": "0.99078566", - "y": "9.0214157" - }, - { - "d": "M 7.1327097,2.9635882 9.9122555,5.8103519 6.9937326,8.2419488", - "fill": { - "opacity": "0.0131332", - "paint": "#020101" - }, - "id": "path3213", - "name": "path3213", - "stroke": { - "dasharray": "none", - "linejoin": "round", - "paint": "#000000", - "width": "0.663625" - }, - "style": { - "paintOrder": "stroke fill markers" - }, - "type": "path" - } - ], - "id": "layer1", - "name": "layer1", - "transform": "translate(0.22362278,0.22362278)", - "type": "group" - } - ], - "viewBox": "0 0 11.663437 11.663435" - }, - "type": "ia.shapes.svg" - }, - { - "meta": { - "name": "test3" - }, - "position": { - "height": 0.0213, - "width": 0.0187, - "x": 0.4052, - "y": 0.7953 - }, - "props": { - "elements": [ - { - "id": "defs2", - "name": "defs2", - "type": "defs" - }, - { - "elements": [ - { - "elements": [ - { - "fill": { - "paint": "#000000" - }, - "id": "text2816", - "name": "text2816", - "stroke": { - "dasharray": "none", - "linejoin": "round", - "opacity": "1", - "paint": "#000000", - "width": 1 - }, - "style": { - "InkscapeFontSpecification": "\u0027Arial Narrow, Normal\u0027", - "fontFamily": "\u0027Arial Narrow\u0027", - "fontSize": "24.246px", - "paintOrder": "stroke fill markers" - }, - "text": "TEST", - "transform": "scale(0.95052221,1.0520533)", - "type": "text", - "x": "0.053112458", - "y": "29.578585" - } - ], - "id": "g2001", - "name": "g2001", - "transform": "matrix(0.26458333,0,0,0.26458333,2.0794599,4.809009)", - "type": "group" - } - ], - "id": "layer1", - "name": "layer1", - "transform": "translate(-1.9471683,-4.6767173)", - "type": "group" - } - ], - "style": { - "borderStyle": "solid", - "borderWidth": "1.5px" - }, - "viewBox": "0 0 12.964584 12.964583" - }, - "type": "ia.shapes.svg" - }, - { - "meta": { - "name": "Pressure" - }, - "position": { - "height": 0.0926, - "width": 0.0516, - "x": 0.5297, - "y": 0.2824 - }, - "props": { - "elements": [ - { - "name": "defs", - "type": "defs" - }, - { - "elements": [ - { - "fill": { - "paint": "red" - }, - "height": "30", - "name": "rect", - "stroke": { - "paint": "#FF0000" - }, - "type": "rect", - "width": "30", - "x": "0", - "y": "0" - }, - { - "name": "group", - "transform": "translate(-0.5 -0.5)", - "type": "group" - } - ], - "name": "group", - "type": "group" - } - ], - "style": { - "backgroundColor": " rgb(255, 255, 255)" - }, - "viewBox": "-0.5 -0.5 31 31" - }, - "type": "ia.shapes.svg" - }, - { - "meta": { - "name": "Pressure_0" - }, - "position": { - "height": 0.0287, - "width": 0.0161, - "x": 0.5729, - "y": 0.4787 - }, - "props": { - "elements": [ - { - "name": "defs", - "type": "defs" - }, - { - "elements": [ - { - "fill": { - "paint": "rgb(255, 255, 255)" - }, - "height": "30", - "name": "rect", - "stroke": { - "paint": "rgb(0, 0, 0)" - }, - "type": "rect", - "width": "30", - "x": "0", - "y": "0" - }, - { - "name": "group", - "transform": "translate(-0.5 -0.5)", - "type": "group" - } - ], - "name": "group", - "type": "group" - } - ], - "style": { - "backgroundColor": " rgb(255, 255, 255)" - }, - "viewBox": "-0.5 -0.5 31 31" - }, - "type": "ia.shapes.svg" - }, - { - "meta": { - "name": "Pressure_1" - }, - "position": { - "height": 0.0287, - "width": 0.0161, - "x": 0.5968, - "y": 0.5268 - }, - "props": { - "elements": [ - { - "id": "defs132", - "name": "defs132", - "type": "defs" - }, - { - "elements": [ - { - "fill": { - "paint": "#ffffff" - }, - "height": "30", - "id": "rect134", - "name": "rect134", - "stroke": { - "paint": "#000000" - }, - "type": "rect", - "width": "30", - "x": "0", - "y": "0" - }, - { - "id": "g140", - "name": "g140", - "transform": "translate(-0.5,-0.5)", - "type": "group" - } - ], - "id": "g142", - "name": "g142", - "type": "group" - } - ], - "viewBox": "-0.5 -0.5 31 31" - }, - "type": "ia.shapes.svg" - }, - { - "events": { - "component": { - "onActionPerformed": { - "config": { - "script": "\tdef getPresignedURL(self, objectKey):\n\t\t\"\"\"\n\t\tGenerates a uri to retrieve images from an S3 bucket.\n\t\tBucket names are globally unique so different regions \n\t\tmust use a prefix for the bucket name. \n\t\tRegion and prefix are stored as custom session variables.\n\t\t\n\t\t\tArgs:\n\t\t \tself: Refrence to the object calling the function.\n\t\t \tparam2: key to the s3 object returned.\n\t\t\n\t\t\tReturns:\n\t\t \ts3 Url to display the image in S3.\n\t\t\n\t\t\tRaises:\n\t\t \tKeyError: None.\n\t\t\"\"\"\n\t\timport com.amazonaws.services.s3.AmazonS3ClientBuilder as AmazonS3ClientBuilder\n\t\timport com.amazonaws.services.s3.model.GeneratePresignedUrlRequest as GeneratePresignedUrlRequest\n\t\timport com.amazonaws.HttpMethod as HttpMethod\n\t\t\n\t\tbucket_names \u003d {\"eu\":\"ignition-image-repo\", \"na\":\"na-ignition-image-repo\", \n\t\t\t\t\t\t\"jp\":\"jp-ignition-image-repo\"}\n\t\t\t\n\t\ttry:\n\t\t\tclientRegion \u003d self.session.custom.s3.region\n\t\t\tprefix \u003d self.session.custom.s3.prefix\n\t\texcept:\n\t\t\tclientRegion \u003d \"eu-west-1\"\n\t\t\tprefix \u003d \"eu\" \n\n\t\tif not clientRegion:\n\t\t\tclientRegion \u003d \"eu-west-1\";\n\t\t\n\t\tbucketName \u003d bucket_names.get(prefix, \"ignition-image-repo\")\n\t\tsystem.perspective.print(clientRegion)\n\t\tsystem.perspective.print(bucketName)\n\t\t\n\t\t\n\t\ts3Client \u003d AmazonS3ClientBuilder.standard().withRegion(clientRegion).build();\n\t\tgeneratePresignedUrlRequest \u003d GeneratePresignedUrlRequest(bucketName, objectKey).withMethod(HttpMethod.GET);\n\t\turl \u003d s3Client.generatePresignedUrl(generatePresignedUrlRequest);\n\t\t\n\t\treturn url\n\tgetPresignedURL(self, \"SCADA/CGN9/images/CGN9_V2.svg\")" - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "Button_4" - }, - "position": { - "height": 0.0315, - "width": 0.0417, - "x": 0.5516, - "y": 0.1463 - }, - "type": "ia.input.button" - }, - { - "events": { - "component": { - "onActionPerformed": { - "config": { - "script": "\n\tAWS.secrets_manager.get_secret(self)" - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "Button_5" - }, - "position": { - "height": 0.0315, - "width": 0.0417, - "x": 0.537, - "y": 0.2222 - }, - "type": "ia.input.button" - }, - { - "meta": { - "name": "chute" - }, - "position": { - "height": 0.0324, - "width": 0.0047, - "x": 0.6302, - "y": 0.6944 - }, - "props": { - "elements": [ - { - "id": "defs2", - "name": "defs2", - "type": "defs" - }, - { - "elements": [ - { - "fill": { - "opacity": "1", - "paint": "#ffffff" - }, - "height": "9.259264", - "id": "rect144", - "name": "rect144", - "stroke": { - "dasharray": "none", - "opacity": "1", - "paint": "#000000", - "width": "0.15" - }, - "type": "rect", - "width": "2.3794692", - "x": "0.0016391517", - "y": "1.0313853e-08" - } - ], - "id": "layer1", - "name": "layer1", - "type": "group" - } - ], - "viewBox": "0 0 2.3812499 9.2604166" - }, - "type": "ia.shapes.svg" - }, - { - "meta": { - "name": "Status" - }, - "position": { - "height": 0.0185, - "width": 0.0151, - "x": 0.0911, - "y": 0.5769 - }, - "props": { - "params": { - "directionLeft": false, - "tagProps": [ - "PLC24/0511_43_02", - "PLC02", - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value" - ] - }, - "path": "Symbol-Views/Equipment-Views/Status" - }, - "type": "ia.display.view" - }, - { - "events": { - "component": { - "onActionPerformed": { - "config": { - "script": "\tsystem.perspective.print(config.project_config.get_project_config())" - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "Button_6" - }, - "position": { - "height": 0.0315, - "width": 0.0417, - "x": 0.7234, - "y": 0.1704 - }, - "type": "ia.input.button" - }, - { - "meta": { - "name": "pointer_symbol_3" - }, - "position": { - "height": 0.0648, - "width": 0.026, - "x": 0.6281, - "y": 0.5963 - }, - "props": { - "elements": [ - { - "id": "defs2", - "name": "defs2", - "type": "defs" - }, - { - "elements": [ - { - "elements": [ - { - "elements": [ - { - "d": "m 10.648338,6.5392075 c 0,2.2076808 -1.7019291,4.4141715 -3.90961,4.4141715 -2.2076807,0 -4.0851094,-2.2064908 -4.0851094,-4.4141715 -1e-7,-2.2076807 1.7896788,-3.9973596 3.9973595,-3.9973596 2.2076809,-2e-7 3.9973599,1.7896787 3.9973599,3.9973596 z", - "fill": { - "opacity": "1", - "paint": "transparent" - }, - "id": "path7858", - "name": "path7858", - "stroke": { - "dasharray": "none", - "opacity": "1", - "paint": "#000000", - "width": "0.523875" - }, - "style": { - "color": "#000000" - }, - "type": "path" - }, - { - "d": "m 6.6503906,0.5703125 c -3.2732983,0 -5.96874998,2.6954516 -5.96874998,5.96875 0,3.2732984 6.23199968,11.0143705 6.23199968,11.0143705 0,0 5.7055007,-7.7410721 5.7055007,-11.0143705 0,-3.2732984 -2.695452,-5.96875 -5.9687504,-5.96875 z m 0,3.9433594 c 1.1420587,0 2.0253907,0.883332 2.0253907,2.0253906 0,1.1420586 -0.883332,2.0253906 -2.0253907,2.0253906 C 5.508332,8.5644531 4.625,7.6811211 4.625,6.5390625 4.625,5.3970039 5.508332,4.5136719 6.6503906,4.5136719 Z", - "fill": { - "opacity": "1", - "paint": "#000000" - }, - "id": "path7860", - "name": "path7860", - "stroke": { - "dasharray": "none", - "opacity": "1", - "paint": "#000000", - "width": "0.523875" - }, - "style": { - "color": "#000000" - }, - "type": "path" - } - ], - "fill": { - "opacity": "1", - "paint": "transparent" - }, - "id": "path7854", - "name": "path7854", - "stroke": { - "dasharray": "none", - "opacity": "1", - "paint": "#000000", - "width": "0.523875" - }, - "type": "group" - } - ], - "id": "path4106", - "name": "path4106", - "type": "group" - } - ], - "id": "layer1", - "name": "layer1", - "type": "group" - } - ], - "viewBox": "0 0 13.229166 18.520834" - }, - "type": "ia.shapes.svg" - }, - { - "meta": { - "name": "Icon" - }, - "position": { - "height": 0.0278, - "width": 0.0156, - "x": 0.4068, - "y": 0.3102 - }, - "props": { - "path": "material/hourglass_empty", - "style": { - "classes": "rotate" - } - }, - "type": "ia.display.icon" - } - ], - "meta": { - "name": "root" - }, - "position": { - "x": -0.125, - "y": 0.0278 - }, - "props": { - "mode": "percent" - }, - "type": "ia.container.coord" - } -} \ No newline at end of file diff --git a/.resources/dddacd81249cbd62b7d5a605e7babab581f1050076461635bec9d67b9da180c2 b/.resources/dddacd81249cbd62b7d5a605e7babab581f1050076461635bec9d67b9da180c2 new file mode 100644 index 00000000..2cb4b58d --- /dev/null +++ b/.resources/dddacd81249cbd62b7d5a605e7babab581f1050076461635bec9d67b9da180c2 @@ -0,0 +1,718 @@ +{ + "custom": { + "dpm1-dpm2": false, + "dpm2-dpm3": false, + "dpm3-dpm4": false, + "dpm4-dpm5": false, + "dpm5-mcm": false, + "mcm-dpm1": false + }, + "params": { + "tagProps": [ + "DPM0_TAG", + "DPM1_TAG", + "DPM2_TAG", + "DPM3_TAG", + "DPM4_TAG", + "DPM5_TAG" + ] + }, + "propConfig": { + "custom.dpm1-dpm2": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "1": "{view.params.tagProps[1]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{1}/STATE" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},1)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": 0, + "output": true + }, + { + "input": 1, + "output": false + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + }, + "persistent": true + }, + "custom.dpm2-dpm3": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "2": "{view.params.tagProps[2]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{2}/STATE" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},1)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": 0, + "output": true + }, + { + "input": 1, + "output": false + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + }, + "persistent": true + }, + "custom.dpm3-dpm4": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "3": "{view.params.tagProps[3]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{3}/STATE" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},1)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": 0, + "output": true + }, + { + "input": 1, + "output": false + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + }, + "persistent": true + }, + "custom.dpm4-dpm5": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "4": "{view.params.tagProps[4]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{4}/STATE" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},1)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": 0, + "output": true + }, + { + "input": 1, + "output": false + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + }, + "persistent": true + }, + "custom.dpm5-mcm": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "5": "{view.params.tagProps[5]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{5}/STATE" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},1)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": 0, + "output": true + }, + { + "input": 1, + "output": false + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + }, + "persistent": true + }, + "custom.mcm-dpm1": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[0]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/STATE" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},1)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": 0, + "output": true + }, + { + "input": 1, + "output": false + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + }, + "persistent": true + }, + "params.tagProps": { + "paramDirection": "input", + "persistent": true + } + }, + "props": { + "defaultSize": { + "height": 894, + "width": 1920 + } + }, + "root": { + "children": [ + { + "events": { + "dom": { + "onClick": { + "config": { + "script": "\tself.session.custom.dpm_view_path \u003d self.props.params.view\n\tself.session.custom.show_dpm_device_view \u003d True" + }, + "scope": "G", + "type": "script" + } + } + }, + "meta": { + "name": "MCM" + }, + "position": { + "height": 0.5, + "width": 0.3333, + "x": 0.6666, + "y": 0.5 + }, + "propConfig": { + "props.params.InOn": { + "binding": { + "config": { + "path": "view.custom.dpm5-mcm" + }, + "type": "property" + } + }, + "props.params.OutOn": { + "binding": { + "config": { + "path": "view.custom.mcm-dpm1" + }, + "type": "property" + } + } + }, + "props": { + "params": { + "InDown": false, + "InLeft": true, + "InUp": false, + "OutDown": false, + "OutRight": false, + "OutUp": true + }, + "path": "Windows/Tabs/Enternet Windows/Components/EN4TR" + }, + "type": "ia.display.view" + }, + { + "events": { + "dom": { + "onClick": { + "config": { + "script": "\tself.session.custom.dpm_view_path \u003d self.props.params.view\n\tself.session.custom.show_dpm_device_view \u003d True" + }, + "scope": "G", + "type": "script" + } + } + }, + "meta": { + "name": "DPM1_PS1-1" + }, + "position": { + "height": 0.5, + "width": 0.3333, + "x": 0.6666 + }, + "propConfig": { + "props.params.DownOn": { + "binding": { + "config": { + "path": "view.custom.mcm-dpm1" + }, + "type": "property" + } + }, + "props.params.InOn": { + "binding": { + "config": { + "path": "view.custom.dpm1-dpm2" + }, + "type": "property" + } + }, + "props.params.OutOn": { + "binding": { + "config": { + "path": "view.custom.mcm-dpm1" + }, + "type": "property" + } + } + }, + "props": { + "params": { + "Down1": false, + "Down2": false, + "Down3": true, + "DownLeft": false, + "DownRight": false, + "InDown": false, + "InLeft": true, + "InUp": false, + "OutDown": true, + "OutRight": false, + "OutUp": false, + "view": "Windows/Tabs/Enternet Windows/DPMs/DPM Devices/MCM02/DPM1_PS1-1" + }, + "path": "Windows/Tabs/Enternet Windows/Components/DPM_BLOCK" + }, + "type": "ia.display.view" + }, + { + "events": { + "dom": { + "onClick": { + "config": { + "script": "\tself.session.custom.dpm_view_path \u003d self.props.params.view\n\tself.session.custom.show_dpm_device_view \u003d True" + }, + "scope": "G", + "type": "script" + } + } + }, + "meta": { + "name": "DPM2_PS1-1" + }, + "position": { + "height": 0.5, + "width": 0.3333, + "x": 0.3333 + }, + "propConfig": { + "props.params.InOn": { + "binding": { + "config": { + "path": "view.custom.dpm2-dpm3" + }, + "type": "property" + } + }, + "props.params.OutOn": { + "binding": { + "config": { + "path": "view.custom.dpm1-dpm2" + }, + "type": "property" + } + } + }, + "props": { + "params": { + "Down1": false, + "Down2": false, + "Down3": false, + "DownLeft": false, + "DownOn": false, + "DownRight": false, + "InDown": false, + "InLeft": true, + "InUp": false, + "OutDown": false, + "OutRight": true, + "OutUp": false, + "view": "Windows/Tabs/Enternet Windows/DPMs/DPM Devices/MCM02/DPM2_PS1-1" + }, + "path": "Windows/Tabs/Enternet Windows/Components/DPM_BLOCK" + }, + "type": "ia.display.view" + }, + { + "events": { + "dom": { + "onClick": { + "config": { + "script": "\tself.session.custom.dpm_view_path \u003d self.props.params.view\n\tself.session.custom.show_dpm_device_view \u003d True" + }, + "scope": "G", + "type": "script" + } + } + }, + "meta": { + "name": "DPM1_PS2-1" + }, + "position": { + "height": 0.5, + "width": 0.3333 + }, + "propConfig": { + "props.params.DownOn": { + "binding": { + "config": { + "path": "view.custom.dpm3-dpm4" + }, + "type": "property" + } + }, + "props.params.InOn": { + "binding": { + "config": { + "path": "view.custom.dpm3-dpm4" + }, + "type": "property" + } + }, + "props.params.OutOn": { + "binding": { + "config": { + "path": "view.custom.dpm2-dpm3" + }, + "type": "property" + } + } + }, + "props": { + "params": { + "Down1": false, + "Down2": true, + "Down3": false, + "DownLeft": false, + "DownRight": false, + "InDown": true, + "InLeft": false, + "InUp": false, + "OutDown": false, + "OutRight": true, + "OutUp": false, + "view": "Windows/Tabs/Enternet Windows/DPMs/DPM Devices/MCM02/DPM1_PS2-1" + }, + "path": "Windows/Tabs/Enternet Windows/Components/DPM_BLOCK" + }, + "type": "ia.display.view" + }, + { + "events": { + "dom": { + "onClick": { + "config": { + "script": "\tself.session.custom.dpm_view_path \u003d self.props.params.view\n\tself.session.custom.show_dpm_device_view \u003d True" + }, + "scope": "G", + "type": "script" + } + } + }, + "meta": { + "name": "DPM2_PS2-1" + }, + "position": { + "height": 0.5, + "width": 0.3333, + "y": 0.5 + }, + "propConfig": { + "props.params.InOn": { + "binding": { + "config": { + "path": "view.custom.dpm3-dpm4" + }, + "type": "property" + } + }, + "props.params.OutOn": { + "binding": { + "config": { + "path": "view.custom.dpm4-dpm5" + }, + "type": "property" + } + } + }, + "props": { + "params": { + "Down1": false, + "Down2": false, + "Down3": false, + "DownLeft": false, + "DownOn": false, + "DownRight": false, + "InDown": false, + "InLeft": false, + "InUp": true, + "OutDown": false, + "OutRight": true, + "OutUp": false, + "view": "Windows/Tabs/Enternet Windows/DPMs/DPM Devices/MCM02/DPM2_PS2-1" + }, + "path": "Windows/Tabs/Enternet Windows/Components/DPM_BLOCK" + }, + "type": "ia.display.view" + }, + { + "events": { + "dom": { + "onClick": { + "config": { + "script": "\tself.session.custom.dpm_view_path \u003d self.props.params.view\n\tself.session.custom.show_dpm_device_view \u003d True" + }, + "scope": "G", + "type": "script" + } + } + }, + "meta": { + "name": "DPM1_PS1-4" + }, + "position": { + "height": 0.5, + "width": 0.3333, + "x": 0.3333, + "y": 0.5 + }, + "propConfig": { + "props.params.InOn": { + "binding": { + "config": { + "path": "view.custom.dpm4-dpm5" + }, + "type": "property" + } + }, + "props.params.OutOn": { + "binding": { + "config": { + "path": "view.custom.dpm5-mcm" + }, + "type": "property" + } + } + }, + "props": { + "params": { + "Down1": false, + "Down2": false, + "Down3": false, + "DownLeft": false, + "DownOn": false, + "DownRight": false, + "InDown": false, + "InLeft": true, + "InUp": false, + "OutDown": false, + "OutRight": true, + "OutUp": false, + "view": "Windows/Tabs/Enternet Windows/DPMs/DPM Devices/MCM02/DPM1_PS1-4" + }, + "path": "Windows/Tabs/Enternet Windows/Components/DPM_BLOCK" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "DPM1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.65, + "y": 0.1 + }, + "props": { + "text": "DPM1_PS1-1 11.200.1.2", + "textStyle": { + "fontSize": "1vmin" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "DPM2_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.32, + "y": 0.1 + }, + "props": { + "text": "DPM2_PS1-1 11.200.1.3", + "textStyle": { + "fontSize": "1vmin" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "DPM3_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.005, + "y": 0.1 + }, + "props": { + "text": "DPM1_PS2-1 11.200.1.4", + "textStyle": { + "fontSize": "1vmin" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "DPM4_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.005, + "y": 0.6 + }, + "props": { + "text": "DPM2_PS2-1 11.200.1.5", + "textStyle": { + "fontSize": "1vmin" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "DPM5_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.32, + "y": 0.6 + }, + "props": { + "text": "DPM1_PS1-4 11.200.1.6", + "textStyle": { + "fontSize": "1vmin" + } + }, + "type": "ia.display.label" + } + ], + "meta": { + "name": "root" + }, + "position": { + "x": 120, + "y": -723 + }, + "props": { + "mode": "percent", + "style": { + "backgroundColor": "#ffffff" + } + }, + "type": "ia.container.coord" + } +} \ No newline at end of file diff --git a/.resources/de3137a4eca4cc2371a89ef68aa0044bea76a329b07d84ba6ec32e4ac8ef821a b/.resources/de3137a4eca4cc2371a89ef68aa0044bea76a329b07d84ba6ec32e4ac8ef821a deleted file mode 100644 index 68b36c5c..00000000 --- a/.resources/de3137a4eca4cc2371a89ef68aa0044bea76a329b07d84ba6ec32e4ac8ef821a +++ /dev/null @@ -1,932 +0,0 @@ -{ - "custom": { - "alarm_message": null, - "covert_mode": true, - "disconnected": false, - "display_icon": true, - "error": false, - "isMatch": 0, - "plc": "value", - "priority": 0, - "priority_string": "No active alarms", - "running": false, - "searchId": "value", - "show_error": false, - "show_running": true, - "state": 5, - "state_string": "Unknown", - "visible_status": false - }, - "params": { - "directionDown": false, - "forceFaultStatus": null, - "forceRunningStatus": null, - "tagProps": [ - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value" - ] - }, - "propConfig": { - "custom.alarm_message": { - "persistent": true - }, - "custom.covert_mode": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case(\t{value},\r\n\t\t0, {session.custom.alarm_filter.show_running},\r\n\t\t1, True,\r\n\t\t2, True,\r\n\t\t3, {session.custom.alarm_filter.show_low_alarm} || {session.custom.alarm_filter.show_running},\r\n\t\t4, {session.custom.alarm_filter.show_diagnostic} || {session.custom.alarm_filter.show_running},\r\n\t\t5, {session.custom.alarm_filter.show_running},\r\n\t\tFalse)", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.disconnected": { - "binding": { - "config": { - "fallbackDelay": 2.5, - "mode": "indirect", - "references": { - "fc": "{session.custom.fc}", - "plc": "{view.custom.plc}" - }, - "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{plc}/DCN" - }, - "transforms": [ - { - "expression": "if(isNull({value}), False, {value})", - "type": "expression" - } - ], - "type": "tag" - }, - "persistent": true - }, - "custom.display_icon": { - "binding": { - "config": { - "expression": "{this.custom.covert_mode}||{this.custom.isMatch}\u003e0" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.error": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "0 \u003c {value} \u0026\u0026 {value} \u003c 5", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.isMatch": { - "binding": { - "config": { - "expression": "if({view.params.tagProps[0]}\u003d\"value\",0,\nif({this.custom.searchId}\u003d{view.params.tagProps[0]},100,0))" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.plc": { - "binding": { - "config": { - "path": "view.params.tagProps[0]" - }, - "transforms": [ - { - "expression": "split({value}, \"/\")[0]", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.priority": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "fallback": 0, - "inputType": "scalar", - "mappings": [ - { - "input": 1, - "output": 4 - }, - { - "input": 2, - "output": 3 - }, - { - "input": 3, - "output": 2 - }, - { - "input": 4, - "output": 1 - } - ], - "outputType": "scalar", - "type": "map" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.priority_string": { - "binding": { - "config": { - "expression": "case({view.custom.state},\r\n1, \"High\",\r\n2, \"Medium\",\r\n3, \"Low\",\r\n4, \"Diagnostic\",\r\n5, \"No active alarms\",\r\n\"Unknown\")" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.running": { - "binding": { - "config": { - "expression": "{view.custom.running_status} \u003d 3" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.running_status": { - "binding": { - "config": { - "fallbackDelay": 2.5, - "mode": "indirect", - "references": { - "0": "{view.params.tagProps[0]}", - "fc": "{session.custom.fc}" - }, - "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/STATE" - }, - "transforms": [ - { - "expression": "coalesce({value},{view.params.forceRunningStatus},0)", - "type": "expression" - } - ], - "type": "tag" - } - }, - "custom.searchId": { - "binding": { - "config": { - "path": "session.custom.searchId" - }, - "type": "property" - }, - "persistent": true - }, - "custom.show_error": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case(\t{value},\r\n\t\t1, True,\r\n\t\t2, True,\r\n\t\t3, {session.custom.alarm_filter.show_low_alarm} || {view.custom.isMatch}\u003e0,\r\n\t\t4, {session.custom.alarm_filter.show_diagnostic} || {view.custom.isMatch}\u003e0,\r\n\t\tFalse)", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.show_running": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case(\t{value},\r\n\t\t1, False,\r\n\t\t2, False,\r\n\t\t{session.custom.alarm_filter.show_running}\r\n\t\t)", - "type": "expression" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.state": { - "binding": { - "config": { - "fallbackDelay": 2.5, - "mode": "indirect", - "references": { - "0": "{view.params.tagProps[0]}", - "fc": "{session.custom.fc}" - }, - "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/ALARMST" - }, - "transforms": [ - { - "expression": "coalesce({value},{view.params.forceFaultStatus},0)", - "type": "expression" - }, - { - "fallback": null, - "inputType": "scalar", - "mappings": [ - { - "input": 4, - "output": 1 - }, - { - "input": 3, - "output": 2 - }, - { - "input": 2, - "output": 3 - }, - { - "input": 1, - "output": 4 - }, - { - "input": 0, - "output": 5 - } - ], - "outputType": "scalar", - "type": "map" - } - ], - "type": "tag" - }, - "persistent": true - }, - "custom.state_string": { - "binding": { - "config": { - "expression": "case({view.custom.running_status},\r\n1, \"Faulted\",\r\n2, \"Stopped\",\r\n3, \"Running\",\r\n\"Unknown\")" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.visible_status": { - "binding": { - "config": { - "expression": "{view.custom.state} !\u003d 5" - }, - "type": "expr" - }, - "persistent": true - }, - "params.directionDown": { - "paramDirection": "input", - "persistent": true - }, - "params.forceFaultStatus": { - "paramDirection": "input", - "persistent": true - }, - "params.forceRunningStatus": { - "paramDirection": "input", - "persistent": true - }, - "params.tagProps": { - "paramDirection": "inout", - "persistent": true - } - }, - "props": { - "defaultSize": { - "height": 29, - "width": 20 - } - }, - "root": { - "children": [ - { - "meta": { - "name": "ErrorStatus", - "tooltip": { - "style": { - "fontSize": 16 - } - } - }, - "position": { - "grow": 1 - }, - "propConfig": { - "meta.visible": { - "binding": { - "config": { - "expression": "{view.custom.display_icon} \u0026\u0026 {view.custom.error} \u0026! {view.params.directionDown}" - }, - "type": "expr" - } - }, - "position.display": { - "binding": { - "config": { - "expression": "{view.custom.display_icon} \u0026\u0026 {view.custom.error} \u0026! {view.params.directionDown} \u0026\u0026 {view.custom.show_error}" - }, - "type": "expr" - } - }, - "props.elements[0].fill.paint": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "if({session.custom.colours}[\"state\"+{value}] \u003d null, \r\n{session.custom.colours}[\"Fallback\"],\r\n{session.custom.colours}[\"state\"+{value}])", - "type": "expression" - } - ], - "type": "property" - } - }, - "props.elements[1].fill.paint": { - "binding": { - "config": { - "path": "view.custom.running_status" - }, - "transforms": [ - { - "expression": "case(\t{value}, \r\n\t\t1, {session.custom.colours.state0},\r\n\t\t2, {session.custom.colours.state0},\r\n\t\t3, {session.custom.colours.state5},\r\n\t\t\u0027#000000\u0027\r\n\t)", - "type": "expression" - }, - { - "expression": "if({session.custom.alarm_filter.show_running},{value},{value}+\u002700\u0027)", - "type": "expression" - } - ], - "type": "property" - } - }, - "props.elements[1].stroke.width": { - "binding": { - "config": { - "expression": "if({session.custom.alarm_filter.show_running},2,0)" - }, - "type": "expr" - } - }, - "props.elements[2].fill": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "if({session.custom.colours.colour_impaired}, \r\n\tcase(\t{value},\r\n\t\t\t1,\u0027#FFFFFF\u0027,\r\n\t\t\t2,\u0027#FFFFFF\u0027,\r\n\t\t\t3,\u0027#000000\u0027,\r\n\t\t\t4,\u0027#000000\u0027,\r\n\t\t\t\u0027#000000\u0027),\r\n\tcase(\t{value},\r\n\t\t\t1,\u0027#FFFFFF\u0027,\r\n\t\t\t2,\u0027#000000\u0027,\r\n\t\t\t3,\u0027#000000\u0027,\r\n\t\t\t4,\u0027#FFFFFF\u0027,\r\n\t\t\t\u0027#000000\u0027)\r\n\t)", - "type": "expression" - } - ], - "type": "property" - } - }, - "props.elements[2].text": { - "binding": { - "config": { - "path": "view.custom.priority" - }, - "type": "property" - } - } - }, - "props": { - "elements": [ - { - "d": "M 31,26 C 41,36 51,46 61,56 51,66 41,76 31,86 21,76 11,66 1,56 11,46 21,36 31,26 Z", - "fill": {}, - "name": "path", - "stroke": { - "paint": "#000000", - "width": 2 - }, - "type": "path" - }, - { - "d": "M 61,50 C 61,43.346667 61,36.693333 61,30.04 51,20.026667 41,10.013333 31,0 21,10.013333 11,20.026667 1,30.04 1,36.693333 1,43.346667 1,50 11,40.013333 21,30.026667 31,20.04 41,30.026667 51,40.013333 61,50 Z", - "fill": {}, - "name": "path", - "stroke": { - "paint": "#000000" - }, - "type": "path" - }, - { - "style": { - "classes": "", - "fontSize": 42, - "fontWeight": "bolder" - }, - "type": "text", - "x": 20, - "y": 70 - } - ], - "style": { - "overflow": "hidden" - }, - "viewBox": "-0.5 -0.5 64 89" - }, - "type": "ia.shapes.svg" - }, - { - "meta": { - "name": "ErrorStatus_Down" - }, - "position": { - "grow": 1 - }, - "propConfig": { - "meta.visible": { - "binding": { - "config": { - "expression": "{view.custom.display_icon} \u0026\u0026 {view.custom.error} \u0026\u0026 {view.params.directionDown}" - }, - "type": "expr" - } - }, - "position.display": { - "binding": { - "config": { - "expression": "{view.custom.display_icon} \u0026\u0026 {view.custom.error} \u0026\u0026 {view.params.directionDown} \u0026\u0026 {view.custom.show_error}" - }, - "type": "expr" - } - }, - "props.elements[0].fill.paint": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "if({session.custom.colours}[\"state\"+{value}] \u003d null, \r\n{session.custom.colours}[\"Fallback\"],\r\n{session.custom.colours}[\"state\"+{value}])", - "type": "expression" - } - ], - "type": "property" - } - }, - "props.elements[1].fill.paint": { - "binding": { - "config": { - "path": "view.custom.running_status" - }, - "transforms": [ - { - "expression": "case(\t{value}, \r\n\t\t1, {session.custom.colours.state0},\r\n\t\t2, {session.custom.colours.state0},\r\n\t\t3, {session.custom.colours.state5},\r\n\t\t\u0027#000000\u0027\r\n\t)", - "type": "expression" - }, - { - "expression": "if({session.custom.alarm_filter.show_running},{value},{value}+\u002700\u0027)", - "type": "expression" - } - ], - "type": "property" - } - }, - "props.elements[1].stroke.width": { - "binding": { - "config": { - "expression": "if({session.custom.alarm_filter.show_running},2,0)" - }, - "type": "expr" - } - }, - "props.elements[2].fill": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "if({session.custom.colours.colour_impaired}, \r\n\tcase(\t{value},\r\n\t\t\t1,\u0027#FFFFFF\u0027,\r\n\t\t\t2,\u0027#FFFFFF\u0027,\r\n\t\t\t3,\u0027#000000\u0027,\r\n\t\t\t4,\u0027#000000\u0027,\r\n\t\t\t\u0027#000000\u0027),\r\n\tcase(\t{value},\r\n\t\t\t1,\u0027#FFFFFF\u0027,\r\n\t\t\t2,\u0027#000000\u0027,\r\n\t\t\t3,\u0027#000000\u0027,\r\n\t\t\t4,\u0027#FFFFFF\u0027,\r\n\t\t\t\u0027#000000\u0027)\r\n\t)", - "type": "expression" - } - ], - "type": "property" - } - }, - "props.elements[2].text": { - "binding": { - "config": { - "path": "view.custom.priority" - }, - "type": "property" - } - } - }, - "props": { - "elements": [ - { - "d": "M 32,2 C 42,12 52,22 62,32 52,42 42,52 32,62 22,52 12,42 2,32 12,22 22,12 32,2 Z", - "fill": {}, - "name": "path", - "stroke": { - "paint": "#000000", - "width": 2 - }, - "type": "path" - }, - { - "d": "M 2,38 C 2,44.653333 2,51.306667 2,57.96 12,67.973333 22,77.986667 32,88 42,77.986667 52,67.973333 62,57.96 62,51.306667 62,44.653333 62,38 52,47.986667 42,57.973333 32,67.96 22,57.973333 12,47.986667 2,38 Z", - "fill": {}, - "name": "path", - "stroke": { - "paint": "#000000" - }, - "type": "path" - }, - { - "style": { - "classes": "", - "fontSize": 42, - "fontWeight": "bolder", - "textOrientation": "upright", - "writingMode": "horizontal-tb" - }, - "type": "text", - "x": 20, - "y": 44.5 - } - ], - "style": { - "overflow": "hidden" - }, - "viewBox": "-0.5 -0.5 65 89" - }, - "type": "ia.shapes.svg" - }, - { - "meta": { - "name": "RunningStatus" - }, - "position": { - "grow": 1 - }, - "propConfig": { - "position.display": { - "binding": { - "config": { - "expression": "if((({view.custom.display_icon} \u0026\u0026 !{view.custom.error}) || ({view.custom.show_running} \u0026! {view.custom.show_error})) \u0026! {view.params.directionDown},True,False)" - }, - "type": "expr" - } - }, - "position.rotate.angle": { - "binding": { - "config": { - "path": "view.params.directionLeft" - }, - "transforms": [ - { - "expression": "if({value}, \u0027180deg\u0027, \u00270deg\u0027)", - "type": "expression" - } - ], - "type": "property" - } - }, - "props.elements[0].fill.paint": { - "binding": { - "config": { - "path": "view.custom.running_status" - }, - "transforms": [ - { - "expression": "case(\t{value}, \r\n\t\t1, {session.custom.colours.state0},\r\n\t\t2, {session.custom.colours.state0},\r\n\t\t3, {session.custom.colours.state5},\r\n\t\t\u0027#000000\u0027\r\n\t)\r\n\t\t\r\n", - "type": "expression" - } - ], - "type": "property" - } - } - }, - "props": { - "elements": [ - { - "d": "M 0,70 C 0,56.666667 0,43.333333 0,30 10,20 20,10 30,0 40,10 50,20 60,30 60,43.333333 60,56.666667 60,70 50,60 40,50 30,40 20,50 10,60 0,70 Z", - "fill": {}, - "name": "path", - "stroke": { - "paint": "#4c4c4c", - "width": "2" - }, - "type": "path" - } - ], - "style": { - "overflow": "hidden" - }, - "viewBox": "-0.5 -0.5 61 71" - }, - "type": "ia.shapes.svg" - }, - { - "meta": { - "name": "RunningStatus_Down" - }, - "position": { - "grow": 1 - }, - "propConfig": { - "position.display": { - "binding": { - "config": { - "expression": "if((({view.custom.display_icon} \u0026\u0026 !{view.custom.error}) || ({view.custom.show_running} \u0026! {view.custom.show_error})) \u0026\u0026 {view.params.directionDown},True,False)" - }, - "type": "expr" - } - }, - "position.rotate.angle": { - "binding": { - "config": { - "path": "view.params.directionLeft" - }, - "transforms": [ - { - "expression": "if({value}, \u0027180deg\u0027, \u00270deg\u0027)", - "type": "expression" - } - ], - "type": "property" - } - }, - "props.elements[0].fill.paint": { - "binding": { - "config": { - "path": "view.custom.running_status" - }, - "transforms": [ - { - "expression": "case(\t{value}, \r\n\t\t1, {session.custom.colours.state0},\r\n\t\t2, {session.custom.colours.state0},\r\n\t\t3, {session.custom.colours.state5},\r\n\t\t\u0027#000000\u0027\r\n\t)\r\n\t\t\r\n", - "type": "expression" - } - ], - "type": "property" - } - } - }, - "props": { - "elements": [ - { - "d": "m 60,0 c 0,13.333333 0,26.666667 0,40 C 50,50 40,60 30,70 20,60 10,50 0,40 0,26.666667 0,13.333333 0,0 10,10 20,20 30,30 40,20 50,10 60,0 Z", - "fill": {}, - "name": "path", - "stroke": { - "paint": "#4c4c4c", - "width": "2" - }, - "type": "path" - } - ], - "style": { - "overflow": "hidden" - }, - "viewBox": "-0.5 -0.5 61 71" - }, - "type": "ia.shapes.svg" - } - ], - "events": { - "dom": { - "onClick": { - "config": { - "script": "\tsystem.perspective.openDock(\u0027Docked-East\u0027,params\u003d{\u0027tagProps\u0027:self.view.params.tagProps})" - }, - "scope": "G", - "type": "script" - }, - "onDoubleClick": { - "config": { - "script": "\ttagProps \u003d self.view.params.tagProps\n\tsystem.perspective.openPopup(\"StatusPopUP\", \"PopUp-Views/Controller-Equipment/Information\", params \u003d{\"tagProps\":tagProps})\n\t" - }, - "enabled": false, - "scope": "G", - "type": "script" - }, - "onMouseEnter": { - "config": { - "script": "\tfrom time import sleep\n\t\n\talarm \u003d []\n\tmessage \u003d None\n\t\n\tsleep(0.5)\n\t\n\tif system.tag.exists(\"System/aws_data\"):\n\t\tif self.view.params.tagProps[0] !\u003d \"\":\n\t\t\ttags_to_read \u003d system.tag.readBlocking(\"System/aws_data\")\n\t\t\tdecode_alarm_data \u003d system.util.jsonDecode(tags_to_read[0].value)\n\t\t\talarm \u003d [decode_alarm_data[i] for i in decode_alarm_data\n\t\t\t\t\tif decode_alarm_data[i][\u0027sourceId\u0027].startswith(self.view.params.tagProps[0])]\n\t\tif alarm:\n\t\t\talarm \u003d sorted(alarm, key \u003d lambda t:t[\u0027timestamp\u0027], reverse\u003dTrue)\n\t\t\tmessage \u003d max(alarm, key \u003d lambda p:p[\u0027priority\u0027]).get(\u0027message\u0027)\n\t\t\tif len(alarm) \u003e 1:\n\t\t\t\tmessage +\u003d \" (+\" + str(len(alarm)-1) + \")\"\n\tself.view.custom.alarm_message \u003d message" - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "root", - "tooltip": { - "enabled": true, - "location": "top-left", - "style": {} - } - }, - "propConfig": { - "meta.tooltip.style.backgroundColor": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "case({value},\r\n0,{session.custom.colours.state0},\r\n1,{session.custom.colours.state1},\r\n2,{session.custom.colours.state2},\r\n3,{session.custom.colours.state3},\r\n4,{session.custom.colours.state4},\r\n5,{session.custom.colours.state5},\r\n6,{session.custom.colours.state6},\r\n{session.custom.colours.fallback}\r\n)", - "type": "expression" - } - ], - "type": "property" - } - }, - "meta.tooltip.style.classes": { - "binding": { - "config": { - "expression": "{view.custom.priority}" - }, - "transforms": [ - { - "fallback": "Alarms-Styles/NoAlarm", - "inputType": "scalar", - "mappings": [ - { - "input": 1, - "output": "Alarms-Styles/Diagnostic" - }, - { - "input": 2, - "output": "Alarms-Styles/Low" - }, - { - "input": 3, - "output": "Alarms-Styles/Medium" - }, - { - "input": 4, - "output": "Alarms-Styles/High" - } - ], - "outputType": "style-list", - "type": "map" - } - ], - "type": "expr" - } - }, - "meta.tooltip.style.color": { - "binding": { - "config": { - "path": "view.custom.state" - }, - "transforms": [ - { - "expression": "if({session.custom.colours.colour_impaired},\r\n\t\u0027#000000\u0027,\r\n\tcase(\t{value},\r\n\t\t\t1,\u0027#FFFFFF\u0027,\r\n\t\t\t2,\u0027#000000\u0027,\r\n\t\t\t3,\u0027#000000\u0027,\r\n\t\t\t4,\u0027#FFFFFF\u0027,\r\n\t\t\t5,\u0027#FFFFFF\u0027,\r\n\t\t\t\u0027#000000\u0027)\r\n\t)", - "type": "expression" - } - ], - "type": "property" - } - }, - "meta.tooltip.text": { - "binding": { - "config": { - "expression": "if({view.custom.disconnected} \u003d False,\n\tif(isNull({view.custom.alarm_message}),\n\t\"Source Id: \" + {view.params.tagProps[0]} +\n\t\", Priority: \" + {view.custom.priority_string} +\n\t\", State: \" + {view.custom.state_string},\n\t\"Source Id: \" + {view.params.tagProps[0]} +\n\t\", Alarm: \" + {view.custom.alarm_message} +\n\t\", Priority: \" + {view.custom.priority_string} +\n\t\", State: \" + {view.custom.state_string}),\n\"Source Id: \" +{view.params.tagProps[0]} + \", Priority: Unknown, State: Unknown\")" - }, - "type": "expr" - } - }, - "meta.visible": { - "binding": { - "config": { - "path": "view.custom.display_icon" - }, - "type": "property" - } - }, - "props.style.borderStyle": { - "binding": { - "config": { - "path": "view.custom.disconnected" - }, - "transforms": [ - { - "fallback": "", - "inputType": "scalar", - "mappings": [ - { - "input": true, - "output": "solid" - }, - { - "input": false, - "output": "none" - } - ], - "outputType": "scalar", - "type": "map" - } - ], - "type": "property" - } - }, - "props.style.classes": { - "binding": { - "config": { - "expression": "if({session.custom.colours.colour_impaired} \u003d True \u0026\u0026 {view.custom.isMatch} \u003e 0,\r\n{view.custom.state} + 100 + {view.custom.isMatch},\r\n{view.custom.state} + {view.custom.isMatch})" - }, - "transforms": [ - { - "fallback": "", - "inputType": "scalar", - "mappings": [ - { - "input": 101, - "output": "State-Styles/State101" - }, - { - "input": 102, - "output": "State-Styles/State102" - }, - { - "input": 103, - "output": "State-Styles/State103" - }, - { - "input": 104, - "output": "State-Styles/State104" - }, - { - "input": 105, - "output": "State-Styles/State105" - }, - { - "input": 106, - "output": "State-Styles/State106" - }, - { - "input": 201, - "output": "State-Styles/State201" - }, - { - "input": 202, - "output": "State-Styles/State202" - }, - { - "input": 203, - "output": "State-Styles/State203" - }, - { - "input": 204, - "output": "State-Styles/State204" - }, - { - "input": 205, - "output": "State-Styles/State205" - } - ], - "outputType": "style-list", - "type": "map" - } - ], - "type": "expr" - } - } - }, - "props": { - "direction": "column", - "justify": "center", - "style": { - "borderColor": "#FF0000", - "borderWidth": "2px", - "cursor": "pointer" - } - }, - "type": "ia.container.flex" - } -} \ No newline at end of file diff --git a/.resources/df0246fd310007efeeb47b24bf1d350c155c2f1ad9e61623f2a3135919bbf49c b/.resources/df0246fd310007efeeb47b24bf1d350c155c2f1ad9e61623f2a3135919bbf49c new file mode 100644 index 00000000..b58564be Binary files /dev/null and b/.resources/df0246fd310007efeeb47b24bf1d350c155c2f1ad9e61623f2a3135919bbf49c differ diff --git a/.resources/e0e723fe7cf45497246ddb9fe069d91c00e5b72d6e5ecd0130171989acaa0fa2 b/.resources/e0e723fe7cf45497246ddb9fe069d91c00e5b72d6e5ecd0130171989acaa0fa2 new file mode 100644 index 00000000..7834a467 Binary files /dev/null and b/.resources/e0e723fe7cf45497246ddb9fe069d91c00e5b72d6e5ecd0130171989acaa0fa2 differ diff --git a/.resources/e1749d7049a1ae1484031795f6fee975afadf9e703088302fce06b6a6410b0ce b/.resources/e1749d7049a1ae1484031795f6fee975afadf9e703088302fce06b6a6410b0ce deleted file mode 100644 index 2aa006e1..00000000 --- a/.resources/e1749d7049a1ae1484031795f6fee975afadf9e703088302fce06b6a6410b0ce +++ /dev/null @@ -1,273 +0,0 @@ -{ - "custom": {}, - "params": { - "Display": "value", - "status": null, - "tagProps": [ - "F01", - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value", - "value" - ] - }, - "propConfig": { - "params.Display": { - "paramDirection": "input", - "persistent": true - }, - "params.status": { - "binding": { - "config": { - "path": "/root/FlexContainer_1/PLC_Status.props.status" - }, - "type": "property" - }, - "paramDirection": "output", - "persistent": true - }, - "params.tagProps": { - "paramDirection": "input", - "persistent": true - } - }, - "props": { - "defaultSize": { - "height": 110, - "width": 200 - } - }, - "root": { - "children": [ - { - "meta": { - "name": "Filler" - }, - "position": { - "basis": "5px", - "shrink": 0 - }, - "type": "ia.display.label" - }, - { - "meta": { - "name": "Label_2" - }, - "position": { - "basis": "32px" - }, - "propConfig": { - "props.text": { - "binding": { - "config": { - "path": "view.params.tagProps[3]" - }, - "type": "property" - } - } - }, - "props": { - "style": { - "fontFamily": "Helvetica", - "fontSize": 15, - "fontStyle": "italic", - "fontWeight": "bold", - "textAlign": "center", - "textTransform": "uppercase" - } - }, - "type": "ia.display.label" - }, - { - "children": [ - { - "meta": { - "name": "Filler" - }, - "position": { - "basis": "5px", - "grow": 1 - }, - "type": "ia.display.label" - }, - { - "events": { - "dom": { - "onDoubleClick": { - "config": { - "script": "\tnavigation.navigate_to_page.detailed_view(self, self.view.params.tagProps[0],self.view.params.tagProps[0], self.view.params.tagProps[3])" - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "PLC_Status" - }, - "position": { - "basis": "150px" - }, - "propConfig": { - "meta.visible": { - "binding": { - "config": { - "path": "view.params.Display" - }, - "type": "property" - } - }, - "props.status": { - "binding": { - "config": { - "fallbackDelay": 2.5, - "mode": "indirect", - "references": { - "0": "{view.params.tagProps[0]}" - }, - "tagPath": "{0}/Expressions/Status" - }, - "type": "tag" - }, - "onChange": { - "enabled": null, - "script": "\tpayload \u003d {}\n\tpayload[\"status\"] \u003d self.props.status\n\tsystem.perspective.sendMessage(\"update-controller-status\", payload \u003d payload, scope \u003d \"view\")" - } - }, - "props.style.classes": { - "binding": { - "config": { - "path": "this.props.status" - }, - "transforms": [ - { - "fallback": "State-Styles/State0", - "inputType": "scalar", - "mappings": [ - { - "input": 1, - "output": "State-Styles/Background-Fill/State1" - }, - { - "input": 2, - "output": "State-Styles/Background-Fill/State2" - }, - { - "input": 3, - "output": "State-Styles/Background-Fill/State3" - }, - { - "input": 4, - "output": "State-Styles/Background-Fill/State4" - }, - { - "input": 5, - "output": "State-Styles/Background-Fill/State5" - }, - { - "input": 6, - "output": "State-Styles/Background-Fill/State6" - }, - { - "input": 0, - "output": "State-Styles/State0" - } - ], - "outputType": "style-list", - "type": "map" - } - ], - "type": "property" - } - }, - "props.text": { - "binding": { - "config": { - "path": "view.params.tagProps[0]" - }, - "type": "property" - } - } - }, - "props": { - "style": { - "alignItems": "center", - "borderBottomLeftRadius": 5, - "borderBottomRightRadius": 5, - "borderStyle": "solid", - "borderStyleTop": "groove", - "borderTopLeftRadius": 5, - "borderTopRightRadius": 5, - "borderWidth": "0.5px", - "fontFamily": "Arial", - "fontSize": "22px", - "fontWeight": "bolder" - } - }, - "type": "ia.display.label" - }, - { - "meta": { - "name": "Filler_0" - }, - "position": { - "basis": "5px", - "grow": 1 - }, - "type": "ia.display.label" - } - ], - "meta": { - "name": "FlexContainer_1" - }, - "position": { - "basis": "40px", - "shrink": 0 - }, - "type": "ia.container.flex" - }, - { - "meta": { - "name": "Label" - }, - "position": { - "basis": "1px", - "shrink": 0 - }, - "type": "ia.display.label" - } - ], - "meta": { - "name": "root" - }, - "propConfig": { - "custom.pageId": { - "binding": { - "config": { - "fallbackDelay": 2.5, - "mode": "indirect", - "references": { - "0": "{view.params.tagProps[0]}" - }, - "tagPath": "{0}/Parameters.PageId" - }, - "type": "tag" - } - } - }, - "props": { - "direction": "column", - "style": { - "backgroundColor": "#AAAAAA", - "borderColor": "#A6A3A3", - "borderStyle": "ridge" - } - }, - "type": "ia.container.flex" - } -} \ No newline at end of file diff --git a/.resources/e174e60b417ccfe0d8b5d8a60dd59ede576019185c62f40dc69170fe979bf3ae b/.resources/e174e60b417ccfe0d8b5d8a60dd59ede576019185c62f40dc69170fe979bf3ae deleted file mode 100644 index 82b02cb8..00000000 Binary files a/.resources/e174e60b417ccfe0d8b5d8a60dd59ede576019185c62f40dc69170fe979bf3ae and /dev/null differ diff --git a/.resources/e2787748ab2f09a9bcb1e5521d4c1ee1f22e62d7821df0d2659954efc358df08 b/.resources/e2787748ab2f09a9bcb1e5521d4c1ee1f22e62d7821df0d2659954efc358df08 deleted file mode 100644 index 0c15c08b..00000000 --- a/.resources/e2787748ab2f09a9bcb1e5521d4c1ee1f22e62d7821df0d2659954efc358df08 +++ /dev/null @@ -1,1139 +0,0 @@ -{ - "custom": { - "api_region_name": "na", - "filter_menu_data": [ - { - "filters": [ - { - "color": "#8B008B", - "column": "test1", - "group": 1, - "id": 0, - "text": "value1" - } - ], - "group_name": "test1", - "instancePosition": {}, - "instanceStyle": { - "classes": "" - } - }, - { - "filters": [ - { - "color": "#00CED1", - "column": "test2", - "group": 2, - "id": 1, - "text": "value2" - } - ], - "group_name": "test2", - "instancePosition": {}, - "instanceStyle": { - "classes": "" - } - } - ], - "filtered_table_data": [], - "filters": { - "active": [], - "default_colors": [ - "#8B008B", - "#00CED1", - "#FF8C00", - "#708090", - "#DC143C", - "#FFDEAD", - "#7B68EE", - "#4169E1", - "#F4A460", - "#9ACD32" - ], - "number_of_groups": "value", - "selection_active": false - }, - "stage_config": { - "account_id": "925510716640", - "endpoint": "https://scada-s3-management.narme-scada.rme.amazon.dev/", - "lambda_name": "RMESDScadaS3ManagementFlaskLambda-prod", - "region": "us-east-2", - "repo_bucket": "na-ignition-image-repo", - "s3_region": "us-east-1", - "source_bucket": "na-ignition-image-source" - }, - "table_data": [], - "use_filtered_table": false - }, - "params": { - "DoubleClick": { - "Enabled": false, - "MP": "MP", - "Sts": "STATUS", - "TextCode": "TEXT_CODE", - "WHID": "WHID" - }, - "NavigationSettings": { - "BaseUrl": "", - "Column": "", - "Enabled": false - }, - "SelectedRow": [], - "VisibleColCount": 5, - "filters": [ - { - "column": "test1", - "group": 1, - "text": "value1" - }, - { - "column": "test2", - "group": 2, - "text": "value2" - } - ], - "header_order": [ - { - "field": "VersionId", - "title": "VERSION ID", - "visible": true - }, - { - "field": "LastModified", - "title": "LAST MODIFIED", - "visible": true - }, - { - "field": "Size", - "title": "SIZE (Bytes)", - "visible": true - }, - { - "field": "IsLatest", - "title": "IS LATEST?", - "visible": true - }, - { - "field": "Key", - "title": "OBJECT KEY", - "visible": true - }, - { - "field": "StorageClass", - "title": "STORAGE CLASS", - "visible": false - }, - { - "field": "ETag", - "title": "ETAG", - "visible": false - } - ], - "key_to_read_from": "use_param", - "puToDismiss": "", - "table_data": [], - "title": "SCADA S3 Version History" - }, - "propConfig": { - "custom.api_region_name": { - "binding": { - "config": { - "path": "session.custom.aws.prefix" - }, - "type": "property" - }, - "persistent": true - }, - "custom.filter_menu_data": { - "binding": { - "config": { - "path": "view.custom.filters.deactive" - }, - "transforms": [ - { - "code": "\tinstances \u003d []\n\tgroups \u003d {}\n\tfor filter in value:\n\t \tif not groups.has_key(filter.column):\n\t \t\tgroups[filter.column] \u003d []\n\t \tgroups[filter.column].append(filter)\n\tfor key in groups:\n\t\tinstance \u003d {\"instanceStyle\": {\n\t \t\t\t\"classes\": \"\"},\n\t \t\t\t \"instancePosition\": {}}\n\t \tgroups[key].sort()\n\t \tinstance[\u0027filters\u0027] \u003d groups[key]\n\t \tinstance[\u0027group_name\u0027] \u003d key\n\t \tinstances.append(instance)\n\treturn instances", - "type": "script" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.filtered_table_data": { - "binding": { - "config": { - "expression": "if({view.custom.table_data} !\u003d {view.custom.filters.active},\r\n{view.custom.filters.active},\r\n{view.custom.filters.active})" - }, - "transforms": [ - { - "code": "\tfiltered_table \u003d []\n\tif len(value) \u003e 0:\n\t\tfilter_lookup \u003d {}\n\t\tfor act_filter in value:\n\t\t\tif act_filter[\u0027column\u0027] not in filter_lookup:\n\t\t\t\tfilter_lookup[act_filter[\u0027column\u0027]] \u003d []\n\t\t\tfilter_lookup[act_filter[\u0027column\u0027]].append(act_filter[\u0027text\u0027])\n\t\tfor row in self.custom.table_data:\n\t\t\tsystem.perspective.print(row)\n\t\t\tshould_filter \u003d {}\t\t\n\t\t\t# Handles stylized rows\t\n\t\t\tif \u0027style\u0027 in row and \u0027value\u0027 in row and len(row) \u003d\u003d2:\n\t\t\t\t#for column in row:\n\t\t\t\t\t#system.perspective.print(\u0027value:%s\u0027%column)\n\t\t\t\t\tdata_columns \u003d row[\u0027value\u0027]\n\t\t\t\t\tfor s_column in data_columns:\n\t\t\t\t\t\tif s_column in filter_lookup:\n\t\t\t\t\t\t\tif data_columns[s_column] in filter_lookup[s_column]:\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\tshould_filter[s_column] \u003d True\n\t\t\t\t\t\t\telse:\n\t\t\t\t\t\t\t\tshould_filter[s_column] \u003d False\n\t\t\t\t\t\telse:\n\t\t\t\t\t\t\tshould_filter[s_column] \u003d False\t\n\t\t\telse:\n\t\t\t\tfor column in row:\n\t\t\t\t\tif column in filter_lookup:\n\t\t\t\t\t\tif row[column] in filter_lookup[column]:\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tshould_filter[column] \u003d True\n\t\t\t\t\t\telse:\n\t\t\t\t\t\t\tshould_filter[column] \u003d False\n\t\t\t\t\telse:\n\t\t\t\t\t\tshould_filter[column] \u003d False\n\t\t\tif sum(should_filter.values()) \u003d\u003d len(filter_lookup.keys()):\n\t\t\t\tfiltered_table.append(row)\n\n\treturn filtered_table", - "type": "script" - } - ], - "type": "expr" - }, - "persistent": true - }, - "custom.filters": { - "persistent": true - }, - "custom.filters.deactive": { - "binding": { - "config": { - "path": "view.params.filters" - }, - "transforms": [ - { - "code": "\t\n\tfilters \u003d []\n\tgroups \u003d []\n\tfor index, filter in enumerate(value):\n\t\tnew_filter \u003d {}\t\n\t\tif not filter.has_key(\u0027group\u0027):\n\t\t\tnew_filter[\u0027group\u0027] \u003d 0\n\t\telse:\n\t\t\tnew_filter[\u0027group\u0027] \u003d filter.group\n\t\tif not filter.has_key(\u0027color\u0027):\n\t\t\tif new_filter[\u0027group\u0027] not in groups:\n\t\t\t\tgroups.append(new_filter[\u0027group\u0027])\n\t\t\tnew_filter[\u0027color\u0027] \u003d self.custom.filters.default_colors[groups.index(new_filter[\u0027group\u0027])]\n\t\telse:\n\t\t\tnew_filter[\u0027color\u0027] \u003d filter.color\n\t\tif not filter.has_key(\u0027text\u0027):\n\t\t\tnew_filter[\u0027text\u0027] \u003d \u0027Filter \u0027 + str(index)\n\t\telse:\n\t\t\tnew_filter[\u0027text\u0027] \u003d filter.text\n\t\tif not filter.has_key(\u0027column\u0027):\n\t\t\tnew_filter[\u0027column\u0027] \u003d 0\n\t\telse:\n\t\t\tnew_filter[\u0027column\u0027] \u003d filter.column\n\t\tnew_filter[\u0027id\u0027] \u003d index\n\t\tfilters.append(new_filter)\t\t\t\t\n\treturn filters", - "type": "script" - } - ], - "type": "property" - } - }, - "custom.stage_config": { - "binding": { - "config": { - "expression": "{view.custom.api_region_name}" - }, - "transforms": [ - { - "code": "\treturn AWS.s3.STAGE_CONFIG[\u0027prod\u0027][value]", - "type": "script" - } - ], - "type": "expr" - }, - "persistent": true - }, - "custom.table_data": { - "binding": { - "config": { - "expression": "if({view.params.key_to_read_from} \u003d \u0027use_param\u0027,\r\n{view.params.table_data},\r\nproperty(concat(\u0027session.custom.tableComponentData.\u0027,{view.params.key_to_read_from})))" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.use_filtered": { - "persistent": true - }, - "custom.use_filtered_table": { - "binding": { - "config": { - "path": "view.custom.filtered_table_data" - }, - "transforms": [ - { - "code": "\treturn len(value) \u003e 0", - "type": "script" - } - ], - "type": "property" - }, - "persistent": true - }, - "params.DoubleClick": { - "paramDirection": "input", - "persistent": true - }, - "params.NavigationSettings": { - "paramDirection": "input", - "persistent": true - }, - "params.SelectedRow": { - "binding": { - "config": { - "path": "/root/Table.props.selection.data" - }, - "type": "property" - }, - "paramDirection": "output", - "persistent": true - }, - "params.VisibleColCount": { - "paramDirection": "input", - "persistent": true - }, - "params.filters": { - "paramDirection": "input", - "persistent": true - }, - "params.header_order": { - "paramDirection": "input", - "persistent": true - }, - "params.key_to_read_from": { - "paramDirection": "input", - "persistent": true - }, - "params.puToDismiss": { - "paramDirection": "input", - "persistent": true - }, - "params.table_data": { - "paramDirection": "input", - "persistent": true - }, - "params.title": { - "paramDirection": "input", - "persistent": true - } - }, - "props": { - "defaultSize": { - "height": 844 - } - }, - "root": { - "children": [ - { - "children": [ - { - "children": [ - { - "meta": { - "name": "Title" - }, - "position": { - "basis": "100%" - }, - "propConfig": { - "props.text": { - "binding": { - "config": { - "path": "view.params.title" - }, - "type": "property" - } - } - }, - "props": { - "style": { - "classes": "Title/Text", - "fontSize": 14, - "overflow": "visible" - } - }, - "type": "ia.display.label" - } - ], - "meta": { - "name": "Title" - }, - "position": { - "basis": "50%" - }, - "props": { - "style": { - "fontSize": 1, - "marginLeft": 10, - "overflow": "visible" - } - }, - "type": "ia.container.flex" - }, - { - "children": [ - { - "meta": { - "name": "FilterCheck", - "tooltip": { - "enabled": true, - "location": "top-left", - "text": "Enable Table Search" - } - }, - "position": { - "basis": "108px" - }, - "propConfig": { - "position.display": { - "binding": { - "config": { - "expression": "LEN({..../Table.props.data})\u003e0" - }, - "type": "expr" - } - } - }, - "props": { - "checkedIcon": { - "style": { - "fontSize": 16 - } - }, - "indeterminateIcon": { - "style": { - "fontSize": 16 - } - }, - "style": { - "fontSize": 12 - }, - "text": "Search?", - "textPosition": "left", - "uncheckedIcon": { - "style": { - "fontSize": 16 - } - } - }, - "type": "ia.input.checkbox" - }, - { - "meta": { - "name": "Spacer1" - }, - "position": { - "basis": "1px" - }, - "props": { - "style": { - "classes": "General/Divider" - } - }, - "type": "ia.container.flex" - }, - { - "events": { - "dom": { - "onClick": { - "config": { - "script": "\ttable \u003d self.parent.parent.parent.getChild(\"Table\")\n\t# ignition perspective has a bug with table where the only way to \n\t# actually de-select and remove the row highlight is to set the\n\t# row and column to -1 and THEN None\n\t# this will automatically clear the selection.data array\n\ttable.props.selection.selectedRow \u003d -1\n\ttable.props.selection.selectedColumn \u003d -1\n\ttable.props.selection.selectedRow \u003d None\n\ttable.props.selection.selectedColumn \u003d None" - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "ClearSelectionButton", - "tooltip": { - "enabled": true, - "location": "top-left", - "text": "Clear Selection" - } - }, - "position": { - "basis": "31px" - }, - "propConfig": { - "position.display": { - "binding": { - "config": { - "expression": "len({..../Table.props.selection.data})\u003e0" - }, - "type": "expr" - } - } - }, - "props": { - "path": "material/clear", - "style": { - "classes": "General/Button" - } - }, - "type": "ia.display.icon" - }, - { - "meta": { - "name": "Spacer2" - }, - "position": { - "basis": "1px" - }, - "propConfig": { - "position.display": { - "binding": { - "config": { - "path": "../ClearSelectionButton.position.display" - }, - "type": "property" - } - } - }, - "props": { - "style": { - "classes": "General/Divider" - } - }, - "type": "ia.container.flex" - }, - { - "events": { - "dom": { - "onClick": { - "config": { - "draggable": false, - "id": "ColumnSelection", - "modal": true, - "overlayDismiss": true, - "position": { - "relativeLocation": "bottom-left" - }, - "positionType": "relative", - "resizable": true, - "showCloseIcon": true, - "type": "toggle", - "viewParams": { - "Columns": "{/root/TableHeader/TableActions/ColumnSelectionButton.custom.Columns}" - }, - "viewPath": "Objects/PowerTable/ColumnSelection", - "viewportBound": false - }, - "scope": "C", - "type": "popup" - } - } - }, - "meta": { - "name": "ColumnSelectionButton", - "tooltip": { - "enabled": true, - "location": "top-left", - "text": "+/- Columns" - } - }, - "position": { - "basis": "29px" - }, - "propConfig": { - "custom.Columns": { - "binding": { - "config": { - "path": "..../Table.props.columns" - }, - "transforms": [ - { - "code": "\tcolumns \u003d {}\n\tif len(value) \u003e 0:\n\t\tfor column in value:\n\t\t\t#field \u003d column.field\n\t\t\tfield \u003d column.header.title\n\t\t\tif field \u003d\u003d \u0027\u0027:\n\t\t\t\tfield \u003d \u0027None\u0027\n\t\t\tcolumns[field] \u003d column.visible\n\treturn columns", - "type": "script" - } - ], - "type": "property" - } - }, - "position.display": { - "binding": { - "config": { - "expression": "LEN({..../Table.props.data})\u003e0" - }, - "type": "expr" - } - } - }, - "props": { - "path": "material/view_column", - "style": { - "classes": "General/Button", - "fontSize": 12, - "marginBottom": 5, - "marginTop": 5 - } - }, - "type": "ia.display.icon" - }, - { - "meta": { - "name": "Spacer4" - }, - "position": { - "basis": "1px" - }, - "propConfig": { - "position.display": { - "binding": { - "config": { - "expression": "LEN({..../Table.props.data})\u003e0" - }, - "type": "expr" - } - } - }, - "props": { - "style": { - "classes": "General/Divider" - } - }, - "type": "ia.container.flex" - }, - { - "events": { - "dom": { - "onClick": { - "config": { - "script": "\tself.view.custom.filters.selection_active \u003d not self.view.custom.filters.selection_active" - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "FilterButton", - "tooltip": { - "enabled": true, - "location": "top-left", - "text": "Filter Table" - } - }, - "position": { - "basis": "29px", - "display": false - }, - "props": { - "path": "material/filter_list", - "style": { - "classes": "General/Button", - "fontSize": 12, - "marginBottom": 5, - "marginTop": 5 - } - }, - "type": "ia.display.icon" - }, - { - "meta": { - "name": "Spacer3" - }, - "position": { - "basis": "1px" - }, - "props": { - "style": { - "classes": "General/Divider" - } - }, - "type": "ia.container.flex" - }, - { - "events": { - "dom": { - "onClick": { - "config": { - "script": "\n\tcsv_headers \u003d []\n\tcsv_data \u003d []\n\tsystem.perspective.print(\u0027DOWNLOADING TABLE DATA\u0027)\n\tsource_data \u003d self.parent.parent.parent.getChild(\"Table\").props.data\n\theaders \u003d source_data[0].keys()\n\t\n\tif \u0027style\u0027 in headers and \u0027value\u0027 in headers and len(headers) \u003d\u003d 2:\n\t\tdata \u003d [row[\u0027value\u0027] for row in source_data]\n\telse:\n\t\tdata \u003d source_data\n\t\t\n\tfor record in data:\n\t\tif len(csv_headers) \u003d\u003d 0:\n\t\t\tcsv_headers \u003d record.keys()\n\t\t\tcsv_headers.sort()\n\t\t\tcsv_headers \u003d [str(i) for i in csv_headers]\n\t\tcsv_row \u003d []\n\t\tfor index in range(len(record)):\n\t\t\tcsv_row.append(str(record[csv_headers[index]]))\n\t\tcsv_data.append(csv_row)\n\t\n\ttry:\n\t\tcsv_dataset \u003d system.dataset.toDataSet(csv_headers, csv_data)\n\texcept Exception, e:\n\t\tsystem.perspective.print(str(e))\n\tcsv_export \u003d system.dataset.toCSV(csv_dataset)\n\tfilename \u003d \u0027{0}.csv\u0027.format(str(system.date.now()).replace(\u0027 \u0027, \u0027_\u0027))\n\tsystem.perspective.download(filename, csv_export)\n\t\n\tsystem.perspective.print(\u0027DONE DOWNLOADING TABLE DATA\u0027)" - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "SettingsButton", - "tooltip": { - "enabled": true, - "location": "top-left", - "text": "Download Table Contents" - } - }, - "position": { - "basis": "30px" - }, - "propConfig": { - "position.display": { - "binding": { - "config": { - "expression": "LEN({..../Table.props.data})\u003e0" - }, - "type": "expr" - } - } - }, - "props": { - "path": "material/cloud_download", - "style": { - "classes": "General/Button", - "marginRight": 10 - } - }, - "type": "ia.display.icon" - } - ], - "meta": { - "name": "TableActions", - "tooltip": { - "location": "top-right" - } - }, - "position": { - "grow": 1 - }, - "props": { - "justify": "flex-end" - }, - "type": "ia.container.flex" - } - ], - "meta": { - "name": "TableHeader" - }, - "position": { - "shrink": 0 - }, - "props": { - "justify": "space-between", - "style": { - "borderBottomStyle": "solid", - "borderBottomWidth": 1, - "cursor": "pointer" - } - }, - "type": "ia.container.flex" - }, - { - "children": [ - { - "meta": { - "name": "FilterMenu" - }, - "position": { - "grow": 1 - }, - "propConfig": { - "props.instances": { - "binding": { - "config": { - "path": "view.custom.filter_menu_data" - }, - "type": "property" - } - } - }, - "props": { - "alignContent": "flex-start", - "alignItems": "flex-start", - "path": "Components/PowerTable/FilterMenuGroup", - "style": { - "overflow": "visible" - }, - "useDefaultViewHeight": false, - "useDefaultViewWidth": false, - "wrap": "wrap" - }, - "type": "ia.display.flex-repeater" - } - ], - "meta": { - "name": "FilterSelection" - }, - "position": { - "grow": 1 - }, - "propConfig": { - "position.display": { - "binding": { - "config": { - "path": "view.custom.filters.selection_active" - }, - "type": "property" - } - } - }, - "props": { - "style": { - "borderBottomStyle": "solid", - "borderBottomWidth": 1, - "classes": "Menu/Menu", - "overflow": "visible", - "paddingLeft": 10, - "paddingRight": 10 - } - }, - "type": "ia.container.flex" - }, - { - "children": [ - { - "children": [ - { - "meta": { - "name": "FiltersLabel" - }, - "position": { - "basis": "80px" - }, - "propConfig": { - "props.text": { - "binding": { - "config": { - "path": "view.custom.filters.active" - }, - "transforms": [ - { - "code": "\t\n\treturn \u0027\u0027.join([\u0027FILTERS (\u0027, str(len(value)), \u0027):\u0027])", - "type": "script" - } - ], - "type": "property" - } - } - }, - "props": { - "style": { - "classes": "Menu/Menu Page/Text", - "fontSize": 10, - "textAlign": "center" - } - }, - "type": "ia.display.label" - }, - { - "meta": { - "name": "FiltersCarousel" - }, - "propConfig": { - "props.views": { - "binding": { - "config": { - "path": "view.custom.filters.active" - }, - "transforms": [ - { - "code": "\n\tviews \u003d []\n\tfor filter in value:\n\t\tcarousel_view \u003d {\n\t\t\t\u0027viewPath\u0027:\u0027Components/PowerTable/FilterTile\u0027,\n\t\t\t\u0027direction\u0027 : \u0027row\u0027,\n\t\t\t\u0027viewParams\u0027: {},\n\t\t\t\u0027justify\u0027:\u0027flex-start\u0027,\n\t\t\t\u0027alignItems\u0027: \u0027center\u0027}\n\t\tcarousel_view[\u0027viewParams\u0027][\u0027color\u0027] \u003d filter[\u0027color\u0027]\n\t\tcarousel_view[\u0027viewParams\u0027][\u0027text\u0027] \u003d filter[\u0027text\u0027]\t\n\t\tcarousel_view[\u0027viewParams\u0027][\u0027id\u0027] \u003d filter[\u0027id\u0027]\t\n\t\t\n\t\tviews.append(carousel_view)\n\treturn views", - "type": "script" - } - ], - "type": "property" - } - } - }, - "props": { - "appearance": { - "arrows": { - "next": { - "style": { - "marginRight": 5 - } - }, - "previous": { - "style": { - "marginLeft": 5 - } - } - }, - "dots": { - "enabled": false - }, - "slidePadding": 3, - "slidesToShow": 5, - "useDefaultViewHeight": true, - "useDefaultViewWidth": true - }, - "style": { - "overflow": "visible", - "textAlign": "left" - } - }, - "type": "ia.display.carousel" - } - ], - "meta": { - "name": "Left" - }, - "position": { - "basis": "90%" - }, - "props": { - "style": { - "overflow": "visible" - } - }, - "type": "ia.container.flex" - }, - { - "children": [ - { - "events": { - "component": { - "onActionPerformed": { - "config": { - "script": "\tself.view.custom.filters.active \u003d []\n\tsystem.perspective.sendMessage(\u0027deactivate-filter\u0027, payload \u003d {\u0027id\u0027:-1}, scope \u003d \u0027page\u0027)" - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "ClearButton" - }, - "position": { - "basis": "51px" - }, - "props": { - "primary": false, - "style": { - "classes": "Menu/Item", - "fontSize": 12, - "marginBottom": 5, - "marginLeft": 5, - "marginRight": 5, - "marginTop": 5 - }, - "text": "Clear", - "textStyle": { - "classes": "Page/Text" - } - }, - "type": "ia.input.button" - } - ], - "meta": { - "name": "Right" - }, - "position": { - "basis": "10%" - }, - "props": { - "justify": "flex-end", - "style": { - "overflow": "visible" - } - }, - "type": "ia.container.flex" - } - ], - "meta": { - "name": "Filters" - }, - "position": { - "shrink": 0 - }, - "propConfig": { - "position.display": { - "binding": { - "config": { - "path": "view.custom.filters.active" - }, - "transforms": [ - { - "code": "\treturn len(value) \u003e 0", - "type": "script" - } - ], - "type": "property" - } - } - }, - "props": { - "style": { - "overflow": "visible" - } - }, - "type": "ia.container.flex" - }, - { - "meta": { - "name": "ReulstLengthLabel" - }, - "position": { - "grow": 1 - }, - "propConfig": { - "position.display": { - "binding": { - "config": { - "path": "view.custom.filters.active" - }, - "transforms": [ - { - "code": "\treturn len(value) \u003e 0", - "type": "script" - } - ], - "type": "property" - } - }, - "props.text": { - "binding": { - "config": { - "path": "../Table.props.data" - }, - "transforms": [ - { - "code": "\treturn \u0027\u0027.join([str(len(value)), \u0027 results within filters\u0027])", - "type": "script" - } - ], - "type": "property" - } - } - }, - "props": { - "style": { - "classes": "Menu/Item Page/Text", - "fontSize": 12, - "paddingLeft": 5, - "textTransform": "lowercase" - } - }, - "type": "ia.display.label" - }, - { - "meta": { - "name": "pager" - }, - "position": { - "basis": "35px", - "display": false, - "shrink": 0 - }, - "propConfig": { - "props.params.number_of_pages": { - "binding": { - "config": { - "expression": "len({../Table.custom.raw_data})" - }, - "type": "expr" - } - }, - "props.params.options_for_pagers": { - "binding": { - "config": { - "path": "../Table.props.pager.options" - }, - "type": "property" - } - } - }, - "props": { - "params": { - "number_of_items_per_page": 100, - "page_selected": 0 - }, - "path": "Components/PowerTable/pager" - }, - "type": "ia.display.view" - }, - { - "events": { - "component": { - "onRowDoubleClick": { - "config": { - "script": "\t# grab row JSON from double-click\n\td \u003d event.value\n\t# build out the stage, site, flow-view, and copy_option from the object-key in row\n\tobj_key \u003d d.Key\n\tpath \u003d obj_key.split(\u0027/\u0027)\n\tsite \u003d path[1]\n\tfilename \u003d path[-1]\n\tview \u003d filename.replace(\".svg\",\"\").replace(\".drawio\",\"\")\n\t# from filename suffix, fetch bucket name from \"stage_config\" custom prop\n\tstage_config \u003d self.view.custom.stage_config\n\tbucket \u003d None\n\tif filename.endswith(\".svg\"):\n\t\tbucket \u003d stage_config.repo_bucket\n\tif filename.endswith(\".drawio\"):\n\t\tbucket \u003d stage_config.source_bucket\n\t# build out query_params from row values\n\t# flowview, site, and stage are multi-select dropdowns so need to be cast as lists\n\tnull \u003d None\n\tquery_params \u003d {\n\t\t\"copy_option\": null,\n\t\t\"destination_view\": view,\n\t\t\"destination_site\": site,\n\t\t\"destination_bucket\": bucket,\n\t\t\"end_time\": null,\n\t\t\"error_occurred\": null,\n\t\t\"operation\": null,\n\t\t\"source_view\": \"\",\n\t\t\"source_site\": null,\n\t\t\"source_bucket\": null,\n\t\t\"start_time\": null,\n\t\t\"username\": \"\"\n\t}\n\t# Open audit log viewer\n\tview_path \u003d \u0027PopUp-Views/S3/Audit/Log_Viewer\u0027\n\tparams \u003d {\u0027query_params\u0027: query_params}\n\tsystem.perspective.openPopup(\u0027Audit Log Viewer\u0027, view_path, \n\t\t\t\t\t\t\t\tparams, \u0027SCADA S3 Audit Logs\u0027)\n" - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "Table" - }, - "position": { - "grow": 1 - }, - "propConfig": { - "custom.raw_data": { - "binding": { - "config": { - "expression": "IF({../pager.props.params.number_of_items_per_page} \u003e 0,\r\nIF(LEN({view.custom.filters.active})\u003d0, {view.custom.table_data}, {view.custom.filtered_table_data}),\u0027\u0027)" - }, - "transforms": [ - { - "code": "\tlist_of_data \u003d []\n\tsingle_list \u003d []\n\tfor item in value:\n\t\tif len(single_list) \u003c self.getSibling(\"pager\").props.params.number_of_items_per_page:\n\t\t\tsingle_list.append(item)\n\t\telse:\n\t\t\tlist_of_data.append(single_list)\n\t\t\tsingle_list \u003d []\n\t\t\tsingle_list.append(item)\n\tif len(single_list) \u003e 0:\n\t\tlist_of_data.append(single_list)\n\treturn list_of_data", - "type": "script" - } - ], - "type": "expr" - } - }, - "props.columns": { - "binding": { - "config": { - "path": "view.custom.table_data" - }, - "transforms": [ - { - "code": "\tfrom helper.helper import sanitize_tree\n\tcolumns \u003d []\n\tif len(value) \u003e 0:\n\t\trequestedHeaders \u003d sanitize_tree(self.view.params.header_order)\n\t\tfrom pprint import pformat\n#\t\tsystem.perspective.print(pformat(requestedHeaders))\n\t\theaders \u003d []\n\t\tif len(requestedHeaders) \u003e 0:\n\t\t\tfor item in requestedHeaders:\n\t\t\t\tif \u0027style\u0027 in value[0].keys() and \u0027value\u0027 in value[0].keys() and len(value[0].keys()) \u003d\u003d2:\n\t\t\t\t\tif item in value[0][\u0027value\u0027].keys():\n\t\t\t\t\t\theaders.append(item)\n\t\t\t\telse:\n\t\t\t\t\tif item in value[0].keys():\n\t\t\t\t\t\theaders.append(item)\n\t\t\t\t\tif isinstance(item, dict) and \u0027field\u0027 in item and item[\u0027field\u0027] in value[0].keys():\n\t\t\t\t\t\theaders.append(item)\n\t\tif len(headers) \u003d\u003d 0:\n\t\t\theaders \u003d value[0].keys()\n\t\tfor header in headers:\t\n\t\t\tfield \u003d header\n\t\t\tvisible \u003d True\n\t\t\ttry:\n\t\t\t\ttitle \u003d str(header).replace(\u0027_\u0027, \u0027 \u0027).upper()\n\t\t\texcept:\n\t\t\t\ttitle \u003d \u0027\u0027\n\t\t\tif isinstance(header, dict):\n\t\t\t\tfield \u003d header.get(\u0027field\u0027, \u0027\u0027)\n\t\t\t\tvisible \u003d header.get(\u0027visible\u0027, True)\n\t\t\t\ttitle \u003d header.get(\u0027title\u0027, field.replace(\u0027_\u0027, \u0027 \u0027).upper())\n\t\t\tcolumn \u003d {\n\t\t\t \"field\": field,\n\t\t\t \"visible\": visible,\n\t\t\t \"editable\": True,\n\t\t\t \"render\": \"auto\",\n\t\t\t \"justify\": \"center\",\n\t\t\t \"align\": \"center\",\n\t\t\t \"resizable\": True,\n\t\t\t \"sortable\": True,\n\t\t\t \"sort\": \"none\",\n\t\t\t \"viewPath\": \"\",\n\t\t\t \"viewParams\": {},\n\t\t\t \"boolean\": \"checkbox\",\n\t\t\t \"number\": \"value\",\n\t\t\t \"progressBar\": {\n\t\t\t\t\"max\": 100,\n\t\t\t\t\"min\": 0,\n\t\t\t\t\"bar\": {\n\t\t\t\t \"color\": \"\",\n\t\t\t\t \"style\": {\n\t\t\t\t\t\"classes\": \"\"\n\t\t\t\t }\n\t\t\t\t},\n\t\t\t\t\"track\": {\n\t\t\t\t \"color\": \"\",\n\t\t\t\t \"style\": {\n\t\t\t\t\t\"classes\": \"\"\n\t\t\t\t }\n\t\t\t\t},\n\t\t\t\t\"value\": {\n\t\t\t\t \"enabled\": True,\n\t\t\t\t \"format\": \"0,0.##\",\n\t\t\t\t \"justify\": \"center\",\n\t\t\t\t \"style\": {\n\t\t\t\t\t\"classes\": \"\"\n\t\t\t\t }\n\t\t\t\t}\n\t\t\t },\n\t\t\t \"toggleSwitch\": {\n\t\t\t\t\"color\": {\n\t\t\t\t \"selected\": \"\",\n\t\t\t\t \"unselected\": \"\"\n\t\t\t\t}\n\t\t\t },\n\t\t\t \"numberFormat\": \"0,0.##\",\n\t\t\t \"dateFormat\": \"MM/DD/YYYY\",\n\t\t\t \"width\": \"\",\n\t\t\t \"strictWidth\": False,\n\t\t\t \"style\": {\n\t\t\t\t\"classes\": \"\"\n\t\t\t },\n\t\t\t \"header\": {\n\t\t\t\t\"title\": title,\n\t\t\t\t\"justify\": \"center\",\n\t\t\t\t\"align\": \"center\",\n\t\t\t\t\"style\": {\n\t\t\t\t \"classes\": \"\",\n\t\t\t\t \u0027fontSize\u0027:\u002712px\u0027\n\t\t\t\t}\n\t\t\t },\n\t\t\t \"footer\": {\n\t\t\t\t\"title\": \"\",\n\t\t\t\t\"justify\": \"left\",\n\t\t\t\t\"align\": \"center\",\n\t\t\t\t\"style\": {\n\t\t\t\t \"classes\": \"\"\n\t\t\t\t}\n\t\t\t }\n\t\t\t}\t\t\t\n\t\t\tcolumns.append(column)\n#\t\tif self.view.params.header_order !\u003d [] and len(headers) \u003d\u003d len(self.view.params.header_order):\n#\t\t\tnew_columns \u003d [None] * len(columns)\n#\t\t\tfor column in columns:\n#\t\t\t\tindex \u003d self.view.params.header_order.index(column[\u0027field\u0027])\n#\t\t\t\tnew_columns[index] \u003d column\n#\t\t\tcolumns \u003d new_columns\n\treturn columns", - "type": "script" - } - ], - "type": "property" - } - }, - "props.data": { - "binding": { - "config": { - "expression": "IF({../pager.props.params.number_of_items_per_page} \u003e 0,\r\nIF(LEN({view.custom.filters.active})\u003d0, {view.custom.table_data}, {view.custom.filtered_table_data}),\u0027\u0027)" - }, - "type": "expr" - } - }, - "props.filter.enabled": { - "binding": { - "config": { - "path": "../TableHeader/TableActions/FilterCheck.props.selected" - }, - "type": "property" - }, - "onChange": { - "enabled": null, - "script": "\tif not getattr(currentValue, \u0027value\u0027, None):\n\t\t# clear filter text when filter is disabled\n\t\tself.props.filter.text \u003d \u0027\u0027\n\t\t" - } - } - }, - "props": { - "cells": { - "allowEditOn": "long-press", - "style": { - "fontSize": 12 - } - }, - "filter": {}, - "pager": { - "initialOption": 100, - "options": [ - 25, - 50, - 100, - 500, - 1000 - ] - }, - "style": { - "overflow": "visible" - } - }, - "type": "ia.display.table" - } - ], - "meta": { - "name": "root" - }, - "props": { - "direction": "column", - "style": { - "overflow": "visible" - } - }, - "scripts": { - "customMethods": [], - "extensionFunctions": null, - "messageHandlers": [ - { - "messageType": "activate-filter", - "pageScope": true, - "script": "\t# implement your handler here\n\tfilter_position \u003d payload[\u0027id\u0027]\n\tsystem.perspective.print(filter_position)\n\tadd \u003d True\n\tfor filter in self.view.custom.filters.active:\n\t\tif filter.id \u003d\u003d filter_position:\n\t\t\tadd \u003d False\n\tif add:\n\t\tfor filter in self.view.custom.filters.deactive:\n\t\t\tif filter.id \u003d\u003d filter_position:\t\t\t\t\n\t\t\t\tself.view.custom.filters.active.append(filter)", - "sessionScope": true, - "viewScope": false - }, - { - "messageType": "deactivate-filter", - "pageScope": true, - "script": "\tfilter_position \u003d payload[\u0027id\u0027]\n\tsystem.perspective.print(filter_position)\n\t\n\tif filter_position \u003d\u003d -1 :\n\t\tself.view.custom.filters.active \u003d []\n\telse:\n\t\tfor index, filter in enumerate(self.view.custom.filters.active):\n\t\t\tif filter.id \u003d\u003d filter_position:\n\t\t\t\tsystem.perspective.print(filter.id)\n\t\t\t\tself.view.custom.filters.active.pop(index)\n\n#\tfor filter in self.view.custom.filter_menu_data:\n#\t\tif filter.filter_id \u003d\u003d filter_position:\n#\t\t\tsystem.perspective.print(filter.filter_id)\n#\t\t\tfilter.active \u003d False\n#\t\t\tbreak", - "sessionScope": false, - "viewScope": false - }, - { - "messageType": "column-visibility", - "pageScope": true, - "script": "\t# implement your handler here\n\ttable_columns \u003d self.getChild(\"Table\").props.columns\n\tfor table_column in table_columns:\n\t\t#if payload.keys()[0] \u003d\u003d table_column[\u0027field\u0027]:\n\t\tif payload.keys()[0] \u003d\u003d table_column[\u0027header\u0027][\u0027title\u0027]:\n\t\t\ttable_column.visible \u003d payload.values()[0]\n", - "sessionScope": false, - "viewScope": false - } - ] - }, - "type": "ia.container.flex" - } -} \ No newline at end of file diff --git a/.resources/e50ed81ecf83111c77cd6f00322991fc0718d454966c232fe1e035717037753f b/.resources/e50ed81ecf83111c77cd6f00322991fc0718d454966c232fe1e035717037753f new file mode 100644 index 00000000..70471282 --- /dev/null +++ b/.resources/e50ed81ecf83111c77cd6f00322991fc0718d454966c232fe1e035717037753f @@ -0,0 +1,418 @@ +{ + "custom": { + "dpm1-dpm2": false, + "dpm2-mcm": false, + "mcm-dpm1": false + }, + "params": { + "tagProps": [ + "DPM0_TAG", + "DPM1_TAG", + "DPM2_TAG" + ] + }, + "propConfig": { + "custom.dpm1-dpm2": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "1": "{view.params.tagProps[1]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{1}/STATE" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},1)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": 0, + "output": true + }, + { + "input": 1, + "output": false + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + }, + "persistent": true + }, + "custom.dpm2-mcm": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "2": "{view.params.tagProps[2]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{2}/STATE" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},1)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": 0, + "output": true + }, + { + "input": 1, + "output": false + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + }, + "persistent": true + }, + "custom.mcm-dpm1": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[0]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/STATE" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},1)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": 0, + "output": true + }, + { + "input": 1, + "output": false + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + }, + "persistent": true + }, + "params.tagProps": { + "paramDirection": "input", + "persistent": true + } + }, + "props": { + "defaultSize": { + "height": 894, + "width": 1920 + } + }, + "root": { + "children": [ + { + "events": { + "dom": { + "onClick": { + "config": { + "script": "\tself.session.custom.dpm_view_path \u003d self.props.params.view\n\tself.session.custom.show_dpm_device_view \u003d True" + }, + "scope": "G", + "type": "script" + } + } + }, + "meta": { + "name": "MCM" + }, + "position": { + "height": 0.5, + "width": 0.5, + "x": 0.5, + "y": 0.5 + }, + "propConfig": { + "props.params.InOn": { + "binding": { + "config": { + "path": "view.custom.dpm2-mcm" + }, + "type": "property" + } + }, + "props.params.OutOn": { + "binding": { + "config": { + "path": "view.custom.mcm-dpm1" + }, + "type": "property" + } + } + }, + "props": { + "params": { + "InDown": false, + "InLeft": true, + "InUp": false, + "OutDown": false, + "OutRight": false, + "OutUp": true + }, + "path": "Windows/Tabs/Enternet Windows/Components/EN4TR" + }, + "type": "ia.display.view" + }, + { + "events": { + "dom": { + "onClick": { + "config": { + "script": "\tself.session.custom.dpm_view_path \u003d self.props.params.view\n\tself.session.custom.show_dpm_device_view \u003d True" + }, + "scope": "G", + "type": "script" + } + } + }, + "meta": { + "name": "DPM01_VS01C" + }, + "position": { + "height": 0.5, + "width": 0.5, + "x": 0.5 + }, + "propConfig": { + "props.params.DownOn": { + "binding": { + "config": { + "path": "view.custom.mcm-dpm1" + }, + "type": "property" + } + }, + "props.params.InOn": { + "binding": { + "config": { + "path": "view.custom.dpm1-dpm2" + }, + "type": "property" + } + }, + "props.params.OutOn": { + "binding": { + "config": { + "path": "view.custom.mcm-dpm1" + }, + "type": "property" + } + } + }, + "props": { + "params": { + "Down1": false, + "Down2": false, + "Down3": true, + "DownLeft": false, + "DownRight": false, + "InDown": false, + "InLeft": true, + "InUp": false, + "OutDown": true, + "OutRight": false, + "OutUp": false, + "view": "Windows/Tabs/Enternet Windows/DPMs/DPM Devices/MCM05/DPM01_VS01C" + }, + "path": "Windows/Tabs/Enternet Windows/Components/DPM_BLOCK" + }, + "type": "ia.display.view" + }, + { + "events": { + "dom": { + "onClick": { + "config": { + "script": "\tself.session.custom.dpm_view_path \u003d self.props.params.view\n\tself.session.custom.show_dpm_device_view \u003d True" + }, + "scope": "G", + "type": "script" + } + } + }, + "meta": { + "name": "DPM01_VS01B" + }, + "position": { + "height": 0.5, + "width": 0.5 + }, + "propConfig": { + "props.params.DownOn": { + "binding": { + "config": { + "path": "view.custom.dpm2-mcm" + }, + "type": "property" + } + }, + "props.params.InOn": { + "binding": { + "config": { + "path": "view.custom.dpm2-mcm" + }, + "type": "property" + } + }, + "props.params.OutOn": { + "binding": { + "config": { + "path": "view.custom.dpm1-dpm2" + }, + "type": "property" + } + } + }, + "props": { + "params": { + "Down1": false, + "Down2": true, + "Down3": false, + "DownLeft": false, + "DownRight": false, + "InDown": true, + "InLeft": false, + "InUp": false, + "OutDown": false, + "OutRight": true, + "OutUp": false, + "view": "Windows/Tabs/Enternet Windows/DPMs/DPM Devices/MCM05/DPM01_VS01B" + }, + "path": "Windows/Tabs/Enternet Windows/Components/DPM_BLOCK" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "DPM1_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.5, + "y": 0.1 + }, + "props": { + "text": "DPM01_VS01C 11.200.1.2", + "textStyle": { + "fontSize": "1vmin" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "DPM2_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.01, + "y": 0.1 + }, + "props": { + "text": "DPM01_VS01B 11.200.1.3", + "textStyle": { + "fontSize": "1vmin" + } + }, + "type": "ia.display.label" + }, + { + "events": { + "dom": { + "onClick": { + "config": { + "script": "\tself.session.custom.dpm_view_path \u003d self.props.params.view\n\tself.session.custom.show_dpm_device_view \u003d True" + }, + "scope": "G", + "type": "script" + } + } + }, + "meta": { + "name": "DPM2_DEVICE_0" + }, + "position": { + "height": 0.5, + "width": 0.5, + "y": 0.5 + }, + "propConfig": { + "props.params.On": { + "binding": { + "config": { + "path": "view.custom.dpm2-mcm" + }, + "type": "property" + } + } + }, + "props": { + "params": { + "LD": false, + "LR": false, + "LRD": false, + "LRU": false, + "LU": false, + "RD": false, + "RLD": false, + "RLU": true, + "RU": false + }, + "path": "Windows/Tabs/Enternet Windows/Components/CommLines" + }, + "type": "ia.display.view" + } + ], + "meta": { + "name": "root" + }, + "position": { + "x": 120, + "y": -723 + }, + "props": { + "mode": "percent", + "style": { + "backgroundColor": "#ffffff" + } + }, + "type": "ia.container.coord" + } +} \ No newline at end of file diff --git a/.resources/e535664bb2c9fdb9049b78679f4f4c5db19a09f9c0a71c6d3af13ca0046afb1c b/.resources/e535664bb2c9fdb9049b78679f4f4c5db19a09f9c0a71c6d3af13ca0046afb1c deleted file mode 100644 index 049ccde7..00000000 --- a/.resources/e535664bb2c9fdb9049b78679f4f4c5db19a09f9c0a71c6d3af13ca0046afb1c +++ /dev/null @@ -1,2092 +0,0 @@ -{ - "custom": { - "api_region_name": "eu", - "default_file_config": { - "ETag": "?", - "LastModified": "?", - "Size": 0, - "StorageClass": "?" - }, - "dummy": [], - "file_not_found": true, - "file_options": [], - "loading": false, - "selected_file": "", - "selected_file_config": { - "ETag": "?", - "Filename": ".svg", - "Key": ".svg", - "LastModified": "?", - "Size": 0, - "StorageClass": "?" - }, - "stage_config": { - "account_id": "006306898152", - "api_call_role": "arn:aws:iam::609617486056:role/RMESDScadaS3ManagementAPIcallRole-prod-eu-west-1", - "endpoint": "https://eu-west-1.scada-s3-management.scada.eurme.amazon.dev/", - "lambda_name": "RMESDScadaS3ManagementFlaskLambda-prod", - "region": "eu-west-1", - "repo_bucket": "ignition-image-repo", - "s3_region": "eu-west-1", - "source_bucket": "ignition-image-source" - } - }, - "events": { - "system": { - "onStartup": { - "config": { - "script": "\tself.custom.selected_file \u003d self.params.selected_file" - }, - "scope": "G", - "type": "script" - } - } - }, - "params": { - "bucket": "", - "enables": { - "delete": true, - "download": true, - "file": true, - "object_key": false, - "upload": true - }, - "files": [], - "prefix": "", - "selected_file": "", - "suffix": ".svg", - "upload_file_types": [ - "svg" - ], - "whid": "" - }, - "propConfig": { - "custom.api_region_name": { - "binding": { - "config": { - "path": "session.custom.aws.prefix" - }, - "type": "property" - }, - "persistent": true - }, - "custom.default_file_config": { - "persistent": true - }, - "custom.default_file_config.Filename": { - "binding": { - "config": { - "expression": "{view.params.selected_file}+{view.params.suffix}" - }, - "type": "expr" - } - }, - "custom.default_file_config.Key": { - "binding": { - "config": { - "expression": "{view.params.prefix}+{view.params.selected_file}+{view.params.suffix}" - }, - "type": "expr" - } - }, - "custom.dummy": { - "persistent": true - }, - "custom.file_not_found": { - "binding": { - "config": { - "expression": "{view.custom.selected_file_config.Size}\u003d0" - }, - "type": "expr" - }, - "persistent": true - }, - "custom.file_options": { - "binding": { - "config": { - "path": "view.params.files" - }, - "transforms": [ - { - "code": "\tprefix \u003d self.params.prefix\n\tsuffix \u003d self.params.suffix\n\treturn [{\u0027value\u0027: x.Filename, \n\t\t\u0027label\u0027: x.Filename} \n\t\tfor x in value]", - "type": "script" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.loading": { - "persistent": true - }, - "custom.selected_file": { - "persistent": true - }, - "custom.selected_file_config": { - "binding": { - "config": { - "expression": "{view.custom.selected_file}+toStr({view.custom.file_options})" - }, - "transforms": [ - { - "code": "\tdef_file_config \u003d self.custom.default_file_config\n\treturn next((x for x in self.params.files if x.Filename \u003d\u003d self.custom.selected_file), def_file_config)", - "type": "script" - } - ], - "type": "expr" - }, - "persistent": true - }, - "custom.stage_config": { - "binding": { - "config": { - "expression": "{view.custom.api_region_name}" - }, - "transforms": [ - { - "code": "\treturn AWS.s3.STAGE_CONFIG[\u0027prod\u0027][value]", - "type": "script" - } - ], - "type": "expr" - }, - "persistent": true - }, - "params.bucket": { - "paramDirection": "input", - "persistent": true - }, - "params.enables": { - "paramDirection": "input", - "persistent": true - }, - "params.files": { - "paramDirection": "input", - "persistent": true - }, - "params.prefix": { - "paramDirection": "input", - "persistent": true - }, - "params.selected_file": { - "onChange": { - "enabled": null, - "script": "\tif not missedEvents:\n\t\tselection \u003d self.getChild(\"root\").getChild(\"FlexContainer\").getChild(\"Table\").props.selection\n\t\tif currentValue.value:\n\t\t\tif not currentValue.value.endswith(self.params.suffix):\n\t\t\t\tself.custom.selected_file \u003d currentValue.value + self.params.suffix\n\t\t\telse:\n\t\t\t\tself.custom.selected_file \u003d currentValue.value\n\t\t\t# now select the correct row in table that matches selection\n\t\t\tfilename \u003d self.custom.selected_file\n\t\t\tselected_row, selected_data \u003d None, []\n\t\t\tfor index, row in enumerate(self.params.files):\n\t\t\t\tif row.Filename \u003d\u003d filename:\n\t\t\t\t\tselected_row \u003d index\n\t\t\t\t\tselected_data.append(row)\n\t\t\t\t\tbreak\n\t\t\tselection.data \u003d selected_data\n\t\t\tselection.selectedRow \u003d selected_row\n\t\telse:\n\t\t\t# file is none, clear out file selection\n\t\t\t# I know, why are we setting to -1, then None? it\u0027s an ignition persp table bug\n\t\t\t# as of 8.1.20. It works...\n\t\t\tselection.selectedRow \u003d -1\n\t\t\tselection.selectedColumn \u003d -1\n\t\t\tselection.selectedRow \u003d None\n\t\t\tselection.selectedColumn \u003d None\n\t" - }, - "paramDirection": "input", - "persistent": true - }, - "params.suffix": { - "paramDirection": "input", - "persistent": true - }, - "params.upload_file_types": { - "paramDirection": "input", - "persistent": true - }, - "params.whid": { - "paramDirection": "input", - "persistent": true - } - }, - "props": { - "defaultSize": { - "height": 600, - "width": 550 - } - }, - "root": { - "children": [ - { - "children": [ - { - "children": [ - { - "meta": { - "name": "Label" - }, - "position": { - "basis": "125px", - "shrink": 0 - }, - "props": { - "style": { - "classes": "Framework/Card/Label Text/RightAlign_with_Padding", - "paddingLeft": "5px" - }, - "text": "Select File:" - }, - "type": "ia.display.label" - }, - { - "events": { - "component": { - "onActionPerformed": { - "config": { - "script": "\t# when user selects new file, send message to update selected image on parent view\n\tif self.props.value:\n\t\tsuffix \u003d self.view.params.suffix\n\t\tselected_image \u003d self.props.value.replace(suffix, \u0027\u0027)\n\t\tpayload \u003d {\u0027image\u0027: selected_image}\n\t\tsystem.perspective.sendMessage(\u0027update_selected_image\u0027, payload, scope\u003d\u0027session\u0027)\n\t\t" - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "Dropdown", - "tooltip": { - "location": "bottom", - "style": { - "whiteSpace": "pre" - }, - "text": "Click here to select a different \nstage folder to manage" - } - }, - "position": { - "basis": "175px", - "grow": 1, - "shrink": 0 - }, - "propConfig": { - "props.enabled": { - "binding": { - "config": { - "expression": "{view.params.enables.file}\u0026\u0026try(len({view.params.files})\u003e0,false)" - }, - "type": "expr" - } - }, - "props.options": { - "binding": { - "config": { - "path": "view.custom.file_options" - }, - "type": "property" - } - }, - "props.value": { - "binding": { - "config": { - "bidirectional": true, - "path": "view.custom.selected_file" - }, - "type": "property" - } - } - }, - "props": { - "style": { - "margin": "2px", - "marginRight": "5px" - } - }, - "type": "ia.input.dropdown" - }, - { - "events": { - "component": { - "onFileReceived": { - "config": { - "script": "\tself.upload_file(event\u003devent)\n" - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "FileUpload", - "tooltip": { - "enabled": true - } - }, - "position": { - "basis": "26px", - "shrink": 0 - }, - "propConfig": { - "meta.tooltip.text": { - "binding": { - "config": { - "expression": "stringFormat(\u0027Upload new version of %s\u0027,{view.custom.selected_file})" - }, - "type": "expr" - } - }, - "meta.visible": { - "binding": { - "config": { - "expression": "{view.params.enables.upload}\u0026\u0026!{view.custom.file_not_found}" - }, - "type": "expr" - } - }, - "props.supportedFileTypes": { - "binding": { - "config": { - "path": "view.params.upload_file_types" - }, - "type": "property" - } - } - }, - "props": { - "fileSizeLimit": 20, - "fileUploadIcon": { - "style": { - "borderStyle": "none", - "classes": "Input/Button/Secondary_minimal", - "margin": "-5px" - } - }, - "maxUploads": 1 - }, - "scripts": { - "customMethods": [ - { - "name": "update_bindings", - "params": [], - "script": "\t\"\"\"\n\t\tAfter data saved to S3, refresh session and view bindings\n\t\"\"\"\n\t\n\tself.view.custom.loading \u003d False\n\t# reset file upload component to default state\n\tself.clearUploads()\n\t# send message to update files param on parent view\n\tbucket \u003d self.view.params.bucket\n\tsystem.perspective.sendMessage(\u0027update_file_binding\u0027, {\u0027bucket\u0027: bucket}, scope\u003d\u0027session\u0027)\n\t" - }, - { - "name": "show_success_dialog", - "params": [ - "msg\u003dNone" - ], - "script": "\t# ~~ 13 PARAMETERS ~~\n\t# state\t\t\t\t\t(default \u003d info) empty string uses generic gray styling\n\t# title \t\t\t\t(default \u003d Alert Title) empty string sets the title visibility to false\n\t# message \t\t\t\t(default \u003d Alert message goes here.)\n\t# show close button\t\t(default \u003d true) boolean\n\t# btn text primary\t\t(default \u003d \"Primary\")\n\t# btn text secondary\t(default \u003d \"Secondary\")\n\t# btn icon primary \t\t(default \u003d chevron_right) do not include \u0027material/\u0027 in the path, just the icon name\n\t# btn icon secondary \t(default \u003d \"\") do not include \u0027material/\u0027 in the path, just the icon name\n\t# btn icon alignment\t(default \u003d \"right\") left or right\n\t# btn primary action\t(default \u003d \"\") add message handlers on this button to enable other script actions\n\t# btn secondary action\t(default \u003d \"\") add message handlers on this button to enable other script actions\n\t# btn close action\t\t(default \u003d \"\") add message handlers on this icon to enable other script actions\n\t# payload\t\t\t\t(default \u003d {}) add a payload here to return to the target message handler\n\t\n\tAlerts.showAlert(\n\t\t\"success\", \n\t\t\"File Uploaded\", \n\t\tmsg, \n\t\t\"true\",\n\t\t\"OK\", \n\t\t\"CLOSE\", \n\t\t\"\", \n\t\t\"\", \n\t\t\"left\", \n\t\t\"closePopup\", \n\t\t\"closePopup\", \n\t\t\"closePopup\",\n\t\t{}\n\t)\n\t\t\t" - }, - { - "name": "show_warning_dialog", - "params": [ - "msg\u003dNone" - ], - "script": "\t# ~~ 13 PARAMETERS ~~\n\t# state\t\t\t\t\t(default \u003d info) empty string uses generic gray styling\n\t# title \t\t\t\t(default \u003d Alert Title) empty string sets the title visibility to false\n\t# message \t\t\t\t(default \u003d Alert message goes here.)\n\t# show close button\t\t(default \u003d true) boolean\n\t# btn text primary\t\t(default \u003d \"Primary\")\n\t# btn text secondary\t(default \u003d \"Secondary\")\n\t# btn icon primary \t\t(default \u003d chevron_right) do not include \u0027material/\u0027 in the path, just the icon name\n\t# btn icon secondary \t(default \u003d \"\") do not include \u0027material/\u0027 in the path, just the icon name\n\t# btn icon alignment\t(default \u003d \"right\") left or right\n\t# btn primary action\t(default \u003d \"\") add message handlers on this button to enable other script actions\n\t# btn secondary action\t(default \u003d \"\") add message handlers on this button to enable other script actions\n\t# btn close action\t\t(default \u003d \"\") add message handlers on this icon to enable other script actions\n\t# payload\t\t\t\t(default \u003d {}) add a payload here to return to the target message handler\n\t\n\tAlerts.showAlert(\n\t\t\"warning\", \n\t\t\"File NOT Uploaded\", \n\t\tmsg, \n\t\t\"true\",\n\t\t\"OK\", \n\t\t\"CLOSE\", \n\t\t\"\", \n\t\t\"\", \n\t\t\"left\", \n\t\t\"closePopup\", \n\t\t\"closePopup\", \n\t\t\"closePopup\",\n\t\t{}\n\t)\n\t\t\t\t" - }, - { - "name": "show_error_dialog", - "params": [ - "msg\u003dNone" - ], - "script": "\t# ~~ 13 PARAMETERS ~~\n\t# state\t\t\t\t\t(default \u003d info) empty string uses generic gray styling\n\t# title \t\t\t\t(default \u003d Alert Title) empty string sets the title visibility to false\n\t# message \t\t\t\t(default \u003d Alert message goes here.)\n\t# show close button\t\t(default \u003d true) boolean\n\t# btn text primary\t\t(default \u003d \"Primary\")\n\t# btn text secondary\t(default \u003d \"Secondary\")\n\t# btn icon primary \t\t(default \u003d chevron_right) do not include \u0027material/\u0027 in the path, just the icon name\n\t# btn icon secondary \t(default \u003d \"\") do not include \u0027material/\u0027 in the path, just the icon name\n\t# btn icon alignment\t(default \u003d \"right\") left or right\n\t# btn primary action\t(default \u003d \"\") add message handlers on this button to enable other script actions\n\t# btn secondary action\t(default \u003d \"\") add message handlers on this button to enable other script actions\n\t# btn close action\t\t(default \u003d \"\") add message handlers on this icon to enable other script actions\n\t# payload\t\t\t\t(default \u003d {}) add a payload here to return to the target message handler\n\t\n\tAlerts.showAlert(\n\t\t\"error\", \n\t\t\"File Upload Error!\", \n\t\tmsg, \n\t\t\"true\",\n\t\t\"OK\", \n\t\t\"CLOSE\", \n\t\t\"\", \n\t\t\"\", \n\t\t\"left\", \n\t\t\"closePopup\", \n\t\t\"closePopup\", \n\t\t\"closePopup\",\n\t\t{}\n\t)\n\t\t\t\t\t" - }, - { - "name": "upload_file", - "params": [ - "event\u003dNone" - ], - "script": "\tfrom AWS.s3 import S3Manager\n\tfrom pprint import pformat\n\tsystem.perspective.print(\u0027FileUpload component upload_file custom method reached...\u0027)\n\tself.view.custom.loading \u003d True\n\ttry:\n\t\tapi_stage \u003d \u0027prod\u0027\n\t\tusername \u003d self.session.props.auth.user.userName\n\t\tapi_region_name \u003d self.view.custom.api_region_name\n\t\tbucket \u003d self.view.params.bucket\n\t\tobj_key \u003d self.view.custom.selected_file_config.Key\n\t\tregion \u003d self.view.custom.stage_config.s3_region\n\t\texisting_filename \u003d self.view.custom.selected_file_config.Filename\n\t\tfilename \u003d event.file.name\n\t\t# verify that uploaded file name matches existing file name. Throw error if not.\n\t\tif filename !\u003d existing_filename:\n\t\t\tmsg \u003d \u0027File uploaded does not have the same name as target object key. Please check spelling and that you selected the correct file to upload. Target filename: %s. Received: %s\u0027 % (\n\t\t\t\t\texisting_filename, filename)\n\t\t\tself.show_error_dialog(msg)\n\t\t\tself.view.custom.loading \u003d False\n\t\t\tself.clearUploads()\n\t\t\treturn\n\t\tsystem.perspective.print(\u0027obj_key to upload: %s\u0027 % obj_key)\n\t\tobj_data \u003d event.file.getString()\n\t\tsystem.perspective.print(\u0027obj_data length: %s\u0027 % len(obj_data))\n\n\t\ts3m \u003d S3Manager(api_stage, api_region_name, username)\n\t\ttry:\n\t\t\tresp \u003d s3m.upload(\n\t\t\t\tobj_data\u003dobj_data,\n\t\t\t\tobj_key\u003dobj_key,\n\t\t\t\tbucket\u003dbucket,\n\t\t\t\tregion\u003dregion\n\t\t\t)\n\t\t\tresp_code \u003d resp.get(\u0027code\u0027, None)\n\t\t\tif (resp_code and resp_code !\u003d 200) or (not resp_code and \u0027message\u0027 in resp):\n\t\t\t\t# this means the API encountered an error, annunciate the error here\n\t\t\t\tmsg \u003d \u0027API encountered error uploading %s to %s bucket. \\nResponse: %s\u0027 % (obj_key, bucket, pformat(resp))\n\t\t\t\tsystem.perspective.print(msg)\n\t\t\t\tself.view.custom.loading \u003d False\n\t\t\t\tself.show_error_dialog(msg)\n\t\t\t\tself.clearUploads()\n\t\t\t\treturn\n\t\t\tmsg \u003d \u0027Successfully uploaded %s object in %s bucket!\\nResponse: %s\u0027 % (obj_key, bucket, pformat(resp))\n\t\t\tsystem.perspective.print(msg)\n\t\t\tself.show_success_dialog(msg)\n\t\t\tself.update_bindings()\n\t\texcept:\n\t\t\timport traceback\n\t\t\tmsg \u003d \u0027Error uploading %s object in %s bucket: %s\u0027 % (obj_key, bucket, traceback.format_exc())\n\t\t\tsystem.perspective.print(msg)\n\t\t\tself.view.custom.loading \u003d False\n\t\t\tself.show_error_dialog(msg)\n\t\t\tself.clearUploads()\n\texcept:\n\t\timport traceback\n\t\tmsg \u003d \u0027General Error uploading %s object in %s bucket: %s\u0027 % (obj_key, bucket, traceback.format_exc())\n\t\tsystem.perspective.print(msg)\n\t\tself.view.custom.loading \u003d False\n\t\tself.show_error_dialog(msg)\n\t\tself.clearUploads()\n\t\t" - } - ], - "extensionFunctions": null, - "messageHandlers": [] - }, - "type": "ia.input.fileupload" - }, - { - "events": { - "component": { - "onActionPerformed": { - "config": { - "script": "\tfrom AWS.s3 import S3Manager\n\tfrom pprint import pformat\n\timport json\n\t\n\tapi_stage \u003d \u0027prod\u0027\n\tusername \u003d self.session.props.auth.user.userName\n\tapi_region_name \u003d self.view.custom.api_region_name\n\tbucket \u003d self.view.params.bucket\n\tobj_key \u003d self.view.custom.selected_file_config.Key\n\tregion \u003d self.view.custom.stage_config.s3_region\n\tfilename \u003d self.view.custom.selected_file_config.Filename\n\t\n\ts3m \u003d S3Manager(api_stage, api_region_name, username)\n\tdata \u003d None\n\ttry:\n\t\tresp \u003d s3m.download(bucket\u003dbucket, obj_key\u003dobj_key, region\u003dregion)\n\t\ttry:\n\t\t\tresp_code \u003d resp.get(\u0027code\u0027, None)\n\t\texcept AttributeError:\n\t\t\tresp_code \u003d None\n\t\tif (resp_code and resp_code !\u003d 200) or (not resp_code and \u0027message\u0027 in resp):\n\t\t\t# this means the API encountered an error, annunciate the error here\n\t\t\tmsg \u003d \u0027API encountered error downloading %s on %s bucket. \\nResponse: %s\u0027 % (obj_key, bucket, pformat(sanitize_tree(resp)))\n\t\t\tsystem.perspective.print(msg)\n\t\t\tself.show_error_dialog(msg)\n\t\t\treturn\n\t\tif isinstance(resp, dict) or isinstance(resp, list):\n\t\t\tdata \u003d json.dumps(resp, indent\u003d2)\n\t\telse:\n\t\t\tdata \u003d resp\n\texcept:\n\t\timport traceback\n\t\tmsg \u003d \u0027error downloading %s obj: %s\u0027 % (obj_key, traceback.format_exc())\n\t\tsystem.perspective.print(msg)\n\t\tself.show_error_dialog(msg)\n\tif data:\n\t\tsystem.perspective.download(filename, data)\n\telse:\n\t\tsystem.perspective.print(\u0027no data for %s obj!\u0027 % obj_key)\n\t\tself.show_error_dialog(msg)\n\t" - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "Download Button", - "tooltip": { - "enabled": true - } - }, - "position": { - "basis": "26px", - "shrink": 0 - }, - "propConfig": { - "meta.tooltip.text": { - "binding": { - "config": { - "expression": "stringFormat(\u0027Download copy of %s\u0027,{view.custom.selected_file})" - }, - "type": "expr" - } - }, - "props.enabled": { - "binding": { - "config": { - "expression": "{view.params.enables.download}\u0026\u0026!{view.custom.file_not_found}" - }, - "type": "expr" - } - } - }, - "props": { - "image": { - "icon": { - "path": "material/cloud_download" - } - }, - "primary": false, - "style": { - "classes": "Input/Button/Secondary_minimal", - "margin": "2px" - }, - "text": "" - }, - "scripts": { - "customMethods": [ - { - "name": "show_error_dialog", - "params": [ - "msg\u003dNone" - ], - "script": "\t# ~~ 13 PARAMETERS ~~\n\t# state\t\t\t\t\t(default \u003d info) empty string uses generic gray styling\n\t# title \t\t\t\t(default \u003d Alert Title) empty string sets the title visibility to false\n\t# message \t\t\t\t(default \u003d Alert message goes here.)\n\t# show close button\t\t(default \u003d true) boolean\n\t# btn text primary\t\t(default \u003d \"Primary\")\n\t# btn text secondary\t(default \u003d \"Secondary\")\n\t# btn icon primary \t\t(default \u003d chevron_right) do not include \u0027material/\u0027 in the path, just the icon name\n\t# btn icon secondary \t(default \u003d \"\") do not include \u0027material/\u0027 in the path, just the icon name\n\t# btn icon alignment\t(default \u003d \"right\") left or right\n\t# btn primary action\t(default \u003d \"\") add message handlers on this button to enable other script actions\n\t# btn secondary action\t(default \u003d \"\") add message handlers on this button to enable other script actions\n\t# btn close action\t\t(default \u003d \"\") add message handlers on this icon to enable other script actions\n\t# payload\t\t\t\t(default \u003d {}) add a payload here to return to the target message handler\n\t\n\tAlerts.showAlert(\n\t\t\"error\", \n\t\t\"File Download Error!\", \n\t\tmsg, \n\t\t\"true\",\n\t\t\"OK\", \n\t\t\"CLOSE\", \n\t\t\"\", \n\t\t\"\", \n\t\t\"left\", \n\t\t\"closePopup\", \n\t\t\"closePopup\", \n\t\t\"closePopup\",\n\t\t{}\n\t)\n\t\t\t\t\t\t" - } - ], - "extensionFunctions": null, - "messageHandlers": [] - }, - "type": "ia.input.button" - }, - { - "events": { - "component": { - "onActionPerformed": { - "config": { - "script": "\tself.show_confirm_dialog()" - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "Delete Button", - "tooltip": { - "enabled": true - } - }, - "position": { - "basis": "26px", - "shrink": 0 - }, - "propConfig": { - "meta.tooltip.text": { - "binding": { - "config": { - "expression": "stringFormat(\u0027Delete record of %s file from %s bucket\u0027,\r\n\t{view.custom.selected_file},{view.params.bucket})" - }, - "type": "expr" - } - }, - "props.enabled": { - "binding": { - "config": { - "expression": "{view.params.enables.delete}\u0026\u0026!{view.custom.file_not_found}" - }, - "type": "expr" - } - } - }, - "props": { - "image": { - "icon": { - "path": "material/delete_forever" - } - }, - "primary": false, - "style": { - "classes": "Input/Button/Secondary_minimal", - "margin": "2px" - }, - "text": "" - }, - "scripts": { - "customMethods": [ - { - "name": "show_success_dialog", - "params": [ - "msg\u003dNone" - ], - "script": "\t# ~~ 13 PARAMETERS ~~\n\t# state\t\t\t\t\t(default \u003d info) empty string uses generic gray styling\n\t# title \t\t\t\t(default \u003d Alert Title) empty string sets the title visibility to false\n\t# message \t\t\t\t(default \u003d Alert message goes here.)\n\t# show close button\t\t(default \u003d true) boolean\n\t# btn text primary\t\t(default \u003d \"Primary\")\n\t# btn text secondary\t(default \u003d \"Secondary\")\n\t# btn icon primary \t\t(default \u003d chevron_right) do not include \u0027material/\u0027 in the path, just the icon name\n\t# btn icon secondary \t(default \u003d \"\") do not include \u0027material/\u0027 in the path, just the icon name\n\t# btn icon alignment\t(default \u003d \"right\") left or right\n\t# btn primary action\t(default \u003d \"\") add message handlers on this button to enable other script actions\n\t# btn secondary action\t(default \u003d \"\") add message handlers on this button to enable other script actions\n\t# btn close action\t\t(default \u003d \"\") add message handlers on this icon to enable other script actions\n\t# payload\t\t\t\t(default \u003d {}) add a payload here to return to the target message handler\n\t\n\tAlerts.showAlert(\n\t\t\"success\", \n\t\t\"File Deleted\", \n\t\tmsg, \n\t\t\"true\",\n\t\t\"OK\", \n\t\t\"CLOSE\", \n\t\t\"\", \n\t\t\"\", \n\t\t\"left\", \n\t\t\"closePopup\", \n\t\t\"closePopup\", \n\t\t\"closePopup\",\n\t\t{}\n\t)\n\t\t\t\t\t" - }, - { - "name": "show_warning_dialog", - "params": [ - "msg\u003dNone" - ], - "script": "\t# ~~ 13 PARAMETERS ~~\n\t# state\t\t\t\t\t(default \u003d info) empty string uses generic gray styling\n\t# title \t\t\t\t(default \u003d Alert Title) empty string sets the title visibility to false\n\t# message \t\t\t\t(default \u003d Alert message goes here.)\n\t# show close button\t\t(default \u003d true) boolean\n\t# btn text primary\t\t(default \u003d \"Primary\")\n\t# btn text secondary\t(default \u003d \"Secondary\")\n\t# btn icon primary \t\t(default \u003d chevron_right) do not include \u0027material/\u0027 in the path, just the icon name\n\t# btn icon secondary \t(default \u003d \"\") do not include \u0027material/\u0027 in the path, just the icon name\n\t# btn icon alignment\t(default \u003d \"right\") left or right\n\t# btn primary action\t(default \u003d \"\") add message handlers on this button to enable other script actions\n\t# btn secondary action\t(default \u003d \"\") add message handlers on this button to enable other script actions\n\t# btn close action\t\t(default \u003d \"\") add message handlers on this icon to enable other script actions\n\t# payload\t\t\t\t(default \u003d {}) add a payload here to return to the target message handler\n\t\n\tAlerts.showAlert(\n\t\t\"warning\", \n\t\t\"File NOT Deleted\", \n\t\tmsg, \n\t\t\"true\",\n\t\t\"OK\", \n\t\t\"CLOSE\", \n\t\t\"\", \n\t\t\"\", \n\t\t\"left\", \n\t\t\"closePopup\", \n\t\t\"closePopup\", \n\t\t\"closePopup\",\n\t\t{}\n\t)\n\t\t\t\t\t" - }, - { - "name": "show_error_dialog", - "params": [ - "msg\u003dNone" - ], - "script": "\t# ~~ 13 PARAMETERS ~~\n\t# state\t\t\t\t\t(default \u003d info) empty string uses generic gray styling\n\t# title \t\t\t\t(default \u003d Alert Title) empty string sets the title visibility to false\n\t# message \t\t\t\t(default \u003d Alert message goes here.)\n\t# show close button\t\t(default \u003d true) boolean\n\t# btn text primary\t\t(default \u003d \"Primary\")\n\t# btn text secondary\t(default \u003d \"Secondary\")\n\t# btn icon primary \t\t(default \u003d chevron_right) do not include \u0027material/\u0027 in the path, just the icon name\n\t# btn icon secondary \t(default \u003d \"\") do not include \u0027material/\u0027 in the path, just the icon name\n\t# btn icon alignment\t(default \u003d \"right\") left or right\n\t# btn primary action\t(default \u003d \"\") add message handlers on this button to enable other script actions\n\t# btn secondary action\t(default \u003d \"\") add message handlers on this button to enable other script actions\n\t# btn close action\t\t(default \u003d \"\") add message handlers on this icon to enable other script actions\n\t# payload\t\t\t\t(default \u003d {}) add a payload here to return to the target message handler\n\t\n\tAlerts.showAlert(\n\t\t\"error\", \n\t\t\"File Delete Error!\", \n\t\tmsg, \n\t\t\"true\",\n\t\t\"OK\", \n\t\t\"CLOSE\", \n\t\t\"\", \n\t\t\"\", \n\t\t\"left\", \n\t\t\"closePopup\", \n\t\t\"closePopup\", \n\t\t\"closePopup\",\n\t\t{}\n\t)\n\t\t\t\t\t" - }, - { - "name": "show_confirm_dialog", - "params": [ - "payload\u003dNone" - ], - "script": "\t# ~~ 13 PARAMETERS ~~\n\t# state\t\t\t\t\t(default \u003d info) empty string uses generic gray styling\n\t# title \t\t\t\t(default \u003d Alert Title) empty string sets the title visibility to false\n\t# message \t\t\t\t(default \u003d Alert message goes here.)\n\t# show close button\t\t(default \u003d true) boolean\n\t# btn text primary\t\t(default \u003d \"Primary\")\n\t# btn text secondary\t(default \u003d \"Secondary\")\n\t# btn icon primary \t\t(default \u003d chevron_right) do not include \u0027material/\u0027 in the path, just the icon name\n\t# btn icon secondary \t(default \u003d \"\") do not include \u0027material/\u0027 in the path, just the icon name\n\t# btn icon alignment\t(default \u003d \"right\") left or right\n\t# btn primary action\t(default \u003d \"\") add message handlers on this button to enable other script actions\n\t# btn secondary action\t(default \u003d \"\") add message handlers on this button to enable other script actions\n\t# btn close action\t\t(default \u003d \"\") add message handlers on this icon to enable other script actions\n\t# payload\t\t\t\t(default \u003d {}) add payload of data to pass to the popup\n\tmsg \u003d (\u0027Are you sure you want to delete %s file from %s S3 bucket? THIS OPERATION CANNOT BE UNDONE!\u0027) % (\n\t\tself.view.custom.selected_file, self.view.params.bucket)\n\tpayload \u003d {\u0027bucket\u0027: self.view.params.bucket}\t\t\n\tAlerts.showAlert(\n\t\t\"info\", \n\t\t\"Delete from S3?\", \n\t\tmsg, \n\t\t\"true\",\n\t\t\"Continue\", \n\t\t\"Cancel\", \n\t\t\"delete_forever\", \n\t\t\"\", \n\t\t\"left\", \n\t\t\"confirm_delete_file\", \n\t\t\"closePopup\", \n\t\t\"closePopup\",\n\t\tpayload\n\t)\n\t\t\t" - }, - { - "name": "update_bindings", - "params": [], - "script": "\t\"\"\"\n\t\tAfter deleted from S3, refresh session and view bindings\n\t\"\"\"\n\tself.view.custom.loading \u003d False\n\t# send message to update files param on parent view\n\tbucket \u003d self.view.params.bucket\n\tsystem.perspective.sendMessage(\u0027update_file_binding\u0027, {\u0027bucket\u0027: bucket}, scope\u003d\u0027session\u0027)\n\t" - }, - { - "name": "delete_file", - "params": [], - "script": "\t\"\"\"\n\t\tCall AWS.s3.S3Manager.delete() method with user selections\n\t\"\"\"\n\tfrom AWS.s3 import S3Manager\n\tfrom pprint import pformat\n\tfrom helper.helper import sanitize_tree\n\t\n\tapi_region_name \u003d self.view.custom.api_region_name\n\tusername \u003d self.session.props.auth.user.userName\n\tself.view.custom.loading \u003d True\n\n\ts3m \u003d S3Manager(\u0027prod\u0027, api_region_name, username)\n\n\tbucket \u003d self.view.params.bucket\n\tobj_key \u003d self.view.custom.selected_file_config.Key\n\toperation \u003d \u0027delete\u0027\n\tparams \u003d {\u0027obj_key\u0027: obj_key, \u0027bucket\u0027: bucket}\n\ttry:\n\t\tresp \u003d getattr(s3m, operation)(**params)\n\t\tresp_code \u003d resp.get(\u0027code\u0027, None)\n\t\tif (resp_code and resp_code !\u003d 200) or (not resp_code and \u0027message\u0027 in resp):\n\t\t\t# this means the API encountered an error, annunciate the error here\n\t\t\tmsg \u003d \u0027API encountered error deleting %s on %s bucket. \\nResponse: %s\u0027 % (obj_key, bucket, pformat(sanitize_tree(resp)))\n\t\t\tsystem.perspective.print(msg)\n\t\t\tself.view.custom.loading \u003d False\n\t\t\tself.show_error_dialog(msg)\n\t\t\treturn\n\t\tmsg \u003d pformat(sanitize_tree(resp))\n\t\tsystem.perspective.print(msg)\n\t\tself.show_success_dialog(msg)\n\t\tself.update_bindings()\n\texcept:\n\t\timport traceback\n\t\tmsg \u003d \u0027Error executing %s operation! \\nError: %s\u0027 % (\n\t\t\t\toperation, traceback.format_exc())\n\t\tsystem.perspective.print(msg)\n\t\tself.view.custom.loading \u003d False\n\t\tself.show_error_dialog(msg)\n\t" - } - ], - "extensionFunctions": null, - "messageHandlers": [ - { - "messageType": "confirm_delete_file", - "pageScope": false, - "script": "\tsystem.perspective.closePopup(\u0027alertDialog\u0027)\n\tif payload is not None:\n\t\tbucket_requested \u003d payload.get(\u0027bucket\u0027, None)\n\t\tif bucket_requested and bucket_requested \u003d\u003d self.view.params.bucket:\n\t\t\t# call the delete custom method\n\t\t\tself.delete_file()", - "sessionScope": true, - "viewScope": true - } - ] - }, - "type": "ia.input.button" - } - ], - "meta": { - "name": "FlexContainer File Selection" - }, - "position": { - "shrink": 0 - }, - "props": { - "style": { - "classes": "Framework/Cards/Row" - } - }, - "type": "ia.container.flex" - }, - { - "children": [ - { - "meta": { - "name": "Label" - }, - "position": { - "basis": "125px", - "shrink": 0 - }, - "props": { - "style": { - "classes": "Framework/Card/Label Text/RightAlign_with_Padding", - "paddingLeft": "5px" - }, - "text": "Object Key (uri):" - }, - "type": "ia.display.label" - }, - { - "meta": { - "name": "label_LeftAlign" - }, - "position": { - "basis": "200px", - "grow": 1 - }, - "propConfig": { - "props.params.text": { - "binding": { - "config": { - "path": "view.custom.selected_file_config.Key" - }, - "type": "property" - } - } - }, - "props": { - "path": "Objects/Templates/Labels/label_LeftAlign", - "style": { - "classes": "Framework/Card/Value" - } - }, - "type": "ia.display.view" - } - ], - "meta": { - "name": "FlexContainer Object Key" - }, - "position": { - "shrink": 0 - }, - "propConfig": { - "position.display": { - "binding": { - "config": { - "expression": "!{view.custom.file_not_found}" - }, - "type": "expr" - } - } - }, - "props": { - "style": { - "classes": "Framework/Cards/Row" - } - }, - "type": "ia.container.flex" - }, - { - "children": [ - { - "meta": { - "name": "Label" - }, - "position": { - "basis": "125px", - "shrink": 0 - }, - "props": { - "style": { - "classes": "Framework/Card/Label Text/RightAlign_with_Padding", - "paddingLeft": "5px" - }, - "text": "Last Modified:" - }, - "type": "ia.display.label" - }, - { - "meta": { - "name": "label_LeftAlign" - }, - "position": { - "basis": "200px", - "grow": 1 - }, - "propConfig": { - "props.params.text": { - "binding": { - "config": { - "path": "view.custom.selected_file_config.LastModified" - }, - "type": "property" - } - } - }, - "props": { - "path": "Objects/Templates/Labels/label_LeftAlign", - "style": { - "classes": "Framework/Card/Value" - } - }, - "type": "ia.display.view" - } - ], - "meta": { - "name": "FlexContainer Last Modified" - }, - "position": { - "shrink": 0 - }, - "propConfig": { - "position.display": { - "binding": { - "config": { - "expression": "!{view.custom.file_not_found}" - }, - "type": "expr" - } - } - }, - "props": { - "style": { - "classes": "Framework/Cards/Row" - } - }, - "type": "ia.container.flex" - }, - { - "children": [ - { - "children": [ - { - "meta": { - "name": "Label" - }, - "position": { - "basis": "125px", - "shrink": 0 - }, - "props": { - "style": { - "classes": "Framework/Card/Label Text/RightAlign_with_Padding", - "paddingLeft": "5px" - }, - "text": "File Size (KB):" - }, - "type": "ia.display.label" - }, - { - "meta": { - "name": "label_LeftAlign" - }, - "position": { - "basis": "200px", - "grow": 1 - }, - "propConfig": { - "props.params.text": { - "binding": { - "config": { - "expression": "round({view.custom.selected_file_config.Size}/1024.0,2)" - }, - "type": "expr" - } - } - }, - "props": { - "path": "Objects/Templates/Labels/label_LeftAlign", - "style": { - "classes": "Framework/Card/Value" - } - }, - "type": "ia.display.view" - } - ], - "meta": { - "name": "FlexContainer File Size" - }, - "position": { - "basis": "50%", - "grow": 1 - }, - "type": "ia.container.flex" - }, - { - "children": [ - { - "meta": { - "name": "Label" - }, - "position": { - "basis": "125px", - "shrink": 0 - }, - "props": { - "style": { - "classes": "Framework/Card/Label Text/RightAlign_with_Padding", - "paddingLeft": "5px" - }, - "text": "Storage Class:" - }, - "type": "ia.display.label" - }, - { - "meta": { - "name": "label_LeftAlign" - }, - "position": { - "basis": "200px", - "grow": 1 - }, - "propConfig": { - "props.params.text": { - "binding": { - "config": { - "path": "view.custom.selected_file_config.StorageClass" - }, - "type": "property" - } - } - }, - "props": { - "path": "Objects/Templates/Labels/label_LeftAlign", - "style": { - "classes": "Framework/Card/Value" - } - }, - "type": "ia.display.view" - } - ], - "meta": { - "name": "FlexContainer Storage Class" - }, - "position": { - "basis": "50%", - "grow": 1 - }, - "type": "ia.container.flex" - } - ], - "meta": { - "name": "FlexContainer File Detail" - }, - "position": { - "shrink": 0 - }, - "propConfig": { - "position.display": { - "binding": { - "config": { - "expression": "!{view.custom.file_not_found}" - }, - "type": "expr" - } - } - }, - "props": { - "style": { - "classes": "Framework/Cards/Row" - } - }, - "type": "ia.container.flex" - }, - { - "children": [ - { - "events": { - "component": { - "onActionPerformed": { - "config": { - "script": "\t# build out the stage, site, flow-view, and copy_option from the object-key in row\n\tobj_key \u003d self.view.custom.selected_file_config.Key\n\tfilename \u003d self.view.custom.selected_file_config.Filename\n\tsuffix \u003d self.view.params.suffix\n\tpath \u003d obj_key.split(\u0027/\u0027)\n\tsite \u003d path[1]\n\tview \u003d filename.replace(suffix,\u0027\u0027)\n\tbucket \u003d self.view.params.bucket\n\t# build out query_params from row values\n\t# view, site, and bucket are multi-select dropdowns so need to be cast as lists\n\tnull \u003d None\n\tquery_params \u003d {\n\t\t\"copy_option\": null,\n\t\t\"destination_bucket\": bucket,\n\t\t\"destination_site\": site,\n\t\t\"destination_view\": view,\n\t\t\"end_time\": null,\n\t\t\"error_occurred\": null,\n\t\t\"operation\": null,\n\t\t\"source_bucket\": null,\n\t\t\"source_site\": null,\n\t\t\"source_view\": null,\n\t\t\"start_time\": null,\n\t\t\"username\": \"\"\n\t}\n\t# Open audit log viewer\n\tview_path \u003d \u0027PopUp-Views/S3/Audit/Log_Viewer\u0027\n\tparams \u003d {\u0027query_params\u0027: query_params}\n\tsystem.perspective.openPopup(\u0027Audit Log Viewer\u0027, view_path, \n\t\t\t\t\t\t\t\tparams, \u0027SCADA S3 Audit Logs\u0027)" - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "Audit Logs Button", - "tooltip": { - "enabled": true, - "location": "bottom", - "text": "View Audit Logs for this file" - } - }, - "position": { - "shrink": 0 - }, - "propConfig": { - "props.enabled": { - "binding": { - "config": { - "expression": "!{view.custom.file_not_found}" - }, - "type": "expr" - } - } - }, - "props": { - "image": { - "icon": { - "path": "material/table_view" - } - }, - "primary": false, - "style": { - "margin": "2px", - "paddingLeft": "4px", - "paddingRight": "4px" - }, - "text": "Audit Logs" - }, - "type": "ia.input.button" - }, - { - "events": { - "component": { - "onActionPerformed": { - "config": { - "script": "\t# build out the stage, site, flow-view, and copy_option from the object-key in row\n\tobj_key \u003d self.view.custom.selected_file_config.Key\n\tfilename \u003d self.view.custom.selected_file_config.Filename\n\tsuffix \u003d self.view.params.suffix\n\tpath \u003d obj_key.split(\u0027/\u0027)\n\tsite \u003d path[1]\n\tview \u003d filename.replace(suffix,\u0027\u0027)\n\tbucket \u003d self.view.params.bucket\n\t# build out query_params from row values\n\tquery_params \u003d {\n\t\t\"view\": view,\n\t\t\"object_key\": obj_key,\n\t\t\"site\": site,\n\t\t\"bucket\": bucket\n\t}\n\t# Open version history log viewer\n\tview_path \u003d \u0027PopUp-Views/S3/Versions/Log_Viewer\u0027\n\tparams \u003d {\u0027query_params\u0027: query_params}\n\tsystem.perspective.openPopup(\u0027Version Log Viewer\u0027, view_path, \n\t\t\t\t\t\t\t\tparams, \u0027SCADA S3 Version History Log Viewer\u0027)\n\t\t" - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "Version History Button", - "tooltip": { - "text": "View Version History for this file" - } - }, - "position": { - "shrink": 0 - }, - "propConfig": { - "props.enabled": { - "binding": { - "config": { - "expression": "!{view.custom.file_not_found}" - }, - "type": "expr" - } - } - }, - "props": { - "image": { - "icon": { - "path": "material/history" - } - }, - "primary": false, - "style": { - "margin": "2px", - "paddingLeft": "4px", - "paddingRight": "4px" - }, - "text": "Version History" - }, - "type": "ia.input.button" - }, - { - "meta": { - "name": "Label" - }, - "position": { - "basis": "75px", - "shrink": 0 - }, - "props": { - "style": { - "classes": "Framework/Card/Label Text/RightAlign_with_Padding", - "paddingLeft": "5px" - }, - "text": "Upload New File:" - }, - "type": "ia.display.label" - }, - { - "events": { - "component": { - "onFileReceived": { - "config": { - "script": "\tself.upload_file(event\u003devent)\n" - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "FileUpload", - "tooltip": { - "enabled": true - } - }, - "position": { - "basis": "25%", - "shrink": 0 - }, - "propConfig": { - "meta.tooltip.text": { - "binding": { - "config": { - "expression": "stringFormat(\u0027Upload new file to %s S3 bucket\u0027,{view.params.bucket})" - }, - "type": "expr" - } - }, - "position.display": { - "binding": { - "config": { - "path": "view.params.enables.upload" - }, - "type": "property" - } - }, - "props.supportedFileTypes": { - "binding": { - "config": { - "path": "view.params.upload_file_types" - }, - "type": "property" - } - } - }, - "props": { - "fileSizeLimit": 100, - "fileUploadIcon": { - "style": { - "classes": "" - } - }, - "maxUploads": 1, - "style": { - "backgroundColor": "var(--neutral-30)", - "borderStyle": "none", - "classes": "FadeInFast, background, background-none", - "cursor": "pointer", - "margin": "2px", - "max-height": "40px", - "overflow": "visible" - } - }, - "scripts": { - "customMethods": [ - { - "name": "update_bindings", - "params": [], - "script": "\t\"\"\"\n\t\tAfter data saved to S3, refresh session and view bindings\n\t\"\"\"\n\t\n\tself.view.custom.loading \u003d False\n\t# reset file upload component to default state\n\tself.clearUploads()\n\t# send message to update files param on parent view\n\tbucket \u003d self.view.params.bucket\n\tsystem.perspective.sendMessage(\u0027update_file_binding\u0027, {\u0027bucket\u0027: bucket}, scope\u003d\u0027session\u0027)\n\t" - }, - { - "name": "show_success_dialog", - "params": [ - "msg\u003dNone" - ], - "script": "\t# ~~ 13 PARAMETERS ~~\n\t# state\t\t\t\t\t(default \u003d info) empty string uses generic gray styling\n\t# title \t\t\t\t(default \u003d Alert Title) empty string sets the title visibility to false\n\t# message \t\t\t\t(default \u003d Alert message goes here.)\n\t# show close button\t\t(default \u003d true) boolean\n\t# btn text primary\t\t(default \u003d \"Primary\")\n\t# btn text secondary\t(default \u003d \"Secondary\")\n\t# btn icon primary \t\t(default \u003d chevron_right) do not include \u0027material/\u0027 in the path, just the icon name\n\t# btn icon secondary \t(default \u003d \"\") do not include \u0027material/\u0027 in the path, just the icon name\n\t# btn icon alignment\t(default \u003d \"right\") left or right\n\t# btn primary action\t(default \u003d \"\") add message handlers on this button to enable other script actions\n\t# btn secondary action\t(default \u003d \"\") add message handlers on this button to enable other script actions\n\t# btn close action\t\t(default \u003d \"\") add message handlers on this icon to enable other script actions\n\t# payload\t\t\t\t(default \u003d {}) add a payload here to return to the target message handler\n\t\n\tAlerts.showAlert(\n\t\t\"success\", \n\t\t\"File Uploaded\", \n\t\tmsg, \n\t\t\"true\",\n\t\t\"OK\", \n\t\t\"CLOSE\", \n\t\t\"\", \n\t\t\"\", \n\t\t\"left\", \n\t\t\"closePopup\", \n\t\t\"closePopup\", \n\t\t\"closePopup\",\n\t\t{}\n\t)\n\t\t\t" - }, - { - "name": "show_warning_dialog", - "params": [ - "msg\u003dNone" - ], - "script": "\t# ~~ 13 PARAMETERS ~~\n\t# state\t\t\t\t\t(default \u003d info) empty string uses generic gray styling\n\t# title \t\t\t\t(default \u003d Alert Title) empty string sets the title visibility to false\n\t# message \t\t\t\t(default \u003d Alert message goes here.)\n\t# show close button\t\t(default \u003d true) boolean\n\t# btn text primary\t\t(default \u003d \"Primary\")\n\t# btn text secondary\t(default \u003d \"Secondary\")\n\t# btn icon primary \t\t(default \u003d chevron_right) do not include \u0027material/\u0027 in the path, just the icon name\n\t# btn icon secondary \t(default \u003d \"\") do not include \u0027material/\u0027 in the path, just the icon name\n\t# btn icon alignment\t(default \u003d \"right\") left or right\n\t# btn primary action\t(default \u003d \"\") add message handlers on this button to enable other script actions\n\t# btn secondary action\t(default \u003d \"\") add message handlers on this button to enable other script actions\n\t# btn close action\t\t(default \u003d \"\") add message handlers on this icon to enable other script actions\n\t# payload\t\t\t\t(default \u003d {}) add a payload here to return to the target message handler\n\t\n\tAlerts.showAlert(\n\t\t\"warning\", \n\t\t\"File NOT Uploaded\", \n\t\tmsg, \n\t\t\"true\",\n\t\t\"OK\", \n\t\t\"CLOSE\", \n\t\t\"\", \n\t\t\"\", \n\t\t\"left\", \n\t\t\"closePopup\", \n\t\t\"closePopup\", \n\t\t\"closePopup\",\n\t\t{}\n\t)\n\t\t\t\t" - }, - { - "name": "show_error_dialog", - "params": [ - "msg\u003dNone" - ], - "script": "\t# ~~ 13 PARAMETERS ~~\n\t# state\t\t\t\t\t(default \u003d info) empty string uses generic gray styling\n\t# title \t\t\t\t(default \u003d Alert Title) empty string sets the title visibility to false\n\t# message \t\t\t\t(default \u003d Alert message goes here.)\n\t# show close button\t\t(default \u003d true) boolean\n\t# btn text primary\t\t(default \u003d \"Primary\")\n\t# btn text secondary\t(default \u003d \"Secondary\")\n\t# btn icon primary \t\t(default \u003d chevron_right) do not include \u0027material/\u0027 in the path, just the icon name\n\t# btn icon secondary \t(default \u003d \"\") do not include \u0027material/\u0027 in the path, just the icon name\n\t# btn icon alignment\t(default \u003d \"right\") left or right\n\t# btn primary action\t(default \u003d \"\") add message handlers on this button to enable other script actions\n\t# btn secondary action\t(default \u003d \"\") add message handlers on this button to enable other script actions\n\t# btn close action\t\t(default \u003d \"\") add message handlers on this icon to enable other script actions\n\t# payload\t\t\t\t(default \u003d {}) add a payload here to return to the target message handler\n\t\n\tAlerts.showAlert(\n\t\t\"error\", \n\t\t\"File Upload Error!\", \n\t\tmsg, \n\t\t\"true\",\n\t\t\"OK\", \n\t\t\"CLOSE\", \n\t\t\"\", \n\t\t\"\", \n\t\t\"left\", \n\t\t\"closePopup\", \n\t\t\"closePopup\", \n\t\t\"closePopup\",\n\t\t{}\n\t)\n\t\t\t\t\t" - }, - { - "name": "upload_file", - "params": [ - "event\u003dNone" - ], - "script": "\tfrom AWS.s3 import S3Manager\n\tfrom pprint import pformat\n\t\n\tself.view.custom.loading \u003d True\n\ttry:\n\t\tapi_stage \u003d \u0027prod\u0027\n\t\tusername \u003d self.session.props.auth.user.userName\n\t\tapi_region_name \u003d self.view.custom.api_region_name\n\t\tbucket \u003d self.view.params.bucket\n\t\tdefault_obj_key \u003d self.view.custom.default_file_config.Key\n\t\tdefault_filename \u003d self.view.custom.default_file_config.Filename\n\t\tregion \u003d self.view.custom.stage_config.s3_region\n\t\tfilename \u003d event.file.name\n\t\t# check if file already exists in S3 site folder, throw error if so\n\t\tif any(x.Filename \u003d\u003d filename for x in self.view.params.files):\n\t\t\tmsg \u003d \u0027%s file already exists in the site folder. Please use the upload button next to the file select dropdown or select a new file to upload\u0027 % filename\n\t\t\tself.show_error_dialog(msg)\n\t\t\tself.view.custom.loading \u003d False\n\t\t\tself.clearUploads()\n\t\t\treturn\n\t\tobj_key \u003d default_obj_key.replace(default_filename, filename)\n\t\tobj_data \u003d event.file.getString()\n\t\t\n\t\ts3m \u003d S3Manager(api_stage, api_region_name, username)\n\t\ttry:\n\t\t\tresp \u003d s3m.upload(\n\t\t\t\tobj_data\u003dobj_data,\n\t\t\t\tobj_key\u003dobj_key,\n\t\t\t\tbucket\u003dbucket,\n\t\t\t\tregion\u003dregion\n\t\t\t)\n\t\t\tresp_code \u003d resp.get(\u0027code\u0027, None)\n\t\t\tif (resp_code and resp_code !\u003d 200) or (not resp_code and \u0027message\u0027 in resp):\n\t\t\t\t# this means the API encountered an error, annunciate the error here\n\t\t\t\tmsg \u003d \u0027API encountered error uploading %s to %s bucket. \\nResponse: %s\u0027 % (obj_key, bucket, pformat(resp))\n\t\t\t\tsystem.perspective.print(msg)\n\t\t\t\tself.view.custom.loading \u003d False\n\t\t\t\tself.show_error_dialog(msg)\n\t\t\t\tself.clearUploads()\n\t\t\t\treturn\n\t\t\tmsg \u003d \u0027Successfully uploaded %s object in %s bucket!\\nResponse: %s\u0027 % (obj_key, bucket, pformat(resp))\n\t\t\tsystem.perspective.print(msg)\n\t\t\tself.show_success_dialog(msg)\n\t\t\tself.update_bindings()\n\t\texcept:\n\t\t\timport traceback\n\t\t\tmsg \u003d \u0027Error uploading %s object in %s bucket: %s\u0027 % (obj_key, bucket, traceback.format_exc())\n\t\t\tsystem.perspective.print(msg)\n\t\t\tself.view.custom.loading \u003d False\n\t\t\tself.show_error_dialog(msg)\n\t\t\tself.clearUploads()\n\texcept:\n\t\timport traceback\n\t\tmsg \u003d \u0027General Error uploading %s object in %s bucket: %s\u0027 % (obj_key, bucket, traceback.format_exc())\n\t\tsystem.perspective.print(msg)\n\t\tself.view.custom.loading \u003d False\n\t\tself.show_error_dialog(msg)\n\t\tself.clearUploads()\n\t\t" - } - ], - "extensionFunctions": null, - "messageHandlers": [] - }, - "type": "ia.input.fileupload" - } - ], - "meta": { - "name": "FlexContainer Log Buttons" - }, - "position": { - "shrink": 0 - }, - "props": { - "justify": "center" - }, - "type": "ia.container.flex" - }, - { - "children": [ - { - "children": [ - { - "meta": { - "name": "Title" - }, - "position": { - "basis": "100%" - }, - "propConfig": { - "props.text": { - "binding": { - "config": { - "expression": "stringFormat(\u0027%s Object%s\u0027, len({view.params.files}), \r\n\tif(len({view.params.files})\u003d1,\u0027\u0027,\u0027s\u0027))" - }, - "type": "expr" - } - } - }, - "props": { - "style": { - "classes": "Title/Text", - "fontSize": 14, - "overflow": "visible" - } - }, - "type": "ia.display.label" - } - ], - "meta": { - "name": "Title" - }, - "position": { - "basis": "50%" - }, - "props": { - "style": { - "fontSize": 1, - "marginLeft": 10, - "overflow": "visible" - } - }, - "type": "ia.container.flex" - }, - { - "children": [ - { - "meta": { - "name": "FilterCheck", - "tooltip": { - "enabled": true, - "location": "top-left", - "text": "Enable Table Search" - } - }, - "position": { - "basis": "108px" - }, - "propConfig": { - "position.display": { - "binding": { - "config": { - "expression": "LEN({..../Table.props.data})\u003e0" - }, - "type": "expr" - } - } - }, - "props": { - "checkedIcon": { - "style": { - "fontSize": 16 - } - }, - "indeterminateIcon": { - "style": { - "fontSize": 16 - } - }, - "style": { - "fontSize": 12 - }, - "text": "Search?", - "textPosition": "left", - "uncheckedIcon": { - "style": { - "fontSize": 16 - } - } - }, - "type": "ia.input.checkbox" - }, - { - "meta": { - "name": "Spacer1" - }, - "position": { - "basis": "1px" - }, - "props": { - "style": { - "classes": "General/Divider" - } - }, - "type": "ia.container.flex" - }, - { - "events": { - "dom": { - "onClick": { - "config": { - "script": "\tself.view.custom.selected_file \u003d \u0027\u0027\n\ttable \u003d self.parent.parent.parent.getChild(\"Table\")\n\t# ignition perspective has a bug with table where the only way to \n\t# actually de-select and remove the row highlight is to set the\n\t# row and column to -1 and THEN None\n\t# this will automatically clear the selection.data array\n\ttable.props.selection.selectedRow \u003d -1\n\ttable.props.selection.selectedColumn \u003d -1\n\ttable.props.selection.selectedRow \u003d None\n\ttable.props.selection.selectedColumn \u003d None" - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "ClearSelectionButton", - "tooltip": { - "enabled": true, - "location": "top-left", - "text": "Clear Selection" - } - }, - "position": { - "basis": "31px" - }, - "propConfig": { - "position.display": { - "binding": { - "config": { - "expression": "len({..../Table.props.selection.data})\u003e0" - }, - "type": "expr" - } - } - }, - "props": { - "path": "material/clear", - "style": { - "classes": "General/Button" - } - }, - "type": "ia.display.icon" - }, - { - "meta": { - "name": "Spacer2" - }, - "position": { - "basis": "1px" - }, - "propConfig": { - "position.display": { - "binding": { - "config": { - "path": "../ClearSelectionButton.position.display" - }, - "type": "property" - } - } - }, - "props": { - "style": { - "classes": "General/Divider" - } - }, - "type": "ia.container.flex" - }, - { - "events": { - "dom": { - "onClick": { - "config": { - "draggable": false, - "id": "ColumnSelection", - "modal": true, - "overlayDismiss": true, - "position": { - "relativeLocation": "bottom-left" - }, - "positionType": "relative", - "resizable": true, - "showCloseIcon": true, - "type": "toggle", - "viewParams": { - "Columns": "{/root/FlexContainer/TableHeader/TableActions/ColumnSelectionButton.custom.Columns}" - }, - "viewPath": "Objects/PowerTable/ColumnSelection", - "viewportBound": false - }, - "scope": "C", - "type": "popup" - } - } - }, - "meta": { - "name": "ColumnSelectionButton", - "tooltip": { - "enabled": true, - "location": "top-left", - "text": "+/- Columns" - } - }, - "position": { - "basis": "29px" - }, - "propConfig": { - "custom.Columns": { - "binding": { - "config": { - "path": "..../Table.props.columns" - }, - "transforms": [ - { - "code": "\tcolumns \u003d {}\n\tif len(value) \u003e 0:\n\t\tfor column in value:\n\t\t\t#field \u003d column.field\n\t\t\tfield \u003d column.header.title\n\t\t\tif field \u003d\u003d \u0027\u0027:\n\t\t\t\tfield \u003d \u0027None\u0027\n\t\t\tcolumns[field] \u003d column.visible\n\treturn columns", - "type": "script" - } - ], - "type": "property" - } - }, - "position.display": { - "binding": { - "config": { - "expression": "LEN({..../Table.props.data})\u003e0" - }, - "type": "expr" - } - } - }, - "props": { - "path": "material/view_column", - "style": { - "classes": "General/Button", - "fontSize": 12, - "marginBottom": 5, - "marginTop": 5 - } - }, - "type": "ia.display.icon" - }, - { - "meta": { - "name": "Spacer4" - }, - "position": { - "basis": "1px" - }, - "propConfig": { - "position.display": { - "binding": { - "config": { - "expression": "LEN({..../Table.props.data})\u003e0" - }, - "type": "expr" - } - } - }, - "props": { - "style": { - "classes": "General/Divider" - } - }, - "type": "ia.container.flex" - }, - { - "events": { - "dom": { - "onClick": { - "config": { - "script": "\tself.view.custom.filters.selection_active \u003d not self.view.custom.filters.selection_active" - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "FilterButton", - "tooltip": { - "enabled": true, - "location": "top-left", - "text": "Filter Table" - } - }, - "position": { - "basis": "29px", - "display": false - }, - "props": { - "path": "material/filter_list", - "style": { - "classes": "General/Button", - "fontSize": 12, - "marginBottom": 5, - "marginTop": 5 - } - }, - "type": "ia.display.icon" - }, - { - "meta": { - "name": "Spacer3" - }, - "position": { - "basis": "1px" - }, - "props": { - "style": { - "classes": "General/Divider" - } - }, - "type": "ia.container.flex" - }, - { - "events": { - "dom": { - "onClick": { - "config": { - "script": "\n\tcsv_headers \u003d []\n\tcsv_data \u003d []\n\tsystem.perspective.print(\u0027DOWNLOADING TABLE DATA\u0027)\n\tsource_data \u003d self.parent.parent.parent.getChild(\"Table\").props.data\n\theaders \u003d source_data[0].keys()\n\t\n\tif \u0027style\u0027 in headers and \u0027value\u0027 in headers and len(headers) \u003d\u003d 2:\n\t\tdata \u003d [row[\u0027value\u0027] for row in source_data]\n\telse:\n\t\tdata \u003d source_data\n\t\t\n\tfor record in data:\n\t\tif len(csv_headers) \u003d\u003d 0:\n\t\t\tcsv_headers \u003d record.keys()\n\t\t\tcsv_headers.sort()\n\t\t\tcsv_headers \u003d [str(i) for i in csv_headers]\n\t\tcsv_row \u003d []\n\t\tfor index in range(len(record)):\n\t\t\tcsv_row.append(str(record[csv_headers[index]]))\n\t\tcsv_data.append(csv_row)\n\t\n\ttry:\n\t\tcsv_dataset \u003d system.dataset.toDataSet(csv_headers, csv_data)\n\texcept Exception, e:\n\t\tsystem.perspective.print(str(e))\n\tcsv_export \u003d system.dataset.toCSV(csv_dataset)\n\tfilename \u003d \u0027{0}.csv\u0027.format(str(system.date.now()).replace(\u0027 \u0027, \u0027_\u0027))\n\tsystem.perspective.download(filename, csv_export)\n\t\n\tsystem.perspective.print(\u0027DONE DOWNLOADING TABLE DATA\u0027)" - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "SettingsButton", - "tooltip": { - "enabled": true, - "location": "top-left", - "text": "Download Table Contents" - } - }, - "position": { - "basis": "30px" - }, - "propConfig": { - "position.display": { - "binding": { - "config": { - "expression": "LEN({..../Table.props.data})\u003e0" - }, - "type": "expr" - } - } - }, - "props": { - "path": "material/cloud_download", - "style": { - "classes": "General/Button", - "marginRight": 10 - } - }, - "type": "ia.display.icon" - } - ], - "meta": { - "name": "TableActions", - "tooltip": { - "location": "top-right" - } - }, - "position": { - "grow": 1 - }, - "props": { - "justify": "flex-end" - }, - "type": "ia.container.flex" - } - ], - "meta": { - "name": "TableHeader" - }, - "position": { - "shrink": 0 - }, - "props": { - "justify": "space-between", - "style": { - "borderBottomStyle": "solid", - "borderBottomWidth": 1, - "cursor": "pointer" - } - }, - "type": "ia.container.flex" - }, - { - "events": { - "component": { - "onSelectionChange": { - "config": { - "script": "\t# validate the selection data is not null\n\tif self.props.selection.data:\n\t\tfilename \u003d self.props.selection.data[0].Filename\n\t\tself.view.custom.selected_file \u003d filename\n\t\t# send message to update selected file on parent container\n\t\tsuffix \u003d self.view.params.suffix\n\t\tpayload \u003d {\u0027image\u0027: filename.replace(suffix, \u0027\u0027)}\n\t\tsystem.perspective.sendMessage(\u0027update_selected_image\u0027, payload, scope\u003d\u0027session\u0027)\n\t" - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "Table" - }, - "position": { - "basis": "370px", - "shrink": 0 - }, - "propConfig": { - "props.data": { - "binding": { - "config": { - "path": "view.params.files" - }, - "type": "property" - } - }, - "props.filter.enabled": { - "binding": { - "config": { - "path": "../TableHeader/TableActions/FilterCheck.props.selected" - }, - "type": "property" - }, - "onChange": { - "enabled": null, - "script": "\tif not getattr(currentValue, \u0027value\u0027, None):\n\t\t# clear filter text when filter is disabled\n\t\tself.props.filter.text \u003d \u0027\u0027\n\t\t" - } - } - }, - "props": { - "columns": [ - { - "align": "center", - "boolean": "checkbox", - "dateFormat": "MM/DD/YYYY", - "editable": false, - "field": "Filename", - "filter": { - "boolean": { - "condition": "" - }, - "date": { - "condition": "", - "value": "" - }, - "enabled": false, - "number": { - "condition": "", - "value": "" - }, - "string": { - "condition": "", - "value": "" - }, - "visible": "on-hover" - }, - "footer": { - "align": "center", - "justify": "left", - "style": { - "classes": "" - }, - "title": "" - }, - "header": { - "align": "center", - "justify": "center", - "style": { - "classes": "" - }, - "title": "Filename" - }, - "justify": "center", - "number": "value", - "numberFormat": "0,0.##", - "progressBar": { - "bar": { - "color": "", - "style": { - "classes": "" - } - }, - "max": 100, - "min": 0, - "track": { - "color": "", - "style": { - "classes": "" - } - }, - "value": { - "enabled": true, - "format": "0,0.##", - "justify": "center", - "style": { - "classes": "" - } - } - }, - "render": "auto", - "resizable": true, - "sort": "none", - "sortable": true, - "strictWidth": false, - "style": { - "classes": "" - }, - "toggleSwitch": { - "color": { - "selected": "", - "unselected": "" - } - }, - "viewParams": {}, - "viewPath": "", - "visible": true, - "width": "" - }, - { - "align": "center", - "boolean": "checkbox", - "dateFormat": "MM/DD/YYYY", - "editable": false, - "field": "Size", - "filter": { - "boolean": { - "condition": "" - }, - "date": { - "condition": "", - "value": "" - }, - "enabled": false, - "number": { - "condition": "", - "value": "" - }, - "string": { - "condition": "", - "value": "" - }, - "visible": "on-hover" - }, - "footer": { - "align": "center", - "justify": "left", - "style": { - "classes": "" - }, - "title": "" - }, - "header": { - "align": "center", - "justify": "center", - "style": { - "classes": "" - }, - "title": "Size (bytes)" - }, - "justify": "center", - "number": "value", - "numberFormat": "0,0.##", - "progressBar": { - "bar": { - "color": "", - "style": { - "classes": "" - } - }, - "max": 100, - "min": 0, - "track": { - "color": "", - "style": { - "classes": "" - } - }, - "value": { - "enabled": true, - "format": "0,0.##", - "justify": "center", - "style": { - "classes": "" - } - } - }, - "render": "auto", - "resizable": true, - "sort": "none", - "sortable": true, - "strictWidth": false, - "style": { - "classes": "" - }, - "toggleSwitch": { - "color": { - "selected": "", - "unselected": "" - } - }, - "viewParams": {}, - "viewPath": "", - "visible": true, - "width": "" - }, - { - "align": "center", - "boolean": "checkbox", - "dateFormat": "MM/DD/YYYY", - "editable": false, - "field": "LastModified", - "filter": { - "boolean": { - "condition": "" - }, - "date": { - "condition": "", - "value": "" - }, - "enabled": false, - "number": { - "condition": "", - "value": "" - }, - "string": { - "condition": "", - "value": "" - }, - "visible": "on-hover" - }, - "footer": { - "align": "center", - "justify": "left", - "style": { - "classes": "" - }, - "title": "" - }, - "header": { - "align": "center", - "justify": "center", - "style": { - "classes": "" - }, - "title": "Last Updated" - }, - "justify": "center", - "number": "value", - "numberFormat": "0,0.##", - "progressBar": { - "bar": { - "color": "", - "style": { - "classes": "" - } - }, - "max": 100, - "min": 0, - "track": { - "color": "", - "style": { - "classes": "" - } - }, - "value": { - "enabled": true, - "format": "0,0.##", - "justify": "center", - "style": { - "classes": "" - } - } - }, - "render": "auto", - "resizable": true, - "sort": "none", - "sortable": true, - "strictWidth": false, - "style": { - "classes": "" - }, - "toggleSwitch": { - "color": { - "selected": "", - "unselected": "" - } - }, - "viewParams": {}, - "viewPath": "", - "visible": true, - "width": "" - }, - { - "align": "center", - "boolean": "checkbox", - "dateFormat": "MM/DD/YYYY", - "editable": false, - "field": "Key", - "filter": { - "boolean": { - "condition": "" - }, - "date": { - "condition": "", - "value": "" - }, - "enabled": false, - "number": { - "condition": "", - "value": "" - }, - "string": { - "condition": "", - "value": "" - }, - "visible": "on-hover" - }, - "footer": { - "align": "center", - "justify": "left", - "style": { - "classes": "" - }, - "title": "" - }, - "header": { - "align": "center", - "justify": "center", - "style": { - "classes": "" - }, - "title": "Key" - }, - "justify": "center", - "number": "value", - "numberFormat": "0,0.##", - "progressBar": { - "bar": { - "color": "", - "style": { - "classes": "" - } - }, - "max": 100, - "min": 0, - "track": { - "color": "", - "style": { - "classes": "" - } - }, - "value": { - "enabled": true, - "format": "0,0.##", - "justify": "center", - "style": { - "classes": "" - } - } - }, - "render": "auto", - "resizable": true, - "sort": "none", - "sortable": true, - "strictWidth": false, - "style": { - "classes": "" - }, - "toggleSwitch": { - "color": { - "selected": "", - "unselected": "" - } - }, - "viewParams": {}, - "viewPath": "", - "visible": true, - "width": "" - }, - { - "align": "center", - "boolean": "checkbox", - "dateFormat": "MM/DD/YYYY", - "editable": false, - "field": "ETag", - "filter": { - "boolean": { - "condition": "" - }, - "date": { - "condition": "", - "value": "" - }, - "enabled": false, - "number": { - "condition": "", - "value": "" - }, - "string": { - "condition": "", - "value": "" - }, - "visible": "on-hover" - }, - "footer": { - "align": "center", - "justify": "left", - "style": { - "classes": "" - }, - "title": "" - }, - "header": { - "align": "center", - "justify": "center", - "style": { - "classes": "" - }, - "title": "ETag" - }, - "justify": "center", - "number": "value", - "numberFormat": "0,0.##", - "progressBar": { - "bar": { - "color": "", - "style": { - "classes": "" - } - }, - "max": 100, - "min": 0, - "track": { - "color": "", - "style": { - "classes": "" - } - }, - "value": { - "enabled": true, - "format": "0,0.##", - "justify": "center", - "style": { - "classes": "" - } - } - }, - "render": "auto", - "resizable": true, - "sort": "none", - "sortable": true, - "strictWidth": false, - "style": { - "classes": "" - }, - "toggleSwitch": { - "color": { - "selected": "", - "unselected": "" - } - }, - "viewParams": {}, - "viewPath": "", - "visible": false, - "width": "" - }, - { - "align": "center", - "boolean": "checkbox", - "dateFormat": "MM/DD/YYYY", - "editable": false, - "field": "StorageClass", - "filter": { - "boolean": { - "condition": "" - }, - "date": { - "condition": "", - "value": "" - }, - "enabled": false, - "number": { - "condition": "", - "value": "" - }, - "string": { - "condition": "", - "value": "" - }, - "visible": "on-hover" - }, - "footer": { - "align": "center", - "justify": "left", - "style": { - "classes": "" - }, - "title": "" - }, - "header": { - "align": "center", - "justify": "center", - "style": { - "classes": "" - }, - "title": "Storage Class" - }, - "justify": "center", - "number": "value", - "numberFormat": "0,0.##", - "progressBar": { - "bar": { - "color": "", - "style": { - "classes": "" - } - }, - "max": 100, - "min": 0, - "track": { - "color": "", - "style": { - "classes": "" - } - }, - "value": { - "enabled": true, - "format": "0,0.##", - "justify": "center", - "style": { - "classes": "" - } - } - }, - "render": "auto", - "resizable": true, - "sort": "none", - "sortable": true, - "strictWidth": false, - "style": { - "classes": "" - }, - "toggleSwitch": { - "color": { - "selected": "", - "unselected": "" - } - }, - "viewParams": {}, - "viewPath": "", - "visible": false, - "width": "" - } - ], - "filter": {}, - "style": { - "margin": "10px" - } - }, - "type": "ia.display.table" - } - ], - "meta": { - "name": "FlexContainer" - }, - "position": { - "basis": "100%", - "grow": 1 - }, - "props": { - "direction": "column" - }, - "type": "ia.container.flex" - } - ], - "meta": { - "name": "root" - }, - "scripts": { - "customMethods": [], - "extensionFunctions": null, - "messageHandlers": [ - { - "messageType": "activate-filter", - "pageScope": true, - "script": "\t# implement your handler here\n\tfilter_position \u003d payload[\u0027id\u0027]\n\tsystem.perspective.print(filter_position)\n\tadd \u003d True\n\tfor filter in self.view.custom.filters.active:\n\t\tif filter.id \u003d\u003d filter_position:\n\t\t\tadd \u003d False\n\tif add:\n\t\tfor filter in self.view.custom.filters.deactive:\n\t\t\tif filter.id \u003d\u003d filter_position:\t\t\t\t\n\t\t\t\tself.view.custom.filters.active.append(filter)", - "sessionScope": true, - "viewScope": false - }, - { - "messageType": "deactivate-filter", - "pageScope": true, - "script": "\tfilter_position \u003d payload[\u0027id\u0027]\n\tsystem.perspective.print(filter_position)\n\t\n\tif filter_position \u003d\u003d -1 :\n\t\tself.view.custom.filters.active \u003d []\n\telse:\n\t\tfor index, filter in enumerate(self.view.custom.filters.active):\n\t\t\tif filter.id \u003d\u003d filter_position:\n\t\t\t\tsystem.perspective.print(filter.id)\n\t\t\t\tself.view.custom.filters.active.pop(index)\n\n#\tfor filter in self.view.custom.filter_menu_data:\n#\t\tif filter.filter_id \u003d\u003d filter_position:\n#\t\t\tsystem.perspective.print(filter.filter_id)\n#\t\t\tfilter.active \u003d False\n#\t\t\tbreak", - "sessionScope": true, - "viewScope": false - }, - { - "messageType": "column-visibility", - "pageScope": true, - "script": "\t# implement your handler here\n\ttable_columns \u003d self.getChild(\"FlexContainer\").getChild(\"Table\").props.columns\n\tfor table_column in table_columns:\n\t\t#if payload.keys()[0] \u003d\u003d table_column[\u0027field\u0027]:\n\t\tif payload.keys()[0] \u003d\u003d table_column[\u0027header\u0027][\u0027title\u0027]:\n\t\t\ttable_column.visible \u003d payload.values()[0]", - "sessionScope": false, - "viewScope": false - } - ] - }, - "type": "ia.container.flex" - } -} \ No newline at end of file diff --git a/.resources/e5c9dc3bdc1286ffed9cf57a289f162bac4ece0a56cfe3766c89b16d714e93fa b/.resources/e5c9dc3bdc1286ffed9cf57a289f162bac4ece0a56cfe3766c89b16d714e93fa new file mode 100644 index 00000000..1174defd --- /dev/null +++ b/.resources/e5c9dc3bdc1286ffed9cf57a289f162bac4ece0a56cfe3766c89b16d714e93fa @@ -0,0 +1,659 @@ +{ + "custom": { + "PLC_list": [ + "MCM01", + "MCM02", + "MCM03", + "MCM04", + "MCM05", + "MCM06", + "MCM07" + ], + "color": "#00FF00" + }, + "params": { + "tagProps": [ + "System/MCM01/Station/EPC/UL1_4_EPC1", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value", + "value" + ] + }, + "propConfig": { + "custom.PLC_list": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]Configuration/PLC" + }, + "transforms": [ + { + "code": "\tdevices \u003d system.util.jsonDecode(value)\n\tplcList \u003d []\n\tfor k in devices.keys():\n\t\tplcList.append(k)\n\t\t\n\treturn(sorted(set(plcList)))\n", + "type": "script" + } + ], + "type": "tag" + }, + "persistent": true + }, + "custom.color": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[0]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Color" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},0)", + "type": "expression" + }, + { + "fallback": "#000000", + "inputType": "scalar", + "mappings": [ + { + "input": 0, + "output": "#C2C2C2" + }, + { + "input": 1, + "output": "#FF0000" + }, + { + "input": 2, + "output": "#FFA500" + }, + { + "input": 3, + "output": "#0008FF" + }, + { + "input": 4, + "output": "#00FF00" + }, + { + "input": 5, + "output": "#FFF700" + }, + { + "input": 6, + "output": "#87CEEB" + }, + { + "input": 7, + "output": "#90EE90" + }, + { + "input": 8, + "output": "#964B00" + }, + { + "input": 9, + "output": "#FFFFFF" + }, + { + "input": 10, + "output": "#000000" + }, + { + "input": 11, + "output": "#8B0000" + }, + { + "input": 12, + "output": "#808080" + }, + { + "input": 13, + "output": "#8B8000" + }, + { + "input": 14, + "output": "#006400" + }, + { + "input": 15, + "output": "#FFFFC5" + }, + { + "input": 16, + "output": "#00008B" + }, + { + "input": 17, + "output": "#FF7276" + }, + { + "input": 18, + "output": "#556B2F" + }, + { + "input": 19, + "output": "#B43434" + }, + { + "input": 20, + "output": "#4682B4" + }, + { + "input": 21, + "output": "#FFD700" + } + ], + "outputType": "color", + "type": "map" + } + ], + "type": "tag" + }, + "persistent": true + }, + "params.tagProps": { + "paramDirection": "input", + "persistent": true + } + }, + "props": { + "defaultSize": { + "width": 400 + } + }, + "root": { + "children": [ + { + "children": [ + { + "children": [ + { + "meta": { + "name": "Label" + }, + "position": { + "grow": 1 + }, + "propConfig": { + "props.text": { + "binding": { + "config": { + "expression": "\u0027Source ID: \u0027 + {view.params.tagProps[0]}" + }, + "type": "expr" + } + } + }, + "props": { + "style": { + "color": "#FFFF", + "fontFamily": "Arial", + "fontSize": 14, + "fontWeight": "bold", + "paddingLeft": 10 + } + }, + "type": "ia.display.label" + }, + { + "events": { + "dom": { + "onClick": { + "config": { + "script": "\tsystem.perspective.closeDock(\u0027Docked-East-BTN\u0027)\n\tself.getSibling(\"tabs\").props.currentTabIndex \u003d 0" + }, + "scope": "G", + "type": "script" + } + } + }, + "meta": { + "name": "Icon", + "tooltip": { + "enabled": true, + "style": { + "cursor": "pointer" + }, + "text": "Close faceplate" + } + }, + "props": { + "path": "material/close", + "style": { + "cursor": "pointer", + "marginBottom": 5, + "marginLeft": 5, + "marginRight": 5, + "marginTop": 5 + } + }, + "type": "ia.display.icon" + } + ], + "meta": { + "name": "FlexContainer" + }, + "position": { + "basis": "30px", + "shrink": 0 + }, + "props": { + "style": { + "overflow": "hidden" + } + }, + "type": "ia.container.flex" + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "meta": { + "name": "Label" + }, + "position": { + "basis": "32px", + "display": false + }, + "propConfig": { + "position.display": { + "binding": { + "config": { + "expression": "if({../AlarmTable.props.params.length_of_table_data} \u003d 0, True, False)" + }, + "enabled": false, + "type": "expr" + } + } + }, + "props": { + "style": { + "classes": "Labels/Label_1", + "marginTop": 20 + }, + "text": "No Active Alarms" + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "AlarmStatusTable" + }, + "position": { + "basis": "400px", + "grow": 1 + }, + "propConfig": { + "props.filters.active.text": { + "binding": { + "config": { + "path": "view.params.tagProps[0]" + }, + "transforms": [ + { + "code": "\treturn value[1:]", + "type": "script" + } + ], + "type": "property" + } + } + }, + "props": { + "columns": { + "active": { + "displayPath": { + "enabled": false + }, + "priority": { + "enabled": false + }, + "source": { + "enabled": false + }, + "state": { + "enabled": false + } + } + }, + "filters": { + "active": { + "priorities": { + "critical": false, + "high": false, + "low": false, + "medium": false + }, + "states": { + "clearUnacked": false + } + } + }, + "refreshRate": 500, + "toolbar": { + "enabled": false + } + }, + "type": "ia.display.alarmstatustable" + } + ], + "meta": { + "name": "Active_tab" + }, + "props": { + "direction": "column" + }, + "type": "ia.container.flex" + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "meta": { + "name": "NameField" + }, + "position": { + "basis": "50%", + "grow": 1 + }, + "props": { + "style": { + "paddingLeft": 20 + }, + "text": "NAME" + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "DeviceName" + }, + "position": { + "basis": "50%", + "grow": 1 + }, + "propConfig": { + "props.text": { + "binding": { + "config": { + "path": "view.params.tagProps[0]" + }, + "transforms": [ + { + "code": " return value.rsplit(\u0027/\u0027, 1)[-1]", + "type": "script" + } + ], + "type": "property" + } + } + }, + "props": { + "style": { + "backgroundColor": "#FFFFFF", + "classes": "Text-Styles/Ariel-Bold-12pt", + "paddingLeft": 10 + } + }, + "type": "ia.display.label" + } + ], + "meta": { + "name": "Name" + }, + "position": { + "basis": "35px" + }, + "props": { + "style": { + "classes": "PopUp-Styles/InfoLabel", + "overflow": "hidden" + } + }, + "type": "ia.container.flex" + } + ], + "meta": { + "name": "FlexContainer_0" + }, + "position": { + "basis": "35px" + }, + "props": { + "direction": "column" + }, + "type": "ia.container.flex" + }, + { + "children": [ + { + "children": [ + { + "meta": { + "name": "NameField" + }, + "position": { + "basis": "50%", + "grow": 1 + }, + "props": { + "style": { + "paddingLeft": 20 + }, + "text": "EPC LIGHT" + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "PB_Light" + }, + "position": { + "basis": "50%", + "grow": 1 + }, + "propConfig": { + "props.style.backgroundColor": { + "binding": { + "config": { + "path": "this.props.text" + }, + "transforms": [ + { + "fallback": "#D5D5D5", + "inputType": "scalar", + "mappings": [ + { + "input": "UNKNOWN", + "output": "#FFFFFF" + } + ], + "outputType": "color", + "type": "map" + } + ], + "type": "property" + } + }, + "props.text": { + "binding": { + "config": { + "path": "view.custom.color" + }, + "transforms": [ + { + "fallback": "UNKNOWN", + "inputType": "scalar", + "mappings": [ + { + "input": "#FF0000", + "output": "ON" + }, + { + "input": "#00FF00", + "output": "OFF" + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "property" + } + }, + "props.textStyle.color": { + "binding": { + "config": { + "path": "view.custom.color" + }, + "type": "property" + } + } + }, + "props": { + "style": { + "classes": "Text-Styles/Ariel-Bold-12pt", + "paddingLeft": 10 + } + }, + "type": "ia.display.label" + } + ], + "meta": { + "name": "Property" + }, + "position": { + "basis": "35px", + "shrink": 2 + }, + "props": { + "style": { + "classes": "PopUp-Styles/InfoLabel" + } + }, + "type": "ia.container.flex" + } + ], + "meta": { + "name": "FlexContainer_1" + }, + "position": { + "basis": "35px" + }, + "props": { + "direction": "column" + }, + "type": "ia.container.flex" + } + ], + "meta": { + "name": "Info_tab" + }, + "position": { + "tabIndex": 1 + }, + "props": { + "direction": "column", + "style": { + "margin-left": "" + } + }, + "type": "ia.container.flex" + } + ], + "meta": { + "name": "tabs" + }, + "position": { + "grow": 1 + }, + "props": { + "menuType": "modern", + "tabSize": { + "width": 1000 + }, + "tabStyle": { + "active": { + "classes": "", + "color": "#FFFFFF", + "fontFamily": "Arial", + "fontSize": 14, + "fontWeight": "bold", + "paddingLeft": 10 + }, + "inactive": { + "classes": "", + "color": "#B8B8B8", + "fontFamily": "Arial", + "fontSize": 14, + "fontWeight": "bold", + "paddingLeft": 10 + } + }, + "tabs": [ + "Alarms", + "Info" + ] + }, + "type": "ia.container.tab" + } + ], + "meta": { + "name": "FlexContainer_1" + }, + "position": { + "basis": "670px", + "grow": 1 + }, + "props": { + "style": { + "border-top": "1px solid white", + "gap": "" + } + }, + "type": "ia.container.flex" + } + ], + "meta": { + "name": "FlexContainer" + }, + "position": { + "basis": "800px", + "grow": 1 + }, + "props": { + "direction": "column" + }, + "type": "ia.container.flex" + } + ], + "meta": { + "name": "root" + }, + "props": { + "direction": "column", + "style": { + "classes": "Buttons/Button-Menu" + } + }, + "type": "ia.container.flex" + } +} \ No newline at end of file diff --git a/.resources/e5d598d5aee81f2a0e2b5843d8edfb09dec0ba12270c633d76190981fcf6eaf5 b/.resources/e5d598d5aee81f2a0e2b5843d8edfb09dec0ba12270c633d76190981fcf6eaf5 deleted file mode 100644 index 998ac83b..00000000 --- a/.resources/e5d598d5aee81f2a0e2b5843d8edfb09dec0ba12270c633d76190981fcf6eaf5 +++ /dev/null @@ -1,58 +0,0 @@ -{ - "custom": {}, - "params": { - "text": "value" - }, - "propConfig": { - "params.text": { - "paramDirection": "input", - "persistent": true - } - }, - "props": { - "defaultSize": { - "height": 30, - "width": 210 - } - }, - "root": { - "children": [ - { - "meta": { - "name": "Label" - }, - "position": { - "basis": "209px", - "grow": 1 - }, - "propConfig": { - "props.text": { - "binding": { - "config": { - "expression": "{view.params.text}" - }, - "type": "expr" - } - } - }, - "props": { - "style": { - "classes": "Text/RightAlign_with_Padding" - } - }, - "type": "ia.display.label" - } - ], - "meta": { - "name": "root" - }, - "props": { - "alignItems": "center", - "justify": "center", - "style": { - "overflow": "hidden" - } - }, - "type": "ia.container.flex" - } -} \ No newline at end of file diff --git a/.resources/e625db19e29794c49dedd0768238ef2b6bdffc875afb966dede64fe470ea455a b/.resources/e625db19e29794c49dedd0768238ef2b6bdffc875afb966dede64fe470ea455a new file mode 100644 index 00000000..0e05e6b1 Binary files /dev/null and b/.resources/e625db19e29794c49dedd0768238ef2b6bdffc875afb966dede64fe470ea455a differ diff --git a/.resources/e79315c88d85e6666f618fce20be7f9a18c78983a3a01781d66818a9f6f2cf86 b/.resources/e79315c88d85e6666f618fce20be7f9a18c78983a3a01781d66818a9f6f2cf86 new file mode 100644 index 00000000..3f4cd55f Binary files /dev/null and b/.resources/e79315c88d85e6666f618fce20be7f9a18c78983a3a01781d66818a9f6f2cf86 differ diff --git a/.resources/e9b03d4dd46ba437d6927b5e2667e32d165643d446d0933aea49a7327b273320 b/.resources/e9b03d4dd46ba437d6927b5e2667e32d165643d446d0933aea49a7327b273320 new file mode 100644 index 00000000..6bd3ca6e Binary files /dev/null and b/.resources/e9b03d4dd46ba437d6927b5e2667e32d165643d446d0933aea49a7327b273320 differ diff --git a/.resources/e9eaa96d3f223fe201633647f708b2d8c45212cffd8cdbf7bf35ac6c83238e85 b/.resources/e9eaa96d3f223fe201633647f708b2d8c45212cffd8cdbf7bf35ac6c83238e85 deleted file mode 100644 index 834cecf7..00000000 Binary files a/.resources/e9eaa96d3f223fe201633647f708b2d8c45212cffd8cdbf7bf35ac6c83238e85 and /dev/null differ diff --git a/.resources/e9fcd29f775ce7019ab7b3803b8013c20a6bca89a0e6cbaf8d46e94fffb9960f b/.resources/e9fcd29f775ce7019ab7b3803b8013c20a6bca89a0e6cbaf8d46e94fffb9960f new file mode 100644 index 00000000..127be900 --- /dev/null +++ b/.resources/e9fcd29f775ce7019ab7b3803b8013c20a6bca89a0e6cbaf8d46e94fffb9960f @@ -0,0 +1,262 @@ +{ + "custom": { + "currentView": "Windows/Tabs/Enternet Windows/DPMs/MCM01-DPM" + }, + "params": {}, + "propConfig": { + "custom.currentView": { + "persistent": true + } + }, + "props": { + "defaultSize": { + "height": 894, + "width": 1920 + } + }, + "root": { + "children": [ + { + "events": { + "dom": { + "onClick": { + "config": { + "script": "\tself.session.custom.dpm_view_path \u003d self.props.params.view\n\tself.session.custom.show_dpm_view \u003d True" + }, + "scope": "G", + "type": "script" + } + } + }, + "meta": { + "name": "MCM01_PLC" + }, + "position": { + "height": 0.5649, + "width": 0.063, + "x": 0.1353, + "y": 0.0313 + }, + "props": { + "params": { + "MCM": "MCM01", + "view": "Windows/Tabs/Enternet Windows/DPMs/MCM01-DPM" + }, + "path": "Windows/Tabs/Enternet Windows/Components/PLC" + }, + "type": "ia.display.view" + }, + { + "events": { + "dom": { + "onClick": { + "config": { + "script": "\tself.session.custom.dpm_view_path \u003d self.props.params.view\n\tself.session.custom.show_dpm_view \u003d True" + }, + "scope": "G", + "type": "script" + } + } + }, + "meta": { + "name": "MCM02_PLC" + }, + "position": { + "height": 0.5649, + "width": 0.063, + "x": 0.3019, + "y": 0.382 + }, + "props": { + "params": { + "MCM": "MCM02", + "view": "Windows/Tabs/Enternet Windows/DPMs/MCM02-DPM" + }, + "path": "Windows/Tabs/Enternet Windows/Components/PLC" + }, + "type": "ia.display.view" + }, + { + "events": { + "dom": { + "onClick": { + "config": { + "script": "\tself.session.custom.dpm_view_path \u003d self.props.params.view\n\tself.session.custom.show_dpm_view \u003d True" + }, + "scope": "G", + "type": "script" + } + } + }, + "meta": { + "name": "MCM03_PLC" + }, + "position": { + "height": 0.5649, + "width": 0.063, + "x": 0.4686, + "y": 0.0638 + }, + "props": { + "params": { + "MCM": "MCM03", + "view": "Windows/Tabs/Enternet Windows/DPMs/MCM03-DPM" + }, + "path": "Windows/Tabs/Enternet Windows/Components/PLC" + }, + "type": "ia.display.view" + }, + { + "events": { + "dom": { + "onClick": { + "config": { + "script": "\tself.session.custom.dpm_view_path \u003d self.props.params.view\n\tself.session.custom.show_dpm_view \u003d True" + }, + "scope": "G", + "type": "script" + } + } + }, + "meta": { + "name": "MCM04_PLC" + }, + "position": { + "height": 0.5649, + "width": 0.063, + "x": 0.6359, + "y": 0.3926 + }, + "props": { + "params": { + "MCM": "MCM04", + "view": "Windows/Tabs/Enternet Windows/DPMs/MCM04-DPM" + }, + "path": "Windows/Tabs/Enternet Windows/Components/PLC" + }, + "type": "ia.display.view" + }, + { + "events": { + "dom": { + "onClick": { + "config": { + "script": "\tself.session.custom.dpm_view_path \u003d self.props.params.view\n\tself.session.custom.show_dpm_view \u003d True" + }, + "scope": "G", + "type": "script" + } + } + }, + "meta": { + "name": "MCM05_PLC" + }, + "position": { + "height": 0.5649, + "width": 0.063, + "x": 0.8017, + "y": 0.0766 + }, + "props": { + "params": { + "MCM": "MCM05", + "view": "Windows/Tabs/Enternet Windows/DPMs/MCM05-DPM" + }, + "path": "Windows/Tabs/Enternet Windows/Components/PLC" + }, + "type": "ia.display.view" + }, + { + "children": [ + { + "meta": { + "name": "Communication_Faulted_Text" + }, + "position": { + "height": 6.88, + "width": 432, + "x": 131.69440649414062, + "y": 65.8918 + }, + "props": { + "style": { + "fontSize": 30 + }, + "text": "Communication Faulted" + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "Communication_Not_Faulted_Text" + }, + "position": { + "height": 6.88, + "width": 483, + "x": 131.84, + "y": 126.29181274414066 + }, + "props": { + "style": { + "fontSize": 30 + }, + "text": "Communication Not Faulted" + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "CoordinateContainer_0" + }, + "position": { + "height": 6, + "width": 94, + "x": 22.48, + "y": 68.06 + }, + "props": { + "style": { + "backgroundColor": "#FF0000" + } + }, + "type": "ia.container.coord" + }, + { + "meta": { + "name": "CoordinateContainer_1" + }, + "position": { + "height": 6, + "width": 94, + "x": 22.48, + "y": 128.06 + }, + "props": { + "style": { + "backgroundColor": "#00FF00" + } + }, + "type": "ia.container.coord" + } + ], + "meta": { + "name": "CoordinateContainer" + }, + "position": { + "height": 0.2151, + "width": 0.3464, + "x": 0.0083, + "y": 0.7129 + }, + "type": "ia.container.coord" + } + ], + "meta": { + "name": "root" + }, + "props": { + "mode": "percent" + }, + "type": "ia.container.coord" + } +} \ No newline at end of file diff --git a/.resources/ebffce45f2dc3c07b2815aec7209c3946d83d4b903898e4a17822b350b598351 b/.resources/ebffce45f2dc3c07b2815aec7209c3946d83d4b903898e4a17822b350b598351 deleted file mode 100644 index 9ef8a5a3..00000000 Binary files a/.resources/ebffce45f2dc3c07b2815aec7209c3946d83d4b903898e4a17822b350b598351 and /dev/null differ diff --git a/.resources/ec9f8e550cf45241d55ff22ce6eb5815d0021dbe554f73ef3d9af8c66770a508 b/.resources/ec9f8e550cf45241d55ff22ce6eb5815d0021dbe554f73ef3d9af8c66770a508 new file mode 100644 index 00000000..e216a948 --- /dev/null +++ b/.resources/ec9f8e550cf45241d55ff22ce6eb5815d0021dbe554f73ef3d9af8c66770a508 @@ -0,0 +1,1032 @@ +{ + "custom": { + "activityLogger": { + "alt_pageid": "site-overview", + "start_time": { + "$": [ + "ts", + 192, + 1744989068032 + ], + "$ts": 1744989068031 + } + } + }, + "events": { + "system": { + "onShutdown": { + "config": { + "script": "\tactivityLog.productMetrics.callLogger(self, \u0027page\u0027)" + }, + "scope": "G", + "type": "script" + }, + "onStartup": { + "config": { + "script": "\tself.custom.activityLogger.start_time \u003d system.date.now()" + }, + "scope": "G", + "type": "script" + } + } + }, + "params": {}, + "propConfig": { + "custom.activityLogger": { + "persistent": true + }, + "custom.activityLogger.pageid": { + "binding": { + "config": { + "expression": "{page.props.path}" + }, + "transforms": [ + { + "code": "\tif value \u003d\u003d\u0027/\u0027 or value \u003d\u003d \u0027\u0027 or value \u003d\u003d None:\n\t\treturn self.custom.activityLogger.alt_pageid.lower()\n\telse:\n\t\treturn value[1:].lower()", + "type": "script" + } + ], + "type": "expr" + } + } + }, + "props": { + "defaultSize": { + "height": 1080, + "width": 1920 + } + }, + "root": { + "children": [ + { + "custom": { + "s3URI": "SCADA/Other/MAP.svg" + }, + "meta": { + "name": "Image" + }, + "position": { + "height": 1, + "width": 1 + }, + "propConfig": { + "props.source": { + "binding": { + "config": { + "path": "this.custom.s3URI" + }, + "transforms": [ + { + "code": "\treturn AWS.s3.getPresignedURL(self, value)", + "type": "script" + } + ], + "type": "property" + } + } + }, + "props": { + "altText": "none", + "fit": { + "mode": "fill" + } + }, + "type": "ia.display.image" + }, + { + "meta": { + "name": "Nav_Button" + }, + "position": { + "height": 0.0417, + "width": 0.0234, + "x": 0.6266, + "y": 0.0445 + }, + "props": { + "params": { + "direction": { + "downward": false, + "left": true, + "right": false, + "upward": false + }, + "pageid": "DetailedView/MTN6" + }, + "path": "Custom-Views/Nav_Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "Area_Nav_Button" + }, + "position": { + "height": 0.0278, + "width": 0.0833, + "x": 0.0453, + "y": 0.0305 + }, + "props": { + "params": { + "pageid": "DetailedView/DO1", + "panel_id": "value", + "text": "DO1" + }, + "path": "Custom-Views/Area_Nav_Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "Area_Nav_Button_0" + }, + "position": { + "height": 0.0278, + "width": 0.0833, + "x": 0.0453, + "y": 0.0731 + }, + "props": { + "params": { + "pageid": "DetailedView/DO2", + "panel_id": "value", + "text": "DO2" + }, + "path": "Custom-Views/Area_Nav_Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "Area_Nav_Button_1" + }, + "position": { + "height": 0.0278, + "width": 0.0833, + "x": 0.0458, + "y": 0.1166 + }, + "props": { + "params": { + "pageid": "DetailedView/DO3WRG", + "panel_id": "value", + "text": "DO3/WRG" + }, + "path": "Custom-Views/Area_Nav_Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "Area_Nav_Button_2" + }, + "position": { + "height": 0.0278, + "width": 0.0833, + "x": 0.0458, + "y": 0.1657 + }, + "props": { + "params": { + "pageid": "DetailedView/DO1", + "panel_id": "value", + "text": "DO4" + }, + "path": "Custom-Views/Area_Nav_Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "Area_Nav_Button_3" + }, + "position": { + "height": 0.0278, + "width": 0.0833, + "x": 0.0458, + "y": 0.2083 + }, + "props": { + "params": { + "pageid": "DetailedView/DO5TRS", + "panel_id": "value", + "text": "DO5/TRS" + }, + "path": "Custom-Views/Area_Nav_Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "Area_Nav_Button_4" + }, + "position": { + "height": 0.0278, + "width": 0.0833, + "x": 0.0463, + "y": 0.2518 + }, + "props": { + "params": { + "pageid": "DetailedView/IB1", + "panel_id": "value", + "text": "IB1" + }, + "path": "Custom-Views/Area_Nav_Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "Area_Nav_Button_5" + }, + "position": { + "height": 0.0278, + "width": 0.0833, + "x": 0.0448, + "y": 0.2999 + }, + "props": { + "params": { + "pageid": "DetailedView/IND1", + "panel_id": "value", + "text": "IND1" + }, + "path": "Custom-Views/Area_Nav_Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "Area_Nav_Button_6" + }, + "position": { + "height": 0.0278, + "width": 0.0833, + "x": 0.0448, + "y": 0.3425 + }, + "props": { + "params": { + "pageid": "DetailedView/IND2", + "panel_id": "value", + "text": "IND2" + }, + "path": "Custom-Views/Area_Nav_Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "Area_Nav_Button_7" + }, + "position": { + "height": 0.0278, + "width": 0.0833, + "x": 0.0453, + "y": 0.386 + }, + "props": { + "params": { + "pageid": "DetailedView/IT1", + "panel_id": "value", + "text": "IT1" + }, + "path": "Custom-Views/Area_Nav_Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "Area_Nav_Button_8" + }, + "position": { + "height": 0.0278, + "width": 0.0833, + "x": 0.0448, + "y": 0.4268 + }, + "props": { + "params": { + "pageid": "DetailedView/IT2", + "panel_id": "value", + "text": "IT2" + }, + "path": "Custom-Views/Area_Nav_Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "Area_Nav_Button_9" + }, + "position": { + "height": 0.0278, + "width": 0.0833, + "x": 0.0448, + "y": 0.4694 + }, + "props": { + "params": { + "pageid": "DetailedView/ITS12", + "panel_id": "value", + "text": "ITS1/2" + }, + "path": "Custom-Views/Area_Nav_Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "Area_Nav_Button_10" + }, + "position": { + "height": 0.0278, + "width": 0.0833, + "x": 0.0453, + "y": 0.5129 + }, + "props": { + "params": { + "pageid": "DetailedView/MAR12", + "panel_id": "value", + "text": "MAR1/2" + }, + "path": "Custom-Views/Area_Nav_Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "Area_Nav_Button_11" + }, + "position": { + "height": 0.0278, + "width": 0.0833, + "x": 0.0453, + "y": 0.5546 + }, + "props": { + "params": { + "pageid": "DetailedView/MLT1", + "panel_id": "value", + "text": "MLT1" + }, + "path": "Custom-Views/Area_Nav_Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "Area_Nav_Button_12" + }, + "position": { + "height": 0.0278, + "width": 0.0833, + "x": 0.0453, + "y": 0.5972 + }, + "props": { + "params": { + "pageid": "DetailedView/MLT2", + "panel_id": "value", + "text": "MLT2" + }, + "path": "Custom-Views/Area_Nav_Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "Area_Nav_Button_13" + }, + "position": { + "height": 0.0278, + "width": 0.0833, + "x": 0.0458, + "y": 0.6407 + }, + "props": { + "params": { + "pageid": "DetailedView/MSSA", + "panel_id": "value", + "text": "MSSA" + }, + "path": "Custom-Views/Area_Nav_Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "Area_Nav_Button_14" + }, + "position": { + "height": 0.0278, + "width": 0.0833, + "x": 0.0466, + "y": 0.6786 + }, + "props": { + "params": { + "pageid": "DetailedView/MSSB", + "panel_id": "value", + "text": "MSSB" + }, + "path": "Custom-Views/Area_Nav_Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "Area_Nav_Button_15" + }, + "position": { + "height": 0.0278, + "width": 0.0833, + "x": 0.0466, + "y": 0.7212 + }, + "props": { + "params": { + "pageid": "DetailedView/MSSC", + "panel_id": "value", + "text": "MSSC" + }, + "path": "Custom-Views/Area_Nav_Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "Area_Nav_Button_16" + }, + "position": { + "height": 0.0278, + "width": 0.0833, + "x": 0.0471, + "y": 0.7647 + }, + "props": { + "params": { + "pageid": "DetailedView/MSSD", + "panel_id": "value", + "text": "MSSD" + }, + "path": "Custom-Views/Area_Nav_Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "Area_Nav_Button_17" + }, + "position": { + "height": 0.0278, + "width": 0.0833, + "x": 0.1495, + "y": 0.0305 + }, + "props": { + "params": { + "pageid": "DetailedView/MSSH", + "panel_id": "value", + "text": "MSSH" + }, + "path": "Custom-Views/Area_Nav_Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "Area_Nav_Button_18" + }, + "position": { + "height": 0.0278, + "width": 0.0833, + "x": 0.1495, + "y": 0.0731 + }, + "props": { + "params": { + "pageid": "DetailedView/PFS1", + "panel_id": "value", + "text": "PFS1" + }, + "path": "Custom-Views/Area_Nav_Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "Area_Nav_Button_19" + }, + "position": { + "height": 0.0278, + "width": 0.0833, + "x": 0.15, + "y": 0.1166 + }, + "props": { + "params": { + "pageid": "DetailedView/PFS2", + "panel_id": "value", + "text": "PFS2" + }, + "path": "Custom-Views/Area_Nav_Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "Area_Nav_Button_20" + }, + "position": { + "height": 0.0278, + "width": 0.0833, + "x": 0.15, + "y": 0.1657 + }, + "props": { + "params": { + "pageid": "DetailedView/PSA", + "panel_id": "value", + "text": "PSA" + }, + "path": "Custom-Views/Area_Nav_Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "Area_Nav_Button_21" + }, + "position": { + "height": 0.0278, + "width": 0.0833, + "x": 0.15, + "y": 0.2083 + }, + "props": { + "params": { + "pageid": "DetailedView/PSB", + "panel_id": "value", + "text": "PSB" + }, + "path": "Custom-Views/Area_Nav_Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "Area_Nav_Button_22" + }, + "position": { + "height": 0.0278, + "width": 0.0833, + "x": 0.1505, + "y": 0.2518 + }, + "props": { + "params": { + "pageid": "DetailedView/PSC", + "panel_id": "value", + "text": "PSC" + }, + "path": "Custom-Views/Area_Nav_Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "Area_Nav_Button_23" + }, + "position": { + "height": 0.0278, + "width": 0.0833, + "x": 0.149, + "y": 0.2999 + }, + "props": { + "params": { + "pageid": "DetailedView/PSD", + "panel_id": "value", + "text": "PSD" + }, + "path": "Custom-Views/Area_Nav_Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "Area_Nav_Button_24" + }, + "position": { + "height": 0.0278, + "width": 0.0833, + "x": 0.149, + "y": 0.3425 + }, + "props": { + "params": { + "pageid": "DetailedView/PTSA", + "panel_id": "value", + "text": "PTSA" + }, + "path": "Custom-Views/Area_Nav_Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "Area_Nav_Button_25" + }, + "position": { + "height": 0.0278, + "width": 0.0833, + "x": 0.1495, + "y": 0.386 + }, + "props": { + "params": { + "pageid": "DetailedView/PTSB", + "panel_id": "value", + "text": "PTSB" + }, + "path": "Custom-Views/Area_Nav_Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "Area_Nav_Button_26" + }, + "position": { + "height": 0.0278, + "width": 0.0833, + "x": 0.149, + "y": 0.4268 + }, + "props": { + "params": { + "pageid": "DetailedView/PTSC", + "panel_id": "value", + "text": "PTSC" + }, + "path": "Custom-Views/Area_Nav_Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "Area_Nav_Button_27" + }, + "position": { + "height": 0.0278, + "width": 0.0833, + "x": 0.149, + "y": 0.4694 + }, + "props": { + "params": { + "pageid": "DetailedView/PTSD", + "panel_id": "value", + "text": "PTSD" + }, + "path": "Custom-Views/Area_Nav_Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "Area_Nav_Button_28" + }, + "position": { + "height": 0.0278, + "width": 0.0833, + "x": 0.1495, + "y": 0.5129 + }, + "props": { + "params": { + "pageid": "DetailedView/PTSH", + "panel_id": "value", + "text": "PTSH" + }, + "path": "Custom-Views/Area_Nav_Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "Area_Nav_Button_29" + }, + "position": { + "height": 0.0278, + "width": 0.0833, + "x": 0.1495, + "y": 0.5546 + }, + "props": { + "params": { + "pageid": "DetailedView/SGL1", + "panel_id": "value", + "text": "SGL1" + }, + "path": "Custom-Views/Area_Nav_Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "Area_Nav_Button_30" + }, + "position": { + "height": 0.0278, + "width": 0.0833, + "x": 0.1495, + "y": 0.5972 + }, + "props": { + "params": { + "pageid": "DetailedView/SGL2", + "panel_id": "value", + "text": "SGL2" + }, + "path": "Custom-Views/Area_Nav_Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "Area_Nav_Button_31" + }, + "position": { + "height": 0.0278, + "width": 0.0833, + "x": 0.15, + "y": 0.6407 + }, + "props": { + "params": { + "pageid": "DetailedView/SLAM", + "panel_id": "value", + "text": "SLAM" + }, + "path": "Custom-Views/Area_Nav_Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "Area_Nav_Button_32" + }, + "position": { + "height": 0.0278, + "width": 0.0833, + "x": 0.1508, + "y": 0.6786 + }, + "props": { + "params": { + "pageid": "DetailedView/TR1", + "panel_id": "value", + "text": "TR1" + }, + "path": "Custom-Views/Area_Nav_Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "Area_Nav_Button_33" + }, + "position": { + "height": 0.0278, + "width": 0.0833, + "x": 0.1508, + "y": 0.7212 + }, + "props": { + "params": { + "pageid": "DetailedView/TR2", + "panel_id": "value", + "text": "TR2" + }, + "path": "Custom-Views/Area_Nav_Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "Area_Nav_Button_34" + }, + "position": { + "height": 0.0278, + "width": 0.0833, + "x": 0.1513, + "y": 0.7647 + }, + "props": { + "params": { + "pageid": "DetailedView/TR3", + "panel_id": "value", + "text": "TR3" + }, + "path": "Custom-Views/Area_Nav_Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "Area_Nav_Button_35" + }, + "position": { + "height": 0.0278, + "width": 0.0833, + "x": 0.2511, + "y": 0.0305 + }, + "props": { + "params": { + "pageid": "DetailedView/TR4", + "panel_id": "value", + "text": "TR4" + }, + "path": "Custom-Views/Area_Nav_Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "Area_Nav_Button_36" + }, + "position": { + "height": 0.0278, + "width": 0.0833, + "x": 0.2511, + "y": 0.0731 + }, + "props": { + "params": { + "pageid": "DetailedView/TR5", + "panel_id": "value", + "text": "TR5" + }, + "path": "Custom-Views/Area_Nav_Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "Area_Nav_Button_37" + }, + "position": { + "height": 0.0278, + "width": 0.0833, + "x": 0.2517, + "y": 0.1147 + }, + "props": { + "params": { + "pageid": "DetailedView/TR6", + "panel_id": "value", + "text": "TR6" + }, + "path": "Custom-Views/Area_Nav_Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "Area_Nav_Button_38" + }, + "position": { + "height": 0.0278, + "width": 0.0833, + "x": 0.2524, + "y": 0.1545 + }, + "props": { + "params": { + "pageid": "DetailedView/TRK1", + "panel_id": "value", + "text": "TRK1" + }, + "path": "Custom-Views/Area_Nav_Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "Area_Nav_Button_39" + }, + "position": { + "height": 0.0278, + "width": 0.0833, + "x": 0.2524, + "y": 0.1971 + }, + "props": { + "params": { + "pageid": "DetailedView/TRK2", + "panel_id": "value", + "text": "TRK2" + }, + "path": "Custom-Views/Area_Nav_Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "Area_Nav_Button_40" + }, + "position": { + "height": 0.0278, + "width": 0.0833, + "x": 0.2529, + "y": 0.2406 + }, + "props": { + "params": { + "pageid": "DetailedView/TRK3", + "panel_id": "value", + "text": "TRK3" + }, + "path": "Custom-Views/Area_Nav_Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "Area_Nav_Button_41" + }, + "position": { + "height": 0.0278, + "width": 0.0833, + "x": 0.2545, + "y": 0.2952 + }, + "props": { + "params": { + "pageid": "DetailedView/TRP1", + "panel_id": "value", + "text": "TRP1" + }, + "path": "Custom-Views/Area_Nav_Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "Area_Nav_Button_42" + }, + "position": { + "height": 0.0278, + "width": 0.0833, + "x": 0.2545, + "y": 0.3378 + }, + "props": { + "params": { + "pageid": "DetailedView/TRP2", + "panel_id": "value", + "text": "TRP2" + }, + "path": "Custom-Views/Area_Nav_Button" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "Area_Nav_Button_43" + }, + "position": { + "height": 0.0278, + "width": 0.0833, + "x": 0.2545, + "y": 0.386 + }, + "props": { + "params": { + "pageid": "DetailedView/MTN6", + "panel_id": "value", + "text": "MTN6" + }, + "path": "Custom-Views/Area_Nav_Button" + }, + "type": "ia.display.view" + } + ], + "meta": { + "name": "root" + }, + "props": { + "mode": "percent", + "style": { + "backgroundColor": "#EEEEEE" + } + }, + "type": "ia.container.coord" + } +} \ No newline at end of file diff --git a/.resources/edcdc0a389ac70f49a9aee9d425b308172cc3ca026eda19f47f6b4f4f25e9cab b/.resources/edcdc0a389ac70f49a9aee9d425b308172cc3ca026eda19f47f6b4f4f25e9cab deleted file mode 100644 index f32fa3bb..00000000 Binary files a/.resources/edcdc0a389ac70f49a9aee9d425b308172cc3ca026eda19f47f6b4f4f25e9cab and /dev/null differ diff --git a/.resources/edf3e0cacab2da391972d7af1d21c5f064fe0bebb5f2649f386f142978833081 b/.resources/edf3e0cacab2da391972d7af1d21c5f064fe0bebb5f2649f386f142978833081 deleted file mode 100644 index fb2475ee..00000000 Binary files a/.resources/edf3e0cacab2da391972d7af1d21c5f064fe0bebb5f2649f386f142978833081 and /dev/null differ diff --git a/.resources/f110f762603a90e6a03a3c725fdc9e7bd7c49dcaf69b7e8fac0532c2595036cb b/.resources/f110f762603a90e6a03a3c725fdc9e7bd7c49dcaf69b7e8fac0532c2595036cb deleted file mode 100644 index 030be53c..00000000 --- a/.resources/f110f762603a90e6a03a3c725fdc9e7bd7c49dcaf69b7e8fac0532c2595036cb +++ /dev/null @@ -1,1954 +0,0 @@ -{ - "custom": { - "api_region_name": "na", - "bucket_options": [ - { - "label": "Image Files", - "value": "na-ignition-image-repo" - }, - { - "label": "Source Files", - "value": "na-ignition-image-source" - } - ], - "copy_option_options": [ - { - "label": "Both", - "value": "both" - }, - { - "label": "SVG", - "value": "svg" - }, - { - "label": "DRAWIO", - "value": "drawio" - } - ], - "default_query_params": { - "copy_option": null, - "destination_bucket": null, - "destination_site": null, - "destination_view": "", - "end_time": null, - "error_occurred": null, - "operation": null, - "source_bucket": null, - "source_site": null, - "source_view": "", - "start_time": null - }, - "destination_view_options_by_site_and_bucket": [], - "destination_view_suffix": null, - "destination_whid_options": [], - "error_occurred_options": [ - { - "label": "True", - "value": true - }, - { - "label": "False", - "value": false - } - ], - "operation_options": [ - { - "label": "Copy Single", - "value": "copy_single" - }, - { - "label": "Upload", - "value": "upload" - }, - { - "label": "Delete", - "value": "delete" - }, - { - "label": "Add New Site", - "value": "add_new_site" - } - ], - "source_view_options_by_site_and_bucket": [], - "source_view_suffix": null, - "source_whid_options": [], - "stage_config": { - "account_id": "925510716640", - "endpoint": "https://scada-s3-management.narme-scada.rme.amazon.dev/", - "lambda_name": "RMESDScadaS3ManagementFlaskLambda-prod", - "region": "us-east-2", - "repo_bucket": "na-ignition-image-repo", - "s3_region": "us-east-1", - "source_bucket": "na-ignition-image-source" - } - }, - "params": { - "query_params": { - "copy_option": null, - "destination_bucket": null, - "destination_site": null, - "destination_view": "", - "end_time": null, - "error_occurred": null, - "operation": null, - "source_bucket": null, - "source_site": null, - "source_view": "", - "start_time": null, - "username": "" - } - }, - "propConfig": { - "custom.api_region_name": { - "binding": { - "config": { - "path": "session.custom.aws.prefix" - }, - "type": "property" - }, - "persistent": true - }, - "custom.bucket_options": { - "binding": { - "config": { - "path": "view.custom.stage_config" - }, - "transforms": [ - { - "code": "\treturn [{\u0027value\u0027: value.repo_bucket, \u0027label\u0027: \u0027Image Files\u0027},\n\t\t\t{\u0027value\u0027: value.source_bucket, \u0027label\u0027: \u0027Source Files\u0027}]", - "type": "script" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.copy_option_options": { - "persistent": true - }, - "custom.default_query_params": { - "persistent": true - }, - "custom.default_query_params.username": { - "binding": { - "config": { - "path": "session.props.auth.user.userName" - }, - "type": "property" - } - }, - "custom.destination_view_options_by_site_and_bucket": { - "binding": { - "config": { - "expression": "{view.params.query_params.destination_site}+{view.params.query_params.destination_bucket}" - }, - "transforms": [ - { - "code": "\tbucket \u003d self.params.query_params.destination_bucket\n\tsite \u003d self.params.query_params.destination_site\n\tif bucket and site:\n\t\tfrom AWS.s3 import S3Manager\n\t\tfrom helper.helper import sanitize_tree\n\t\tfrom pprint import pformat\n\t\t\n\t\tapi_stage \u003d \u0027prod\u0027\n\t\tusername \u003d self.session.props.auth.user.userName\n\t\tapi_region_name \u003d self.view.custom.api_region_name\n\t\t\n\t\ts3m \u003d S3Manager(api_stage, api_region_name, username)\n\t\tsuffix \u003d self.custom.destination_view_suffix\n\t\tfiles \u003d sanitize_tree(s3m.fetch_object_list_by_site_and_bucket(site, bucket))\n\t\treturn [{\u0027value\u0027: x[\u0027Filename\u0027].replace(suffix,\u0027\u0027), \n\t\t\t\t\u0027label\u0027: x[\u0027Filename\u0027].replace(suffix,\u0027\u0027)} for x in files]\n\treturn []", - "type": "script" - } - ], - "type": "expr" - }, - "persistent": true - }, - "custom.destination_view_suffix": { - "binding": { - "config": { - "path": "view.params.query_params.destination_bucket" - }, - "transforms": [ - { - "code": "\tif value:\n\t\tstage_config \u003d self.custom.stage_config\n\t\tif value \u003d\u003d stage_config.get(\u0027repo_bucket\u0027, None):\n\t\t\treturn \".svg\"\n\t\tif value \u003d\u003d stage_config.get(\"source_bucket\", None):\n\t\t\treturn \".drawio\"\n\treturn value", - "type": "script" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.destination_whid_options": { - "binding": { - "config": { - "path": "view.params.query_params.destination_bucket" - }, - "transforms": [ - { - "code": "\tif value:\n\t\tfrom AWS.s3 import S3Manager\n\t\t\n\t\tapi_stage \u003d \u0027prod\u0027\n\t\tusername \u003d self.session.props.auth.user.userName\n\t\tapi_region_name \u003d self.custom.api_region_name\n\t\t\n\t\ts3m \u003d S3Manager(\u0027prod\u0027, api_region_name, username)\n\t\t\n\t\treturn [{\u0027value\u0027: x, \u0027label\u0027: x} for x in s3m.fetch_site_list(value)]\n\treturn []", - "type": "script" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.error_occurred_options": { - "persistent": true - }, - "custom.operation_options": { - "binding": { - "config": { - "expression": "1" - }, - "transforms": [ - { - "code": "\tfrom AWS.s3 import OPERATION_MAP\n\treturn [{\u0027value\u0027:k, \u0027label\u0027:k.replace(\u0027_\u0027,\u0027 \u0027).title()} \n\t\t\tfor k,v in OPERATION_MAP.iteritems()\n\t\t\tif v.get(\u0027method\u0027, \u0027\u0027) in (\u0027PUT\u0027, \u0027POST\u0027, \u0027DELETE\u0027)\n\t\t\tand k not in (\u0027query_audit_table\u0027, )]", - "type": "script" - } - ], - "type": "expr" - }, - "persistent": true - }, - "custom.source_view_options_by_site_and_bucket": { - "binding": { - "config": { - "expression": "{view.params.query_params.source_site}+{view.params.query_params.source_bucket}" - }, - "transforms": [ - { - "code": "\tbucket \u003d self.params.query_params.source_bucket\n\tsite \u003d self.params.query_params.source_site\n\tif bucket and site:\n\t\tfrom AWS.s3 import S3Manager\n\t\tfrom helper.helper import sanitize_tree\n\t\tfrom pprint import pformat\n\t\t\n\t\tapi_stage \u003d \u0027prod\u0027\n\t\tusername \u003d self.session.props.auth.user.userName\n\t\tapi_region_name \u003d self.view.custom.api_region_name\n\t\t\n\t\ts3m \u003d S3Manager(api_stage, api_region_name, username)\n\t\tsuffix \u003d self.custom.source_view_suffix\n\t\tfiles \u003d sanitize_tree(s3m.fetch_object_list_by_site_and_bucket(site, bucket))\n\t\treturn [{\u0027value\u0027: x[\u0027Filename\u0027].replace(suffix,\u0027\u0027), \n\t\t\t\t\u0027label\u0027: x[\u0027Filename\u0027].replace(suffix,\u0027\u0027)} for x in files]\n\treturn []", - "type": "script" - } - ], - "type": "expr" - }, - "persistent": true - }, - "custom.source_view_suffix": { - "binding": { - "config": { - "path": "view.params.query_params.source_bucket" - }, - "transforms": [ - { - "code": "\tif value:\n\t\tstage_config \u003d self.custom.stage_config\n\t\tif value \u003d\u003d stage_config.get(\u0027repo_bucket\u0027, None):\n\t\t\treturn \".svg\"\n\t\tif value \u003d\u003d stage_config.get(\"source_bucket\", None):\n\t\t\treturn \".drawio\"\n\treturn value", - "type": "script" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.source_whid_options": { - "binding": { - "config": { - "path": "view.params.query_params.source_bucket" - }, - "transforms": [ - { - "code": "\tif value:\n\t\tfrom AWS.s3 import S3Manager\n\t\t\n\t\tapi_stage \u003d \u0027prod\u0027\n\t\tusername \u003d self.session.props.auth.user.userName\n\t\tapi_region_name \u003d self.custom.api_region_name\n\t\t\n\t\ts3m \u003d S3Manager(\u0027prod\u0027, api_region_name, username)\n\t\t\n\t\treturn [{\u0027value\u0027: x, \u0027label\u0027: x} for x in s3m.fetch_site_list(value)]\n\treturn []", - "type": "script" - } - ], - "type": "property" - }, - "persistent": true - }, - "custom.stage_config": { - "binding": { - "config": { - "expression": "{view.custom.api_region_name}" - }, - "transforms": [ - { - "code": "\treturn AWS.s3.STAGE_CONFIG[\u0027prod\u0027][value]", - "type": "script" - } - ], - "type": "expr" - }, - "persistent": true - }, - "params.query_params": { - "onChange": { - "enabled": null, - "script": "\tif not missedEvents and origin in (\u0027Binding\u0027, \u0027Script\u0027, \u0027BindingWriteback\u0027):\n\t\tpayload \u003d currentValue.value\n\t\tsystem.perspective.sendMessage(\u0027audit_table_query_params_changed\u0027, payload, scope\u003d\u0027session\u0027)\n\t\t" - }, - "paramDirection": "input", - "persistent": true - } - }, - "props": { - "defaultSize": { - "height": 600 - } - }, - "root": { - "children": [ - { - "children": [ - { - "meta": { - "name": "Label" - }, - "position": { - "shrink": 0 - }, - "props": { - "style": { - "borderStyle": "none", - "classes": "Framework/Card/Title_transparent" - }, - "text": "Select Query Params" - }, - "type": "ia.display.label" - }, - { - "children": [ - { - "events": { - "component": { - "onActionPerformed": { - "config": { - "script": "\t# reset query params to default values \n\t# (stored in `view.custom.default_query_params`)\n\tself.view.params.query_params \u003d self.view.custom.default_query_params" - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "Clear Button", - "tooltip": { - "enabled": true, - "location": "bottom-right", - "text": "Clear Selections" - } - }, - "position": { - "shrink": 0 - }, - "props": { - "image": { - "icon": { - "path": "material/clear_all" - } - }, - "primary": false, - "style": { - "classes": "Input/Button/Secondary_minimal" - }, - "text": "" - }, - "type": "ia.input.button" - }, - { - "events": { - "component": { - "onActionPerformed": { - "config": { - "script": "\t# refresh audit table query via message handler\n\tsystem.perspective.sendMessage(\u0027refresh_audit_table_data\u0027, scope\u003d\u0027session\u0027)\n\t" - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "Refresh Button", - "tooltip": { - "enabled": true, - "location": "bottom-right", - "text": "Refresh Data" - } - }, - "position": { - "shrink": 0 - }, - "props": { - "image": { - "icon": { - "path": "material/refresh" - } - }, - "primary": false, - "style": { - "classes": "Input/Button/Secondary_minimal" - }, - "text": "" - }, - "type": "ia.input.button" - } - ], - "meta": { - "name": "FlexContainer" - }, - "position": { - "grow": 1 - }, - "props": { - "justify": "flex-end" - }, - "type": "ia.container.flex" - } - ], - "meta": { - "name": "FlexContainer Header" - }, - "position": { - "shrink": 0 - }, - "props": { - "style": { - "classes": "Framework/Card/Title_transparent", - "marginBottom": "2px" - } - }, - "type": "ia.container.flex" - }, - { - "children": [ - { - "children": [ - { - "meta": { - "name": "Label" - }, - "position": { - "basis": "125px", - "shrink": 0 - }, - "props": { - "style": { - "classes": "Framework/Card/Label", - "textAlign": "right" - }, - "text": "Operation" - }, - "type": "ia.display.label" - }, - { - "meta": { - "name": "Dropdown" - }, - "position": { - "basis": "175px", - "shrink": 0 - }, - "propConfig": { - "props.options": { - "binding": { - "config": { - "path": "view.custom.operation_options" - }, - "type": "property" - } - }, - "props.value": { - "binding": { - "config": { - "bidirectional": true, - "path": "view.params.query_params.operation" - }, - "type": "property" - } - } - }, - "props": { - "dropdownOptionStyle": { - "overflowWrap": "break-word", - "whiteSpace": "normal" - }, - "multiSelect": true, - "showClearIcon": true - }, - "type": "ia.input.dropdown" - }, - { - "events": { - "component": { - "onActionPerformed": { - "config": { - "script": "\tself.view.params.query_params.operation \u003d None\n\t" - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "Clear Button" - }, - "position": { - "basis": "80px" - }, - "propConfig": { - "props.enabled": { - "binding": { - "config": { - "expression": "!isNull({view.params.query_params.operation})\r\n\u0026\u0026{view.params.query_params.operation}!\u003d\u0027\u0027" - }, - "type": "expr" - } - } - }, - "props": { - "image": { - "icon": { - "path": "material/clear" - } - }, - "primary": false, - "style": { - "classes": "Input/Button/Secondary_minimal" - }, - "text": "" - }, - "type": "ia.input.button" - } - ], - "meta": { - "name": "Operation" - }, - "position": { - "basis": "335px", - "shrink": 0 - }, - "props": { - "style": { - "overflow": "hidden" - } - }, - "type": "ia.container.flex" - }, - { - "children": [ - { - "meta": { - "name": "Label" - }, - "position": { - "basis": "125px", - "shrink": 0 - }, - "props": { - "style": { - "classes": "Framework/Card/Label", - "textAlign": "right" - }, - "text": "Copy Option" - }, - "type": "ia.display.label" - }, - { - "meta": { - "name": "Dropdown" - }, - "position": { - "basis": "175px", - "shrink": 0 - }, - "propConfig": { - "props.options": { - "binding": { - "config": { - "path": "view.custom.copy_option_options" - }, - "type": "property" - } - }, - "props.value": { - "binding": { - "config": { - "bidirectional": true, - "path": "view.params.query_params.copy_option" - }, - "type": "property" - } - } - }, - "props": { - "dropdownOptionStyle": { - "overflowWrap": "break-word", - "whiteSpace": "normal" - }, - "showClearIcon": true - }, - "type": "ia.input.dropdown" - }, - { - "events": { - "component": { - "onActionPerformed": { - "config": { - "script": "\tself.view.params.query_params.copy_option \u003d None\n\t" - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "Clear Button" - }, - "position": { - "basis": "80px" - }, - "propConfig": { - "props.enabled": { - "binding": { - "config": { - "expression": "!isNull({view.params.query_params.copy_option})\r\n\u0026\u0026{view.params.query_params.copy_option}!\u003d\u0027\u0027" - }, - "type": "expr" - } - } - }, - "props": { - "image": { - "icon": { - "path": "material/clear" - } - }, - "primary": false, - "style": { - "classes": "Input/Button/Secondary_minimal" - }, - "text": "" - }, - "type": "ia.input.button" - } - ], - "meta": { - "name": "Copy Option", - "visible": false - }, - "position": { - "basis": "335px", - "shrink": 0 - }, - "props": { - "style": { - "overflow": "hidden" - } - }, - "type": "ia.container.flex" - } - ], - "meta": { - "name": "FlexContainer" - }, - "position": { - "shrink": 0 - }, - "props": { - "justify": "center" - }, - "type": "ia.container.flex" - }, - { - "children": [ - { - "children": [ - { - "meta": { - "name": "Label" - }, - "position": { - "basis": "125px", - "shrink": 0 - }, - "props": { - "style": { - "classes": "Framework/Card/Label", - "textAlign": "right" - }, - "text": "Username" - }, - "type": "ia.display.label" - }, - { - "meta": { - "name": "TextField" - }, - "position": { - "basis": "175px", - "shrink": 0 - }, - "propConfig": { - "props.text": { - "binding": { - "config": { - "bidirectional": true, - "path": "view.params.query_params.username" - }, - "type": "property" - } - } - }, - "props": { - "placeholder": "Enter username..." - }, - "type": "ia.input.text-field" - }, - { - "events": { - "component": { - "onActionPerformed": { - "config": { - "script": "\tself.view.params.query_params.username \u003d None\n\t" - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "Clear Button" - }, - "position": { - "basis": "80px" - }, - "propConfig": { - "props.enabled": { - "binding": { - "config": { - "expression": "!isNull({view.params.query_params.username})\r\n\u0026\u0026{view.params.query_params.username}!\u003d\u0027\u0027" - }, - "type": "expr" - } - } - }, - "props": { - "image": { - "icon": { - "path": "material/clear" - } - }, - "primary": false, - "style": { - "classes": "Input/Button/Secondary_minimal" - }, - "text": "" - }, - "type": "ia.input.button" - } - ], - "meta": { - "name": "Username" - }, - "position": { - "basis": "335px", - "shrink": 0 - }, - "props": { - "style": { - "overflow": "hidden" - } - }, - "type": "ia.container.flex" - }, - { - "children": [ - { - "meta": { - "name": "Label" - }, - "position": { - "basis": "125px", - "shrink": 0 - }, - "props": { - "style": { - "classes": "Framework/Card/Label", - "textAlign": "right" - }, - "text": "Error Occurred?" - }, - "type": "ia.display.label" - }, - { - "meta": { - "name": "Dropdown" - }, - "position": { - "basis": "175px", - "shrink": 0 - }, - "propConfig": { - "props.options": { - "binding": { - "config": { - "path": "view.custom.error_occurred_options" - }, - "type": "property" - } - }, - "props.value": { - "binding": { - "config": { - "bidirectional": true, - "path": "view.params.query_params.error_occurred" - }, - "type": "property" - } - } - }, - "props": { - "dropdownOptionStyle": { - "overflowWrap": "break-word", - "whiteSpace": "normal" - }, - "showClearIcon": true - }, - "type": "ia.input.dropdown" - }, - { - "events": { - "component": { - "onActionPerformed": { - "config": { - "script": "\tself.view.params.query_params.error_occurred \u003d None\n\t" - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "Clear Button" - }, - "position": { - "basis": "80px" - }, - "propConfig": { - "props.enabled": { - "binding": { - "config": { - "expression": "!isNull({view.params.query_params.error_occurred})\r\n\u0026\u0026{view.params.query_params.error_occurred}!\u003d\u0027\u0027" - }, - "type": "expr" - } - } - }, - "props": { - "image": { - "icon": { - "path": "material/clear" - } - }, - "primary": false, - "style": { - "classes": "Input/Button/Secondary_minimal" - }, - "text": "" - }, - "type": "ia.input.button" - } - ], - "meta": { - "name": "Error Occurred" - }, - "position": { - "basis": "335px", - "shrink": 0 - }, - "props": { - "style": { - "overflow": "hidden" - } - }, - "type": "ia.container.flex" - } - ], - "meta": { - "name": "FlexContainer_0" - }, - "position": { - "shrink": 0 - }, - "props": { - "justify": "center" - }, - "type": "ia.container.flex" - }, - { - "children": [ - { - "children": [ - { - "meta": { - "name": "Label" - }, - "position": { - "basis": "125px", - "shrink": 0 - }, - "props": { - "style": { - "classes": "Framework/Card/Label", - "textAlign": "right" - }, - "text": "Dest. Bucket" - }, - "type": "ia.display.label" - }, - { - "meta": { - "name": "Dropdown" - }, - "position": { - "basis": "175px", - "shrink": 0 - }, - "propConfig": { - "props.options": { - "binding": { - "config": { - "path": "view.custom.bucket_options" - }, - "type": "property" - } - }, - "props.value": { - "binding": { - "config": { - "bidirectional": true, - "path": "view.params.query_params.destination_bucket" - }, - "type": "property" - } - } - }, - "props": { - "dropdownOptionStyle": { - "overflowWrap": "break-word", - "whiteSpace": "normal" - }, - "showClearIcon": true - }, - "type": "ia.input.dropdown" - }, - { - "events": { - "component": { - "onActionPerformed": { - "config": { - "script": "\tself.view.params.query_params.destination_bucket \u003d None\n\t" - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "Clear Button" - }, - "position": { - "basis": "80px" - }, - "propConfig": { - "props.enabled": { - "binding": { - "config": { - "expression": "!isNull({view.params.query_params.destination_bucket})\r\n\u0026\u0026{view.params.query_params.destination_bucket}!\u003d\u0027\u0027" - }, - "type": "expr" - } - } - }, - "props": { - "image": { - "icon": { - "path": "material/clear" - } - }, - "primary": false, - "style": { - "classes": "Input/Button/Secondary_minimal" - }, - "text": "" - }, - "type": "ia.input.button" - } - ], - "meta": { - "name": "Destination Bucket" - }, - "position": { - "basis": "335px", - "shrink": 0 - }, - "props": { - "style": { - "overflow": "hidden" - } - }, - "type": "ia.container.flex" - }, - { - "children": [ - { - "meta": { - "name": "Label" - }, - "position": { - "basis": "125px", - "shrink": 0 - }, - "props": { - "style": { - "classes": "Framework/Card/Label", - "textAlign": "right" - }, - "text": "Source Bucket" - }, - "type": "ia.display.label" - }, - { - "meta": { - "name": "Dropdown" - }, - "position": { - "basis": "175px", - "shrink": 0 - }, - "propConfig": { - "props.options": { - "binding": { - "config": { - "path": "view.custom.bucket_options" - }, - "type": "property" - } - }, - "props.value": { - "binding": { - "config": { - "bidirectional": true, - "path": "view.params.query_params.source_bucket" - }, - "type": "property" - } - } - }, - "props": { - "dropdownOptionStyle": { - "overflowWrap": "break-word", - "whiteSpace": "normal" - }, - "showClearIcon": true - }, - "type": "ia.input.dropdown" - }, - { - "events": { - "component": { - "onActionPerformed": { - "config": { - "script": "\tself.view.params.query_params.source_bucket \u003d None\n\t" - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "Clear Button" - }, - "position": { - "basis": "80px" - }, - "propConfig": { - "props.enabled": { - "binding": { - "config": { - "expression": "!isNull({view.params.query_params.source_bucket})\r\n\u0026\u0026{view.params.query_params.source_bucket}!\u003d\u0027\u0027" - }, - "type": "expr" - } - } - }, - "props": { - "image": { - "icon": { - "path": "material/clear" - } - }, - "primary": false, - "style": { - "classes": "Input/Button/Secondary_minimal" - }, - "text": "" - }, - "type": "ia.input.button" - } - ], - "meta": { - "name": "Source Bucket" - }, - "position": { - "basis": "335px", - "shrink": 0 - }, - "props": { - "style": { - "overflow": "hidden" - } - }, - "type": "ia.container.flex" - } - ], - "meta": { - "name": "FlexContainer_1" - }, - "position": { - "shrink": 0 - }, - "props": { - "justify": "center" - }, - "type": "ia.container.flex" - }, - { - "children": [ - { - "children": [ - { - "meta": { - "name": "Label" - }, - "position": { - "basis": "125px", - "shrink": 0 - }, - "props": { - "style": { - "classes": "Framework/Card/Label", - "textAlign": "right" - }, - "text": "Dest. Site" - }, - "type": "ia.display.label" - }, - { - "meta": { - "name": "Dropdown" - }, - "position": { - "basis": "175px", - "shrink": 0 - }, - "propConfig": { - "props.enabled": { - "binding": { - "config": { - "expression": "!isNull({view.params.query_params.destination_bucket})\r\n\u0026\u0026len({view.params.query_params.destination_bucket})\u003e0" - }, - "type": "expr" - } - }, - "props.options": { - "binding": { - "config": { - "path": "view.custom.destination_whid_options" - }, - "type": "property" - } - }, - "props.value": { - "binding": { - "config": { - "bidirectional": true, - "path": "view.params.query_params.destination_site" - }, - "type": "property" - } - } - }, - "props": { - "dropdownOptionStyle": { - "overflowWrap": "break-word", - "whiteSpace": "normal" - }, - "showClearIcon": true - }, - "type": "ia.input.dropdown" - }, - { - "events": { - "component": { - "onActionPerformed": { - "config": { - "script": "\tself.view.params.query_params.destination_site \u003d None\n\t" - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "Clear Button" - }, - "position": { - "basis": "80px" - }, - "propConfig": { - "props.enabled": { - "binding": { - "config": { - "expression": "!isNull({view.params.query_params.destination_site})\r\n\u0026\u0026{view.params.query_params.destination_site}!\u003d\u0027\u0027" - }, - "type": "expr" - } - } - }, - "props": { - "image": { - "icon": { - "path": "material/clear" - } - }, - "primary": false, - "style": { - "classes": "Input/Button/Secondary_minimal" - }, - "text": "" - }, - "type": "ia.input.button" - } - ], - "meta": { - "name": "Destination Site" - }, - "position": { - "basis": "335px", - "shrink": 0 - }, - "props": { - "style": { - "overflow": "hidden" - } - }, - "type": "ia.container.flex" - }, - { - "children": [ - { - "meta": { - "name": "Label" - }, - "position": { - "basis": "125px", - "shrink": 0 - }, - "props": { - "style": { - "classes": "Framework/Card/Label", - "textAlign": "right" - }, - "text": "Source Site" - }, - "type": "ia.display.label" - }, - { - "meta": { - "name": "Dropdown" - }, - "position": { - "basis": "175px", - "shrink": 0 - }, - "propConfig": { - "props.enabled": { - "binding": { - "config": { - "expression": "!isNull({view.params.query_params.source_bucket})\r\n\u0026\u0026len({view.params.query_params.source_bucket})\u003e0" - }, - "type": "expr" - } - }, - "props.options": { - "binding": { - "config": { - "path": "view.custom.source_whid_options" - }, - "type": "property" - } - }, - "props.value": { - "binding": { - "config": { - "bidirectional": true, - "path": "view.params.query_params.source_site" - }, - "type": "property" - } - } - }, - "props": { - "dropdownOptionStyle": { - "overflowWrap": "break-word", - "whiteSpace": "normal" - }, - "showClearIcon": true - }, - "type": "ia.input.dropdown" - }, - { - "events": { - "component": { - "onActionPerformed": { - "config": { - "script": "\tself.view.params.query_params.source_site \u003d None\n\t" - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "Clear Button" - }, - "position": { - "basis": "80px" - }, - "propConfig": { - "props.enabled": { - "binding": { - "config": { - "expression": "!isNull({view.params.query_params.source_site})\r\n\u0026\u0026{view.params.query_params.source_site}!\u003d\u0027\u0027" - }, - "type": "expr" - } - } - }, - "props": { - "image": { - "icon": { - "path": "material/clear" - } - }, - "primary": false, - "style": { - "classes": "Input/Button/Secondary_minimal" - }, - "text": "" - }, - "type": "ia.input.button" - } - ], - "meta": { - "name": "Source Site" - }, - "position": { - "basis": "335px", - "shrink": 0 - }, - "props": { - "style": { - "overflow": "hidden" - } - }, - "type": "ia.container.flex" - } - ], - "meta": { - "name": "FlexContainer_2" - }, - "position": { - "shrink": 0 - }, - "props": { - "justify": "center" - }, - "type": "ia.container.flex" - }, - { - "children": [ - { - "children": [ - { - "meta": { - "name": "Label" - }, - "position": { - "basis": "125px", - "shrink": 0 - }, - "props": { - "style": { - "classes": "Framework/Card/Label", - "textAlign": "right" - }, - "text": "Dest. View" - }, - "type": "ia.display.label" - }, - { - "meta": { - "name": "Dropdown" - }, - "position": { - "basis": "175px", - "shrink": 0 - }, - "propConfig": { - "position.display": { - "binding": { - "config": { - "expression": "len({view.custom.destination_view_options_by_site_and_bucket})\u003e0" - }, - "type": "expr" - } - }, - "props.enabled": { - "binding": { - "config": { - "expression": "!isNull({view.params.query_params.destination_bucket})\r\n\u0026\u0026len({view.params.query_params.destination_bucket})\u003e0\r\n\u0026\u0026!isNull({view.params.query_params.destination_site})\r\n\u0026\u0026len({view.params.query_params.destination_site})\u003e0" - }, - "type": "expr" - } - }, - "props.options": { - "binding": { - "config": { - "path": "view.custom.destination_view_options_by_site_and_bucket" - }, - "type": "property" - } - }, - "props.value": { - "binding": { - "config": { - "bidirectional": true, - "path": "view.params.query_params.destination_view" - }, - "type": "property" - } - } - }, - "props": { - "dropdownOptionStyle": { - "overflowWrap": "break-word", - "whiteSpace": "normal" - }, - "showClearIcon": true - }, - "type": "ia.input.dropdown" - }, - { - "meta": { - "name": "TextField" - }, - "position": { - "basis": "175px", - "shrink": 0 - }, - "propConfig": { - "position.display": { - "binding": { - "config": { - "expression": "len({view.custom.destination_view_options_by_site_and_bucket})\u003d0" - }, - "type": "expr" - } - }, - "props.enabled": { - "binding": { - "config": { - "expression": "!isNull({view.params.query_params.destination_bucket})\r\n\u0026\u0026len({view.params.query_params.destination_bucket})\u003e0\r\n\u0026\u0026!isNull({view.params.query_params.destination_site})\r\n\u0026\u0026len({view.params.query_params.destination_site})\u003e0" - }, - "type": "expr" - } - }, - "props.text": { - "binding": { - "config": { - "bidirectional": true, - "path": "view.params.query_params.destination_view" - }, - "type": "property" - } - } - }, - "props": { - "placeholder": "Enter View..." - }, - "type": "ia.input.text-field" - }, - { - "events": { - "component": { - "onActionPerformed": { - "config": { - "script": "\tself.view.params.query_params.destination_view \u003d \u0027\u0027\n\t" - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "Clear Button" - }, - "position": { - "basis": "80px" - }, - "propConfig": { - "props.enabled": { - "binding": { - "config": { - "expression": "!isNull({view.params.query_params.destination_view})\r\n\u0026\u0026{view.params.query_params.destination_view}!\u003d\u0027\u0027" - }, - "type": "expr" - } - } - }, - "props": { - "image": { - "icon": { - "path": "material/clear" - } - }, - "primary": false, - "style": { - "classes": "Input/Button/Secondary_minimal" - }, - "text": "" - }, - "type": "ia.input.button" - } - ], - "meta": { - "name": "Destination View" - }, - "position": { - "basis": "335px", - "shrink": 0 - }, - "props": { - "style": { - "overflow": "hidden" - } - }, - "type": "ia.container.flex" - }, - { - "children": [ - { - "meta": { - "name": "Label" - }, - "position": { - "basis": "125px", - "shrink": 0 - }, - "props": { - "style": { - "classes": "Framework/Card/Label", - "textAlign": "right" - }, - "text": "Source View" - }, - "type": "ia.display.label" - }, - { - "meta": { - "name": "Dropdown" - }, - "position": { - "basis": "175px", - "shrink": 0 - }, - "propConfig": { - "position.display": { - "binding": { - "config": { - "expression": "len({view.custom.source_view_options_by_site_and_bucket})\u003e0" - }, - "type": "expr" - } - }, - "props.enabled": { - "binding": { - "config": { - "expression": "!isNull({view.params.query_params.source_bucket})\r\n\u0026\u0026len({view.params.query_params.source_bucket})\u003e0\r\n\u0026\u0026!isNull({view.params.query_params.source_site})\r\n\u0026\u0026len({view.params.query_params.source_site})\u003e0" - }, - "type": "expr" - } - }, - "props.options": { - "binding": { - "config": { - "path": "view.custom.source_view_options_by_site_and_bucket" - }, - "type": "property" - } - }, - "props.value": { - "binding": { - "config": { - "bidirectional": true, - "path": "view.params.query_params.source_view" - }, - "type": "property" - } - } - }, - "props": { - "dropdownOptionStyle": { - "overflowWrap": "break-word", - "whiteSpace": "normal" - }, - "multiSelect": true, - "showClearIcon": true - }, - "type": "ia.input.dropdown" - }, - { - "meta": { - "name": "TextField" - }, - "position": { - "basis": "175px", - "shrink": 0 - }, - "propConfig": { - "position.display": { - "binding": { - "config": { - "expression": "len({view.custom.source_view_options_by_site_and_bucket})\u003d0" - }, - "type": "expr" - } - }, - "props.enabled": { - "binding": { - "config": { - "expression": "!isNull({view.params.query_params.source_bucket})\r\n\u0026\u0026len({view.params.query_params.source_bucket})\u003e0\r\n\u0026\u0026!isNull({view.params.query_params.source_site})\r\n\u0026\u0026len({view.params.query_params.source_site})\u003e0" - }, - "type": "expr" - } - }, - "props.text": { - "binding": { - "config": { - "bidirectional": true, - "path": "view.params.query_params.source_view" - }, - "type": "property" - } - } - }, - "props": { - "placeholder": "Enter View..." - }, - "type": "ia.input.text-field" - }, - { - "events": { - "component": { - "onActionPerformed": { - "config": { - "script": "\tself.view.params.query_params.source_view \u003d \u0027\u0027\n\t" - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "Clear Button" - }, - "position": { - "basis": "80px" - }, - "propConfig": { - "props.enabled": { - "binding": { - "config": { - "expression": "!isNull({view.params.query_params.source_view})\r\n\u0026\u0026{view.params.query_params.source_view}!\u003d\u0027\u0027" - }, - "type": "expr" - } - } - }, - "props": { - "image": { - "icon": { - "path": "material/clear" - } - }, - "primary": false, - "style": { - "classes": "Input/Button/Secondary_minimal" - }, - "text": "" - }, - "type": "ia.input.button" - } - ], - "meta": { - "name": "Source View" - }, - "position": { - "basis": "335px", - "shrink": 0 - }, - "props": { - "style": { - "overflow": "hidden" - } - }, - "type": "ia.container.flex" - } - ], - "meta": { - "name": "FlexContainer_3" - }, - "position": { - "shrink": 0 - }, - "props": { - "justify": "center" - }, - "type": "ia.container.flex" - }, - { - "children": [ - { - "children": [ - { - "meta": { - "name": "Label" - }, - "position": { - "basis": "125px", - "shrink": 0 - }, - "props": { - "style": { - "classes": "Framework/Card/Label", - "textAlign": "right" - }, - "text": "Start Time" - }, - "type": "ia.display.label" - }, - { - "meta": { - "name": "DateTimeInput" - }, - "position": { - "basis": "175px", - "shrink": 0 - }, - "propConfig": { - "props.value": { - "binding": { - "config": { - "path": "view.params.query_params.start_time" - }, - "transforms": [ - { - "code": "\tif value:\n\t\ttry:\n\t\t\treturn system.date.parse(value, \u0027yyyy-MM-dd HH:mm:ss\u0027)\n\t\texcept:\n\t\t\treturn None\n\treturn value", - "type": "script" - } - ], - "type": "property" - }, - "onChange": { - "enabled": null, - "script": "\tif not missedEvents and origin in (\u0027Browser\u0027,):\n\t\tif currentValue.value:\n\t\t\tdt \u003d currentValue.value\n\t\t\tdt_str \u003d system.date.format(dt, \u0027yyyy-MM-dd HH:mm:ss\u0027)\n\t\t\tself.view.params.query_params.start_time \u003d dt_str" - } - } - }, - "props": { - "format": "YYYY-MM-DD HH:mm:ss", - "formattedValue": null, - "placeholder": "Select start time" - }, - "type": "ia.input.date-time-input" - }, - { - "events": { - "component": { - "onActionPerformed": { - "config": { - "script": "\tself.view.params.query_params.start_time \u003d None\n\t" - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "Clear Button" - }, - "position": { - "basis": "80px" - }, - "propConfig": { - "props.enabled": { - "binding": { - "config": { - "expression": "!isNull({view.params.query_params.start_time})\r\n\u0026\u0026{view.params.query_params.start_time}!\u003d\u0027\u0027" - }, - "type": "expr" - } - } - }, - "props": { - "image": { - "icon": { - "path": "material/clear" - } - }, - "primary": false, - "style": { - "classes": "Input/Button/Secondary_minimal" - }, - "text": "" - }, - "type": "ia.input.button" - } - ], - "meta": { - "name": "Start Time" - }, - "position": { - "basis": "335px", - "shrink": 0 - }, - "props": { - "style": { - "overflow": "hidden" - } - }, - "type": "ia.container.flex" - }, - { - "children": [ - { - "meta": { - "name": "Label" - }, - "position": { - "basis": "125px", - "shrink": 0 - }, - "props": { - "style": { - "classes": "Framework/Card/Label", - "textAlign": "right" - }, - "text": "End Time" - }, - "type": "ia.display.label" - }, - { - "meta": { - "name": "DateTimeInput" - }, - "position": { - "basis": "175px", - "shrink": 0 - }, - "propConfig": { - "props.value": { - "binding": { - "config": { - "path": "view.params.query_params.end_time" - }, - "transforms": [ - { - "code": "\tif value:\n\t\ttry:\n\t\t\treturn system.date.parse(value, \u0027yyyy-MM-dd HH:mm:ss\u0027)\n\t\texcept:\n\t\t\treturn None\n\treturn value", - "type": "script" - } - ], - "type": "property" - }, - "onChange": { - "enabled": null, - "script": "\tif not missedEvents and origin in (\u0027Browser\u0027,):\n\t\tif currentValue.value:\n\t\t\tdt \u003d currentValue.value\n\t\t\tdt_str \u003d system.date.format(dt, \u0027yyyy-MM-dd HH:mm:ss\u0027)\n\t\t\tself.view.params.query_params.end_time \u003d dt_str" - } - } - }, - "props": { - "format": "YYYY-MM-DD HH:mm:ss", - "formattedValue": null, - "placeholder": "Select end time" - }, - "type": "ia.input.date-time-input" - }, - { - "events": { - "component": { - "onActionPerformed": { - "config": { - "script": "\tself.view.params.query_params.end_time \u003d None\n\t" - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "Clear Button" - }, - "position": { - "basis": "80px" - }, - "propConfig": { - "props.enabled": { - "binding": { - "config": { - "expression": "!isNull({view.params.query_params.end_time})\r\n\u0026\u0026{view.params.query_params.end_time}!\u003d\u0027\u0027" - }, - "type": "expr" - } - } - }, - "props": { - "image": { - "icon": { - "path": "material/clear" - } - }, - "primary": false, - "style": { - "classes": "Input/Button/Secondary_minimal" - }, - "text": "" - }, - "type": "ia.input.button" - } - ], - "meta": { - "name": "End Time" - }, - "position": { - "basis": "335px", - "shrink": 0 - }, - "props": { - "style": { - "overflow": "hidden" - } - }, - "type": "ia.container.flex" - } - ], - "meta": { - "name": "FlexContainer_4" - }, - "position": { - "shrink": 0 - }, - "props": { - "justify": "center" - }, - "type": "ia.container.flex" - } - ], - "meta": { - "name": "root" - }, - "props": { - "direction": "column" - }, - "type": "ia.container.flex" - } -} \ No newline at end of file diff --git a/.resources/f153ec2da3260155b2098104f8d407dedcee4ade397d07cf98ec8a2eb5734c78 b/.resources/f153ec2da3260155b2098104f8d407dedcee4ade397d07cf98ec8a2eb5734c78 deleted file mode 100644 index 35bc7547..00000000 --- a/.resources/f153ec2da3260155b2098104f8d407dedcee4ade397d07cf98ec8a2eb5734c78 +++ /dev/null @@ -1,141 +0,0 @@ -{ - "custom": {}, - "events": { - "system": { - "onStartup": { - "config": { - "script": "\tself.params.request_focus \u003d True\n\t" - }, - "scope": "G", - "type": "script" - } - } - }, - "params": { - "enabled": true, - "placeholder": "enter password...", - "request_focus": false, - "text": "" - }, - "propConfig": { - "params.enabled": { - "paramDirection": "input", - "persistent": true - }, - "params.placeholder": { - "paramDirection": "input", - "persistent": true - }, - "params.request_focus": { - "onChange": { - "enabled": null, - "script": "\t# if focus request set externally, set focus via message and clear request\n\tif currentValue.value:\n\t\tsystem.perspective.sendMessage(\u0027request_focus\u0027, scope\u003d\u0027view\u0027)\n\t\tself.params.request_focus \u003d False\n\t" - }, - "paramDirection": "inout", - "persistent": true - }, - "params.text": { - "paramDirection": "inout", - "persistent": true - } - }, - "props": { - "defaultSize": { - "height": 50, - "width": 200 - } - }, - "root": { - "children": [ - { - "events": { - "dom": { - "onKeyPress": { - "config": { - "script": "\tif event.key \u003d\u003d \u0027Enter\u0027:\n\t\tsystem.perspective.sendMessage(\u0027password_entered\u0027, {\u0027value\u0027: self.props.text}, scope\u003d\u0027session\u0027)\n\t\t" - }, - "scope": "G", - "type": "script" - } - } - }, - "meta": { - "name": "PasswordField" - }, - "position": { - "grow": 1 - }, - "propConfig": { - "props.enabled": { - "binding": { - "config": { - "path": "view.params.enabled" - }, - "type": "property" - } - }, - "props.placeholder": { - "binding": { - "config": { - "path": "view.params.placeholder" - }, - "type": "property" - } - }, - "props.style.classes": { - "binding": { - "config": { - "expression": "if({this.props.enabled},\u0027Input/Text/text_field_enabled\u0027,\u0027Input/Text/text_field_disabled\u0027)" - }, - "type": "expr" - } - }, - "props.text": { - "binding": { - "config": { - "path": "view.params.text" - }, - "type": "property" - } - } - }, - "props": { - "style": { - "margin": "1%", - "padding": "1%" - } - }, - "scripts": { - "customMethods": [ - { - "name": "set_focus", - "params": [], - "script": "\tfrom time import sleep\n\tsleep(0.50)\n\tself.focus()\n\t" - } - ], - "extensionFunctions": null, - "messageHandlers": [ - { - "messageType": "request_focus", - "pageScope": false, - "script": "\tsystem.util.invokeAsynchronous(self.set_focus())\n\t", - "sessionScope": false, - "viewScope": true - } - ] - }, - "type": "ia.input.password-field" - } - ], - "meta": { - "name": "root" - }, - "props": { - "direction": "column", - "style": { - "overflow": "hidden" - } - }, - "type": "ia.container.flex" - } -} \ No newline at end of file diff --git a/.resources/f41f84b139b71bc6a5f15a1afae39ff3f8cbd316d8d2975daa0d70e45243eeb6 b/.resources/f41f84b139b71bc6a5f15a1afae39ff3f8cbd316d8d2975daa0d70e45243eeb6 new file mode 100644 index 00000000..c80ac75f Binary files /dev/null and b/.resources/f41f84b139b71bc6a5f15a1afae39ff3f8cbd316d8d2975daa0d70e45243eeb6 differ diff --git a/.resources/f4265e560ed2fcd9331051c9e4b2a0e31e67f3789ad22a781349ada408e48d67 b/.resources/f4265e560ed2fcd9331051c9e4b2a0e31e67f3789ad22a781349ada408e48d67 new file mode 100644 index 00000000..1d9767d2 Binary files /dev/null and b/.resources/f4265e560ed2fcd9331051c9e4b2a0e31e67f3789ad22a781349ada408e48d67 differ diff --git a/.resources/f4db5f66fc0dc6d8d5ee30e425bb43299ee070211d905f79e44f2cabb0500bd9 b/.resources/f4db5f66fc0dc6d8d5ee30e425bb43299ee070211d905f79e44f2cabb0500bd9 new file mode 100644 index 00000000..ead5d2b3 --- /dev/null +++ b/.resources/f4db5f66fc0dc6d8d5ee30e425bb43299ee070211d905f79e44f2cabb0500bd9 @@ -0,0 +1,41652 @@ +{ + "custom": {}, + "params": {}, + "props": { + "defaultSize": { + "height": 180, + "width": 240 + } + }, + "root": { + "children": [ + { + "meta": { + "name": "FIO_0" + }, + "position": { + "basis": "300px" + }, + "props": { + "elements": [ + { + "elements": [ + { + "elements": [ + { + "id": "stop17", + "name": "stop17", + "offset": "0", + "stopColor": "#5f75d8", + "stopOpacity": "1", + "style": { + "stopColor": "#5f75d8", + "stopOpacity": "1" + }, + "type": "stop" + } + ], + "id": "swatch17", + "name": "swatch17", + "type": "linearGradient" + } + ], + "id": "defs1", + "name": "defs1", + "type": "defs" + }, + { + "d": "m 61.989998,178.99253 0.161074,0.14213", + "fill": { + "paint": "transparent" + }, + "id": "path1497", + "name": "path1497", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 57.271528,169.194 -0.158935,-0.1378", + "fill": { + "paint": "transparent" + }, + "id": "path1498", + "name": "path1498", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 108.39469,0.6827622 -0.93287,0.2656822", + "fill": { + "paint": "transparent" + }, + "id": "path1499", + "name": "path1499", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "M 62.334127,179.19476 H 115.34412", + "fill": { + "paint": "transparent" + }, + "id": "path1500", + "name": "path1500", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 116.00535,178.94244 h 0.39437", + "fill": { + "paint": "transparent" + }, + "id": "path1501", + "name": "path1501", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 59.142251,158.40328 -1.025677,-0.62471", + "fill": { + "paint": "transparent" + }, + "id": "path1502", + "name": "path1502", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 59.142251,158.40328 -1.212636,-0.91966", + "fill": { + "paint": "transparent" + }, + "id": "path1503", + "name": "path1503", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 56.772309,158.32207 2.92e-4,3.2e-4", + "fill": { + "paint": "transparent" + }, + "id": "path1504", + "name": "path1504", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 58.852827,157.29768 -0.462732,-0.50542", + "fill": { + "paint": "transparent" + }, + "id": "path1505", + "name": "path1505", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 59.831255,158.3663 0.04838,0.053", + "fill": { + "paint": "transparent" + }, + "id": "path1506", + "name": "path1506", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 54.985413,161.36913 0.333362,0.52739", + "fill": { + "paint": "transparent" + }, + "id": "path1507", + "name": "path1507", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "M 56.059511,162.25747 55.726256,161.7302", + "fill": { + "paint": "transparent" + }, + "id": "path1508", + "name": "path1508", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 108.9439,0.41278 -1.00741,0.4951714 -0.66075,0.5839493", + "fill": { + "paint": "transparent" + }, + "id": "path1509", + "name": "path1509", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "M 90.47048,171.17494 H 79.471386", + "fill": { + "paint": "transparent" + }, + "id": "path1511", + "name": "path1511", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "M 79.441749,170.4331 H 90.44075", + "fill": { + "paint": "transparent" + }, + "id": "path1512", + "name": "path1512", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 77.403261,169.25188 -19.949744,-7e-5", + "fill": { + "paint": "transparent" + }, + "id": "path1513", + "name": "path1513", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 110.63308,169.25181 -19.94952,7e-5", + "fill": { + "paint": "transparent" + }, + "id": "path1514", + "name": "path1514", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 59.142251,158.40328 0.464051,0.18873", + "fill": { + "paint": "transparent" + }, + "id": "path1515", + "name": "path1515", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "M 62.173246,162.25747 61.789233,161.7302", + "fill": { + "paint": "transparent" + }, + "id": "path1516", + "name": "path1516", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 63.442219,161.3357 -0.384467,-0.52784", + "fill": { + "paint": "transparent" + }, + "id": "path1517", + "name": "path1517", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 57.515344,157.73695 0.373006,0.58856", + "fill": { + "paint": "transparent" + }, + "id": "path1518", + "name": "path1518", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 58.138662,157.81341 -0.40139,-0.63326", + "fill": { + "paint": "transparent" + }, + "id": "path1519", + "name": "path1519", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 55.716155,162.21564 -0.01105,-0.0191", + "fill": { + "paint": "transparent" + }, + "id": "path1520", + "name": "path1520", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 56.236869,159.24767 0.28055,0.54163", + "fill": { + "paint": "transparent" + }, + "id": "path1521", + "name": "path1521", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 56.960648,169.00732 4.876759,9.93512", + "fill": { + "paint": "transparent" + }, + "id": "path1522", + "name": "path1522", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 57.112593,169.0562 4.877405,9.93633", + "fill": { + "paint": "transparent" + }, + "id": "path1523", + "name": "path1523", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "M 62.151072,179.13466 57.271528,169.194", + "fill": { + "paint": "transparent" + }, + "id": "path1524", + "name": "path1524", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 62.334127,179.19476 -4.88061,-9.94295", + "fill": { + "paint": "transparent" + }, + "id": "path1525", + "name": "path1525", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 61.446849,178.9425 -4.85535,-9.93417", + "fill": { + "paint": "transparent" + }, + "id": "path1526", + "name": "path1526", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 56.220585,168.82082 4.85321,9.93867", + "fill": { + "paint": "transparent" + }, + "id": "path1527", + "name": "path1527", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 107.46182,0.9484444 -1.00846,0.7404748 -0.89317,1.1250048 -0.57437,1.072896", + "fill": { + "paint": "transparent" + }, + "id": "path1528", + "name": "path1528", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 55.723857,162.39115 h 7.578064", + "fill": { + "paint": "transparent" + }, + "id": "path1537", + "name": "path1537", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 56.059511,162.25747 h 6.113735", + "fill": { + "paint": "transparent" + }, + "id": "path1538", + "name": "path1538", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 55.747658,162.23463 h 0.101719", + "fill": { + "paint": "transparent" + }, + "id": "path1539", + "name": "path1539", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 62.399819,162.23463 h 0.92595", + "fill": { + "paint": "transparent" + }, + "id": "path1540", + "name": "path1540", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 54.919089,161.93213 h 0.3356", + "fill": { + "paint": "transparent" + }, + "id": "path1541", + "name": "path1541", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 54.942504,161.79088 h 0.309507", + "fill": { + "paint": "transparent" + }, + "id": "path1542", + "name": "path1542", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "M 61.789233,161.7302 H 55.726256", + "fill": { + "paint": "transparent" + }, + "id": "path1543", + "name": "path1543", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 58.851221,158.39459 0.29103,0.009", + "fill": { + "paint": "transparent" + }, + "id": "path1544", + "name": "path1544", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 59.248901,155.41953 -0.214325,-0.41385", + "fill": { + "paint": "transparent" + }, + "id": "path1545", + "name": "path1545", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 63.634017,160.62504 -0.346242,-0.66855", + "fill": { + "paint": "transparent" + }, + "id": "path1546", + "name": "path1546", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 61.624787,156.74242 0.280549,0.54164", + "fill": { + "paint": "transparent" + }, + "id": "path1547", + "name": "path1547", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 63.490793,157.94494 -0.34658,-0.66923", + "fill": { + "paint": "transparent" + }, + "id": "path1548", + "name": "path1548", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 60.196845,151.0331 0.368217,0.71092", + "fill": { + "paint": "transparent" + }, + "id": "path1549", + "name": "path1549", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 59.142251,158.40328 -0.752156,-1.61102", + "fill": { + "paint": "transparent" + }, + "id": "path1550", + "name": "path1550", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 58.125883,156.19967 0.264212,0.59259", + "fill": { + "paint": "transparent" + }, + "id": "path1551", + "name": "path1551", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 58.545805,156.609 0.307022,0.68868", + "fill": { + "paint": "transparent" + }, + "id": "path1552", + "name": "path1552", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 59.580843,157.27832 -0.298493,-0.6695", + "fill": { + "paint": "transparent" + }, + "id": "path1553", + "name": "path1553", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 60.117315,156.19919 0.264199,0.59259", + "fill": { + "paint": "transparent" + }, + "id": "path1554", + "name": "path1554", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 59.142251,158.40328 0.165658,0.38446", + "fill": { + "paint": "transparent" + }, + "id": "path1555", + "name": "path1555", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 59.777663,158.28168 -0.255768,-0.63622", + "fill": { + "paint": "transparent" + }, + "id": "path1556", + "name": "path1556", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 59.831255,158.36632 -0.25323,-0.62989", + "fill": { + "paint": "transparent" + }, + "id": "path1557", + "name": "path1557", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 54.702912,163.45587 0.04211,0.17993", + "fill": { + "paint": "transparent" + }, + "id": "path1558", + "name": "path1558", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 54.610795,162.48243 0.08427,0.77267", + "fill": { + "paint": "transparent" + }, + "id": "path1559", + "name": "path1559", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 107.14726,1.6289698 0.008,-0.00681", + "fill": { + "paint": "transparent" + }, + "id": "path1560", + "name": "path1560", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "M 107.27534,1.4920139 107.1471,1.6286884", + "fill": { + "paint": "transparent" + }, + "id": "path1561", + "name": "path1561", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 103.23248,10.771258 -0.0969,0.09266", + "fill": { + "paint": "transparent" + }, + "id": "path1562", + "name": "path1562", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 105.90758,3.689014 -0.0932,0.08299", + "fill": { + "paint": "transparent" + }, + "id": "path1563", + "name": "path1563", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 105.84574,3.699114 0.0927,-0.08174", + "fill": { + "paint": "transparent" + }, + "id": "path1564", + "name": "path1564", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 116.03883,157.09396 -3.19228,0.44172", + "fill": { + "paint": "transparent" + }, + "id": "path1572", + "name": "path1572", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 59.142251,158.40328 0.689004,-0.037", + "fill": { + "paint": "transparent" + }, + "id": "path1573", + "name": "path1573", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 59.034576,155.00568 -2.392311,5.6e-4", + "fill": { + "paint": "transparent" + }, + "id": "path1574", + "name": "path1574", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 89.89529,157.38275 21.27862,4.2e-4", + "fill": { + "paint": "transparent" + }, + "id": "path1575", + "name": "path1575", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "M 63.852333,157.38258 H 77.240748", + "fill": { + "paint": "transparent" + }, + "id": "path1576", + "name": "path1576", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "M 55.789849,155.63932 H 55.598338", + "fill": { + "paint": "transparent" + }, + "id": "path1577", + "name": "path1577", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 56.659956,155.41035 h 2.371835", + "fill": { + "paint": "transparent" + }, + "id": "path1578", + "name": "path1578", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "M 55.856699,155.20578 H 56.19771", + "fill": { + "paint": "transparent" + }, + "id": "path1579", + "name": "path1579", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "M 55.838903,154.82889 H 56.17992", + "fill": { + "paint": "transparent" + }, + "id": "path1580", + "name": "path1580", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 56.627527,154.62883 h 2.389205", + "fill": { + "paint": "transparent" + }, + "id": "path1581", + "name": "path1581", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 80.040727,166.19946 -3.383226,-5.64075", + "fill": { + "paint": "transparent" + }, + "id": "path1583", + "name": "path1583", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 77.403261,169.25188 0.70836,1.2632", + "fill": { + "paint": "transparent" + }, + "id": "path1584", + "name": "path1584", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "M 78.766217,170.08977 78.057931,168.8268", + "fill": { + "paint": "transparent" + }, + "id": "path1585", + "name": "path1585", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 64.127612,144.99967 1.120385,2.1633", + "fill": { + "paint": "transparent" + }, + "id": "path1586", + "name": "path1586", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 66.160781,144.05429 1.429781,2.7607", + "fill": { + "paint": "transparent" + }, + "id": "path1587", + "name": "path1587", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 66.628684,144.73336 -0.604495,-1.1672", + "fill": { + "paint": "transparent" + }, + "id": "path1588", + "name": "path1588", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "M 68.573775,147.19121 68.24695,146.56014", + "fill": { + "paint": "transparent" + }, + "id": "path1589", + "name": "path1589", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 65.208739,140.46947 1.433105,2.76707", + "fill": { + "paint": "transparent" + }, + "id": "path1590", + "name": "path1590", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 58.852827,157.29768 0.289424,1.1056", + "fill": { + "paint": "transparent" + }, + "id": "path1591", + "name": "path1591", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 54.700966,163.30114 0.160281,1.04921 0.390071,1.77545 0.503609,1.59614 0.469209,1.10484", + "fill": { + "paint": "transparent" + }, + "id": "path1592", + "name": "path1592", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 54.685608,163.18975 -0.0089,-0.0693 0.01705,0.13612", + "fill": { + "paint": "transparent" + }, + "id": "path1593", + "name": "path1593", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 54.695063,163.2551 0.0053,0.0462", + "fill": { + "paint": "transparent" + }, + "id": "path1594", + "name": "path1594", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 54.55691,161.72766 0.0539,0.75477", + "fill": { + "paint": "transparent" + }, + "id": "path1595", + "name": "path1595", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 100.66851,18.428277 0.097,-0.09265", + "fill": { + "paint": "transparent" + }, + "id": "path1597", + "name": "path1597", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 99.34982,26.127038 -2.25423,1.847159", + "fill": { + "paint": "transparent" + }, + "id": "path1598", + "name": "path1598", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 83.390804,143.16808 -0.385659,-0.0275", + "fill": { + "paint": "transparent" + }, + "id": "path1599", + "name": "path1599", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 111.4537,157.37292 0.19111,0.10333", + "fill": { + "paint": "transparent" + }, + "id": "path1600", + "name": "path1600", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 111.6135,157.54922 -0.18849,-0.10386", + "fill": { + "paint": "transparent" + }, + "id": "path1601", + "name": "path1601", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 90.35142,169.11988 -0.0527,-0.0828", + "fill": { + "paint": "transparent" + }, + "id": "path1602", + "name": "path1602", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 90.80796,170.29848 0.0535,0.0846", + "fill": { + "paint": "transparent" + }, + "id": "path1603", + "name": "path1603", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 73.506131,138.03791 1.50877,2.86795", + "fill": { + "paint": "transparent" + }, + "id": "path1605", + "name": "path1605", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 74.580741,154.20682 v -0.008", + "fill": { + "paint": "transparent" + }, + "id": "path1606", + "name": "path1606", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 63.356545,132.26013 -0.190098,-0.36697", + "fill": { + "paint": "transparent" + }, + "id": "path1607", + "name": "path1607", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 67.241902,139.52412 1.429787,2.76068", + "fill": { + "paint": "transparent" + }, + "id": "path1608", + "name": "path1608", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 70.218773,144.99967 0.770841,1.48842", + "fill": { + "paint": "transparent" + }, + "id": "path1610", + "name": "path1610", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 69.932573,143.19711 -0.604495,-1.16718", + "fill": { + "paint": "transparent" + }, + "id": "path1611", + "name": "path1611", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 83.590392,167.53909 0.878541,1.69616", + "fill": { + "paint": "transparent" + }, + "id": "path1612", + "name": "path1612", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 72.251937,144.05429 0.732467,1.41432", + "fill": { + "paint": "transparent" + }, + "id": "path1613", + "name": "path1613", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 85.592444,169.35 -1.590828,-3.07164", + "fill": { + "paint": "transparent" + }, + "id": "path1614", + "name": "path1614", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 73.51252,144.73336 -0.604496,-1.1672", + "fill": { + "paint": "transparent" + }, + "id": "path1615", + "name": "path1615", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 71.64355,139.60242 1.882157,3.63412", + "fill": { + "paint": "transparent" + }, + "id": "path1616", + "name": "path1616", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 73.676712,138.65704 1.878847,3.62776", + "fill": { + "paint": "transparent" + }, + "id": "path1619", + "name": "path1619", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 68.971416,138.17895 1.461729,2.86778", + "fill": { + "paint": "transparent" + }, + "id": "path1620", + "name": "path1620", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 70.656392,141.15801 -1.46135,-2.8669", + "fill": { + "paint": "transparent" + }, + "id": "path1621", + "name": "path1621", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 63.669651,157.63283 0.169809,0.70414 0.0627,1.1308 -0.07,0.94686", + "fill": { + "paint": "transparent" + }, + "id": "path1622", + "name": "path1622", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 100.38439,25.899987 -0.0968,0.09263", + "fill": { + "paint": "transparent" + }, + "id": "path1623", + "name": "path1623", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 92.16157,43.102901 2.2542,-1.847158", + "fill": { + "paint": "transparent" + }, + "id": "path1624", + "name": "path1624", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 59.142251,158.40328 -0.235053,0.0547", + "fill": { + "paint": "transparent" + }, + "id": "path1633", + "name": "path1633", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 70.656392,141.15801 h 1.792799", + "fill": { + "paint": "transparent" + }, + "id": "path1634", + "name": "path1634", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 114.12882,150.29075 0.19477,0.0935", + "fill": { + "paint": "transparent" + }, + "id": "path1637", + "name": "path1637", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 90.29773,169.03529 0.51023,1.26319", + "fill": { + "paint": "transparent" + }, + "id": "path1644", + "name": "path1644", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 91.19369,170.51508 -0.51013,-1.2632", + "fill": { + "paint": "transparent" + }, + "id": "path1645", + "name": "path1645", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 59.106218,158.68497 0.03597,-0.28169", + "fill": { + "paint": "transparent" + }, + "id": "path1647", + "name": "path1647", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 54.918942,157.09396 -0.04504,0.26559", + "fill": { + "paint": "transparent" + }, + "id": "path1648", + "name": "path1648", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 55.646419,155.41474 0.02352,-0.1123", + "fill": { + "paint": "transparent" + }, + "id": "path1649", + "name": "path1649", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 104.98582,3.88682 3.2e-4,-6.23e-4", + "fill": { + "paint": "transparent" + }, + "id": "path1650", + "name": "path1650", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 91.97573,45.565609 -0.80177,1.088425", + "fill": { + "paint": "transparent" + }, + "id": "path1651", + "name": "path1651", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "M 92.21654,45.239857 91.97077,45.57219", + "fill": { + "paint": "transparent" + }, + "id": "path1652", + "name": "path1652", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 95.35344,41.121359 0.0969,-0.09263", + "fill": { + "paint": "transparent" + }, + "id": "path1655", + "name": "path1655", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 97.65144,136.30055 h 4.7978", + "fill": { + "paint": "transparent" + }, + "id": "path1661", + "name": "path1661", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "M 85.363461,123.92536 83.489319,122.9249", + "fill": { + "paint": "transparent" + }, + "id": "path1676", + "name": "path1676", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 88.10424,148.67077 1.83076,3.53494", + "fill": { + "paint": "transparent" + }, + "id": "path1680", + "name": "path1680", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "M 93.29786,151.51391 92.65757,150.2777", + "fill": { + "paint": "transparent" + }, + "id": "path1689", + "name": "path1689", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 94.48745,149.42686 -2.97066,-5.73591", + "fill": { + "paint": "transparent" + }, + "id": "path1696", + "name": "path1696", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 63.750321,161.28979 -0.01345,0.13799 -0.03971,0.2227 -0.03452,0.12354", + "fill": { + "paint": "transparent" + }, + "id": "path1705", + "name": "path1705", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 63.83219,160.41461 v 9e-5", + "fill": { + "paint": "transparent" + }, + "id": "path1706", + "name": "path1706", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 54.914611,157.20264 -0.04064,0.15691", + "fill": { + "paint": "transparent" + }, + "id": "path1707", + "name": "path1707", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 55.077917,156.58269 -0.06768,0.25494", + "fill": { + "paint": "transparent" + }, + "id": "path1708", + "name": "path1708", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 55.077917,156.58269 -0.06768,0.25494", + "fill": { + "paint": "transparent" + }, + "id": "path1709", + "name": "path1709", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 55.130202,156.38784 -0.05224,0.19485", + "fill": { + "paint": "transparent" + }, + "id": "path1710", + "name": "path1710", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 55.182714,156.19347 -0.104794,0.38922", + "fill": { + "paint": "transparent" + }, + "id": "path1711", + "name": "path1711", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 55.182714,156.19347 -0.0525,0.19437", + "fill": { + "paint": "transparent" + }, + "id": "path1712", + "name": "path1712", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 56.768758,150.60886 -0.434501,1.37238 -0.489704,1.65711 -0.379723,1.38456", + "fill": { + "paint": "transparent" + }, + "id": "path1713", + "name": "path1713", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 103.02682,8.877733 -0.75486,2.210356", + "fill": { + "paint": "transparent" + }, + "id": "path1714", + "name": "path1714", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 103.95938,6.385963 -0.93256,2.49177", + "fill": { + "paint": "transparent" + }, + "id": "path1715", + "name": "path1715", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 105.12532,4.256354 0.0931,-0.228974", + "fill": { + "paint": "transparent" + }, + "id": "path1716", + "name": "path1716", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 104.86557,4.161475 -0.90619,2.224488", + "fill": { + "paint": "transparent" + }, + "id": "path1717", + "name": "path1717", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 105.65998,3.808484 0.0192,-0.04618", + "fill": { + "paint": "transparent" + }, + "id": "path1718", + "name": "path1718", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 106.11347,3.596512 -0.0208,0.04868", + "fill": { + "paint": "transparent" + }, + "id": "path1719", + "name": "path1719", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 104.86557,4.161475 -2.4e-4,3.4e-4", + "fill": { + "paint": "transparent" + }, + "id": "path1720", + "name": "path1720", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 105.12203,4.256149 0.0964,-0.228769", + "fill": { + "paint": "transparent" + }, + "id": "path1721", + "name": "path1721", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 105.81434,3.772001 0.02,-0.04709", + "fill": { + "paint": "transparent" + }, + "id": "path1722", + "name": "path1722", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 90.33488,47.984907 -0.3982,0.925289", + "fill": { + "paint": "transparent" + }, + "id": "path1723", + "name": "path1723", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 105.93842,3.617376 -0.0312,0.07162", + "fill": { + "paint": "transparent" + }, + "id": "path1724", + "name": "path1724", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 104.98614,3.886202 -0.12065,0.275636", + "fill": { + "paint": "transparent" + }, + "id": "path1725", + "name": "path1725", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 106.11347,3.596512 0.0152,-0.03392", + "fill": { + "paint": "transparent" + }, + "id": "path1726", + "name": "path1726", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 91.17396,46.654034 -0.83908,1.330873", + "fill": { + "paint": "transparent" + }, + "id": "path1728", + "name": "path1728", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 107.7162,38.506672 -1.14132,1.260714", + "fill": { + "paint": "transparent" + }, + "id": "path1729", + "name": "path1729", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 106.85963,39.767386 0.47099,-0.520323", + "fill": { + "paint": "transparent" + }, + "id": "path1730", + "name": "path1730", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 139.80959,3.542126 -4.9e-4,4.4e-4", + "fill": { + "paint": "transparent" + }, + "id": "path1731", + "name": "path1731", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "M 103.4784,126.87517 H 83.556915", + "fill": { + "paint": "transparent" + }, + "id": "path1745", + "name": "path1745", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "M 103.53497,126.70167 H 84.176517", + "fill": { + "paint": "transparent" + }, + "id": "path1746", + "name": "path1746", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "M 84.609557,126.2367 H 103.68661", + "fill": { + "paint": "transparent" + }, + "id": "path1747", + "name": "path1747", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "M 103.94436,125.48025 H 84.856358", + "fill": { + "paint": "transparent" + }, + "id": "path1748", + "name": "path1748", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 105.30029,125.44636 h -1.35593", + "fill": { + "paint": "transparent" + }, + "id": "path1749", + "name": "path1749", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "M 84.022952,125.44636 H 82.667026", + "fill": { + "paint": "transparent" + }, + "id": "path1750", + "name": "path1750", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "M 85.048189,124.89192 H 104.9696", + "fill": { + "paint": "transparent" + }, + "id": "path1751", + "name": "path1751", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "M 105.21632,124.13548 H 85.29483", + "fill": { + "paint": "transparent" + }, + "id": "path1752", + "name": "path1752", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 84.54108,126.44682 -0.518128,-1.00046", + "fill": { + "paint": "transparent" + }, + "id": "path1757", + "name": "path1757", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 84.609557,126.2367 0.240891,0.46497", + "fill": { + "paint": "transparent" + }, + "id": "path1758", + "name": "path1758", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 85.048189,124.89192 0.304724,0.58833", + "fill": { + "paint": "transparent" + }, + "id": "path1762", + "name": "path1762", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 85.363461,123.92536 -0.51821,-1.00046", + "fill": { + "paint": "transparent" + }, + "id": "path1763", + "name": "path1763", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 85.382557,123.00352 0.586279,1.13196", + "fill": { + "paint": "transparent" + }, + "id": "path1764", + "name": "path1764", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "M 85.656689,122.16306 85.311288,121.4961", + "fill": { + "paint": "transparent" + }, + "id": "path1765", + "name": "path1765", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 111.66599,169.00944 4.73373,9.933", + "fill": { + "paint": "transparent" + }, + "id": "path1771", + "name": "path1771", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 110.63308,169.25181 4.71104,9.94295", + "fill": { + "paint": "transparent" + }, + "id": "path1772", + "name": "path1772", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 110.85656,169.194 4.70983,9.94066", + "fill": { + "paint": "transparent" + }, + "id": "path1773", + "name": "path1773", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 115.82015,178.99253 -4.70777,-9.93633", + "fill": { + "paint": "transparent" + }, + "id": "path1774", + "name": "path1774", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 116.00535,178.94244 -4.70721,-9.93514", + "fill": { + "paint": "transparent" + }, + "id": "path1775", + "name": "path1775", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 89.52002,157.85127 4e-4,0.002", + "fill": { + "paint": "transparent" + }, + "id": "path1778", + "name": "path1778", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 89.5205,157.85267 0.1196,0.65353 0.0247,1.08459 -0.0848,0.91781", + "fill": { + "paint": "transparent" + }, + "id": "path1779", + "name": "path1779", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 99.80474,18.653254 -0.14045,0.53343", + "fill": { + "paint": "transparent" + }, + "id": "path1780", + "name": "path1780", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 99.17946,21.290987 -0.24208,0.826328", + "fill": { + "paint": "transparent" + }, + "id": "path1781", + "name": "path1781", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 98.9472,22.085428 -0.48441,1.52963 -0.71812,2.261557 -0.69956,2.16892", + "fill": { + "paint": "transparent" + }, + "id": "path1782", + "name": "path1782", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 98.9472,22.085428 0.16524,-0.516392", + "fill": { + "paint": "transparent" + }, + "id": "path1783", + "name": "path1783", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 54.918942,157.09396 0.132403,-0.41112", + "fill": { + "paint": "transparent" + }, + "id": "path1784", + "name": "path1784", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 55.002184,156.83532 0.04911,-0.15248", + "fill": { + "paint": "transparent" + }, + "id": "path1785", + "name": "path1785", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 56.768705,150.60884 1.242533,-3.80982", + "fill": { + "paint": "transparent" + }, + "id": "path1786", + "name": "path1786", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "M 62.091277,134.28902 89.93684,48.90964", + "fill": { + "paint": "transparent" + }, + "id": "path1787", + "name": "path1787", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 99.80458,18.653254 2.46746,-7.565417", + "fill": { + "paint": "transparent" + }, + "id": "path1788", + "name": "path1788", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 101.49752,14.088358 -0.38375,1.176679", + "fill": { + "paint": "transparent" + }, + "id": "path1789", + "name": "path1789", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "M 90.39585,48.127977 90.0121,49.304651", + "fill": { + "paint": "transparent" + }, + "id": "path1790", + "name": "path1790", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "M 85.735861,62.416219 85.35212,63.592908", + "fill": { + "paint": "transparent" + }, + "id": "path1791", + "name": "path1791", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 63.532578,130.49547 -0.383782,1.17669", + "fill": { + "paint": "transparent" + }, + "id": "path1797", + "name": "path1797", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 102.6402,10.912765 -0.97402,2.986727", + "fill": { + "paint": "transparent" + }, + "id": "path1798", + "name": "path1798", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 101.14725,15.490689 -0.97411,2.986427", + "fill": { + "paint": "transparent" + }, + "id": "path1799", + "name": "path1799", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "M 90.0455,49.530307 85.90453,62.227365", + "fill": { + "paint": "transparent" + }, + "id": "path1800", + "name": "path1800", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "M 85.385595,63.818526 83.1635,70.631925", + "fill": { + "paint": "transparent" + }, + "id": "path1801", + "name": "path1801", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "M 82.644405,72.223365 78.503438,84.920444", + "fill": { + "paint": "transparent" + }, + "id": "path1802", + "name": "path1802", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "M 77.984503,86.511605 75.762341,93.325", + "fill": { + "paint": "transparent" + }, + "id": "path1803", + "name": "path1803", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 75.243326,94.91645 -4.14102,12.69707", + "fill": { + "paint": "transparent" + }, + "id": "path1804", + "name": "path1804", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 70.583391,109.2047 -2.222129,6.81337", + "fill": { + "paint": "transparent" + }, + "id": "path1805", + "name": "path1805", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 67.842214,117.60953 -4.141,12.69709", + "fill": { + "paint": "transparent" + }, + "id": "path1806", + "name": "path1806", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 63.182252,131.89779 -0.692616,2.12371", + "fill": { + "paint": "transparent" + }, + "id": "path1807", + "name": "path1807", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 58.208685,147.14769 -1.071512,3.28547", + "fill": { + "paint": "transparent" + }, + "id": "path1808", + "name": "path1808", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 101.68168,14.000822 -0.38374,1.176681", + "fill": { + "paint": "transparent" + }, + "id": "path1809", + "name": "path1809", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 90.58,48.040434 -0.38381,1.176689", + "fill": { + "paint": "transparent" + }, + "id": "path1810", + "name": "path1810", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 63.716666,130.40792 -0.383728,1.17667", + "fill": { + "paint": "transparent" + }, + "id": "path1817", + "name": "path1817", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 100.50944,18.477116 0.84243,-2.582685", + "fill": { + "paint": "transparent" + }, + "id": "path1822", + "name": "path1822", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 57.473406,150.43316 0.941509,-2.88687", + "fill": { + "paint": "transparent" + }, + "id": "path1823", + "name": "path1823", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 62.909746,133.76446 0.47713,-1.4629", + "fill": { + "paint": "transparent" + }, + "id": "path1824", + "name": "path1824", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 102.97648,10.912765 -0.96027,2.944537", + "fill": { + "paint": "transparent" + }, + "id": "path1825", + "name": "path1825", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 64.051246,130.2644 3.973137,-12.18231", + "fill": { + "paint": "transparent" + }, + "id": "path1826", + "name": "path1826", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 68.711195,115.97617 2.076773,-6.36771", + "fill": { + "paint": "transparent" + }, + "id": "path1827", + "name": "path1827", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "M 71.452338,107.57132 75.425496,95.389", + "fill": { + "paint": "transparent" + }, + "id": "path1828", + "name": "path1828", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 76.11228,93.28307 2.07676,-6.367684", + "fill": { + "paint": "transparent" + }, + "id": "path1829", + "name": "path1829", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 78.853384,84.87824 3.97319,-12.182317", + "fill": { + "paint": "transparent" + }, + "id": "path1830", + "name": "path1830", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 83.513452,70.590014 2.07668,-6.367713", + "fill": { + "paint": "transparent" + }, + "id": "path1831", + "name": "path1831", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 86.25455,62.185154 3.9732,-12.182317", + "fill": { + "paint": "transparent" + }, + "id": "path1832", + "name": "path1832", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 103.13556,10.86392 -0.97617,2.993382", + "fill": { + "paint": "transparent" + }, + "id": "path1833", + "name": "path1833", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 101.48889,15.913189 -0.82038,2.515088", + "fill": { + "paint": "transparent" + }, + "id": "path1834", + "name": "path1834", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "M 90.38682,49.953987 86.39773,62.185154", + "fill": { + "paint": "transparent" + }, + "id": "path1835", + "name": "path1835", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 85.727232,64.241035 -2.070683,6.348979", + "fill": { + "paint": "transparent" + }, + "id": "path1836", + "name": "path1836", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "M 82.985655,72.64708 78.996647,84.87824", + "fill": { + "paint": "transparent" + }, + "id": "path1837", + "name": "path1837", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "M 78.326059,86.934121 76.255463,93.28307", + "fill": { + "paint": "transparent" + }, + "id": "path1838", + "name": "path1838", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 75.584563,95.34016 -3.989048,12.23116", + "fill": { + "paint": "transparent" + }, + "id": "path1839", + "name": "path1839", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 70.924981,109.6272 -2.070603,6.34897", + "fill": { + "paint": "transparent" + }, + "id": "path1840", + "name": "path1840", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "M 68.183472,118.03325 64.194416,130.2644", + "fill": { + "paint": "transparent" + }, + "id": "path1841", + "name": "path1841", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 63.523902,132.3203 -0.435326,1.33469", + "fill": { + "paint": "transparent" + }, + "id": "path1842", + "name": "path1842", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 58.494598,147.74097 -0.862117,2.64335", + "fill": { + "paint": "transparent" + }, + "id": "path1843", + "name": "path1843", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 100.76551,18.33563 0.81982,-2.5139", + "fill": { + "paint": "transparent" + }, + "id": "path1844", + "name": "path1844", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 57.729382,150.29167 0.805402,-2.46937", + "fill": { + "paint": "transparent" + }, + "id": "path1845", + "name": "path1845", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 63.171917,133.60402 0.448487,-1.37517", + "fill": { + "paint": "transparent" + }, + "id": "path1846", + "name": "path1846", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 64.261088,130.2644 4.019271,-12.3238", + "fill": { + "paint": "transparent" + }, + "id": "path1847", + "name": "path1847", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 68.921035,115.97617 2.100461,-6.4404", + "fill": { + "paint": "transparent" + }, + "id": "path1848", + "name": "path1848", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 71.662173,107.57132 4.019305,-12.3238", + "fill": { + "paint": "transparent" + }, + "id": "path1849", + "name": "path1849", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 76.322094,93.28307 2.100567,-6.440386", + "fill": { + "paint": "transparent" + }, + "id": "path1850", + "name": "path1850", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "M 79.063278,84.87824 83.082563,72.554443", + "fill": { + "paint": "transparent" + }, + "id": "path1851", + "name": "path1851", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 83.72326,70.590014 2.100487,-6.440416", + "fill": { + "paint": "transparent" + }, + "id": "path1852", + "name": "path1852", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "M 86.46445,62.185154 90.48365,49.86134", + "fill": { + "paint": "transparent" + }, + "id": "path1853", + "name": "path1853", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 102.22602,13.857302 1.00646,-3.086044", + "fill": { + "paint": "transparent" + }, + "id": "path1854", + "name": "path1854", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 101.77627,15.763141 -0.81989,2.513878", + "fill": { + "paint": "transparent" + }, + "id": "path1855", + "name": "path1855", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 103.42336,10.712686 -1.02549,3.144616", + "fill": { + "paint": "transparent" + }, + "id": "path1856", + "name": "path1856", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "M 58.640468,148.02486 57.9203,150.23309", + "fill": { + "paint": "transparent" + }, + "id": "path1858", + "name": "path1858", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 86.01463,64.090971 -2.119596,6.499043", + "fill": { + "paint": "transparent" + }, + "id": "path1860", + "name": "path1860", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "M 83.27344,72.49583 79.235053,84.87824", + "fill": { + "paint": "transparent" + }, + "id": "path1861", + "name": "path1861", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "M 78.613532,86.784071 76.493943,93.28307", + "fill": { + "paint": "transparent" + }, + "id": "path1862", + "name": "path1862", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 75.872355,95.18891 -4.038381,12.38241", + "fill": { + "paint": "transparent" + }, + "id": "path1863", + "name": "path1863", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 71.21242,109.47716 -2.11959,6.49901", + "fill": { + "paint": "transparent" + }, + "id": "path1864", + "name": "path1864", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "M 68.471277,117.88198 64.432881,130.2644", + "fill": { + "paint": "transparent" + }, + "id": "path1865", + "name": "path1865", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "M 94.41577,41.255743 99.34982,26.127038", + "fill": { + "paint": "transparent" + }, + "id": "path1866", + "name": "path1866", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 99.65422,26.041476 -4.93404,15.12872", + "fill": { + "paint": "transparent" + }, + "id": "path1867", + "name": "path1867", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 95.19437,41.170196 4.93404,-15.12872", + "fill": { + "paint": "transparent" + }, + "id": "path1868", + "name": "path1868", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "M 100.28756,25.992632 95.35344,41.121359", + "fill": { + "paint": "transparent" + }, + "id": "path1869", + "name": "path1869", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 95.45036,41.028728 4.93403,-15.128741", + "fill": { + "paint": "transparent" + }, + "id": "path1870", + "name": "path1870", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "M 100.57527,25.841367 95.64124,40.970101", + "fill": { + "paint": "transparent" + }, + "id": "path1871", + "name": "path1871", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "M 98.62418,34.624446 94.86887,46.139068", + "fill": { + "paint": "transparent" + }, + "id": "path1872", + "name": "path1872", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 95.79208,47.240142 0.12968,-0.397478", + "fill": { + "paint": "transparent" + }, + "id": "path1888", + "name": "path1888", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "M 92.13568,43.18184 97.09559,27.974197", + "fill": { + "paint": "transparent" + }, + "id": "path1909", + "name": "path1909", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 97.04471,28.045415 -4.9342,15.129101", + "fill": { + "paint": "transparent" + }, + "id": "path1910", + "name": "path1910", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 92.11051,43.174516 9e-5,-3.89e-4", + "fill": { + "paint": "transparent" + }, + "id": "path1911", + "name": "path1911", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 92.11108,43.174269 -0.70038,2.123496 -0.70038,2.091677", + "fill": { + "paint": "transparent" + }, + "id": "path1912", + "name": "path1912", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 92.13512,43.181907 0.0264,-0.07901", + "fill": { + "paint": "transparent" + }, + "id": "path1913", + "name": "path1913", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 141.44506,1.5309637 v -0.0015", + "fill": { + "paint": "transparent" + }, + "id": "path1915", + "name": "path1915", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 141.44587,1.529767 -0.37688,0.510781 -0.66258,0.826831 -0.59658,0.67486", + "fill": { + "paint": "transparent" + }, + "id": "path1916", + "name": "path1916", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "M 85.382557,123.00352 H 104.8074", + "fill": { + "paint": "transparent" + }, + "id": "path1920", + "name": "path1920", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 83.489319,122.9249 h 1.355932", + "fill": { + "paint": "transparent" + }, + "id": "path1921", + "name": "path1921", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 104.76665,122.9249 h 1.35602", + "fill": { + "paint": "transparent" + }, + "id": "path1922", + "name": "path1922", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "M 85.656689,122.16306 H 105.01514", + "fill": { + "paint": "transparent" + }, + "id": "path1924", + "name": "path1924", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "M 85.311288,121.4961 H 105.2327", + "fill": { + "paint": "transparent" + }, + "id": "path1925", + "name": "path1925", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 125.18239,118.08209 h -0.0982", + "fill": { + "paint": "transparent" + }, + "id": "path1927", + "name": "path1927", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 121.8029,174.06318 -5.16477,-9.64902", + "fill": { + "paint": "transparent" + }, + "id": "path1936", + "name": "path1936", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 116.54385,164.56169 5.14704,9.66944", + "fill": { + "paint": "transparent" + }, + "id": "path1937", + "name": "path1937", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 99.01137,136.30055 -0.83444,-1.61132", + "fill": { + "paint": "transparent" + }, + "id": "path1942", + "name": "path1942", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 108.92306,142.7147 -2.97074,-5.73593", + "fill": { + "paint": "transparent" + }, + "id": "path1954", + "name": "path1954", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 116.91601,178.7359 -4.70049,-9.95075", + "fill": { + "paint": "transparent" + }, + "id": "path1955", + "name": "path1955", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 99.66429,19.186684 v 0.0086", + "fill": { + "paint": "transparent" + }, + "id": "path1959", + "name": "path1959", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 99.65932,19.203977 -0.17569,0.833741 -0.30417,1.253269", + "fill": { + "paint": "transparent" + }, + "id": "path1960", + "name": "path1960", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 69.291557,136.10311 -0.408508,1.25259", + "fill": { + "paint": "transparent" + }, + "id": "path1968", + "name": "path1968", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 63.325769,162.23463 0.441037,-1.35234", + "fill": { + "paint": "transparent" + }, + "id": "path1977", + "name": "path1977", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 63.662641,161.77402 -1.99e-4,5.6e-4", + "fill": { + "paint": "transparent" + }, + "id": "path1978", + "name": "path1978", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 73.891144,136.85737 -0.385013,1.18054", + "fill": { + "paint": "transparent" + }, + "id": "path1979", + "name": "path1979", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 106.25194,42.036692 0.74017,-2.269306", + "fill": { + "paint": "transparent" + }, + "id": "path1980", + "name": "path1980", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 107.33062,39.247063 -0.23497,0.720417", + "fill": { + "paint": "transparent" + }, + "id": "path1981", + "name": "path1981", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 107.82647,39.767386 -0.74017,2.269306", + "fill": { + "paint": "transparent" + }, + "id": "path1982", + "name": "path1982", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 59.142251,158.40328 0.357942,-0.88532", + "fill": { + "paint": "transparent" + }, + "id": "path1983", + "name": "path1983", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 111.38124,143.07723 -0.62839,-1.21337", + "fill": { + "paint": "transparent" + }, + "id": "path1999", + "name": "path1999", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 91.94217,103.75373 -0.51814,-1.00046", + "fill": { + "paint": "transparent" + }, + "id": "path2001", + "name": "path2001", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 92.01072,103.54361 0.24081,0.46497", + "fill": { + "paint": "transparent" + }, + "id": "path2002", + "name": "path2002", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 92.44928,102.19883 0.3048,0.58836", + "fill": { + "paint": "transparent" + }, + "id": "path2006", + "name": "path2006", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 92.76447,101.23226 -0.51805,-1.00043", + "fill": { + "paint": "transparent" + }, + "id": "path2007", + "name": "path2007", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 92.78373,100.31044 0.5862,1.13195", + "fill": { + "paint": "transparent" + }, + "id": "path2008", + "name": "path2008", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 112.19739,137.46808 1.83076,3.53494", + "fill": { + "paint": "transparent" + }, + "id": "path2009", + "name": "path2009", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 105.28486,123.92536 -0.51821,-1.00046", + "fill": { + "paint": "transparent" + }, + "id": "path2010", + "name": "path2010", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "M 93.05785,99.46995 92.71237,98.803", + "fill": { + "paint": "transparent" + }, + "id": "path2011", + "name": "path2011", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 89.57979,160.50867 -0.14942,1.58491 -0.0264,1.99494 0.15467,1.93824 0.33437,1.7555 0.40548,1.25459", + "fill": { + "paint": "transparent" + }, + "id": "path2019", + "name": "path2019", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 103.48479,55.727383 v -0.008", + "fill": { + "paint": "transparent" + }, + "id": "path2021", + "name": "path2021", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 103.48448,55.729139 v -0.01005", + "fill": { + "paint": "transparent" + }, + "id": "path2023", + "name": "path2023", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 107.99537,39.767386 0.13982,-0.428773", + "fill": { + "paint": "transparent" + }, + "id": "path2024", + "name": "path2024", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 75.387222,139.76437 -0.372321,1.14149", + "fill": { + "paint": "transparent" + }, + "id": "path2025", + "name": "path2025", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 105.69275,54.845648 -0.82239,2.52147", + "fill": { + "paint": "transparent" + }, + "id": "path2026", + "name": "path2026", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 98.29165,77.538741 -0.82238,2.521464", + "fill": { + "paint": "transparent" + }, + "id": "path2027", + "name": "path2027", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 90.89049,100.23183 -0.82239,2.52144", + "fill": { + "paint": "transparent" + }, + "id": "path2028", + "name": "path2028", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 83.489319,122.9249 -0.822293,2.52146", + "fill": { + "paint": "transparent" + }, + "id": "path2029", + "name": "path2029", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 107.51454,53.416826 -0.46595,1.428822", + "fill": { + "paint": "transparent" + }, + "id": "path2030", + "name": "path2030", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 106.22621,57.367118 -0.46589,1.428822", + "fill": { + "paint": "transparent" + }, + "id": "path2031", + "name": "path2031", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 100.11347,76.109912 -0.46596,1.428829", + "fill": { + "paint": "transparent" + }, + "id": "path2032", + "name": "path2032", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 98.82513,80.060205 -0.46604,1.428822", + "fill": { + "paint": "transparent" + }, + "id": "path2033", + "name": "path2033", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 92.71237,98.803 -0.46595,1.42883", + "fill": { + "paint": "transparent" + }, + "id": "path2034", + "name": "path2034", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "M 91.42403,102.75327 90.958,104.18209", + "fill": { + "paint": "transparent" + }, + "id": "path2035", + "name": "path2035", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 85.311288,121.4961 -0.466037,1.4288", + "fill": { + "paint": "transparent" + }, + "id": "path2036", + "name": "path2036", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 84.022952,125.44636 -0.466037,1.42881", + "fill": { + "paint": "transparent" + }, + "id": "path2037", + "name": "path2037", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 84.119866,126.87517 0.05676,-0.1735", + "fill": { + "paint": "transparent" + }, + "id": "path2038", + "name": "path2038", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 85.382557,123.00352 0.274132,-0.84046", + "fill": { + "paint": "transparent" + }, + "id": "path2039", + "name": "path2039", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 91.52103,104.18209 0.0568,-0.17351", + "fill": { + "paint": "transparent" + }, + "id": "path2040", + "name": "path2040", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 92.78373,100.31044 0.27412,-0.84049", + "fill": { + "paint": "transparent" + }, + "id": "path2041", + "name": "path2041", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "M 98.92204,81.489027 98.9788,81.3155", + "fill": { + "paint": "transparent" + }, + "id": "path2042", + "name": "path2042", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 100.18482,77.617357 0.27411,-0.840486", + "fill": { + "paint": "transparent" + }, + "id": "path2043", + "name": "path2043", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 106.32329,58.79594 0.0568,-0.173518", + "fill": { + "paint": "transparent" + }, + "id": "path2044", + "name": "path2044", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 107.58589,54.924278 0.27413,-0.840471", + "fill": { + "paint": "transparent" + }, + "id": "path2045", + "name": "path2045", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 107.56672,55.846101 -0.82229,2.521464", + "fill": { + "paint": "transparent" + }, + "id": "path2046", + "name": "path2046", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "M 100.16564,78.539196 99.34326,81.06065", + "fill": { + "paint": "transparent" + }, + "id": "path2047", + "name": "path2047", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 92.76447,101.23226 -0.8223,2.52147", + "fill": { + "paint": "transparent" + }, + "id": "path2048", + "name": "path2048", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 85.363461,123.92536 -0.822381,2.52146", + "fill": { + "paint": "transparent" + }, + "id": "path2049", + "name": "path2049", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 103.48423,55.729139 5e-4,-0.0022", + "fill": { + "paint": "transparent" + }, + "id": "path2050", + "name": "path2050", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 61.864239,151.62539 0.293749,-0.58171", + "fill": { + "paint": "transparent" + }, + "id": "path2055", + "name": "path2055", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "M 110.87949,104.18209 H 90.958", + "fill": { + "paint": "transparent" + }, + "id": "path2075", + "name": "path2075", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "M 110.93606,104.00858 H 91.5776", + "fill": { + "paint": "transparent" + }, + "id": "path2076", + "name": "path2076", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "M 92.01072,103.54361 H 111.0877", + "fill": { + "paint": "transparent" + }, + "id": "path2077", + "name": "path2077", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 92.76447,101.23226 -1.87398,-1.00043", + "fill": { + "paint": "transparent" + }, + "id": "path2079", + "name": "path2079", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 132.12766,6.487596 0.94941,-2.924332", + "fill": { + "paint": "transparent" + }, + "id": "path2103", + "name": "path2103", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 132.16921,6.49129 0.85513,-2.621866", + "fill": { + "paint": "transparent" + }, + "id": "path2114", + "name": "path2114", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 78.766217,170.08977 1.27451,-3.89031", + "fill": { + "paint": "transparent" + }, + "id": "path2119", + "name": "path2119", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 79.441749,170.4331 1.281625,-3.91176", + "fill": { + "paint": "transparent" + }, + "id": "path2120", + "name": "path2120", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 128.32592,54.845648 -0.83779,1.000453", + "fill": { + "paint": "transparent" + }, + "id": "path2121", + "name": "path2121", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 111.34545,102.78719 h -19.088", + "fill": { + "paint": "transparent" + }, + "id": "path2124", + "name": "path2124", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 112.70137,102.75327 h -1.35592", + "fill": { + "paint": "transparent" + }, + "id": "path2125", + "name": "path2125", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "M 91.42403,102.75327 H 90.0681", + "fill": { + "paint": "transparent" + }, + "id": "path2126", + "name": "path2126", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 92.44928,102.19883 h 19.9214", + "fill": { + "paint": "transparent" + }, + "id": "path2127", + "name": "path2127", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "M 112.6174,101.44239 H 92.696", + "fill": { + "paint": "transparent" + }, + "id": "path2128", + "name": "path2128", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "M 92.78373,100.31044 H 112.2085", + "fill": { + "paint": "transparent" + }, + "id": "path2130", + "name": "path2130", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 90.89049,100.23183 h 1.35593", + "fill": { + "paint": "transparent" + }, + "id": "path2131", + "name": "path2131", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 112.16775,100.23183 h 1.356", + "fill": { + "paint": "transparent" + }, + "id": "path2132", + "name": "path2132", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "M 93.05785,99.46995 H 112.4163", + "fill": { + "paint": "transparent" + }, + "id": "path2134", + "name": "path2134", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 92.71237,98.803 h 19.92141", + "fill": { + "paint": "transparent" + }, + "id": "path2135", + "name": "path2135", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "M 85.559855,64.180878 85.369777,63.813904", + "fill": { + "paint": "transparent" + }, + "id": "path2143", + "name": "path2143", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 120.79053,130.43288 0.22323,0.431", + "fill": { + "paint": "transparent" + }, + "id": "path2146", + "name": "path2146", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "M 99.34326,81.06065 98.82513,80.060205", + "fill": { + "paint": "transparent" + }, + "id": "path2150", + "name": "path2150", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "M 99.4119,80.850526 99.6527,81.3155", + "fill": { + "paint": "transparent" + }, + "id": "path2151", + "name": "path2151", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 99.85037,79.505751 0.3048,0.588336", + "fill": { + "paint": "transparent" + }, + "id": "path2155", + "name": "path2155", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "M 100.16564,78.539196 99.64751,77.538741", + "fill": { + "paint": "transparent" + }, + "id": "path2157", + "name": "path2157", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 100.18482,77.617357 0.58619,1.131955", + "fill": { + "paint": "transparent" + }, + "id": "path2159", + "name": "path2159", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 83.590392,167.53909 0.411224,-1.26073", + "fill": { + "paint": "transparent" + }, + "id": "path2167", + "name": "path2167", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 98.17693,134.68923 -0.52549,1.61132", + "fill": { + "paint": "transparent" + }, + "id": "path2178", + "name": "path2178", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 88.59082,166.27836 -0.41116,1.26073", + "fill": { + "paint": "transparent" + }, + "id": "path2179", + "name": "path2179", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 59.142251,158.40328 0.449373,-0.58433", + "fill": { + "paint": "transparent" + }, + "id": "path2182", + "name": "path2182", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 120.92483,77.538741 -0.83779,1.000455", + "fill": { + "paint": "transparent" + }, + "id": "path2183", + "name": "path2183", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 112.68595,101.23226 -0.5182,-1.00043", + "fill": { + "paint": "transparent" + }, + "id": "path2201", + "name": "path2201", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 100.45893,76.776871 -0.34546,-0.666959", + "fill": { + "paint": "transparent" + }, + "id": "path2204", + "name": "path2204", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 100.40237,33.489796 0.0487,0.299357", + "fill": { + "paint": "transparent" + }, + "id": "path2220", + "name": "path2220", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 90.62859,169.85449 -0.18784,0.57861", + "fill": { + "paint": "transparent" + }, + "id": "path2221", + "name": "path2221", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 103.4784,126.87517 0.46596,-1.42881", + "fill": { + "paint": "transparent" + }, + "id": "path2222", + "name": "path2222", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 104.76665,122.9249 0.46605,-1.4288", + "fill": { + "paint": "transparent" + }, + "id": "path2223", + "name": "path2223", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 110.87949,104.18209 0.46596,-1.42882", + "fill": { + "paint": "transparent" + }, + "id": "path2224", + "name": "path2224", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "M 112.16775,100.23183 112.63378,98.803", + "fill": { + "paint": "transparent" + }, + "id": "path2225", + "name": "path2225", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 118.28058,81.489027 0.46595,-1.428822", + "fill": { + "paint": "transparent" + }, + "id": "path2226", + "name": "path2226", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 119.56891,77.538741 0.46604,-1.428829", + "fill": { + "paint": "transparent" + }, + "id": "path2227", + "name": "path2227", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 125.68167,58.79594 0.46603,-1.428822", + "fill": { + "paint": "transparent" + }, + "id": "path2228", + "name": "path2228", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 126.97,54.845648 0.46604,-1.428822", + "fill": { + "paint": "transparent" + }, + "id": "path2229", + "name": "path2229", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 104.78879,125.44636 0.49607,-1.521", + "fill": { + "paint": "transparent" + }, + "id": "path2230", + "name": "path2230", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 112.18988,102.75327 0.49607,-1.52101", + "fill": { + "paint": "transparent" + }, + "id": "path2231", + "name": "path2231", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 119.59096,80.060205 0.49608,-1.521009", + "fill": { + "paint": "transparent" + }, + "id": "path2232", + "name": "path2232", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 126.99205,57.367118 0.49608,-1.521017", + "fill": { + "paint": "transparent" + }, + "id": "path2233", + "name": "path2233", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 105.30029,125.44636 0.82238,-2.52146", + "fill": { + "paint": "transparent" + }, + "id": "path2234", + "name": "path2234", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 112.70137,102.75327 0.82238,-2.52144", + "fill": { + "paint": "transparent" + }, + "id": "path2235", + "name": "path2235", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 120.10247,80.060205 0.82236,-2.521464", + "fill": { + "paint": "transparent" + }, + "id": "path2236", + "name": "path2236", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 127.50363,57.367118 0.82229,-2.52147", + "fill": { + "paint": "transparent" + }, + "id": "path2237", + "name": "path2237", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 102.97473,134.68923 -0.52549,1.61132", + "fill": { + "paint": "transparent" + }, + "id": "path2238", + "name": "path2238", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 113.52375,100.23183 -0.8378,1.00043", + "fill": { + "paint": "transparent" + }, + "id": "path2244", + "name": "path2244", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 57.632481,150.38432 0.0969,-0.0926", + "fill": { + "paint": "transparent" + }, + "id": "path2245", + "name": "path2245", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 56.43433,154.69508 -0.09709,0.0927", + "fill": { + "paint": "transparent" + }, + "id": "path2246", + "name": "path2246", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "M 100.16564,78.539196 98.29165,77.538741", + "fill": { + "paint": "transparent" + }, + "id": "path2264", + "name": "path2264", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 95.11503,46.312369 0.48034,0.927391", + "fill": { + "paint": "transparent" + }, + "id": "path2278", + "name": "path2278", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 106.74443,58.367565 -0.51822,-1.000447", + "fill": { + "paint": "transparent" + }, + "id": "path2286", + "name": "path2286", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 106.81298,58.15744 0.24073,0.464982", + "fill": { + "paint": "transparent" + }, + "id": "path2287", + "name": "path2287", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 108.24368,39.767386 -0.31886,-1.260714", + "fill": { + "paint": "transparent" + }, + "id": "path2292", + "name": "path2292", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 142.43691,48.127977 -0.18871,0.578712", + "fill": { + "paint": "transparent" + }, + "id": "path2299", + "name": "path2299", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 142.43229,48.619122 0.1887,-0.578688", + "fill": { + "paint": "transparent" + }, + "id": "path2311", + "name": "path2311", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 144.80992,46.192421 0.0192,-0.05349", + "fill": { + "paint": "transparent" + }, + "id": "path2314", + "name": "path2314", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 144.80857,46.191933 0.0199,-0.05289", + "fill": { + "paint": "transparent" + }, + "id": "path2315", + "name": "path2315", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 106.12267,122.9249 -0.83781,1.00046", + "fill": { + "paint": "transparent" + }, + "id": "path2316", + "name": "path2316", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 56.516399,155.10811 0.100494,-0.0935", + "fill": { + "paint": "transparent" + }, + "id": "path2317", + "name": "path2317", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "M 118.28058,81.489027 H 98.35909", + "fill": { + "paint": "transparent" + }, + "id": "path2319", + "name": "path2319", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "M 118.33715,81.3155 H 98.9787", + "fill": { + "paint": "transparent" + }, + "id": "path2320", + "name": "path2320", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 99.4119,80.850526 h 19.07689", + "fill": { + "paint": "transparent" + }, + "id": "path2321", + "name": "path2321", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 118.74653,80.094087 h -19.088", + "fill": { + "paint": "transparent" + }, + "id": "path2322", + "name": "path2322", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 120.10247,80.060205 h -1.35594", + "fill": { + "paint": "transparent" + }, + "id": "path2323", + "name": "path2323", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "M 98.82513,80.060205 H 97.46927", + "fill": { + "paint": "transparent" + }, + "id": "path2324", + "name": "path2324", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 99.85037,79.505751 h 19.9214", + "fill": { + "paint": "transparent" + }, + "id": "path2325", + "name": "path2325", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "M 120.01857,78.749312 H 100.09709", + "fill": { + "paint": "transparent" + }, + "id": "path2326", + "name": "path2326", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 100.18482,77.617357 h 19.42476", + "fill": { + "paint": "transparent" + }, + "id": "path2328", + "name": "path2328", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 98.29165,77.538741 h 1.35586", + "fill": { + "paint": "transparent" + }, + "id": "path2329", + "name": "path2329", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 119.56891,77.538741 h 1.35592", + "fill": { + "paint": "transparent" + }, + "id": "path2330", + "name": "path2330", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 100.45893,76.776871 h 19.35846", + "fill": { + "paint": "transparent" + }, + "id": "path2332", + "name": "path2332", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 100.11347,76.109912 h 19.92148", + "fill": { + "paint": "transparent" + }, + "id": "path2333", + "name": "path2333", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 103.16065,42.226972 v -0.0022", + "fill": { + "paint": "transparent" + }, + "id": "path2339", + "name": "path2339", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 107.25152,56.812665 0.30474,0.588344", + "fill": { + "paint": "transparent" + }, + "id": "path2340", + "name": "path2340", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 107.56672,55.846101 -0.51813,-1.000453", + "fill": { + "paint": "transparent" + }, + "id": "path2342", + "name": "path2342", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 107.58589,54.924278 0.58622,1.131949", + "fill": { + "paint": "transparent" + }, + "id": "path2345", + "name": "path2345", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 120.08704,78.539196 -0.51813,-1.000455", + "fill": { + "paint": "transparent" + }, + "id": "path2346", + "name": "path2346", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 107.86002,54.083807 -0.34548,-0.666981", + "fill": { + "paint": "transparent" + }, + "id": "path2350", + "name": "path2350", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 104.0503,41.935322 0.32158,0.620944", + "fill": { + "paint": "transparent" + }, + "id": "path2353", + "name": "path2353", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 161.66625,8.796805 0.008,-0.03066", + "fill": { + "paint": "transparent" + }, + "id": "path2365", + "name": "path2365", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 144.82878,46.139068 3.75548,-11.514622", + "fill": { + "paint": "transparent" + }, + "id": "path2366", + "name": "path2366", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 147.42806,40.970101 4.93411,-15.128734", + "fill": { + "paint": "transparent" + }, + "id": "path2367", + "name": "path2367", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 152.61378,25.899987 -4.93411,15.128741", + "fill": { + "paint": "transparent" + }, + "id": "path2368", + "name": "path2368", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 147.87253,41.121359 4.93411,-15.128727", + "fill": { + "paint": "transparent" + }, + "id": "path2369", + "name": "path2369", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 153.01629,26.041476 -4.93402,15.12872", + "fill": { + "paint": "transparent" + }, + "id": "path2370", + "name": "path2370", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 153.49048,26.041476 -4.93403,15.12872", + "fill": { + "paint": "transparent" + }, + "id": "path2371", + "name": "path2371", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 153.88358,26.127038 -4.93411,15.128705", + "fill": { + "paint": "transparent" + }, + "id": "path2372", + "name": "path2372", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 158.35668,13.857302 1.02547,-3.144637", + "fill": { + "paint": "transparent" + }, + "id": "path2373", + "name": "path2373", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 113.87913,150.23306 5.89104,-18.06282", + "fill": { + "paint": "transparent" + }, + "id": "path2374", + "name": "path2374", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 120.39169,130.2644 4.03838,-12.38242", + "fill": { + "paint": "transparent" + }, + "id": "path2375", + "name": "path2375", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 125.05159,115.97617 2.11966,-6.49901", + "fill": { + "paint": "transparent" + }, + "id": "path2376", + "name": "path2376", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 127.79278,107.57132 4.03847,-12.38241", + "fill": { + "paint": "transparent" + }, + "id": "path2377", + "name": "path2377", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 132.45284,93.28307 2.11951,-6.498999", + "fill": { + "paint": "transparent" + }, + "id": "path2378", + "name": "path2378", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 135.19386,84.87824 4.03847,-12.38241", + "fill": { + "paint": "transparent" + }, + "id": "path2379", + "name": "path2379", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 139.85392,70.590014 2.11951,-6.499043", + "fill": { + "paint": "transparent" + }, + "id": "path2380", + "name": "path2380", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 142.59495,62.185154 4.03847,-12.382395", + "fill": { + "paint": "transparent" + }, + "id": "path2381", + "name": "path2381", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 157.73507,15.763141 -0.81989,2.513878", + "fill": { + "paint": "transparent" + }, + "id": "path2382", + "name": "path2382", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 146.93078,49.217123 0.38375,-1.176689", + "fill": { + "paint": "transparent" + }, + "id": "path2391", + "name": "path2391", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 157.9866,15.82173 -0.81983,2.5139", + "fill": { + "paint": "transparent" + }, + "id": "path2392", + "name": "path2392", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "M 146.88508,49.86134 142.8515,62.228768", + "fill": { + "paint": "transparent" + }, + "id": "path2393", + "name": "path2393", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 142.22503,64.149598 -2.11464,6.48403", + "fill": { + "paint": "transparent" + }, + "id": "path2394", + "name": "path2394", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 139.48384,72.554443 -4.03343,12.367412", + "fill": { + "paint": "transparent" + }, + "id": "path2395", + "name": "path2395", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 134.82393,86.842684 -2.11471,6.484036", + "fill": { + "paint": "transparent" + }, + "id": "path2396", + "name": "path2396", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 132.08275,95.24752 -4.03344,12.36742", + "fill": { + "paint": "transparent" + }, + "id": "path2397", + "name": "path2397", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 127.42285,109.53577 -2.11471,6.484", + "fill": { + "paint": "transparent" + }, + "id": "path2398", + "name": "path2398", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 124.68167,117.9406 -4.03343,12.36743", + "fill": { + "paint": "transparent" + }, + "id": "path2399", + "name": "path2399", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 159.63383,10.771258 -1.02068,3.129666", + "fill": { + "paint": "transparent" + }, + "id": "path2400", + "name": "path2400", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "M 158.78006,14.073225 159.8267,10.86392", + "fill": { + "paint": "transparent" + }, + "id": "path2401", + "name": "path2401", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 114.32359,150.38432 5.89136,-18.06402", + "fill": { + "paint": "transparent" + }, + "id": "path2402", + "name": "path2402", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 120.81506,130.48035 4.05956,-12.4471", + "fill": { + "paint": "transparent" + }, + "id": "path2403", + "name": "path2403", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 125.47496,116.19209 2.14109,-6.56489", + "fill": { + "paint": "transparent" + }, + "id": "path2404", + "name": "path2404", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 128.21615,107.78726 4.05956,-12.4471", + "fill": { + "paint": "transparent" + }, + "id": "path2405", + "name": "path2405", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 132.87621,93.49902 2.14091,-6.564899", + "fill": { + "paint": "transparent" + }, + "id": "path2406", + "name": "path2406", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 135.61723,85.09418 4.05957,-12.4471", + "fill": { + "paint": "transparent" + }, + "id": "path2407", + "name": "path2407", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 140.2773,70.805939 2.14107,-6.564904", + "fill": { + "paint": "transparent" + }, + "id": "path2408", + "name": "path2408", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 143.0184,62.401079 4.05948,-12.447092", + "fill": { + "paint": "transparent" + }, + "id": "path2409", + "name": "path2409", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 157.35973,18.428277 0.82021,-2.515088", + "fill": { + "paint": "transparent" + }, + "id": "path2410", + "name": "path2410", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 147.66169,48.207186 -0.38375,1.176673", + "fill": { + "paint": "transparent" + }, + "id": "path2412", + "name": "path2412", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 160.03635,10.912765 -1.0989,3.369493", + "fill": { + "paint": "transparent" + }, + "id": "path2420", + "name": "path2420", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 147.28753,50.002837 -4.11165,12.607279", + "fill": { + "paint": "transparent" + }, + "id": "path2421", + "name": "path2421", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 142.65,64.222301 -2.23777,6.861416", + "fill": { + "paint": "transparent" + }, + "id": "path2422", + "name": "path2422", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "M 139.88644,72.695923 135.7747,85.30318", + "fill": { + "paint": "transparent" + }, + "id": "path2423", + "name": "path2423", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "M 135.24891,86.915386 133.01115,93.7768", + "fill": { + "paint": "transparent" + }, + "id": "path2424", + "name": "path2424", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 132.48536,95.389 -4.11173,12.60729", + "fill": { + "paint": "transparent" + }, + "id": "path2425", + "name": "path2425", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 127.84783,109.60846 -2.23776,6.86143", + "fill": { + "paint": "transparent" + }, + "id": "path2426", + "name": "path2426", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 125.08419,118.08209 -4.11166,12.60726", + "fill": { + "paint": "transparent" + }, + "id": "path2427", + "name": "path2427", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 120.44673,132.30156 -5.91348,18.1316", + "fill": { + "paint": "transparent" + }, + "id": "path2428", + "name": "path2428", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 158.41164,15.894431 -0.84227,2.582685", + "fill": { + "paint": "transparent" + }, + "id": "path2429", + "name": "path2429", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 159.03556,14.282258 -0.46597,1.428828", + "fill": { + "paint": "transparent" + }, + "id": "path2430", + "name": "path2430", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 147.85168,48.574008 -0.46604,1.428829", + "fill": { + "paint": "transparent" + }, + "id": "path2431", + "name": "path2431", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 140.4506,71.26708 -0.46603,1.428843", + "fill": { + "paint": "transparent" + }, + "id": "path2433", + "name": "path2433", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 121.07065,130.68935 -0.46604,1.42884", + "fill": { + "paint": "transparent" + }, + "id": "path2438", + "name": "path2438", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "M 114.86954,150.43316 148.03744,48.734554", + "fill": { + "paint": "transparent" + }, + "id": "path2439", + "name": "path2439", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 157.90558,18.477116 2.46706,-7.564351", + "fill": { + "paint": "transparent" + }, + "id": "path2440", + "name": "path2440", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "M 148.61565,48.931827 115.44767,150.63044", + "fill": { + "paint": "transparent" + }, + "id": "path2441", + "name": "path2441", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 160.95085,11.110041 -2.46713,7.564352", + "fill": { + "paint": "transparent" + }, + "id": "path2442", + "name": "path2442", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 153.11704,43.102901 4.93404,-15.128704", + "fill": { + "paint": "transparent" + }, + "id": "path2443", + "name": "path2443", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "M 117.59513,152.3941 150.76305,50.695479", + "fill": { + "paint": "transparent" + }, + "id": "path2444", + "name": "path2444", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 160.63118,20.438048 2.46707,-7.564373", + "fill": { + "paint": "transparent" + }, + "id": "path2445", + "name": "path2445", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "M 150.85093,50.795289 117.68319,152.49425", + "fill": { + "paint": "transparent" + }, + "id": "path2446", + "name": "path2446", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 153.35289,43.291959 4.93404,-15.128743", + "fill": { + "paint": "transparent" + }, + "id": "path2447", + "name": "path2447", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 120.02176,132.22885 -5.89294,18.0619", + "fill": { + "paint": "transparent" + }, + "id": "path2448", + "name": "path2448", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 163.18636,12.974028 -2.46745,7.563658", + "fill": { + "paint": "transparent" + }, + "id": "path2449", + "name": "path2449", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 111.43461,157.42276 0.0192,-0.0498", + "fill": { + "paint": "transparent" + }, + "id": "path2451", + "name": "path2451", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 57.237433,158.82985 -0.02086,0.017", + "fill": { + "paint": "transparent" + }, + "id": "path2452", + "name": "path2452", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 57.237532,158.82998 -0.02092,0.0168", + "fill": { + "paint": "transparent" + }, + "id": "path2453", + "name": "path2453", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 103.1608,42.226883 v -0.0022", + "fill": { + "paint": "transparent" + }, + "id": "path2468", + "name": "path2468", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 107.09565,39.96748 -0.10354,-0.200094", + "fill": { + "paint": "transparent" + }, + "id": "path2471", + "name": "path2471", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 107.33062,39.247063 0.40836,0.788505", + "fill": { + "paint": "transparent" + }, + "id": "path2472", + "name": "path2472", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 108.06153,39.173632 -0.34533,-0.66696", + "fill": { + "paint": "transparent" + }, + "id": "path2473", + "name": "path2473", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 110.30231,39.028294 0.31831,0.614754", + "fill": { + "paint": "transparent" + }, + "id": "path2475", + "name": "path2475", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 112.04455,38.921625 -0.27637,-0.533549", + "fill": { + "paint": "transparent" + }, + "id": "path2479", + "name": "path2479", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 101.32151,15.853004 -0.19008,-0.366962", + "fill": { + "paint": "transparent" + }, + "id": "path2480", + "name": "path2480", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 161.34019,3.566435 -0.008,0.03005", + "fill": { + "paint": "transparent" + }, + "id": "path2483", + "name": "path2483", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 161.57828,3.689014 0.0108,-0.04883", + "fill": { + "paint": "transparent" + }, + "id": "path2484", + "name": "path2484", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 161.58922,3.640201 0.008,-0.02332", + "fill": { + "paint": "transparent" + }, + "id": "path2485", + "name": "path2485", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 161.79009,3.699114 -0.016,0.0729", + "fill": { + "paint": "transparent" + }, + "id": "path2486", + "name": "path2486", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 161.32221,3.645257 0.012,-0.04876", + "fill": { + "paint": "transparent" + }, + "id": "path2488", + "name": "path2488", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 161.99775,3.762319 -0.0108,0.04618", + "fill": { + "paint": "transparent" + }, + "id": "path2489", + "name": "path2489", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 161.66625,8.796805 0.008,-0.03066", + "fill": { + "paint": "transparent" + }, + "id": "path2490", + "name": "path2490", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 111.84944,157.53745 -0.0192,0.0463", + "fill": { + "paint": "transparent" + }, + "id": "path2491", + "name": "path2491", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 111.18901,157.34925 0.02,-0.0488", + "fill": { + "paint": "transparent" + }, + "id": "path2492", + "name": "path2492", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 111.42501,157.44536 0.01,-0.0226", + "fill": { + "paint": "transparent" + }, + "id": "path2493", + "name": "path2493", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 111.64481,157.47625 -0.02,0.0472", + "fill": { + "paint": "transparent" + }, + "id": "path2494", + "name": "path2494", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 111.18901,157.34925 -0.0152,0.0339", + "fill": { + "paint": "transparent" + }, + "id": "path2495", + "name": "path2495", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 59.673607,158.02282 -0.530822,0.38009", + "fill": { + "paint": "transparent" + }, + "id": "path2496", + "name": "path2496", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 59.23754,158.83463 -0.01009,0.007", + "fill": { + "paint": "transparent" + }, + "id": "path2497", + "name": "path2497", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 59.237587,158.83472 -0.01021,0.007", + "fill": { + "paint": "transparent" + }, + "id": "path2498", + "name": "path2498", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 58.390095,156.79226 -0.638678,0.40773", + "fill": { + "paint": "transparent" + }, + "id": "path2499", + "name": "path2499", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 57.423866,158.68003 -0.204131,0.13032", + "fill": { + "paint": "transparent" + }, + "id": "path2500", + "name": "path2500", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 95.74725,61.38871 0.0129,-4.58e-4", + "fill": { + "paint": "transparent" + }, + "id": "path2501", + "name": "path2501", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 95.72401,61.389514 0.008,-1.43e-4", + "fill": { + "paint": "transparent" + }, + "id": "path2502", + "name": "path2502", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 95.72417,61.389236 0.008,1.35e-4", + "fill": { + "paint": "transparent" + }, + "id": "path2514", + "name": "path2514", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 107.56672,55.846101 -1.87397,-1.000453", + "fill": { + "paint": "transparent" + }, + "id": "path2516", + "name": "path2516", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 94.86887,46.139068 0.24616,0.173301", + "fill": { + "paint": "transparent" + }, + "id": "path2517", + "name": "path2517", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "M 127.48813,55.846101 126.97,54.845648", + "fill": { + "paint": "transparent" + }, + "id": "path2534", + "name": "path2534", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "M 121.80155,174.06318 173.2763,16.232518", + "fill": { + "paint": "transparent" + }, + "id": "path2547", + "name": "path2547", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 103.42599,143.96669 -0.0128,0.0102", + "fill": { + "paint": "transparent" + }, + "id": "path2548", + "name": "path2548", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 103.41368,143.95717 -0.0136,0.01", + "fill": { + "paint": "transparent" + }, + "id": "path2549", + "name": "path2549", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 59.141805,158.40354 -0.190225,0.10487", + "fill": { + "paint": "transparent" + }, + "id": "path2550", + "name": "path2550", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 95.65107,61.400663 0.008,-5.63e-4", + "fill": { + "paint": "transparent" + }, + "id": "path2551", + "name": "path2551", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 95.65107,61.400663 0.008,-4.12e-4", + "fill": { + "paint": "transparent" + }, + "id": "path2552", + "name": "path2552", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 95.74734,61.388372 0.0127,-5.69e-4", + "fill": { + "paint": "transparent" + }, + "id": "path2553", + "name": "path2553", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "M 125.68167,58.79594 H 105.76032", + "fill": { + "paint": "transparent" + }, + "id": "path2554", + "name": "path2554", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "M 125.73823,58.622422 H 106.37986", + "fill": { + "paint": "transparent" + }, + "id": "path2555", + "name": "path2555", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 106.81298,58.15744 h 19.07689", + "fill": { + "paint": "transparent" + }, + "id": "path2556", + "name": "path2556", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "M 126.1477,57.401009 H 107.05962", + "fill": { + "paint": "transparent" + }, + "id": "path2557", + "name": "path2557", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "M 127.50363,57.367118 H 126.1477", + "fill": { + "paint": "transparent" + }, + "id": "path2558", + "name": "path2558", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 106.22621,57.367118 h -1.35585", + "fill": { + "paint": "transparent" + }, + "id": "path2559", + "name": "path2559", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 107.25152,56.812665 h 19.92141", + "fill": { + "paint": "transparent" + }, + "id": "path2560", + "name": "path2560", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "M 127.41965,56.056227 H 107.49817", + "fill": { + "paint": "transparent" + }, + "id": "path2561", + "name": "path2561", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 107.58589,54.924278 h 19.42486", + "fill": { + "paint": "transparent" + }, + "id": "path2563", + "name": "path2563", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 105.69275,54.845648 h 1.35584", + "fill": { + "paint": "transparent" + }, + "id": "path2564", + "name": "path2564", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 126.97,54.845648 h 1.35592", + "fill": { + "paint": "transparent" + }, + "id": "path2565", + "name": "path2565", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 107.86002,54.083807 h 19.35845", + "fill": { + "paint": "transparent" + }, + "id": "path2567", + "name": "path2567", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 107.51454,53.416826 h 19.9215", + "fill": { + "paint": "transparent" + }, + "id": "path2602", + "name": "path2602", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 147.38564,50.002837 h -0.0981", + "fill": { + "paint": "transparent" + }, + "id": "path2603", + "name": "path2603", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 143.66006,49.802759 h 2.97336", + "fill": { + "paint": "transparent" + }, + "id": "path2605", + "name": "path2605", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 146.88277,49.636007 h -3.21562", + "fill": { + "paint": "transparent" + }, + "id": "path2607", + "name": "path2607", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 143.64927,49.259146 h 3.21569", + "fill": { + "paint": "transparent" + }, + "id": "path2610", + "name": "path2610", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 142.68699,47.998411 h 4.5892", + "fill": { + "paint": "transparent" + }, + "id": "path2612", + "name": "path2612", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 147.36247,47.896928 h -4.58921", + "fill": { + "paint": "transparent" + }, + "id": "path2613", + "name": "path2613", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 95.90689,47.273725 h 47.14387", + "fill": { + "paint": "transparent" + }, + "id": "path2615", + "name": "path2615", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "M 142.35221,49.094376 142.26581,48.9277", + "fill": { + "paint": "transparent" + }, + "id": "path2633", + "name": "path2633", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 142.45585,49.183398 -0.0864,-0.166766", + "fill": { + "paint": "transparent" + }, + "id": "path2635", + "name": "path2635", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 143.59822,49.765657 -0.0883,-0.170306", + "fill": { + "paint": "transparent" + }, + "id": "path2636", + "name": "path2636", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 143.66715,49.636007 0.0864,0.166752", + "fill": { + "paint": "transparent" + }, + "id": "path2637", + "name": "path2637", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 147.59489,33.789153 -0.0488,-0.299357", + "fill": { + "paint": "transparent" + }, + "id": "path2644", + "name": "path2644", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 107.0863,42.036692 h -0.83436", + "fill": { + "paint": "transparent" + }, + "id": "path2649", + "name": "path2649", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 108.24368,39.767386 h -0.41721", + "fill": { + "paint": "transparent" + }, + "id": "path2655", + "name": "path2655", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 106.99211,39.767386 h -0.41723", + "fill": { + "paint": "transparent" + }, + "id": "path2656", + "name": "path2656", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 147.07788,49.953987 -0.1928,-0.09263", + "fill": { + "paint": "transparent" + }, + "id": "path2657", + "name": "path2657", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 147.03736,49.934562 -0.15459,-0.298555", + "fill": { + "paint": "transparent" + }, + "id": "path2668", + "name": "path2668", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 147.27794,49.383859 0.18992,0.36683", + "fill": { + "paint": "transparent" + }, + "id": "path2670", + "name": "path2670", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 147.85168,48.574008 -0.18999,-0.366822", + "fill": { + "paint": "transparent" + }, + "id": "path2675", + "name": "path2675", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 147.84377,48.432226 -0.19,-0.366859", + "fill": { + "paint": "transparent" + }, + "id": "path2676", + "name": "path2676", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 146.5365,40.872054 -0.0208,-0.03962", + "fill": { + "paint": "transparent" + }, + "id": "path2682", + "name": "path2682", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "M 146.79481,39.278716 146.66689,39.03155", + "fill": { + "paint": "transparent" + }, + "id": "path2684", + "name": "path2684", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 128.09934,3.696267 0.39189,0.896348", + "fill": { + "paint": "transparent" + }, + "id": "path2685", + "name": "path2685", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 116.54474,164.56208 -4.32922,4.22307", + "fill": { + "paint": "transparent" + }, + "id": "path2686", + "name": "path2686", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 108.06153,39.173632 h 0.0319", + "fill": { + "paint": "transparent" + }, + "id": "path2687", + "name": "path2687", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 107.7162,38.506672 h 0.20862", + "fill": { + "paint": "transparent" + }, + "id": "path2692", + "name": "path2692", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "M 147.54623,33.489796 H 100.40237", + "fill": { + "paint": "transparent" + }, + "id": "path2702", + "name": "path2702", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 150.76305,50.695479 -2.1474,-1.763652", + "fill": { + "paint": "transparent" + }, + "id": "path2703", + "name": "path2703", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 128.43044,1.8136789 2.70481,4.5085191", + "fill": { + "paint": "transparent" + }, + "id": "path2715", + "name": "path2715", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 147.85048,34.282833 -0.25559,-0.49368", + "fill": { + "paint": "transparent" + }, + "id": "path2718", + "name": "path2718", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "M 136.7505,5.660206 136.668,5.501121", + "fill": { + "paint": "transparent" + }, + "id": "path2727", + "name": "path2727", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 137.4138,5.298251 0.0256,0.04951", + "fill": { + "paint": "transparent" + }, + "id": "path2728", + "name": "path2728", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 148.94947,41.255743 4.16757,1.847158", + "fill": { + "paint": "transparent" + }, + "id": "path2729", + "name": "path2729", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 147.67967,41.028728 0.19286,0.09263", + "fill": { + "paint": "transparent" + }, + "id": "path2730", + "name": "path2730", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 132.3341,2.40678 0.74297,1.156484", + "fill": { + "paint": "transparent" + }, + "id": "path2731", + "name": "path2731", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 132.30558,2.145459 0.74321,1.156814", + "fill": { + "paint": "transparent" + }, + "id": "path2732", + "name": "path2732", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 116.91601,178.7359 4.77447,-4.50494", + "fill": { + "paint": "transparent" + }, + "id": "path2739", + "name": "path2739", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 111.11238,169.0562 -0.25582,0.1378", + "fill": { + "paint": "transparent" + }, + "id": "path2740", + "name": "path2740", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 133.07468,3.334198 -0.0272,-0.03309", + "fill": { + "paint": "transparent" + }, + "id": "path2743", + "name": "path2743", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "M 132.30542,2.145594 131.62495,1.2773175 130.69423,0.5784583 129.62289,0.3178774", + "fill": { + "paint": "transparent" + }, + "id": "path2744", + "name": "path2744", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 115.56639,179.13466 0.25376,-0.14213", + "fill": { + "paint": "transparent" + }, + "id": "path2762", + "name": "path2762", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 158.05108,27.974197 -4.1675,-1.847159", + "fill": { + "paint": "transparent" + }, + "id": "path2782", + "name": "path2782", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 152.80664,25.992632 -0.19286,-0.09263", + "fill": { + "paint": "transparent" + }, + "id": "path2783", + "name": "path2783", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "M 164.61316,8.156668 162.86007,4.185707", + "fill": { + "paint": "transparent" + }, + "id": "path2795", + "name": "path2795", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "M 167.85738,7.223376 166.44775,2.497829", + "fill": { + "paint": "transparent" + }, + "id": "path2796", + "name": "path2796", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 143.37801,0.3214354 -0.60409,0.1057659 -0.7647,0.4669556 -0.56416,0.6368068", + "fill": { + "paint": "transparent" + }, + "id": "path2797", + "name": "path2797", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "M 137.51709,5.298251 H 137.4138", + "fill": { + "paint": "transparent" + }, + "id": "path2802", + "name": "path2802", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 133.37229,3.521521 -0.14101,-0.06707 -0.13663,-0.100405 -0.02,-0.01991", + "fill": { + "paint": "transparent" + }, + "id": "path2805", + "name": "path2805", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 157.16677,18.33563 0.19296,0.09265", + "fill": { + "paint": "transparent" + }, + "id": "path2806", + "name": "path2806", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 158.48372,18.674393 2.14746,1.763655", + "fill": { + "paint": "transparent" + }, + "id": "path2808", + "name": "path2808", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 166.42339,2.438962 v 0.0053", + "fill": { + "paint": "transparent" + }, + "id": "path2818", + "name": "path2818", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 166.44936,2.497248 4.98868,9.059718", + "fill": { + "paint": "transparent" + }, + "id": "path2819", + "name": "path2819", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 166.42642,2.444323 4.995,9.076646", + "fill": { + "paint": "transparent" + }, + "id": "path2820", + "name": "path2820", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 171.43891,11.556595 -0.0175,-0.03558", + "fill": { + "paint": "transparent" + }, + "id": "path2821", + "name": "path2821", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 166.42642,2.444323 0.0232,0.05291", + "fill": { + "paint": "transparent" + }, + "id": "path2822", + "name": "path2822", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 173.27718,16.064676 -1.83827,-4.508081", + "fill": { + "paint": "transparent" + }, + "id": "path2823", + "name": "path2823", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 109.62662,0.3153789 -0.68272,0.097407", + "fill": { + "paint": "transparent" + }, + "id": "path2824", + "name": "path2824", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 163.36182,0.3151515 -0.0192,2.043e-4", + "fill": { + "paint": "transparent" + }, + "id": "path2825", + "name": "path2825", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 163.91894,0.6374835 0.0144,-1.432e-4", + "fill": { + "paint": "transparent" + }, + "id": "path2826", + "name": "path2826", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 164.26513,0.637157 0.0151,-1.132e-4", + "fill": { + "paint": "transparent" + }, + "id": "path2827", + "name": "path2827", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 118.31149,3.563151 h 9.09579", + "fill": { + "paint": "transparent" + }, + "id": "path2828", + "name": "path2828", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 140.06182,3.563151 h 9.09577", + "fill": { + "paint": "transparent" + }, + "id": "path2829", + "name": "path2829", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 133.68285,3.449185 h 6.20918", + "fill": { + "paint": "transparent" + }, + "id": "path2830", + "name": "path2830", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 164.28,0.6370438 h -0.34651", + "fill": { + "paint": "transparent" + }, + "id": "path2831", + "name": "path2831", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "M 163.36182,0.3151515 H 143.37681", + "fill": { + "paint": "transparent" + }, + "id": "path2832", + "name": "path2832", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 109.52372,3.562945 -3.39514,-3.71e-4", + "fill": { + "paint": "transparent" + }, + "id": "path2833", + "name": "path2833", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 161.34019,3.566435 -3.3945,-0.003", + "fill": { + "paint": "transparent" + }, + "id": "path2834", + "name": "path2834", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "M 129.62265,0.3151515 H 109.62678", + "fill": { + "paint": "transparent" + }, + "id": "path2835", + "name": "path2835", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 143.37681,0.3151515 0.0215,1.813e-4", + "fill": { + "paint": "transparent" + }, + "id": "path2836", + "name": "path2836", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 166.42331,2.439077 -0.52485,-0.8110756 -0.6879,-0.6758087", + "fill": { + "paint": "transparent" + }, + "id": "path2839", + "name": "path2839", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 173.27861,16.067431 -5.4234,-8.846592", + "fill": { + "paint": "transparent" + }, + "id": "path2840", + "name": "path2840", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 167.85418,7.376548 5.42356,8.855947", + "fill": { + "paint": "transparent" + }, + "id": "path2841", + "name": "path2841", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 165.21056,0.9521927 -0.75999,-0.3027173 -0.18551,-0.010295", + "fill": { + "paint": "transparent" + }, + "id": "path2842", + "name": "path2842", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 161.59442,3.616915 0.19567,0.08221", + "fill": { + "paint": "transparent" + }, + "id": "path2843", + "name": "path2843", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 161.57828,3.689014 0.19559,0.08299", + "fill": { + "paint": "transparent" + }, + "id": "path2844", + "name": "path2844", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 164.24421,0.6703087 -0.47795,-0.2879095 -0.42354,-0.066774", + "fill": { + "paint": "transparent" + }, + "id": "path2845", + "name": "path2845", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 55.010234,156.83763 c -0.03206,0.12162 -0.06397,0.24328 -0.09562,0.36501", + "fill": { + "paint": "transparent" + }, + "id": "path4424", + "name": "path4424", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 57.137173,150.43316 c -0.02785,0.0855 -0.05563,0.17102 -0.08324,0.25656", + "fill": { + "paint": "transparent" + }, + "id": "path4425", + "name": "path4425", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 59.236274,158.8345 c -0.165464,-0.19086 -0.332095,-0.3808 -0.499898,-0.56985", + "fill": { + "paint": "transparent" + }, + "id": "path4426", + "name": "path4426", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 59.188286,158.93042 c -0.189405,-0.21915 -0.380322,-0.43713 -0.572746,-0.65392", + "fill": { + "paint": "transparent" + }, + "id": "path4427", + "name": "path4427", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 57.237333,158.82966 c -0.153605,-0.17014 -0.308535,-0.33926 -0.464732,-0.50727", + "fill": { + "paint": "transparent" + }, + "id": "path4428", + "name": "path4428", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 57.176725,158.93093 c -0.196381,-0.21877 -0.395002,-0.43569 -0.59586,-0.65077", + "fill": { + "paint": "transparent" + }, + "id": "path4429", + "name": "path4429", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 60.208214,158.27926 c -0.183649,-0.2229 -0.370082,-0.44372 -0.559247,-0.66248", + "fill": { + "paint": "transparent" + }, + "id": "path4430", + "name": "path4430", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 60.061912,158.30787 c -0.159162,-0.1921 -0.320435,-0.38259 -0.483887,-0.57144", + "fill": { + "paint": "transparent" + }, + "id": "path4431", + "name": "path4431", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 57.701684,157.13456 c -0.136987,-0.14437 -0.275479,-0.28747 -0.415384,-0.42931", + "fill": { + "paint": "transparent" + }, + "id": "path4432", + "name": "path4432", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 163.09825,12.873675 c 0.51197,-1.570286 1.017,-3.142655 1.51491,-4.717007", + "fill": { + "paint": "transparent" + }, + "id": "path4433", + "name": "path4433", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 116.03875,157.09396 c 0.52587,-1.56451 1.04464,-3.13114 1.55638,-4.69986", + "fill": { + "paint": "transparent" + }, + "id": "path4434", + "name": "path4434", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 55.182714,156.19347 c 0.0066,-0.0246 0.01339,-0.0492 0.02,-0.0737", + "fill": { + "paint": "transparent" + }, + "id": "path4435", + "name": "path4435", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 55.202663,156.11972 c 0.0094,-0.0352 0.01892,-0.0703 0.02819,-0.10549", + "fill": { + "paint": "transparent" + }, + "id": "path4436", + "name": "path4436", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 55.391582,155.36693 c 0.02432,-0.11165 0.04798,-0.22339 0.07119,-0.33526", + "fill": { + "paint": "transparent" + }, + "id": "path4437", + "name": "path4437", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 55.598338,155.63932 c 0.01632,-0.0748 0.03232,-0.14969 0.04811,-0.22458", + "fill": { + "paint": "transparent" + }, + "id": "path4438", + "name": "path4438", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 60.736237,156.6584 c -0.194763,-0.22007 -0.393389,-0.43701 -0.595861,-0.65075", + "fill": { + "paint": "transparent" + }, + "id": "path4439", + "name": "path4439", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 60.572977,156.69614 c -0.149459,-0.16763 -0.30137,-0.33329 -0.455662,-0.49695", + "fill": { + "paint": "transparent" + }, + "id": "path4440", + "name": "path4440", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 58.606179,156.4778 c -0.155757,-0.15962 -0.314885,-0.31621 -0.477357,-0.46965", + "fill": { + "paint": "transparent" + }, + "id": "path4441", + "name": "path4441", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 58.545805,156.609 c -0.13888,-0.14237 -0.28055,-0.2823 -0.424839,-0.41975", + "fill": { + "paint": "transparent" + }, + "id": "path4442", + "name": "path4442", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 55.258693,161.88191 c -0.0026,0.0166 -0.0026,0.0335 -0.004,0.0503", + "fill": { + "paint": "transparent" + }, + "id": "path4443", + "name": "path4443", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 55.730687,162.3083 c -0.004,0.0275 -0.0066,0.0552 -0.0072,0.0829", + "fill": { + "paint": "transparent" + }, + "id": "path4444", + "name": "path4444", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 55.262205,161.8574 c -0.002,0.008 -0.0026,0.0163 -0.0034,0.0246", + "fill": { + "paint": "transparent" + }, + "id": "path4445", + "name": "path4445", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 63.905291,157.57795 c -0.01679,-0.0654 -0.03445,-0.13044 -0.05297,-0.19537", + "fill": { + "paint": "transparent" + }, + "id": "path4446", + "name": "path4446", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 63.766806,160.88229 c 0.01459,-0.0447 0.02838,-0.0894 0.04144,-0.13454", + "fill": { + "paint": "transparent" + }, + "id": "path4447", + "name": "path4447", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 63.852333,157.38258 c -0.03352,-0.0972 -0.07158,-0.19301 -0.11397,-0.28711", + "fill": { + "paint": "transparent" + }, + "id": "path4448", + "name": "path4448", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 63.43437,157.26463 c -0.03598,-0.0439 -0.07303,-0.0871 -0.111087,-0.12936", + "fill": { + "paint": "transparent" + }, + "id": "path4449", + "name": "path4449", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 63.636202,157.53799 c -0.06249,-0.0942 -0.12985,-0.18542 -0.201832,-0.27336", + "fill": { + "paint": "transparent" + }, + "id": "path4450", + "name": "path4450", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 63.9367,159.199 c -0.02752,-0.19873 -0.07407,-0.39468 -0.138938,-0.58545", + "fill": { + "paint": "transparent" + }, + "id": "path4451", + "name": "path4451", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 63.669605,157.63271 c -0.04964,-0.1439 -0.109863,-0.28432 -0.180177,-0.42025", + "fill": { + "paint": "transparent" + }, + "id": "path4452", + "name": "path4452", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 63.797762,158.61355 c -0.0148,-0.0434 -0.03045,-0.0865 -0.04717,-0.12913", + "fill": { + "paint": "transparent" + }, + "id": "path4453", + "name": "path4453", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 63.664534,158.28562 c -0.05424,-0.11431 -0.115568,-0.22547 -0.183588,-0.33297", + "fill": { + "paint": "transparent" + }, + "id": "path4454", + "name": "path4454", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 63.750514,158.48442 c -0.02625,-0.0672 -0.05497,-0.13346 -0.08599,-0.1988", + "fill": { + "paint": "transparent" + }, + "id": "path4455", + "name": "path4455", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 57.581761,156.26782 c -0.0047,0.003 -0.01021,0.007 -0.01546,0.01", + "fill": { + "paint": "transparent" + }, + "id": "path4456", + "name": "path4456", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 59.738559,158.67688 c 0.0047,-0.003 0.01021,-0.007 0.01546,-0.01", + "fill": { + "paint": "transparent" + }, + "id": "path4457", + "name": "path4457", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 57.443862,160.60458 c 0.01805,0.008 0.03619,0.0149 0.0545,0.022", + "fill": { + "paint": "transparent" + }, + "id": "path4458", + "name": "path4458", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 55.462531,155.85462 c -0.0096,0.019 -0.01892,0.0384 -0.02759,0.058", + "fill": { + "paint": "transparent" + }, + "id": "path4459", + "name": "path4459", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 57.515344,157.73695 c -5e-4,-5.8e-4 -0.002,-0.002 -0.002,-0.002", + "fill": { + "paint": "transparent" + }, + "id": "path4460", + "name": "path4460", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 59.192764,158.91232 c -0.002,0.006 -0.0026,0.012 -0.0047,0.0181", + "fill": { + "paint": "transparent" + }, + "id": "path4461", + "name": "path4461", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 60.208214,158.27926 c -0.0072,-5.7e-4 -0.0142,-0.002 -0.02132,-0.002", + "fill": { + "paint": "transparent" + }, + "id": "path4462", + "name": "path4462", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 57.18121,158.91281 c -0.002,0.006 -0.0026,0.012 -0.0047,0.0181", + "fill": { + "paint": "transparent" + }, + "id": "path4463", + "name": "path4463", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 58.125883,156.19967 c -0.002,-0.004 -0.0026,-0.007 -0.0047,-0.0104", + "fill": { + "paint": "transparent" + }, + "id": "path4464", + "name": "path4464", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 58.866,156.71881 c 5e-4,0 0.002,0 0.0026,0", + "fill": { + "paint": "transparent" + }, + "id": "path4465", + "name": "path4465", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 57.737431,157.18033 c -0.01033,-0.0162 -0.02239,-0.0317 -0.03571,-0.0458", + "fill": { + "paint": "transparent" + }, + "id": "path4466", + "name": "path4466", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 60.736237,156.6584 c -0.0072,-5.5e-4 -0.01418,-0.002 -0.02139,-0.002", + "fill": { + "paint": "transparent" + }, + "id": "path4467", + "name": "path4467", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 56.60046,158.27849 c -0.0066,3.4e-4 -0.013,5.5e-4 -0.01959,0.002", + "fill": { + "paint": "transparent" + }, + "id": "path4468", + "name": "path4468", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 60.140376,156.00765 c -0.0026,0.005 -0.004,0.01 -0.0066,0.0148", + "fill": { + "paint": "transparent" + }, + "id": "path4469", + "name": "path4469", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 59.28235,156.60882 c -4.41e-4,-5.5e-4 -5e-4,-0.002 -0.002,-0.003", + "fill": { + "paint": "transparent" + }, + "id": "path4470", + "name": "path4470", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 57.128452,156.65767 c -0.0066,2.7e-4 -0.01319,5.7e-4 -0.01959,0.002", + "fill": { + "paint": "transparent" + }, + "id": "path4471", + "name": "path4471", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 58.128822,156.00815 c -0.0026,0.005 -0.004,0.01 -0.0066,0.0148", + "fill": { + "paint": "transparent" + }, + "id": "path4472", + "name": "path4472", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 58.544492,156.60596 c 3.87e-4,5.6e-4 5e-4,0.002 0.002,0.003", + "fill": { + "paint": "transparent" + }, + "id": "path4473", + "name": "path4473", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 59.577092,157.73359 c 3e-4,5.7e-4 5e-4,0.002 5e-4,0.003", + "fill": { + "paint": "transparent" + }, + "id": "path4474", + "name": "path4474", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 112.29135,157.31855 c 0.95828,-2.2608 1.81844,-4.55784 2.57819,-6.88539", + "fill": { + "paint": "transparent" + }, + "id": "path4475", + "name": "path4475", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 111.84983,157.53747 c 1.00168,-2.33048 1.89707,-4.70075 2.68342,-7.10431", + "fill": { + "paint": "transparent" + }, + "id": "path4476", + "name": "path4476", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 111.45563,157.37397 c 0.99871,-2.32326 1.89115,-4.68621 2.6751,-7.08227", + "fill": { + "paint": "transparent" + }, + "id": "path4477", + "name": "path4477", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 112.84655,157.53568 c 0.96955,-2.2659 1.83739,-4.56973 2.60112,-6.90524", + "fill": { + "paint": "transparent" + }, + "id": "path4478", + "name": "path4478", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 111.64873,157.47835 c 1.00151,-2.32594 1.89523,-4.69224 2.67886,-7.09212", + "fill": { + "paint": "transparent" + }, + "id": "path4479", + "name": "path4479", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 111.20954,157.30049 c 0.99799,-2.31785 1.88876,-4.6759 2.66951,-7.06743", + "fill": { + "paint": "transparent" + }, + "id": "path4480", + "name": "path4480", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 75.213761,153.8369 c 0.17434,-0.0909 0.348034,-0.18289 0.521014,-0.27605", + "fill": { + "paint": "transparent" + }, + "id": "path4481", + "name": "path4481", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 54.919089,161.93213 c 0.02892,0.44687 0.07023,0.89294 0.123867,1.33779", + "fill": { + "paint": "transparent" + }, + "id": "path4482", + "name": "path4482", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 55.282634,156.13456 c -0.03852,0.0874 -0.07638,0.17485 -0.113766,0.26258", + "fill": { + "paint": "transparent" + }, + "id": "path4483", + "name": "path4483", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 58.020213,158.27665 c -0.288251,0.2098 -0.569528,0.42799 -0.843488,0.65428", + "fill": { + "paint": "transparent" + }, + "id": "path4484", + "name": "path4484", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 57.991495,158.2488 c -0.256942,0.18706 -0.508428,0.38081 -0.754062,0.58105", + "fill": { + "paint": "transparent" + }, + "id": "path4485", + "name": "path4485", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 59.693443,158.59522 c -0.170483,0.10886 -0.338912,0.22061 -0.505157,0.3352", + "fill": { + "paint": "transparent" + }, + "id": "path4486", + "name": "path4486", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 60.208214,158.27926 c -0.166732,0.0984 -0.331709,0.19943 -0.494729,0.30318", + "fill": { + "paint": "transparent" + }, + "id": "path4487", + "name": "path4487", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 60.087179,158.29264 c -0.288939,0.17251 -0.572268,0.35326 -0.849639,0.54199", + "fill": { + "paint": "transparent" + }, + "id": "path4488", + "name": "path4488", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 60.643586,156.70269 c -0.283914,0.13701 -0.563477,0.28182 -0.83837,0.43435", + "fill": { + "paint": "transparent" + }, + "id": "path4489", + "name": "path4489", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 60.625882,156.67066 c -0.289864,0.1393 -0.575191,0.28686 -0.855587,0.4425", + "fill": { + "paint": "transparent" + }, + "id": "path4490", + "name": "path4490", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 57.416504,157.61726 c -0.286501,0.2118 -0.565237,0.4329 -0.835639,0.6629", + "fill": { + "paint": "transparent" + }, + "id": "path4491", + "name": "path4491", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 60.736237,156.6584 c -0.03097,0.0147 -0.06183,0.0294 -0.09265,0.0443", + "fill": { + "paint": "transparent" + }, + "id": "path4492", + "name": "path4492", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 57.515344,157.73695 c -0.254017,0.18773 -0.501798,0.38287 -0.743035,0.58512", + "fill": { + "paint": "transparent" + }, + "id": "path4493", + "name": "path4493", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 57.593182,156.33595 c -0.163612,0.10481 -0.325073,0.21264 -0.484286,0.32334", + "fill": { + "paint": "transparent" + }, + "id": "path4494", + "name": "path4494", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 57.690223,156.46849 c -0.129956,0.0833 -0.258501,0.16838 -0.385647,0.25539", + "fill": { + "paint": "transparent" + }, + "id": "path4495", + "name": "path4495", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 58.128822,156.00815 c -0.174101,0.10169 -0.345996,0.20672 -0.51565,0.31499", + "fill": { + "paint": "transparent" + }, + "id": "path4496", + "name": "path4496", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 58.125883,156.19967 c -0.146868,0.0873 -0.292096,0.17685 -0.43566,0.26882", + "fill": { + "paint": "transparent" + }, + "id": "path4497", + "name": "path4497", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 60.113797,156.18878 c -0.281856,0.13143 -0.55914,0.27155 -0.831447,0.42004", + "fill": { + "paint": "transparent" + }, + "id": "path4498", + "name": "path4498", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 60.140376,156.00765 c -0.318876,0.14576 -0.632088,0.30255 -0.938869,0.47002", + "fill": { + "paint": "transparent" + }, + "id": "path4499", + "name": "path4499", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 54.503265,162.33169 c 0.0072,0.0568 0.01445,0.1135 0.02239,0.17019", + "fill": { + "paint": "transparent" + }, + "id": "path4500", + "name": "path4500", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 55.42054,162.16621 c 0.04057,0.0764 0.08212,0.15228 0.124594,0.2277", + "fill": { + "paint": "transparent" + }, + "id": "path4501", + "name": "path4501", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 56.471863,168.75404 c 0.03865,0.0853 0.07854,0.17005 0.11964,0.25429", + "fill": { + "paint": "transparent" + }, + "id": "path4502", + "name": "path4502", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 54.647467,163.20765 c 0.004,0.0208 0.0088,0.0419 0.01339,0.0627", + "fill": { + "paint": "transparent" + }, + "id": "path4503", + "name": "path4503", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 54.660781,163.27035 c 0.0034,0.0145 0.0066,0.0292 0.0096,0.0437", + "fill": { + "paint": "transparent" + }, + "id": "path4504", + "name": "path4504", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 54.670336,163.31404 c 0.01057,0.0475 0.02139,0.0947 0.03251,0.14183", + "fill": { + "paint": "transparent" + }, + "id": "path4505", + "name": "path4505", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 54.702912,163.45587 c 0.01292,0.0541 0.02618,0.10775 0.04004,0.16146", + "fill": { + "paint": "transparent" + }, + "id": "path4506", + "name": "path4506", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 54.918942,157.09396 c -0.01021,0.0319 -0.02032,0.0638 -0.03011,0.0957", + "fill": { + "paint": "transparent" + }, + "id": "path4507", + "name": "path4507", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 63.035764,153.09389 c 0.09992,0.0447 0.200772,0.0874 0.302437,0.12845", + "fill": { + "paint": "transparent" + }, + "id": "path4508", + "name": "path4508", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 60.565062,151.74402 c 0.05263,0.10169 0.108325,0.20196 0.166837,0.30072", + "fill": { + "paint": "transparent" + }, + "id": "path4509", + "name": "path4509", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 60.722824,151.86651 c 0.02678,0.0355 0.0539,0.0705 0.08141,0.10532", + "fill": { + "paint": "transparent" + }, + "id": "path4510", + "name": "path4510", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 60.613203,151.71657 c 0.03571,0.0505 0.0723,0.10048 0.109622,0.14994", + "fill": { + "paint": "transparent" + }, + "id": "path4511", + "name": "path4511", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 60.196845,151.03308 c 0.122489,0.23638 0.261628,0.46472 0.416358,0.68349", + "fill": { + "paint": "transparent" + }, + "id": "path4512", + "name": "path4512", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 59.243984,149.17634 c 0.0419,0.0717 0.08558,0.14263 0.130736,0.21264", + "fill": { + "paint": "transparent" + }, + "id": "path4513", + "name": "path4513", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 58.882917,148.44524 c 0.06504,0.15944 0.13742,0.31609 0.21687,0.46955", + "fill": { + "paint": "transparent" + }, + "id": "path4514", + "name": "path4514", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 59.434747,149.51237 c 0.06417,0.15669 0.135422,0.31068 0.213593,0.46155", + "fill": { + "paint": "transparent" + }, + "id": "path4515", + "name": "path4515", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 59.983647,150.57237 c 0.0641,0.15641 0.135227,0.3101 0.213198,0.46071", + "fill": { + "paint": "transparent" + }, + "id": "path4516", + "name": "path4516", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 59.173461,149.05244 c 0.02299,0.0417 0.04651,0.083 0.07055,0.1239", + "fill": { + "paint": "transparent" + }, + "id": "path4517", + "name": "path4517", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 59.099787,148.91479 c 0.02399,0.0463 0.04844,0.0921 0.07366,0.13765", + "fill": { + "paint": "transparent" + }, + "id": "path4518", + "name": "path4518", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 59.64834,149.97392 c 0.02378,0.046 0.04825,0.0917 0.07334,0.13705", + "fill": { + "paint": "transparent" + }, + "id": "path4519", + "name": "path4519", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 65.158467,147.00413 c -0.01386,0.0298 -0.02646,0.0601 -0.03765,0.0907", + "fill": { + "paint": "transparent" + }, + "id": "path4520", + "name": "path4520", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 65.120866,147.09484 c -0.004,0.0111 -0.0079,0.0223 -0.01141,0.0334", + "fill": { + "paint": "transparent" + }, + "id": "path4521", + "name": "path4521", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 67.861849,147.16145 c 0.004,-0.011 0.008,-0.022 0.01141,-0.0334", + "fill": { + "paint": "transparent" + }, + "id": "path4522", + "name": "path4522", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 65.109406,147.12817 c -5.01e-4,0.002 -0.002,0.005 -0.0026,0.008", + "fill": { + "paint": "transparent" + }, + "id": "path4523", + "name": "path4523", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 67.536344,146.63726 c -0.004,-0.008 -0.0082,-0.0151 -0.01259,-0.0225", + "fill": { + "paint": "transparent" + }, + "id": "path4524", + "name": "path4524", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 63.085604,153.00843 c 0.05631,0.0241 0.112697,0.0477 0.169402,0.0706", + "fill": { + "paint": "transparent" + }, + "id": "path4525", + "name": "path4525", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 59.598601,140.82805 c -0.0047,0.0134 -0.0089,0.027 -0.01339,0.0404", + "fill": { + "paint": "transparent" + }, + "id": "path4526", + "name": "path4526", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 59.585281,140.86844 c -0.0053,0.016 -0.01045,0.0322 -0.01566,0.0484", + "fill": { + "paint": "transparent" + }, + "id": "path4527", + "name": "path4527", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 58.337869,147.39463 c 0.06416,0.15648 0.135328,0.3103 0.213347,0.46102", + "fill": { + "paint": "transparent" + }, + "id": "path4528", + "name": "path4528", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 57.806767,146.3775 c 0.0595,0.14202 0.124887,0.28179 0.195942,0.419", + "fill": { + "paint": "transparent" + }, + "id": "path4529", + "name": "path4529", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 58.002709,146.7965 c 0.02378,0.046 0.04825,0.0916 0.07335,0.13701", + "fill": { + "paint": "transparent" + }, + "id": "path4530", + "name": "path4530", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 58.551216,147.85565 c 0.02398,0.046 0.04825,0.0917 0.07335,0.13701", + "fill": { + "paint": "transparent" + }, + "id": "path4531", + "name": "path4531", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 66.239586,142.47391 c -0.01386,0.0298 -0.02639,0.0601 -0.03765,0.0908", + "fill": { + "paint": "transparent" + }, + "id": "path4532", + "name": "path4532", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 66.201987,142.56467 c -0.004,0.0111 -0.008,0.022 -0.01153,0.0334", + "fill": { + "paint": "transparent" + }, + "id": "path4533", + "name": "path4533", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 66.160781,144.05429 c -0.275524,-0.53196 -0.953994,-0.75162 -1.51548,-0.49054 m 0,0 c -0.561432,0.26106 -0.793208,0.90395 -0.517689,1.43592", + "fill": { + "paint": "transparent" + }, + "id": "path4534", + "name": "path4534", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 66.523441,143.08099 c 0.0047,0.01 0.01057,0.0198 0.01626,0.0296", + "fill": { + "paint": "transparent" + }, + "id": "path4535", + "name": "path4535", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 61.035123,135.08425 c -0.406369,0.33866 -0.793521,0.69744 -1.159878,1.07488", + "fill": { + "paint": "transparent" + }, + "id": "path4536", + "name": "path4536", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 59.55671,136.49804 c -0.02099,0.023 -0.04179,0.0462 -0.06256,0.0692", + "fill": { + "paint": "transparent" + }, + "id": "path4537", + "name": "path4537", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 59.875245,136.15913 c -0.108073,0.11138 -0.214225,0.22439 -0.318535,0.33891", + "fill": { + "paint": "transparent" + }, + "id": "path4538", + "name": "path4538", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 59.856709,136.14994 c -0.126153,0.11803 -0.249921,0.23829 -0.371301,0.36074", + "fill": { + "paint": "transparent" + }, + "id": "path4539", + "name": "path4539", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 59.485408,136.51068 c -0.246162,0.26948 -0.480282,0.54857 -0.701878,0.83652", + "fill": { + "paint": "transparent" + }, + "id": "path4540", + "name": "path4540", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 58.905592,137.25223 c -0.02259,0.0252 -0.04504,0.0506 -0.06751,0.076", + "fill": { + "paint": "transparent" + }, + "id": "path4541", + "name": "path4541", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 69.356948,142.83888 c 0.0047,-0.0135 0.0096,-0.0272 0.01412,-0.0408", + "fill": { + "paint": "transparent" + }, + "id": "path4542", + "name": "path4542", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 68.943023,142.63125 c 0.004,-0.011 0.008,-0.022 0.01141,-0.0334", + "fill": { + "paint": "transparent" + }, + "id": "path4543", + "name": "path4543", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 72.251937,144.05429 c -0.275519,-0.53196 -0.953983,-0.75162 -1.515474,-0.49054 m 0,0 c -0.561426,0.26106 -0.793209,0.90395 -0.51769,1.43592", + "fill": { + "paint": "transparent" + }, + "id": "path4544", + "name": "path4544", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 68.617471,142.10706 c -0.004,-0.008 -0.0082,-0.0151 -0.01259,-0.0225", + "fill": { + "paint": "transparent" + }, + "id": "path4545", + "name": "path4545", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 65.599842,147.63513 c 0.09299,0 0.185981,-5.5e-4 0.278931,-0.003", + "fill": { + "paint": "transparent" + }, + "id": "path4546", + "name": "path4546", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 65.438522,147.63408 c 0.05377,5.6e-4 0.10752,5.6e-4 0.16132,5.6e-4", + "fill": { + "paint": "transparent" + }, + "id": "path4547", + "name": "path4547", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 67.241902,139.52412 c -0.275526,-0.53201 -0.953995,-0.75162 -1.515428,-0.49055 m 0,0 c -0.561486,0.26104 -0.79326,0.90391 -0.517735,1.4359", + "fill": { + "paint": "transparent" + }, + "id": "path4548", + "name": "path4548", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 73.676712,138.65702 c -0.275492,-0.53198 -0.954048,-0.7516 -1.515466,-0.49055 m 0,0 c -0.561439,0.26107 -0.793229,0.90395 -0.517696,1.43595", + "fill": { + "paint": "transparent" + }, + "id": "path4549", + "name": "path4549", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 69.909512,140.01333 c -0.685933,0.22274 -1.347777,0.50724 -1.97646,0.84964", + "fill": { + "paint": "transparent" + }, + "id": "path4550", + "name": "path4550", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 81.783767,139.24975 c -0.01279,-0.0103 -0.0256,-0.0205 -0.03839,-0.0307", + "fill": { + "paint": "transparent" + }, + "id": "path4551", + "name": "path4551", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 81.667835,139.07829 c -0.08078,-0.15591 -0.16819,-0.30868 -0.262059,-0.45789", + "fill": { + "paint": "transparent" + }, + "id": "path4552", + "name": "path4552", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 82.216408,140.13745 c -0.08087,-0.15601 -0.168344,-0.30882 -0.26222,-0.45811", + "fill": { + "paint": "transparent" + }, + "id": "path4553", + "name": "path4553", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 82.28751,140.27921 c -0.02318,-0.0475 -0.04718,-0.0948 -0.0711,-0.14176", + "fill": { + "paint": "transparent" + }, + "id": "path4554", + "name": "path4554", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 81.737904,139.21784 c -0.02318,-0.0468 -0.0463,-0.0932 -0.07031,-0.13955", + "fill": { + "paint": "transparent" + }, + "id": "path4555", + "name": "path4555", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 82.319625,140.34621 c -0.01033,-0.0224 -0.02158,-0.0447 -0.03185,-0.067", + "fill": { + "paint": "transparent" + }, + "id": "path4556", + "name": "path4556", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 81.77058,139.286 c -0.01117,-0.0227 -0.02158,-0.0456 -0.03272,-0.0682", + "fill": { + "paint": "transparent" + }, + "id": "path4557", + "name": "path4557", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 82.763774,141.19438 c -0.0759,-0.14681 -0.158035,-0.29078 -0.245755,-0.43161", + "fill": { + "paint": "transparent" + }, + "id": "path4558", + "name": "path4558", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 82.855665,141.37934 c -0.02958,-0.0622 -0.05991,-0.12378 -0.0919,-0.18496", + "fill": { + "paint": "transparent" + }, + "id": "path4559", + "name": "path4559", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 83.138407,142.08157 c -0.04391,-0.13108 -0.09163,-0.26077 -0.14405,-0.38888", + "fill": { + "paint": "transparent" + }, + "id": "path4560", + "name": "path4560", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 82.976467,141.64948 c -0.03831,-0.091 -0.0783,-0.18098 -0.120802,-0.27014", + "fill": { + "paint": "transparent" + }, + "id": "path4561", + "name": "path4561", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 83.170922,142.1824 c -0.01033,-0.0337 -0.02158,-0.0673 -0.03272,-0.10083", + "fill": { + "paint": "transparent" + }, + "id": "path4562", + "name": "path4562", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 82.994357,141.69269 c -0.008,-0.0143 -0.01201,-0.0288 -0.0176,-0.0433", + "fill": { + "paint": "transparent" + }, + "id": "path4563", + "name": "path4563", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 83.390804,143.16808 c -0.04478,-0.33366 -0.118487,-0.6633 -0.219882,-0.98568", + "fill": { + "paint": "transparent" + }, + "id": "path4564", + "name": "path4564", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 83.00763,141.68656 c -0.01599,-0.0362 -0.03272,-0.0722 -0.04957,-0.10805", + "fill": { + "paint": "transparent" + }, + "id": "path4565", + "name": "path4565", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 82.958016,141.57851 c -0.03191,-0.0674 -0.06476,-0.13425 -0.09916,-0.20054", + "fill": { + "paint": "transparent" + }, + "id": "path4566", + "name": "path4566", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 75.697696,142.8854 c 0,-0.005 0.008,-0.009 0.0088,-0.013", + "fill": { + "paint": "transparent" + }, + "id": "path4567", + "name": "path4567", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 73.123423,142.47391 c -0.0136,0.0298 -0.02632,0.0601 -0.03758,0.0908", + "fill": { + "paint": "transparent" + }, + "id": "path4568", + "name": "path4568", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 73.085789,142.56467 c 0,0.0111 -0.008,0.022 -0.01117,0.0334", + "fill": { + "paint": "transparent" + }, + "id": "path4569", + "name": "path4569", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 75.826893,142.63125 c 0,-0.011 0.0079,-0.022 0.01117,-0.0334", + "fill": { + "paint": "transparent" + }, + "id": "path4570", + "name": "path4570", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 76.21192,142.02993 c 0,-0.005 -0.008,-0.009 -0.008,-0.0127", + "fill": { + "paint": "transparent" + }, + "id": "path4571", + "name": "path4571", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 75.501308,142.10706 c 0,-0.008 -0.0079,-0.0151 -0.01279,-0.0225", + "fill": { + "paint": "transparent" + }, + "id": "path4572", + "name": "path4572", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 73.407296,143.08099 c 0.0079,0.01 0.01045,0.0198 0.01599,0.0296", + "fill": { + "paint": "transparent" + }, + "id": "path4573", + "name": "path4573", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 80.57077,136.96 c -0.08101,-0.15618 -0.168576,-0.30921 -0.26254,-0.45866", + "fill": { + "paint": "transparent" + }, + "id": "path4574", + "name": "path4574", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 81.119262,138.01917 c -0.0807,-0.15583 -0.168102,-0.30849 -0.261907,-0.45763", + "fill": { + "paint": "transparent" + }, + "id": "path4575", + "name": "path4575", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 80.092186,136.04026 c -0.02319,-0.0467 -0.0463,-0.0932 -0.0703,-0.13937", + "fill": { + "paint": "transparent" + }, + "id": "path4576", + "name": "path4576", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 80.640838,137.09954 c -0.02318,-0.0469 -0.0463,-0.0933 -0.07031,-0.13954", + "fill": { + "paint": "transparent" + }, + "id": "path4577", + "name": "path4577", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 81.189332,138.1587 c -0.02239,-0.0467 -0.0463,-0.0934 -0.07031,-0.13953", + "fill": { + "paint": "transparent" + }, + "id": "path4578", + "name": "path4578", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 80.675273,137.1716 c -0.01117,-0.0241 -0.02319,-0.0482 -0.03424,-0.0721", + "fill": { + "paint": "transparent" + }, + "id": "path4579", + "name": "path4579", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 81.218736,138.21991 c -0.0096,-0.0204 -0.01918,-0.041 -0.02958,-0.0613", + "fill": { + "paint": "transparent" + }, + "id": "path4580", + "name": "path4580", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 63.287775,159.95649 c -0.08006,0.28296 -0.156775,0.56676 -0.230023,0.85137", + "fill": { + "paint": "transparent" + }, + "id": "path4582", + "name": "path4582", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 63.634017,160.62504 c -0.06643,0.23627 -0.130351,0.47317 -0.191798,0.71066", + "fill": { + "paint": "transparent" + }, + "id": "path4583", + "name": "path4583", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 63.947569,160.96279 c -0.0085,0.0997 -0.01632,0.19959 -0.02346,0.29947", + "fill": { + "paint": "transparent" + }, + "id": "path4584", + "name": "path4584", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 63.97542,160.66552 c -0.01009,0.099 -0.01939,0.19811 -0.02785,0.29727", + "fill": { + "paint": "transparent" + }, + "id": "path4585", + "name": "path4585", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 63.83219,160.4147 c -0.03398,0.29112 -0.0613,0.58288 -0.08187,0.87514", + "fill": { + "paint": "transparent" + }, + "id": "path4586", + "name": "path4586", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 64.00058,160.43089 c -0.0089,0.078 -0.01726,0.15636 -0.02519,0.23463", + "fill": { + "paint": "transparent" + }, + "id": "path4587", + "name": "path4587", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 64.007503,160.37084 c -0.0026,0.0199 -0.0047,0.0401 -0.0072,0.0601", + "fill": { + "paint": "transparent" + }, + "id": "path4588", + "name": "path4588", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 112.17573,157.58268 c 0.04,-0.0876 0.0783,-0.17565 0.11562,-0.26413", + "fill": { + "paint": "transparent" + }, + "id": "path4589", + "name": "path4589", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 112.73261,157.8132 c 0.0391,-0.0921 0.0775,-0.18457 0.11395,-0.27752", + "fill": { + "paint": "transparent" + }, + "id": "path4590", + "name": "path4590", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 90.57777,168.9788 c 0.0335,0.0915 0.0687,0.18261 0.10595,0.27305", + "fill": { + "paint": "transparent" + }, + "id": "path4591", + "name": "path4591", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 89.52002,157.85127 c -0.0367,-0.13336 -0.082,-0.26443 -0.13599,-0.3924", + "fill": { + "paint": "transparent" + }, + "id": "path4592", + "name": "path4592", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 95.9776,134.80202 c -0.43919,0.20139 -0.86959,0.41959 -1.29009,0.65399", + "fill": { + "paint": "transparent" + }, + "id": "path4601", + "name": "path4601", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 97.78152,134.08603 c -0.49281,0.16646 -0.97778,0.35319 -1.45349,0.55964", + "fill": { + "paint": "transparent" + }, + "id": "path4602", + "name": "path4602", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 94.68751,135.45601 c -0.0999,0.0557 -0.19911,0.11218 -0.29778,0.16965", + "fill": { + "paint": "transparent" + }, + "id": "path4603", + "name": "path4603", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 97.9775,134.02111 c -0.0655,0.0212 -0.1308,0.0429 -0.19598,0.065", + "fill": { + "paint": "transparent" + }, + "id": "path4604", + "name": "path4604", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 94.38973,135.62566 c -0.45341,0.26383 -0.89396,0.54704 -1.32029,0.84869", + "fill": { + "paint": "transparent" + }, + "id": "path4605", + "name": "path4605", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 93.06944,136.47435 c -0.0327,0.023 -0.0647,0.0462 -0.0972,0.0694", + "fill": { + "paint": "transparent" + }, + "id": "path4606", + "name": "path4606", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 99.0665,136.29233 c -0.0168,0.005 -0.0336,0.01 -0.0496,0.0149", + "fill": { + "paint": "transparent" + }, + "id": "path4607", + "name": "path4607", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 92.27047,138.53878 c -0.39653,0.34306 -0.77293,0.70649 -1.1275,1.08867", + "fill": { + "paint": "transparent" + }, + "id": "path4608", + "name": "path4608", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 92.45024,145.49887 c -0.0192,0.0271 -0.0376,0.0543 -0.0559,0.0814", + "fill": { + "paint": "transparent" + }, + "id": "path4609", + "name": "path4609", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 92.39151,145.39688 c -0.028,0.0456 -0.0551,0.0914 -0.082,0.13726", + "fill": { + "paint": "transparent" + }, + "id": "path4610", + "name": "path4610", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 114.6932,146.94297 c 0.016,-0.0424 0.0311,-0.0849 0.0455,-0.12736", + "fill": { + "paint": "transparent" + }, + "id": "path4611", + "name": "path4611", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 91.26449,146.90608 c -0.0934,0.27125 -0.17107,0.54713 -0.23283,0.82643", + "fill": { + "paint": "transparent" + }, + "id": "path4612", + "name": "path4612", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 92.54731,145.71964 c -0.0448,0.11603 -0.0864,0.23312 -0.1248,0.35114", + "fill": { + "paint": "transparent" + }, + "id": "path4613", + "name": "path4613", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 89.93508,152.2059 c 0.0463,0.0892 0.0946,0.1775 0.14501,0.26467", + "fill": { + "paint": "transparent" + }, + "id": "path4614", + "name": "path4614", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 92.7389,150.48191 c -0.008,0.27689 0.0121,0.55371 0.0479,0.82848", + "fill": { + "paint": "transparent" + }, + "id": "path4615", + "name": "path4615", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 93.07024,151.10271 c 0.008,0.11189 0.0184,0.22355 0.0335,0.33481", + "fill": { + "paint": "transparent" + }, + "id": "path4616", + "name": "path4616", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 90.09767,148.94041 c 0.0193,0.0535 0.0391,0.10651 0.0599,0.15934", + "fill": { + "paint": "transparent" + }, + "id": "path4617", + "name": "path4617", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 89.86094,148.55302 c 0.0208,0.0493 0.0424,0.0981 0.0639,0.14684", + "fill": { + "paint": "transparent" + }, + "id": "path4618", + "name": "path4618", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 104.16471,150.80688 c 0.15309,-0.0713 0.30505,-0.14457 0.45597,-0.21991", + "fill": { + "paint": "transparent" + }, + "id": "path4619", + "name": "path4619", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 103.18167,151.22996 c 0.33211,-0.13162 0.65994,-0.27274 0.98304,-0.42308", + "fill": { + "paint": "transparent" + }, + "id": "path4620", + "name": "path4620", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 104.62068,150.58697 c 0.32741,-0.16347 0.64933,-0.3366 0.96532,-0.51906", + "fill": { + "paint": "transparent" + }, + "id": "path4621", + "name": "path4621", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 102.6716,151.42345 c 0.17106,-0.0621 0.34117,-0.1265 0.51007,-0.19349", + "fill": { + "paint": "transparent" + }, + "id": "path4622", + "name": "path4622", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 101.55473,151.78807 c 0.37655,-0.10959 0.74902,-0.2312 1.11687,-0.36462", + "fill": { + "paint": "transparent" + }, + "id": "path4623", + "name": "path4623", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 101.27875,151.866 c 0.0923,-0.0252 0.18425,-0.0513 0.27598,-0.078", + "fill": { + "paint": "transparent" + }, + "id": "path4624", + "name": "path4624", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 96.91542,152.47186 c 0.0648,0 0.12888,-4.1e-4 0.19336,-0.002", + "fill": { + "paint": "transparent" + }, + "id": "path4625", + "name": "path4625", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 96.42414,152.46361 c 0.16372,0.005 0.32749,0.008 0.49128,0.008", + "fill": { + "paint": "transparent" + }, + "id": "path4626", + "name": "path4626", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 96.43438,152.40156 c 0.22466,0.0107 0.44966,0.0161 0.67472,0.016", + "fill": { + "paint": "transparent" + }, + "id": "path4627", + "name": "path4627", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 97.37828,152.34225 c 0.052,5.2e-4 0.10387,5.7e-4 0.15571,5.6e-4", + "fill": { + "paint": "transparent" + }, + "id": "path4628", + "name": "path4628", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 94.9383,134.94261 c -0.008,0.0671 -0.008,0.13431 -0.008,0.20156", + "fill": { + "paint": "transparent" + }, + "id": "path4631", + "name": "path4631", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 94.93015,135.14417 c 8e-5,0.0371 0.009,0.0738 0.0263,0.10701", + "fill": { + "paint": "transparent" + }, + "id": "path4633", + "name": "path4633", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 101.80616,58.852759 c 0.0575,-0.05545 0.11449,-0.111567 0.17041,-0.168468", + "fill": { + "paint": "transparent" + }, + "id": "path4814", + "name": "path4814", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 101.95612,58.705058 c 0.0263,-0.02685 0.0527,-0.05395 0.0791,-0.08111", + "fill": { + "paint": "transparent" + }, + "id": "path4815", + "name": "path4815", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 92.53931,61.204162 c 0.0424,0.01546 0.0843,0.03046 0.1269,0.04509", + "fill": { + "paint": "transparent" + }, + "id": "path4821", + "name": "path4821", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 90.20034,59.344864 c 0,0.0067 0.008,0.01381 0.012,0.02063", + "fill": { + "paint": "transparent" + }, + "id": "path4822", + "name": "path4822", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 95.50022,52.872621 c -0.008,-0.003 -0.0128,-0.006 -0.02,-0.008", + "fill": { + "paint": "transparent" + }, + "id": "path4828", + "name": "path4828", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 93.23962,52.201055 c -0.008,0.0052 -0.0128,0.008 -0.02,0.01252", + "fill": { + "paint": "transparent" + }, + "id": "path4832", + "name": "path4832", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 102.9077,57.542513 c 0.036,-0.0544 0.0711,-0.109092 0.10547,-0.164343", + "fill": { + "paint": "transparent" + }, + "id": "path4839", + "name": "path4839", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 103.57387,56.220877 c 0.0136,-0.03954 0.0272,-0.07931 0.04,-0.119138", + "fill": { + "paint": "transparent" + }, + "id": "path4840", + "name": "path4840", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 103.55654,56.26939 c 0.0192,-0.0541 0.0384,-0.108386 0.0559,-0.163", + "fill": { + "paint": "transparent" + }, + "id": "path4841", + "name": "path4841", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 103.61422,56.101739 c 0.0121,-0.03669 0.0232,-0.07352 0.0343,-0.110353", + "fill": { + "paint": "transparent" + }, + "id": "path4842", + "name": "path4842", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 103.6127,56.10639 c 0.0383,-0.118357 0.0727,-0.238005 0.10236,-0.358711", + "fill": { + "paint": "transparent" + }, + "id": "path4843", + "name": "path4843", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 103.84448,54.674651 c 4.8e-4,0.05447 -1.6e-4,0.108971 0,0.163456", + "fill": { + "paint": "transparent" + }, + "id": "path4845", + "name": "path4845", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 103.68493,53.612831 c -0.012,-0.0391 -0.0248,-0.07801 -0.0376,-0.116611", + "fill": { + "paint": "transparent" + }, + "id": "path4846", + "name": "path4846", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 103.6473,53.49622 c -0.008,-0.02281 -0.016,-0.04577 -0.024,-0.06849", + "fill": { + "paint": "transparent" + }, + "id": "path4847", + "name": "path4847", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 103.62309,53.427803 c -0.0311,-0.08482 -0.0655,-0.168492 -0.10258,-0.250911", + "fill": { + "paint": "transparent" + }, + "id": "path4848", + "name": "path4848", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 103.5205,53.177087 c 0,-0.006 -0.008,-0.01275 -0.009,-0.01906", + "fill": { + "paint": "transparent" + }, + "id": "path4849", + "name": "path4849", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 99.23836,60.6114 c 0.37399,-0.178584 0.73609,-0.378865 1.08404,-0.599696", + "fill": { + "paint": "transparent" + }, + "id": "path4851", + "name": "path4851", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 100.13041,60.130602 c 0.0631,-0.03849 0.12671,-0.07751 0.18943,-0.117315", + "fill": { + "paint": "transparent" + }, + "id": "path4852", + "name": "path4852", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 100.3224,60.011704 c 0.008,-0.0052 0.0128,-0.008 0.02,-0.01252", + "fill": { + "paint": "transparent" + }, + "id": "path4853", + "name": "path4853", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 100.34221,59.999121 c 0.0751,-0.04779 0.149,-0.09644 0.22244,-0.146186", + "fill": { + "paint": "transparent" + }, + "id": "path4854", + "name": "path4854", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 100.56465,59.852935 c 0.0801,-0.0541 0.15929,-0.109369 0.23752,-0.16573", + "fill": { + "paint": "transparent" + }, + "id": "path4855", + "name": "path4855", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 100.17314,18.477116 c -0.0247,0.0762 -0.0472,0.152987 -0.0679,0.230335", + "fill": { + "paint": "transparent" + }, + "id": "path4856", + "name": "path4856", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 103.96537,41.753707 c -4.7e-4,0.01087 0,0.02191 0,0.03294", + "fill": { + "paint": "transparent" + }, + "id": "path4862", + "name": "path4862", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 103.96506,41.752851 c 0,0.01132 2.3e-4,0.02243 3.9e-4,0.03377", + "fill": { + "paint": "transparent" + }, + "id": "path4863", + "name": "path4863", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 103.69955,41.621311 c 0.0312,0.101995 0.0719,0.20119 0.12097,0.296544", + "fill": { + "paint": "transparent" + }, + "id": "path4864", + "name": "path4864", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 95.56126,47.236466 c 0.0287,0.0067 0.0575,0.01222 0.087,0.0168", + "fill": { + "paint": "transparent" + }, + "id": "path4865", + "name": "path4865", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 95.47274,47.213169 c 0.0295,0.009 0.0583,0.0165 0.0885,0.02334", + "fill": { + "paint": "transparent" + }, + "id": "path4866", + "name": "path4866", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 89.92861,160.4328 c -0.008,0.0333 -0.009,0.0665 -0.0128,0.0997", + "fill": { + "paint": "transparent" + }, + "id": "path4868", + "name": "path4868", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 114.61707,142.66004 c -0.0877,-0.42053 -0.21733,-0.83224 -0.38702,-1.22959", + "fill": { + "paint": "transparent" + }, + "id": "path4869", + "name": "path4869", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 114.23005,141.43045 c -0.0224,-0.0521 -0.0448,-0.1037 -0.0687,-0.15513", + "fill": { + "paint": "transparent" + }, + "id": "path4870", + "name": "path4870", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 114.16117,141.27532 c -0.0424,-0.0917 -0.0866,-0.18261 -0.13311,-0.27251", + "fill": { + "paint": "transparent" + }, + "id": "path4871", + "name": "path4871", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 111.53576,142.5927 c -0.19631,-0.18513 -0.4054,-0.35776 -0.62576,-0.51678", + "fill": { + "paint": "transparent" + }, + "id": "path4872", + "name": "path4872", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 111.43293,142.89309 c -0.0767,-0.0717 -0.15579,-0.14146 -0.23657,-0.20916", + "fill": { + "paint": "transparent" + }, + "id": "path4873", + "name": "path4873", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 57.053932,150.68972 c -0.442251,1.36966 -0.847394,2.74987 -1.215029,4.13917", + "fill": { + "paint": "transparent" + }, + "id": "path4980", + "name": "path4980", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 57.473406,150.43316 c -0.474285,1.45356 -0.905614,2.9194 -1.293486,4.39573", + "fill": { + "paint": "transparent" + }, + "id": "path4981", + "name": "path4981", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 57.632481,150.38432 c -0.475065,1.45607 -0.906974,2.92442 -1.295245,4.40341", + "fill": { + "paint": "transparent" + }, + "id": "path4982", + "name": "path4982", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 57.729382,150.29167 c -0.475425,1.45594 -0.907319,2.92434 -1.295052,4.40341", + "fill": { + "paint": "transparent" + }, + "id": "path4983", + "name": "path4983", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 57.9203,150.23309 c -0.474639,1.45339 -0.905721,2.91919 -1.292773,4.39574", + "fill": { + "paint": "transparent" + }, + "id": "path4984", + "name": "path4984", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 54.831362,160.52468 c 0.01713,0.18383 0.03492,0.36762 0.05351,0.5513", + "fill": { + "paint": "transparent" + }, + "id": "path4985", + "name": "path4985", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 124.97784,118.06941 c 0.012,0.003 0.024,0.005 0.0359,0.007", + "fill": { + "paint": "transparent" + }, + "id": "path5003", + "name": "path5003", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 142.50954,49.074463 c -0.0464,-0.01974 -0.0932,-0.03895 -0.14007,-0.05784", + "fill": { + "paint": "transparent" + }, + "id": "path5106", + "name": "path5106", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 147.18118,49.990143 c 0.012,0.003 0.0239,0.0052 0.0359,0.0067", + "fill": { + "paint": "transparent" + }, + "id": "path5130", + "name": "path5130", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 142.35213,49.094376 c 0.008,0.01215 0.0144,0.02334 0.0232,0.03376", + "fill": { + "paint": "transparent" + }, + "id": "path5134", + "name": "path5134", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 111.32954,39.49062 c -3.2e-4,-0.01635 0,-0.03263 0,-0.04907", + "fill": { + "paint": "transparent" + }, + "id": "path5139", + "name": "path5139", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 111.59217,38.560288 c -0.008,-0.01891 -0.0152,-0.03796 -0.0232,-0.05657", + "fill": { + "paint": "transparent" + }, + "id": "path5145", + "name": "path5145", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 110.25022,38.886048 c -0.0184,-0.0129 -0.0367,-0.02551 -0.0559,-0.03796", + "fill": { + "paint": "transparent" + }, + "id": "path5147", + "name": "path5147", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 107.81672,39.767919 c 2.4e-4,0.0067 4.9e-4,0.01433 0,0.02153", + "fill": { + "paint": "transparent" + }, + "id": "path5151", + "name": "path5151", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 105.33409,3.763241 c -0.0136,0.02929 -0.0264,0.05859 -0.0391,0.08798", + "fill": { + "paint": "transparent" + }, + "id": "path5172", + "name": "path5172", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 105.29469,3.851224 c -0.0192,0.04376 -0.0383,0.08762 -0.0575,0.13159", + "fill": { + "paint": "transparent" + }, + "id": "path5173", + "name": "path5173", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 148.07547,48.6115 c 0.0144,-0.04816 0.0271,-0.09644 0.04,-0.144941", + "fill": { + "paint": "transparent" + }, + "id": "path5218", + "name": "path5218", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 148.03744,48.734554 c 0.0137,-0.04074 0.0263,-0.08181 0.0384,-0.123054", + "fill": { + "paint": "transparent" + }, + "id": "path5219", + "name": "path5219", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 147.63987,48.005082 c 0,-0.03203 0.008,-0.0643 0.0108,-0.09654", + "fill": { + "paint": "transparent" + }, + "id": "path5220", + "name": "path5220", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 147.80358,48.346769 c 0.0184,-0.09073 0.0335,-0.181915 0.0464,-0.273547", + "fill": { + "paint": "transparent" + }, + "id": "path5221", + "name": "path5221", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 144.64477,46.490787 c 0.0328,-0.0448 0.0623,-0.09103 0.0896,-0.138938", + "fill": { + "paint": "transparent" + }, + "id": "path5235", + "name": "path5235", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 144.73442,46.351849 c 0.0223,-0.03924 0.0424,-0.07982 0.0599,-0.121059", + "fill": { + "paint": "transparent" + }, + "id": "path5236", + "name": "path5236", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 144.79426,46.23079 c 0.008,-0.01275 0.0108,-0.02544 0.016,-0.03834", + "fill": { + "paint": "transparent" + }, + "id": "path5237", + "name": "path5237", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 148.94947,41.255743 c -0.0623,-0.02754 -0.12768,-0.04884 -0.19488,-0.06347", + "fill": { + "paint": "transparent" + }, + "id": "path5238", + "name": "path5238", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 148.5614,34.504761 c -0.012,-0.01006 -0.0247,-0.01973 -0.0376,-0.02904", + "fill": { + "paint": "transparent" + }, + "id": "path5239", + "name": "path5239", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 153.88358,26.127038 c -0.0623,-0.0276 -0.12769,-0.04884 -0.19479,-0.06347", + "fill": { + "paint": "transparent" + }, + "id": "path5263", + "name": "path5263", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 105.65998,3.808484 c -0.0802,0.186715 -0.15971,0.373687 -0.23856,0.560911", + "fill": { + "paint": "transparent" + }, + "id": "path5315", + "name": "path5315", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 105.12203,4.256149 c -0.60457,1.43913 -1.16992,2.892742 -1.69564,4.359413", + "fill": { + "paint": "transparent" + }, + "id": "path5316", + "name": "path5316", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 105.81434,3.771978 c -0.70229,1.634515 -1.35273,3.28859 -1.95044,4.960025", + "fill": { + "paint": "transparent" + }, + "id": "path5317", + "name": "path5317", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 105.42142,4.369395 c -0.60139,1.426843 -1.16315,2.868304 -1.68504,4.322962", + "fill": { + "paint": "transparent" + }, + "id": "path5318", + "name": "path5318", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 103.42639,8.615562 c -0.18568,0.518268 -0.36633,1.038158 -0.54179,1.559613", + "fill": { + "paint": "transparent" + }, + "id": "path5319", + "name": "path5319", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 102.8846,10.175175 c -0.0826,0.245515 -0.16402,0.491377 -0.24432,0.73759", + "fill": { + "paint": "transparent" + }, + "id": "path5320", + "name": "path5320", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 105.90758,3.689014 c -1.00006,2.322708 -1.89267,4.685727 -2.6751,7.082244", + "fill": { + "paint": "transparent" + }, + "id": "path5321", + "name": "path5321", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 106.09294,3.645212 c -0.99807,2.317855 -1.88875,4.675931 -2.66958,7.067474", + "fill": { + "paint": "transparent" + }, + "id": "path5322", + "name": "path5322", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 103.73638,8.692357 c -0.18775,0.523909 -0.37007,1.049542 -0.54697,1.576827", + "fill": { + "paint": "transparent" + }, + "id": "path5323", + "name": "path5323", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 103.8639,8.732003 c -0.25279,0.70755 -0.49552,1.418243 -0.72834,2.131917", + "fill": { + "paint": "transparent" + }, + "id": "path5324", + "name": "path5324", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 103.18941,10.269184 c -0.0719,0.214256 -0.14293,0.428786 -0.21293,0.643581", + "fill": { + "paint": "transparent" + }, + "id": "path5325", + "name": "path5325", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 92.15869,45.684665 c 0.081,-0.108401 0.16163,-0.217036 0.24201,-0.325879", + "fill": { + "paint": "transparent" + }, + "id": "path5326", + "name": "path5326", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 160.37264,10.912765 c 0.31871,-0.976754 0.6188,-1.958882 0.89996,-2.945886", + "fill": { + "paint": "transparent" + }, + "id": "path5327", + "name": "path5327", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 160.03635,10.912765 c 0.32695,-1.002417 0.63365,-2.010635 0.92,-3.024156", + "fill": { + "paint": "transparent" + }, + "id": "path5328", + "name": "path5328", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 160.95085,11.110041 c 0.2504,-0.767713 0.48897,-1.538868 0.7154,-2.313236", + "fill": { + "paint": "transparent" + }, + "id": "path5329", + "name": "path5329", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 159.63383,10.771258 c 0.39301,-1.20475 0.75662,-2.417979 1.09052,-3.63865", + "fill": { + "paint": "transparent" + }, + "id": "path5330", + "name": "path5330", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 159.8267,10.86392 c 0.39781,-1.218612 0.76526,-2.445907 1.1021,-3.680902", + "fill": { + "paint": "transparent" + }, + "id": "path5331", + "name": "path5331", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 161.2726,7.966879 c 0.37223,-1.304998 0.70995,-2.618565 1.01301,-3.939499", + "fill": { + "paint": "transparent" + }, + "id": "path5332", + "name": "path5332", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 159.38215,10.712665 c 0.46389,-1.4206 0.88622,-2.853051 1.26645,-4.295769", + "fill": { + "paint": "transparent" + }, + "id": "path5333", + "name": "path5333", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 161.6752,8.766145 c 0.4427,-1.515363 0.83796,-3.042863 1.18487,-4.580461", + "fill": { + "paint": "transparent" + }, + "id": "path5334", + "name": "path5334", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 160.95635,7.888609 c 0.38152,-1.351155 0.72515,-2.711696 1.03051,-4.080148", + "fill": { + "paint": "transparent" + }, + "id": "path5335", + "name": "path5335", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 160.72435,7.132608 c 0.31199,-1.141637 0.59666,-2.289783 0.85393,-3.443594", + "fill": { + "paint": "transparent" + }, + "id": "path5336", + "name": "path5336", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 160.9288,7.183018 c 0.30864,-1.13087 0.59035,-2.268162 0.84507,-3.41104", + "fill": { + "paint": "transparent" + }, + "id": "path5337", + "name": "path5337", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 160.6486,6.416896 c 0.24257,-0.919908 0.46733,-1.84394 0.67394,-2.771662", + "fill": { + "paint": "transparent" + }, + "id": "path5338", + "name": "path5338", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 105.23741,3.982814 c -0.008,0.01484 -0.0128,0.02967 -0.0192,0.04459", + "fill": { + "paint": "transparent" + }, + "id": "path5358", + "name": "path5358", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 107.36722,1.5305251 c -0.0407,0.045794 -0.0804,0.09225 -0.11929,0.1393172", + "fill": { + "paint": "transparent" + }, + "id": "path5390", + "name": "path5390", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 107.2739,1.4936782 c -0.0751,0.080403 -0.14821,0.1629235 -0.21828,0.2474765", + "fill": { + "paint": "transparent" + }, + "id": "path5391", + "name": "path5391", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 107.19297,1.482171 c -0.0328,0.030813 -0.0655,0.062077 -0.0974,0.093772", + "fill": { + "paint": "transparent" + }, + "id": "path5392", + "name": "path5392", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 107.23787,1.4406555 c -0.0152,0.013789 -0.0303,0.027549 -0.0448,0.041488", + "fill": { + "paint": "transparent" + }, + "id": "path5393", + "name": "path5393", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 107.11698,1.2647278 c -0.0503,0.040126 -0.0994,0.081305 -0.14749,0.123602", + "fill": { + "paint": "transparent" + }, + "id": "path5394", + "name": "path5394", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "M 132.3341,2.40678 C 132.2902,2.33804 132.2444,2.270197 132.19749,2.203212", + "fill": { + "paint": "transparent" + }, + "id": "path5412", + "name": "path5412", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 133.0674,3.337506 c -0.008,-0.01211 -0.012,-0.02385 -0.0192,-0.03513", + "fill": { + "paint": "transparent" + }, + "id": "path5413", + "name": "path5413", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 139.95211,3.679287 c 0.0368,-0.03838 0.0735,-0.07709 0.10966,-0.116136", + "fill": { + "paint": "transparent" + }, + "id": "path5414", + "name": "path5414", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 127.40728,3.563151 c 0.13358,0.487751 0.36864,0.945328 0.69118,1.345929", + "fill": { + "paint": "transparent" + }, + "id": "path5415", + "name": "path5415", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 108.68895,0.5209073 c -0.0304,0.013168 -0.0599,0.026798 -0.09,0.040958", + "fill": { + "paint": "transparent" + }, + "id": "path5416", + "name": "path5416", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 133.14618,3.638648 c 0.008,0.006 0.0144,0.01212 0.0216,0.01793", + "fill": { + "paint": "transparent" + }, + "id": "path5417", + "name": "path5417", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 166.44775,2.497898 c -0.0108,-0.02044 -0.0223,-0.04081 -0.0343,-0.0611", + "fill": { + "paint": "transparent" + }, + "id": "path5499", + "name": "path5499", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 162.28561,4.02738 c 0.0199,-0.08781 0.0392,-0.175859 0.0568,-0.264139", + "fill": { + "paint": "transparent" + }, + "id": "path5502", + "name": "path5502", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 162.86007,4.185707 c 0.0223,-0.08929 0.044,-0.178865 0.0639,-0.26871", + "fill": { + "paint": "transparent" + }, + "id": "path5503", + "name": "path5503", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 143.23188,0.3274619 c -0.0311,0.00381 -0.0632,0.00911 -0.0939,0.015372", + "fill": { + "paint": "transparent" + }, + "id": "path5504", + "name": "path5504", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 143.37665,0.3178774 c -0.0479,3.485e-4 -0.0968,0.0038 -0.14477,0.00961", + "fill": { + "paint": "transparent" + }, + "id": "path5505", + "name": "path5505", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 164.74946,0.9591194 c -0.0639,0.0015 -0.12776,0.010745 -0.18959,0.026948", + "fill": { + "paint": "transparent" + }, + "id": "path5506", + "name": "path5506", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 141.48015,1.4889175 c -0.0127,0.012788 -0.024,0.026417 -0.0342,0.040878", + "fill": { + "paint": "transparent" + }, + "id": "path5507", + "name": "path5507", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 141.62046,1.6198699 c 0.0631,-0.086131 0.1255,-0.172537 0.18767,-0.259195", + "fill": { + "paint": "transparent" + }, + "id": "path5508", + "name": "path5508", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 117.68262,152.49333 c -0.51261,1.57246 -1.02195,3.1459 -1.52786,4.72036", + "fill": { + "paint": "transparent" + }, + "id": "path5509", + "name": "path5509", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 164.72853,8.278583 c -0.51781,1.563774 -1.03203,3.12858 -1.54271,4.694409", + "fill": { + "paint": "transparent" + }, + "id": "path5510", + "name": "path5510", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 101.49752,14.088358 0.008,-0.01908 0.009,-0.01885 0.01,-0.01847 0.0112,-0.01794 v -0.0015 l 0.0121,-0.01718 0.0136,-0.01635 0.0144,-0.01567 0.016,-0.01484 0.0168,-0.01393 0.0176,-0.01294 0.0184,-0.01188 0.0192,-0.01082 0.0184,-0.009 0.0208,-0.0085 0.0208,-0.0075 0.0216,-0.006 0.0216,-0.0045 0.0224,-0.003 0.0224,-0.0023 0.0216,-6.83e-4", + "fill": { + "paint": "transparent" + }, + "id": "path6531", + "name": "path6531", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 101.11377,15.265037 -0.008,0.01954 v 0.01271 0.02 0.02005 l -5e-4,0.02005 5e-4,0.01982 v 0.01977 0.01971 l 0.008,0.01949 0.008,0.01336 0.008,0.01869 0.009,0.01801", + "fill": { + "paint": "transparent" + }, + "id": "path6535", + "name": "path6535", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 101.68168,14.000822 v 2.2e-5 l -0.0216,7.39e-4 -0.0208,0.0023 -0.02,0.003 -0.008,0.0015 -0.0176,0.0045 -0.016,0.0053 -0.0144,0.006 -0.009,0.0045 -0.012,0.0075 -0.0103,0.0077 -0.009,0.0082 -0.008,0.0068 -0.008,0.0094 -0.008,0.0097 v 0.0098", + "fill": { + "paint": "transparent" + }, + "id": "path6539", + "name": "path6539", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 101.68168,14.000822 v -0.0068 -0.006 l 0.008,-0.006 0.008,-0.0053 0.008,-0.0053 v -7.37e-4 l 0.008,-0.0038 0.008,-0.003 0.008,-0.0023 0.008,-0.0015 0.008,-5.07e-4", + "fill": { + "paint": "transparent" + }, + "id": "path6542", + "name": "path6542", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 85.35212,63.592908 -0.0079,0.01943 v 0.01276 0.01996 0.02003 l -5e-4,0.02003 v 0.01981 0.01973 0.01973 l 0.008,0.01943 0.008,0.01336 0.008,0.01861 0.0088,0.01801", + "fill": { + "paint": "transparent" + }, + "id": "path6665", + "name": "path6665", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 142.2482,48.706689 -0.008,0.01944 v 0.01267 0.01996 0.02011 l -4.9e-4,0.01996 v 0.01981 0.01974 0.01973 l 0.008,0.01944 0.008,0.01336 0.008,0.01861 0.008,0.018", + "fill": { + "paint": "transparent" + }, + "id": "path6707", + "name": "path6707", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 142.77326,47.896928 -0.0223,5.7e-4 -0.0223,0.0022 -0.0223,0.003 -0.0216,0.0052 -0.0208,0.006 -0.0208,0.008 -0.0208,0.008 -0.0192,0.009 -0.0192,0.0108 -0.0184,0.01185 -0.0175,0.0129 -0.0168,0.01396 -0.016,0.01486 -0.0144,0.0156 -0.0137,0.01635 -0.012,0.01725 v 0.0022 l -0.0108,0.01793 -0.01,0.01846 -0.008,0.01884 -0.008,0.01906", + "fill": { + "paint": "transparent" + }, + "id": "path6708", + "name": "path6708", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 147.65377,48.065367 -0.01,-0.0174 -0.0108,-0.01695 v -0.0052 l -0.0127,-0.01605 -0.0137,-0.015 -0.0151,-0.01411 -0.0161,-0.01336 -0.0168,-0.0123 -0.008,-0.003 -0.0175,-0.01087 -0.0184,-0.01005 -0.0192,-0.009 -0.0199,-0.008 -0.0199,-0.006 -0.008,-5.63e-4 -0.0208,-0.0052 -0.0215,-0.0037 -0.0215,-0.0022 -0.0215,-5.72e-4 v 0", + "fill": { + "paint": "transparent" + }, + "id": "path6709", + "name": "path6709", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 143.51,49.595351 -0.0799,-0.04967 -0.0811,-0.04876 -0.0759,-0.04457 -0.0832,-0.04704 -0.0846,-0.04614 -0.0858,-0.04539 -0.087,-0.04435 -0.0882,-0.04337 -0.0892,-0.04239 -0.0903,-0.04164 -0.0915,-0.04067 -0.0639,-0.02724", + "fill": { + "paint": "transparent" + }, + "id": "path6710", + "name": "path6710", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 143.64927,49.259146 -0.008,0.02243 -0.008,0.02394 -0.008,0.02566 v 0.02116 0.02941 0.02971 0.03016 l 4.9e-4,0.01485 v 0.01861 0.02836 l 0.008,0.02694 0.008,0.02574 0.008,0.02206 0.008,0.02116 5e-4,0.0022 0.008,0.01824 0.008,0.01628", + "fill": { + "paint": "transparent" + }, + "id": "path6711", + "name": "path6711", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 143.66715,49.636007 v -3e-5 l -0.0168,-5.09e-4 -0.0168,-0.0022 -0.0168,-0.0022 -0.016,-0.003 -0.016,-0.0037 -0.012,-0.0037 -0.0161,-0.0052 -0.0151,-0.006 -0.0144,-0.0067 -0.0144,-0.008", + "fill": { + "paint": "transparent" + }, + "id": "path6712", + "name": "path6712", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 143.51,49.595351 -0.008,-0.01252 -0.008,-0.01366 v -0.0147 -0.01568 -0.01673 l -7e-5,-0.0037 3.9e-4,-0.01771 v -0.01846 -0.009 -0.01981 l 0.008,-0.02026 v -0.0067 l 0.008,-0.02093 0.008,-0.02071 0.0108,-0.02063 0.012,-0.02041 0.008,-0.01072 0.008,-0.01006 0.0144,-0.01921 0.0151,-0.01816 0.0161,-0.0171 0.0168,-0.0159", + "fill": { + "paint": "transparent" + }, + "id": "path6713", + "name": "path6713", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 146.93078,49.217123 0.024,5.63e-4 0.0239,0.0022 0.0248,0.003 0.0256,0.0052 0.008,0.0022 0.008,0.0022 0.0256,0.0067 0.0247,0.008 0.0239,0.009 0.0232,0.01042 0.0108,0.0052 0.0208,0.01132 0.0192,0.01177 0.0175,0.01252 0.0161,0.01313 0.0136,0.01207 0.0127,0.01306 0.0108,0.0129 0.008,0.0129 0.008,0.0129", + "fill": { + "paint": "transparent" + }, + "id": "path6714", + "name": "path6714", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 147.27794,49.383859 -0.008,0.01725 -0.008,0.01725 -0.01,0.01725 -0.0108,0.01725 -0.0127,0.01703 -0.008,0.01044 -0.0151,0.01665 -0.016,0.01613 -0.0175,0.01553 -0.0192,0.01478 -0.0199,0.01403 -0.008,0.0052 -0.0216,0.01313 -0.008,0.0022 -0.0223,0.01162 -0.0232,0.01043 -0.0239,0.009 -0.024,0.008 -0.008,0.0022 -0.024,0.006 -0.0239,0.0052 -0.0239,0.003 -0.0232,0.0022 -0.0232,5.7e-4", + "fill": { + "paint": "transparent" + }, + "id": "path6715", + "name": "path6715", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 146.88277,49.636007 -0.008,-0.01635 -0.008,-0.01824 -5.1e-4,-0.0022 -0.008,-0.02116 -0.008,-0.02206 -0.008,-0.02574 -0.008,-0.02694 v -0.02837 -0.01861 l -5e-4,-0.01486 v -0.03023 -0.02971 -0.02941 -0.02116 l 0.008,-0.02566 0.008,-0.02394 0.008,-0.02243", + "fill": { + "paint": "transparent" + }, + "id": "path6716", + "name": "path6716", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 146.93078,49.217123 v 0.0067 0.006 l -0.008,0.006 -0.008,0.0052 -0.008,0.0052 v 5.7e-4 l -0.008,0.0037 -0.008,0.003 -0.008,0.0022 -0.008,0.0022 -0.008,4.81e-4", + "fill": { + "paint": "transparent" + }, + "id": "path6717", + "name": "path6717", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 147.66169,48.207186 -0.008,-0.0129 -0.008,-0.0129 -0.0108,-0.0129 -0.0127,-0.01291 -0.0137,-0.01215 -0.016,-0.01313 -0.0175,-0.01252 -0.0192,-0.01177 -0.0208,-0.01132 -0.0108,-0.0052 -0.0232,-0.01043 -0.0239,-0.009 -0.0247,-0.008 -0.0256,-0.0067 -0.008,-0.0022 -0.008,-0.0022 -0.0256,-0.0052 -0.0247,-0.003 -0.0239,-0.0022 -0.024,-5.78e-4", + "fill": { + "paint": "transparent" + }, + "id": "path6718", + "name": "path6718", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 147.27619,47.998411 v -0.0052 l 0.008,-0.01297 0.008,-0.01276 0.008,-0.01252 0.008,-0.01001 0.008,-0.01185 0.008,-0.01042 v -0.0037 l 0.008,-0.008 0.008,-0.0037 0.008,-0.0052 v -5.7e-4 l 0.008,-0.003 0.008,-0.0022 0.008,-5.63e-4", + "fill": { + "paint": "transparent" + }, + "id": "path6719", + "name": "path6719", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 142.2482,48.706689 0.008,-0.01005 0.008,-0.01006 0.008,-0.009 0.008,-0.0067 0.008,-0.008 0.0108,-0.008 0.012,-0.008 0.008,-0.0052 0.0144,-0.006 0.016,-0.0052 0.0175,-0.0052 0.008,-0.0022 0.0199,-0.003 0.0208,-0.0022 v -2.26e-4 l 0.0216,-5.71e-4", + "fill": { + "paint": "transparent" + }, + "id": "path6720", + "name": "path6720", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 143.64927,49.259146 v -2.3e-5 -1.34e-4 -2.84e-4 l -5e-4,-1.13e-4 v -4.36e-4 -5.63e-4 -5.69e-4 -5.78e-4 -5.63e-4 -0.0022 -0.0022", + "fill": { + "paint": "transparent" + }, + "id": "path6721", + "name": "path6721", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 143.62313,49.252394 -0.0809,-0.05049 -0.0822,-0.04959 -0.0835,-0.04854 -0.0295,-0.0168 -0.0849,-0.04734 -0.0861,-0.04636 -0.0874,-0.0457 -0.0884,-0.0448 -0.0897,-0.04375 -0.0908,-0.04284 -0.0921,-0.04194 -0.0932,-0.04089 -0.0942,-0.03984 -0.0891,-0.03639", + "fill": { + "paint": "transparent" + }, + "id": "path6722", + "name": "path6722", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 142.45089,48.657598 v -5.72e-4 l -0.008,-0.0022 v -0.003 -0.0022 -0.0037 -0.0037 l -5e-4,-0.0022 v -0.0052 l -5e-4,-0.0052 v -0.003 l 5e-4,-0.0052 v -0.0052", + "fill": { + "paint": "transparent" + }, + "id": "path6723", + "name": "path6723", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 142.77326,47.896928 -0.008,5.7e-4 -0.008,0.0022 -0.008,0.003 v 5.71e-4 l -0.008,0.0052 -0.008,0.0037 -0.008,0.008 v 0.0037 l -0.008,0.01043 -0.008,0.009 -0.008,0.01222 v 0.0037 l -0.008,0.0126 -0.008,0.01291 -0.008,0.01312", + "fill": { + "paint": "transparent" + }, + "id": "path6724", + "name": "path6724", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 142.62099,48.040434 v 2.3e-5 l -0.0215,5.85e-4 -0.0208,0.0022 -0.0199,0.003 -0.008,0.0022 -0.0175,0.0052 -0.016,0.0052 -0.0144,0.006 -0.01,0.0052 -0.012,0.008 -0.0108,0.008 -0.008,0.008 -0.008,0.0067 -0.008,0.009 -0.008,0.01002 v 0.01005", + "fill": { + "paint": "transparent" + }, + "id": "path6725", + "name": "path6725", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 142.62099,48.040434 v -0.0067 -0.006 l 0.008,-0.006 0.008,-0.0052 0.008,-0.0052 v -5.62e-4 l 0.008,-0.0037 0.008,-0.003 0.008,-0.0022 0.008,-0.0022 0.008,-4.79e-4", + "fill": { + "paint": "transparent" + }, + "id": "path6726", + "name": "path6726", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 147.65377,48.065367 0.008,0.01087 0.008,0.01373 v 0.01403 0.01433 0.01455 l 1.4e-4,0.0022 1e-4,0.01455 v 0.01456 0.01433 0.01418 l -0.008,0.01396", + "fill": { + "paint": "transparent" + }, + "id": "path6727", + "name": "path6727", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 142.36947,49.016632 v -5.71e-4 l -0.0127,-0.006 -0.0127,-0.0067 -0.012,-0.008 -0.0108,-0.008 -0.0108,-0.009 -0.008,-0.008 -0.01,-0.01001 -0.008,-0.01073 -0.008,-0.01132 -0.008,-0.01177", + "fill": { + "paint": "transparent" + }, + "id": "path6728", + "name": "path6728", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 147.27619,47.998411 0.008,2.41e-4 0.008,5.7e-4 0.008,0.0022 v 0.0022 l 0.008,0.0037 0.008,0.0052 v 0.0052 0.003 0.006 l 4.9e-4,0.006 -2.4e-4,0.0037 v 0.0067", + "fill": { + "paint": "transparent" + }, + "id": "path6729", + "name": "path6729", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 142.45089,48.657598 -0.0144,0.0177 -0.0137,0.01906 -0.0127,0.02011 -0.012,0.02123 -0.008,0.008 v 0.006 l -0.0108,0.02273 -0.008,0.02297 -0.008,0.02312 -0.008,0.02334 v 0.0126 0.02183 0.02116 l -5e-4,0.02033 5e-4,0.01973 v 0.01815 0.01695 l 0.008,0.0156 0.008,0.01433 0.008,0.01321", + "fill": { + "paint": "transparent" + }, + "id": "path6730", + "name": "path6730", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 77.95102,86.285987 -0.008,0.01943 v 0.01276 0.01996 0.02003 l -4.98e-4,0.01996 v 0.01981 0.01974 0.01973 l 0.008,0.01943 0.0079,0.01336 0.008,0.01861 0.0088,0.01801", + "fill": { + "paint": "transparent" + }, + "id": "path6735", + "name": "path6735", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 70.549929,108.97907 -0.0053,0.0194 -0.0026,0.0127 -0.0026,0.0199 -0.002,0.02 -4.92e-4,0.0199 4.92e-4,0.0198 0.0026,0.0197 0.004,0.0197 0.0053,0.0194 0.004,0.0133 0.0072,0.0186 0.0086,0.018", + "fill": { + "paint": "transparent" + }, + "id": "path6827", + "name": "path6827", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 63.532578,130.49547 0.0072,-0.019 0.0083,-0.0188 0.0098,-0.0184 0.01105,-0.0179 0.002,-0.002 0.01232,-0.0172 0.01352,-0.0163 0.01472,-0.0156 0.01586,-0.0148 0.01686,-0.0139 0.01779,-0.0129 0.01873,-0.0118 0.01953,-0.0108 0.01879,-0.009 0.02073,-0.008 0.02119,-0.008 0.02119,-0.006 0.02199,-0.005 0.02205,-0.003 0.02205,-0.002 0.02199,-5.7e-4", + "fill": { + "paint": "transparent" + }, + "id": "path6915", + "name": "path6915", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 63.148796,131.67216 -0.0053,0.0194 -0.0034,0.0127 -0.0026,0.0199 -0.002,0.02 -4.98e-4,0.0199 4.98e-4,0.0198 0.0026,0.0197 0.004,0.0197 0.0047,0.0194 0.004,0.0133 0.0072,0.0186 0.0086,0.018", + "fill": { + "paint": "transparent" + }, + "id": "path6919", + "name": "path6919", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 66.998174,130.36589 0.002,-0.005 0.0047,-0.013 0.0053,-0.0128 0.0066,-0.0125 0.0053,-0.01 0.0072,-0.0118 0.008,-0.0104 0.0026,-0.004 0.008,-0.008 0.004,-0.004 0.0072,-0.005 0.002,-5.5e-4 0.008,-0.003 0.008,-0.002 0.0072,-5.7e-4", + "fill": { + "paint": "transparent" + }, + "id": "path6920", + "name": "path6920", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 63.716666,130.40792 -0.004,3e-5 -0.02192,5.5e-4 -0.02086,0.002 -0.01966,0.003 -0.0072,0.002 -0.01745,0.005 -0.01593,0.005 -0.01467,0.006 -0.009,0.005 -0.01189,0.008 -0.01021,0.008 -0.0089,0.008 -0.0066,0.007 -0.0066,0.009 -0.0053,0.01 -0.004,0.01", + "fill": { + "paint": "transparent" + }, + "id": "path6923", + "name": "path6923", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 63.86891,130.2644 -0.0072,5.7e-4 -0.008,0.002 -0.008,0.003 -0.002,5.6e-4 -0.0072,0.005 -0.0047,0.004 -0.0079,0.008 -0.0026,0.004 -0.008,0.0104 -0.0066,0.009 -0.0066,0.0122 -0.0026,0.004 -0.0053,0.0126 -0.0047,0.0129 -0.0047,0.0131", + "fill": { + "paint": "transparent" + }, + "id": "path6924", + "name": "path6924", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 63.716666,130.40792 0.0034,-0.007 0.004,-0.006 0.0053,-0.006 0.0066,-0.005 0.0072,-0.005 0.002,-5.6e-4 0.0072,-0.004 0.008,-0.003 0.008,-0.002 0.0082,-0.002 0.0083,-5.1e-4", + "fill": { + "paint": "transparent" + }, + "id": "path6926", + "name": "path6926", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 56.236869,159.24767 -0.03152,-0.064 -0.02919,-0.0654 -0.02672,-0.0667 -0.02419,-0.0677 -0.02059,-0.066 -0.01892,-0.0692 -0.01606,-0.0698 -0.01345,-0.0708 -0.01069,-0.0716 -0.008,-0.0723 -0.0053,-0.0729 -0.0026,-0.065 v -0.0736 l 0.0026,-0.0743 0.0053,-0.0747 0.0084,-0.0752 0.01141,-0.0754 0.01009,-0.0552 0.01632,-0.0755 0.01918,-0.0756 0.02205,-0.0757 0.02498,-0.0757 0.02791,-0.0755 0.01659,-0.0415 0.03232,-0.0753 0.03525,-0.0751 0.03824,-0.0748 0.04117,-0.0745 0.04404,-0.074 0.01632,-0.0262 0.04791,-0.0731 0.05077,-0.0724 0.05364,-0.0716 0.05631,-0.0708 0.05924,-0.0699 0.01141,-0.013 0.06243,-0.0688 0.06523,-0.0676 0.06775,-0.0664 0.0704,-0.0651 0.07286,-0.0638 0.07527,-0.0623 0.07756,-0.0606 0.07982,-0.0589 0.08182,-0.0571 0.0832,-0.0548", + "fill": { + "paint": "transparent" + }, + "id": "path7006", + "name": "path7006", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 57.991495,158.24882 0.02491,-0.0173 1.46e-4,-10e-5 0.02592,-0.0163 0.02672,-0.0151 0.02732,-0.014 0.02785,-0.0128 0.02832,-0.0114 0.02859,-0.0101 0.0072,-0.002 0.02872,-0.008 0.02878,-0.007 0.02872,-0.006 0.02859,-0.005 0.02845,-0.003 0.02825,-0.002 0.02785,-3.2e-4 0.01559,4.1e-4 0.02746,0.002 0.02712,0.003 0.02659,0.005 0.02586,0.005 0.02498,0.007 0.02419,0.008 0.02332,0.009 0.02132,0.009 0.02179,0.0111 0.02086,0.0121 0.01993,0.0131 0.01899,0.0141 0.01805,0.0151 0.017,0.0159 0.01579,0.0166", + "fill": { + "paint": "transparent" + }, + "id": "path7007", + "name": "path7007", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 59.521941,157.64567 -0.0072,-0.0203 -0.0066,-0.021 -0.0047,-0.0215 -0.0034,-0.022 -0.002,-0.0181 -5.01e-4,-0.0224 4.47e-4,-0.0222 0.002,-0.0222 0.0026,-0.0223 0.0047,-0.0224 0.0066,-0.0224 0.0072,-0.0224 0.0089,-0.0223 0.0066,-0.0143 0.01129,-0.0218 0.01272,-0.0216 0.01412,-0.0213 0.01559,-0.0208 0.017,-0.0205 0.01839,-0.0199 0.0066,-0.006 0.01999,-0.0191 0.02139,-0.0184 0.02252,-0.0177 0.02378,-0.017 0.02492,-0.0159 0.02586,-0.0151 5e-4,-4.2e-4", + "fill": { + "paint": "transparent" + }, + "id": "path7008", + "name": "path7008", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 60.670653,160.17023 -0.0851,0.0529 -0.08677,0.051 -0.0883,0.0491 -0.08974,0.0469 -0.09109,0.0448 -0.0923,0.0426 -0.05257,0.0232 -0.09402,0.0391 -0.09499,0.037 -0.06322,0.0231 -0.09573,0.0329 -0.09607,0.0302 -0.0963,0.0278 -0.09641,0.0252 -0.09647,0.0227 -0.09641,0.0202 -0.09627,0.0177 -0.09611,0.0152 -0.03997,0.005 -0.09523,0.0115 -0.09456,0.009 -0.09382,0.007 -0.09295,0.004 -0.04885,0.002 -0.09095,3.1e-4 -0.08964,-0.002 -0.08841,-0.005 -0.0872,-0.007 -0.03325,-0.003 -0.08549,-0.01 -0.08412,-0.0122 -0.08251,-0.0144 -0.08089,-0.0166 -0.07909,-0.0188 -0.07727,-0.0207 -0.07543,-0.0228 -0.07342,-0.0247 -0.07142,-0.0266", + "fill": { + "paint": "transparent" + }, + "id": "path7009", + "name": "path7009", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 57.443862,160.60458 -0.0072,-0.003 -0.05051,-0.0222 -0.04938,-0.0231 -0.04838,-0.0241 -0.04724,-0.025 -0.04598,-0.0259 -0.04485,-0.0268 -0.01246,-0.008 -0.04344,-0.028 -0.04237,-0.0289 -0.04124,-0.0298 -0.04004,-0.0305 -0.03884,-0.0314 -0.03764,-0.0321 -0.0144,-0.0128 -0.03612,-0.0332 -0.03484,-0.0341 -0.03365,-0.0348 -0.03238,-0.0355 -0.03125,-0.0361 -0.02985,-0.0368 -0.01279,-0.0164 -0.02832,-0.038 -0.02705,-0.0386 -0.02592,-0.0394 -0.02459,-0.0399 -0.02332,-0.0404 -0.02199,-0.041", + "fill": { + "paint": "transparent" + }, + "id": "path7010", + "name": "path7010", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 61.905336,157.28406 0.02812,0.0571 0.02586,0.0586 0.02346,0.0598 0.02105,0.0609 0.01859,0.0618 0.01439,0.0557 0.0136,0.063 0.01105,0.064 0.0085,0.0649 0.0066,0.0658 0.0034,0.0665 4.99e-4,0.0554 -0.002,0.0676 -0.004,0.0682 -0.0072,0.069 -0.0096,0.0695 -0.01232,0.07 -0.01009,0.048 -0.01706,0.0706 -0.01987,0.071 -0.02279,0.0712 -0.02558,0.0716 -0.02858,0.0718 -0.01566,0.0368 -0.03278,0.0719 -0.03565,0.0719 -0.03858,0.0717 -0.04151,0.0715 -0.04431,0.0713 -0.04744,0.0709 -0.05024,0.0707 -0.05317,0.0702 -0.05604,0.0697 -0.0589,0.069 -0.03165,0.0357 -0.06303,0.0679 -0.06564,0.0667 -0.06816,0.0656 -0.07062,0.0644 -0.07311,0.0631 -0.0755,0.0617 -0.07782,0.0604 -0.08017,0.0589 -0.08241,0.0574 -0.08462,0.0557 -0.004,0.003", + "fill": { + "paint": "transparent" + }, + "id": "path7011", + "name": "path7011", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 57.418256,156.18402 0.09583,-0.0592 0.09807,-0.0566 0.100158,-0.054 0.102115,-0.0513 0.0034,-0.002 0.103822,-0.0482 0.105226,-0.0452 0.106463,-0.0421 0.107485,-0.0389 0.108253,-0.0356 0.108806,-0.0323 0.109238,-0.0289 0.06991,-0.0167 0.10907,-0.0233 0.10895,-0.0199 0.108589,-0.0165 0.108313,-0.0131 0.107869,-0.01 0.0871,-0.005 0.106212,-0.004 0.105094,-3.8e-4 0.103821,0.003 0.10244,0.006 0.100999,0.009 0.0053,5.6e-4 0.09939,0.0125 0.09767,0.0156 0.09587,0.0186 0.09392,0.0216 0.09192,0.0246 0.08983,0.0273 0.02865,0.009 0.08728,0.0311 0.08515,0.0339 0.0829,0.0365 0.08047,0.0392 0.0779,0.0415 0.07534,0.0439 0.04211,0.0263 0.07167,0.0478 0.06919,0.0502 0.06656,0.0523 0.06376,0.0545 0.06091,0.0564 0.05796,0.0583 0.05531,0.0605 0.03738,0.0438 0.05077,0.0641 0.04778,0.0658 0.04464,0.0674 0.04144,0.0687 0.03811,0.0698", + "fill": { + "paint": "transparent" + }, + "id": "path7012", + "name": "path7012", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 57.108896,156.65929 0.03997,0.0404 0.04671,0.0476 0.04664,0.0477 0.04651,0.0477 0.04637,0.0479 0.0072,0.007 0.0463,0.048 0.04624,0.0481 0.04604,0.0481 0.04598,0.0482 0.04598,0.0483", + "fill": { + "paint": "transparent" + }, + "id": "path7013", + "name": "path7013", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 57.572699,157.13752 0.01081,0.0122 0.0096,0.0131 0.0047,0.008 0.0079,0.0141 0.0066,0.0147 0.0053,0.0155 0.004,0.0163 0.002,0.009 0.0026,0.0172 5e-4,0.0177 -4.8e-4,0.0184 -4.99e-4,0.008 -0.0026,0.0192 -0.004,0.0197 -0.0053,0.0202 -0.002,0.006 -0.0072,0.0209 -0.009,0.0211 -0.01057,0.0212 -0.01226,0.0214 -0.01392,0.0215 -0.01559,0.0215 -0.004,0.005 -0.0176,0.0215 -0.01899,0.0209 -0.02032,0.0204 -0.02165,0.0198 -0.02299,0.0192 -0.02079,0.0159", + "fill": { + "paint": "transparent" + }, + "id": "path7014", + "name": "path7014", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 58.020213,158.27665 0.02305,-0.0159 0.0072,-0.005 0.02419,-0.0145 0.02478,-0.0133 0.02532,-0.0121 0.02586,-0.0108 0.02618,-0.01 0.01319,-0.005 0.02618,-0.008 0.02612,-0.006 0.02592,-0.005 0.02586,-0.003 0.02551,-0.002 0.02525,-5.6e-4 0.01846,3.8e-4 0.02445,0.002 0.02391,0.003 0.02318,0.004 0.02239,0.005 0.02139,0.006 0.02045,0.008 0.0098,0.004 0.01925,0.009 0.01826,0.0101 0.01726,0.0111 0.0085,0.006 0.01579,0.0125 0.01472,0.0134 0.01352,0.0141", + "fill": { + "paint": "transparent" + }, + "id": "path7015", + "name": "path7015", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 59.738399,158.677 -0.01946,0.0171 -0.02072,0.0146 -0.02705,0.0155 -0.01918,0.009 -0.01399,0.006 -0.03424,0.0152 -0.03305,0.0174 -0.01306,0.008 -0.01105,0.007 -0.03405,0.0199 -0.03525,0.0179 -0.01177,0.005 -0.04763,0.0226 -0.0475,0.0227 -0.04785,0.022 -0.04844,0.0208 -0.09164,0.0368 -0.0066,0.002 -0.0026,5.7e-4 -0.09681,0.0352 -0.0026,5.7e-4 -0.09768,0.032 -0.0053,0.002 -0.09791,0.0283 -0.09792,0.025 -0.0079,0.002 -0.09772,0.0214 -0.09734,0.0179 -0.0094,0.002 -0.0967,0.0142 -0.09598,0.0109 -0.01141,5.6e-4 -0.09464,0.007 -0.09343,0.004 -0.03045,5.3e-4 -0.09119,-4.9e-4 -0.08948,-0.004 -0.08763,-0.007 -0.08577,-0.01 -0.03805,-0.005 -0.08256,-0.0141 -0.08027,-0.017 -0.0779,-0.0197 -0.07541,-0.0224 -0.02252,-0.008 -0.0712,-0.0255 -0.06807,-0.0277 -0.02019,-0.009 -0.06564,-0.0313 -0.0635,-0.0339 -0.01918,-0.0109 -0.05991,-0.0368 -0.05704,-0.0388 -0.02232,-0.0163 -0.0515,-0.0404 -0.04778,-0.0417 -0.04551,-0.044 -0.04305,-0.0464 -0.03225,-0.0382 -0.03818,-0.05 -0.03524,-0.0516 -0.02539,-0.0414 -0.02985,-0.0545 -0.02665,-0.0557 -0.02346,-0.0568 -0.02013,-0.0576 -0.01679,-0.0584 -0.01352,-0.0595 -0.0047,-0.0258 -0.0086,-0.0608 -0.0053,-0.0629 -0.002,-0.0259 -4.93e-4,-0.0659 0.0026,-0.0667 0.0053,-0.0671 0.0094,-0.0673 0.008,-0.043 0.01506,-0.067 0.01872,-0.0682 0.0072,-0.0228 0.02391,-0.0698 0.02778,-0.0706 0.0072,-0.0176 0.03265,-0.0715 0.03598,-0.0706 0.008,-0.0147 0.03997,-0.0693 0.04418,-0.0699 0.01,-0.015 0.04964,-0.0706 0.05276,-0.0694 0.008,-0.01 0.05637,-0.0677 0.06057,-0.0675 0.009,-0.01 0.0066,-0.007 0.06223,-0.0635 0.06457,-0.0614 0.0072,-0.007 0.01925,-0.0175 0.05563,-0.0489 0.05744,-0.047 0.02113,-0.017", + "fill": { + "paint": "transparent" + }, + "id": "path7016", + "name": "path7016", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 59.201507,156.47767 -0.02732,0.0141 -0.02819,0.013 -0.02432,0.0101 -0.02432,0.009 -0.02992,0.01 -0.03037,0.009 -0.0098,0.002 -0.03011,0.007 -0.02992,0.005 -0.02979,0.004 -0.02945,0.003 -0.01446,5.7e-4 -0.02806,5.7e-4 -0.02712,-5.7e-4 -0.02639,-0.002 -0.02552,-0.003 -0.01999,-0.004 -0.02286,-0.005 -0.02158,-0.006 -0.02019,-0.007 -0.01918,-0.008 -0.002,-5.7e-4 -0.01779,-0.009 -0.0164,-0.01 -0.01499,-0.0104 -0.01366,-0.0109 -0.01219,-0.0115", + "fill": { + "paint": "transparent" + }, + "id": "path7017", + "name": "path7017", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 58.120966,156.18925 -0.0047,-0.0109 -0.004,-0.0122 -0.0034,-0.014 -5e-4,-0.004 -0.002,-0.0118 -4.93e-4,-0.0168 1.93e-4,-0.0169 5e-4,-0.0133 0.0026,-0.0168 0.0026,-0.0167 0.004,-0.0165 0.0053,-0.0161", + "fill": { + "paint": "transparent" + }, + "id": "path7018", + "name": "path7018", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 57.593182,156.33595 0.002,-0.002 0.0026,-0.002 0.002,-0.002 0.0026,-0.002 0.0026,-0.002 0.002,-0.002 0.0026,-0.002 0.0026,-0.002 0.0026,-0.002 0.002,-0.002", + "fill": { + "paint": "transparent" + }, + "id": "path7019", + "name": "path7019", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 57.515344,157.73695 0.01399,-0.0104 0.02618,-0.0207 0.02492,-0.0214 0.02359,-0.0221 0.02226,-0.0226 0.02086,-0.0232 0.01952,-0.0236 0.01593,-0.0211 0.0164,-0.0238 0.01472,-0.0238 0.01326,-0.0237 0.01141,-0.0236 0.01,-0.0234 0.0084,-0.0233", + "fill": { + "paint": "transparent" + }, + "id": "path7020", + "name": "path7020", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 57.75708,157.42814 0.002,-0.005 0.0066,-0.0225 0.0047,-0.0222 0.0026,-0.0218 0.002,-0.0211 4.79e-4,-0.0206 -4.99e-4,-0.0199 -4.33e-4,-0.005 -0.0026,-0.0192 -0.004,-0.0185 -0.0047,-0.0179 -0.002,-0.005 -0.0066,-0.0172 -0.0079,-0.0164 -0.009,-0.0156", + "fill": { + "paint": "transparent" + }, + "id": "path7021", + "name": "path7021", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 58.108432,158.18241 0.004,-0.007 0.01366,-0.0223 0.01219,-0.0225 0.01057,-0.0224 0.009,-0.0224 0.004,-0.0102 0.0072,-0.0223 0.0053,-0.0218 0.004,-0.0215 0.0026,-0.0211 5e-4,-0.0127 1.99e-4,-0.0206 -0.002,-0.0202 -0.0026,-0.0197 -0.004,-0.019 -0.0053,-0.0188 -0.004,-0.012 -0.0072,-0.0182 -0.0086,-0.0175 -0.0098,-0.0168", + "fill": { + "paint": "transparent" + }, + "id": "path7022", + "name": "path7022", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 58.852827,157.29768 0.0142,0.0145 0.01566,0.0139 0.01679,0.0131 0.01273,0.009 0.01852,0.0116 0.01965,0.0107 0.02085,0.01 0.01459,0.006 0.02259,0.008 0.02372,0.007 0.02472,0.006 0.02573,0.005 0.02672,0.004 0.02778,0.002 0.02806,0.002 0.02951,9e-5 0.02985,-0.002 0.03011,-0.002 0.03037,-0.004 0.03071,-0.005 0.03092,-0.007 0.01952,-0.005 0.03105,-0.009 0.03086,-0.0103 0.03058,-0.0116 0.03018,-0.0129 0.02965,-0.0141 0.02905,-0.0154 0.01266,-0.007", + "fill": { + "paint": "transparent" + }, + "id": "path7023", + "name": "path7023", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 58.545805,156.609 0.01345,0.0129 0.01499,0.0124 0.01632,0.0118 0.01779,0.0112 0.01912,0.0105 0.02045,0.01 0.02179,0.009 0.01033,0.004 0.02325,0.008 0.02438,0.006 0.02573,0.005 0.0148,0.002 0.02812,0.004 0.02905,0.002 0.02985,0.002 0.01081,1.2e-4", + "fill": { + "paint": "transparent" + }, + "id": "path7024", + "name": "path7024", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 58.868192,156.71881 0.03132,-5.6e-4 0.03191,-0.002 0.03232,-0.003 0.03278,-0.005 0.03311,-0.006 0.03351,-0.008 0.01593,-0.004 0.03371,-0.01 0.01081,-0.003 0.03305,-0.0113 0.03251,-0.0125 0.03178,-0.0137 0.03099,-0.0148 0.03011,-0.0159", + "fill": { + "paint": "transparent" + }, + "id": "path7025", + "name": "path7025", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 59.2014,156.47771 0.0026,0.002 0.0098,0.0116 0.0092,0.012 0.0053,0.008 0.0086,0.0125 0.0082,0.0127 5e-4,0.002 0.0079,0.0129 0.0072,0.0131 0.0072,0.0133 0.0066,0.0136 0.0053,0.0138", + "fill": { + "paint": "transparent" + }, + "id": "path7026", + "name": "path7026", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 58.020266,158.27659 -4.47e-4,-4.7e-4 -0.0026,-0.003 -0.0026,-0.003 -0.0026,-0.003 -0.0026,-0.003 -3.4e-4,-3.9e-4 -0.0026,-0.003 -0.0026,-0.003 -0.0026,-0.003 -3.4e-4,-3.6e-4 -0.0026,-0.003 -0.0026,-0.002 -0.002,-5.6e-4 -1.4e-4,-9e-5 -5e-4,-3e-5", + "fill": { + "paint": "transparent" + }, + "id": "path7027", + "name": "path7027", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 58.544492,156.60597 -0.0026,-0.009 -0.002,-0.01 -3.47e-4,-0.0104 1.87e-4,-0.004 0.002,-0.0108 0.0026,-0.011 0.004,-0.0113 4.99e-4,-0.002 0.0066,-0.0114 0.008,-0.0111 0.009,-0.0106 2.46e-4,-3e-4 0.01009,-0.01 0.01105,-0.009 0.01189,-0.008", + "fill": { + "paint": "transparent" + }, + "id": "path7028", + "name": "path7028", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 60.117315,156.19919 -4.4e-4,-5.7e-4 -3.85e-4,-5.7e-4 -3.87e-4,-5.6e-4 -4e-4,-6e-4 -3.93e-4,-5.5e-4 -3.4e-4,-5.7e-4 -2.87e-4,-5.6e-4 -3.46e-4,-5.7e-4 -2.87e-4,-5.7e-4 -2.53e-4,-5.7e-4", + "fill": { + "paint": "transparent" + }, + "id": "path7029", + "name": "path7029", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 60.113797,156.18878 -0.0026,-0.0125 -0.002,-0.0141 -2.48e-4,-0.0143 3.4e-4,-0.012 0.002,-0.0168 0.0026,-0.0167 0.0026,-0.0143 0.0034,-0.0166 0.004,-0.0165 0.0047,-0.0163 0.0053,-0.016", + "fill": { + "paint": "transparent" + }, + "id": "path7030", + "name": "path7030", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 56.772309,158.32207 -0.0072,-0.006 -0.0084,-0.006 -0.01045,-0.006 -0.0079,-0.004 -0.01513,-0.006 -0.01666,-0.005 -0.01367,-0.003 -0.0026,-4.5e-4 -0.01779,-0.003 -0.01805,-0.002 -0.01826,-0.002 -0.01826,-4.4e-4 -0.01819,5.1e-4", + "fill": { + "paint": "transparent" + }, + "id": "path7031", + "name": "path7031", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 57.572793,157.13763 0.01009,-0.006 0.01226,-0.006 0.01259,-0.005 0.01206,-0.004 0.01213,-0.002 0.01189,-5.7e-4 0.002,-3e-5 0.01105,5.3e-4 0.01021,0.002 0.0095,0.003 0.002,5.6e-4 0.0088,0.005 0.0079,0.005 0.0066,0.006", + "fill": { + "paint": "transparent" + }, + "id": "path7032", + "name": "path7032", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 57.75708,157.42814 -5.3e-5,1.6e-4 -4.7e-5,1.8e-4 -5.3e-5,1.7e-4 -9.3e-5,1.9e-4 -5.3e-5,1.5e-4 -4e-5,1.8e-4 -5.3e-5,1.8e-4 -4.6e-5,1.7e-4 -1.01e-4,2.1e-4 -5.3e-5,1.5e-4", + "fill": { + "paint": "transparent" + }, + "id": "path7033", + "name": "path7033", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 57.513445,157.73437 -5e-4,-5.7e-4 -0.009,-0.0121 -0.0091,-0.012 -0.0094,-0.0118 -0.0096,-0.0118 -0.0096,-0.0117 -0.0089,-0.0108 -0.0098,-0.0116 -0.01,-0.0115 -0.01009,-0.0113 -0.01033,-0.0112", + "fill": { + "paint": "transparent" + }, + "id": "path7034", + "name": "path7034", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 60.372399,159.5695 -0.09871,0.061 -0.100842,0.0586 -0.102933,0.056 -0.104746,0.0532 -0.01226,0.006 -0.106559,0.0501 -0.107965,0.0472 -0.109142,0.0441 -0.110115,0.041 -0.110992,0.038 -0.111532,0.0346 -0.112,0.0314 -0.07383,0.0188 -0.111472,0.0257 -0.111136,0.0225 -0.110691,0.019 -0.110211,0.0157 -0.109659,0.0124 -0.08753,0.008 -0.107328,0.007 -0.105923,0.003 h -0.10435 l -0.1028,-0.003 -0.101131,-0.006 -2.46e-4,-1e-5 -0.09909,-0.009 -0.09694,-0.0122 -0.0948,-0.0151 -0.09251,-0.018 -0.09023,-0.0207 -0.08792,-0.0234 -0.02013,-0.006 -0.08475,-0.0266 -0.08207,-0.0291 -0.07934,-0.0315 -0.07653,-0.0338 -0.07375,-0.0361 -0.07095,-0.0382 -0.02785,-0.016 -0.06751,-0.0414 -0.06482,-0.0437 -0.0619,-0.0455 -0.05896,-0.0473 -0.05584,-0.0491 -0.0527,-0.0505 -0.01319,-0.0132 -0.04917,-0.053 -0.0463,-0.0547 -0.04338,-0.0563 -0.01093,-0.015 -0.03971,-0.0585 -0.03672,-0.0599 -0.03351,-0.0611", + "fill": { + "paint": "transparent" + }, + "id": "path7035", + "name": "path7035", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 60.625882,156.67066 0.0053,-0.003 0.0084,-0.003 0.0088,-0.002 0.0089,-0.002 0.0089,-0.002 0.0026,-3.4e-4 0.009,-5.7e-4 0.009,-5.8e-4 0.009,-3.4e-4 0.009,-2e-5 0.009,2.6e-4", + "fill": { + "paint": "transparent" + }, + "id": "path7036", + "name": "path7036", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 57.2863,156.70525 -0.0084,-0.008 -0.01,-0.008 -0.01177,-0.007 -0.0026,-0.002 -0.0144,-0.007 -0.01566,-0.005 -0.01105,-0.003 -0.01559,-0.004 -0.01679,-0.003 -0.017,-0.002 -0.01705,-5.7e-4 -0.017,2.6e-4", + "fill": { + "paint": "transparent" + }, + "id": "path7037", + "name": "path7037", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 57.216611,158.84685 -0.0026,0.002 -0.0053,0.005 -0.0047,0.006 -0.004,0.007 -0.004,0.007 -0.002,0.004 -0.0034,0.007 -0.0026,0.007 -0.0026,0.007 -0.0026,0.007 -0.0026,0.007", + "fill": { + "paint": "transparent" + }, + "id": "path7038", + "name": "path7038", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 58.736376,158.26465 -0.0053,-0.005 -0.0066,-0.005 -0.0079,-0.003 -0.0026,-5.7e-4 -0.0084,-0.002 -0.0094,-5.9e-4 -0.01057,3.2e-4 -0.002,1.6e-4 -0.01206,0.002 -0.01232,0.003 -0.01033,0.004 -4.32e-4,1.8e-4 -0.01189,0.005 -0.01141,0.006 -0.01105,0.007", + "fill": { + "paint": "transparent" + }, + "id": "path7039", + "name": "path7039", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 60.652915,160.11112 0.0086,-0.005 0.08446,-0.0557 0.08242,-0.0574 0.08027,-0.059 0.07806,-0.0605 0.07567,-0.0619 0.07327,-0.0632 0.07079,-0.0644 0.06823,-0.0655 0.06577,-0.0665 0.06316,-0.0675 0.01272,-0.014 0.05963,-0.0682 0.05678,-0.0688 0.05391,-0.0694 0.05111,-0.0699 0.04838,-0.0704 0.01606,-0.0242 0.04431,-0.0706 0.04144,-0.0707 0.03852,-0.0709 0.03571,-0.0708 0.03272,-0.0708 0.0154,-0.0355 0.02845,-0.0705 0.02558,-0.0702 0.02278,-0.0699 0.01985,-0.0694 0.01713,-0.069 0.0096,-0.0445 0.01259,-0.0683 0.0098,-0.0677 0.0072,-0.067 0.0047,-0.0663 0.002,-0.0655 -4.4e-4,-0.05 -0.0026,-0.0644 -0.0053,-0.0636 -0.008,-0.0626 -0.01045,-0.0617 -0.01292,-0.0606 -0.01246,-0.0491 -0.01752,-0.0594 -0.01999,-0.0586 -0.02239,-0.0574 -0.02472,-0.0562 -0.02686,-0.0548", + "fill": { + "paint": "transparent" + }, + "id": "path7040", + "name": "path7040", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 59.648873,157.61668 -0.01105,0.007 -0.01177,0.009 -0.01105,0.01 -0.0088,0.009 -0.0089,0.0107 -0.008,0.0113 -0.0026,0.004 -0.0053,0.0111 -0.004,0.0105 -0.0026,0.01 -5e-4,0.009 3.87e-4,0.008 0.002,0.008", + "fill": { + "paint": "transparent" + }, + "id": "path7041", + "name": "path7041", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 59.227445,158.84147 -0.0047,0.004 -0.0047,0.005 -5e-4,0.002 -0.002,0.002 -0.004,0.007 -0.004,0.007 -0.0026,0.007 -0.0026,0.008 -0.0026,0.008 -0.0026,0.008 -0.0026,0.008 -0.0026,0.008", + "fill": { + "paint": "transparent" + }, + "id": "path7042", + "name": "path7042", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 60.087179,158.29264 0.008,-0.004 0.002,-5.5e-4 0.0096,-0.003 0.004,-5.6e-4 0.01,-0.002 0.01009,-0.002 0.0047,-5.6e-4 0.01021,-5.7e-4 0.01009,-5.6e-4 0.01021,-2.1e-4 0.01021,1e-4 0.01021,3.7e-4", + "fill": { + "paint": "transparent" + }, + "id": "path7043", + "name": "path7043", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 57.581761,156.26782 0.01399,-0.0111 0.02791,-0.0195 0.02971,-0.017 0.01726,-0.009 0.04838,-0.0236 0.02378,-0.0124 0.02319,-0.0132 0.0072,-0.005 0.03905,-0.0222 0.04025,-0.0201 0.008,-0.004 0.04857,-0.0231 0.04844,-0.0231 0.04898,-0.0222 0.04944,-0.0211 0.09538,-0.0379 0.0047,-0.002 0.0072,-0.003 0.09806,-0.0351 0.09806,-0.0316 0.0089,-0.003 0.09845,-0.0279 0.09855,-0.0246 0.01045,-0.002 0.09836,-0.0207 0.09797,-0.0172 0.02752,-0.005 0.09688,-0.0129 0.09587,-0.009 0.0948,-0.006 0.09359,-0.003 0.03651,-1.8e-4 0.0912,0.002 0.08934,0.005 0.08739,0.008 0.08538,0.0111 0.02073,0.003 0.08253,0.0148 0.08022,0.0177 0.02259,0.005 0.07677,0.0211 0.07414,0.0237 0.0487,0.0175 0.06975,0.0282 0.06703,0.0305 0.06417,0.0327 0.0613,0.035 0.0469,0.0295 0.05624,0.0388 0.05324,0.0408 0.05024,0.0425 0.04697,0.0443 0.03831,0.0398 0.04185,0.048 0.03884,0.0497 0.03571,0.0512 0.03232,0.0523 0.02925,0.0539 0.02639,0.0557 0.02332,0.0573 0.02013,0.0586 0.01472,0.0516 0.01386,0.0603 0.01057,0.0617 0.0072,0.0631 0.004,0.0642 4.99e-4,0.0539 -0.0026,0.0657 -0.0053,0.0667 -0.0094,0.0676 -0.01319,0.0685 -0.01177,0.0498 -0.0194,0.0694 -0.02305,0.0699 -0.02686,0.0704 -0.03065,0.0707 -0.01966,0.0413 -0.0367,0.071 -0.04051,0.0709 -0.04425,0.0706 -0.04812,0.0702 -0.02259,0.0312 -0.05351,0.0694 -0.0575,0.069 -0.01033,0.0119 -0.01206,0.0136 -0.0617,0.0668 -0.06309,0.0635 -0.03665,0.0348 -0.03724,0.0345 -0.03785,0.0341 -0.03925,0.0331 -0.04025,0.0325 -0.04004,0.0327 -0.02039,0.016 -0.02085,0.0156 -0.01081,0.008 -0.03092,0.023", + "fill": { + "paint": "transparent" + }, + "id": "path7044", + "name": "path7044", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 59.713485,158.58244 -0.002,0.002 -0.0026,0.002 -0.002,0.002 -0.0026,0.002 -0.002,0.002 -0.0026,0.002 -0.0026,0.002 -0.0026,0.002 -0.002,0.002 -0.0026,0.002", + "fill": { + "paint": "transparent" + }, + "id": "path7045", + "name": "path7045", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 59.770295,157.11316 0.0026,-5.7e-4 0.0026,3.9e-4 5.2e-5,3e-5 9.4e-5,3e-5 0.004,0.002 0.004,0.002 0.0026,0.002 0.0026,0.003 0.0026,0.003 0.0026,0.003 0.0034,0.003 0.0026,0.003 0.0034,0.003", + "fill": { + "paint": "transparent" + }, + "id": "path7046", + "name": "path7046", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 59.521941,157.64564 0.002,0.005 0.004,0.01 0.0047,0.01 0.0026,0.005 0.0047,0.009 0.0053,0.009 0.0053,0.009 0.0066,0.009 0.0066,0.009 0.0066,0.008 0.0072,0.008", + "fill": { + "paint": "transparent" + }, + "id": "path7047", + "name": "path7047", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 59.648967,157.61678 -0.0066,-0.008 -0.01165,-0.0156 -0.01033,-0.016 -0.0089,-0.0164 -0.0079,-0.017 -0.0034,-0.009 -0.0053,-0.0177 -0.004,-0.0179 -0.0034,-0.0182 -0.002,-0.0186 -1.47e-4,-0.0189 4.87e-4,-0.01 0.0026,-0.019 0.0026,-0.0192 0.0053,-0.0193 0.0026,-0.009 0.0072,-0.0192 0.0084,-0.0192 0.01,-0.0191 0.01141,-0.019 0.01299,-0.0188 0.01446,-0.0185 0.01129,-0.0131 0.01679,-0.0176 0.01805,-0.017 0.01946,-0.0165 0.02072,-0.0158 0.02199,-0.015 0.02318,-0.0142 0.01021,-0.006", + "fill": { + "paint": "transparent" + }, + "id": "path7048", + "name": "path7048", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 56.517419,159.7893 0.03345,0.0611 0.03672,0.0599 0.03971,0.0585 0.01105,0.0151 0.04338,0.0563 0.0463,0.0547 0.04917,0.053 0.01319,0.0132 0.05263,0.0506 0.05584,0.0491 0.05897,0.0473 0.0619,0.0455 0.06483,0.0436 0.06744,0.0415 0.02791,0.016 0.07095,0.0382 0.07375,0.0361 0.07655,0.0338 0.07933,0.0316 0.08202,0.0291 0.08475,0.0267 0.02013,0.006 0.08792,0.0234 0.09026,0.0207 0.09249,0.018 0.09477,0.0151 0.09694,0.0122 0.09909,0.009 2.41e-4,3e-5 0.10119,0.006 0.102753,0.003 h 0.104409 l 0.105863,-0.003 0.10734,-0.007 0.08753,-0.008 0.10967,-0.0124 0.110211,-0.0157 0.110704,-0.019 0.111135,-0.0224 0.11152,-0.0258 0.07383,-0.0188 0.112,-0.0314 0.111568,-0.0346 0.110932,-0.0379 0.110162,-0.041 0.109142,-0.0442 0.107917,-0.0472 0.106596,-0.0501 0.01232,-0.006 0.104758,-0.0532 0.102884,-0.056 0.100891,-0.0586 0.09866,-0.061", + "fill": { + "paint": "transparent" + }, + "id": "path7049", + "name": "path7049", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 59.77771,158.28191 0.002,0.005 0.004,0.009 0.004,0.009 0.0047,0.009 0.0047,0.009 0.0053,0.008 0.0053,0.008 0.0066,0.008 0.0026,0.005 0.0066,0.008 0.0066,0.008", + "fill": { + "paint": "transparent" + }, + "id": "path7050", + "name": "path7050", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 61.624787,156.74242 0.02686,0.0548 0.02472,0.0562 0.02239,0.0574 0.02,0.0586 0.0176,0.0594 0.01246,0.0491 0.01292,0.0606 0.01045,0.0617 0.0079,0.0626 0.0053,0.0636 0.0034,0.0644 4.4e-4,0.05 -0.002,0.0655 -0.0047,0.0663 -0.0072,0.067 -0.0098,0.0677 -0.01253,0.0683 -0.0096,0.0446 -0.01713,0.069 -0.01993,0.0694 -0.02273,0.0699 -0.02558,0.0702 -0.02845,0.0705 -0.0154,0.0354 -0.03272,0.0708 -0.03565,0.0708 -0.03858,0.0709 -0.04144,0.0708 -0.04444,0.0706 -0.01599,0.0243 -0.04838,0.0704 -0.05111,0.0699 -0.0539,0.0694 -0.05683,0.0688 -0.05963,0.0682 -0.01273,0.014 -0.06309,0.0675 -0.0657,0.0665 -0.06823,0.0655 -0.07088,0.0644 -0.07327,0.0632 -0.07567,0.0619 -0.07807,0.0605 -0.08026,0.059 -0.08242,0.0574 -0.08447,0.0557 -0.0086,0.005", + "fill": { + "paint": "transparent" + }, + "id": "path7051", + "name": "path7051", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 59.901818,158.5669 -0.008,0.005 -0.01512,0.01 -0.01512,0.01 -0.0066,0.005 -0.01141,0.009 -0.01069,0.01 -0.0053,0.005 -0.0066,0.007 -0.0086,0.009 -0.0079,0.007 -0.01,0.007 -0.01081,0.006 -0.01177,0.005 -0.01259,0.004 -0.008,0.002", + "fill": { + "paint": "transparent" + }, + "id": "path7052", + "name": "path7052", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 57.318437,156.45452 0.0053,-0.005 0.02392,-0.019 0.0066,-0.005 0.02438,-0.0184 0.0066,-0.005 0.02445,-0.0183 0.0066,-0.005 0.02519,-0.0174 0.01626,-0.011 0.0154,-0.0112 0.01439,-0.012 0.01345,-0.0124 0.004,-0.004 0.01009,-0.008 0.01081,-0.008 0.0053,-0.003 0.0084,-0.005 0.01379,-0.006 0.01379,-0.005", + "fill": { + "paint": "transparent" + }, + "id": "path7053", + "name": "path7053", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 62.173246,162.25747 0.03944,-5.7e-4 0.03984,-0.002 0.04025,-0.003 0.04057,-0.005 0.04091,-0.006 0.04117,-0.008 0.04124,-0.009 0.04125,-0.0102 0.04124,-0.0116 0.04117,-0.013 0.0086,-0.003 0.04085,-0.0146 0.04057,-0.0159 0.04025,-0.0171 0.03978,-0.0185 0.03938,-0.0198 0.03884,-0.021 0.03824,-0.0223 0.03765,-0.0236 0.03698,-0.0248 0.03345,-0.0238 0.03251,-0.0245 0.03424,-0.0277 0.03325,-0.0286 0.03219,-0.0294 0.03105,-0.0302 0.02864,-0.0297 0.02872,-0.0316 0.02725,-0.0322 0.02612,-0.0327 0.02472,-0.0333 5e-4,-0.002 0.02325,-0.0336 0.02179,-0.0339 0.02019,-0.0342 0.01892,-0.0343 0.01739,-0.0345 0.0026,-0.005 0.01566,-0.0346 0.01412,-0.0346 0.01266,-0.0345 0.01117,-0.0344 0.0096,-0.0343", + "fill": { + "paint": "transparent" + }, + "id": "path7054", + "name": "path7054", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 63.634017,160.62504 0.004,-0.0139 0.02872,-0.10735 0.02618,-0.10612 0.02359,-0.10497 0.02105,-0.10381 0.01852,-0.10267 0.01606,-0.10153 0.01366,-0.10043 0.0047,-0.0424 0.01021,-0.0985 0.008,-0.097 0.0053,-0.0958 0.0034,-0.0943 5.01e-4,-0.093 -0.002,-0.0916 -0.0026,-0.0904 -0.0047,-0.0742 -0.0072,-0.0876 -0.0096,-0.0862 -0.01165,-0.0848 -0.01206,-0.0734 -0.01566,-0.0825 -0.01779,-0.0815 -0.01985,-0.0803 -0.01985,-0.0725 -0.02359,-0.078 -0.02551,-0.0767 -0.02739,-0.0751 -0.02911,-0.0737 -0.03098,-0.0719 -0.03251,-0.0703 -0.03424,-0.0686", + "fill": { + "paint": "transparent" + }, + "id": "path7055", + "name": "path7055", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 54.831362,160.52468 -0.01379,-0.15447 -0.01939,-0.24712 -0.01533,-0.23625 -0.01141,-0.22702 -0.0079,-0.21907 -0.002,-0.0771 -0.0026,-0.20777 5e-4,-0.20069 0.004,-0.19438 0.0072,-0.18874 0.01033,-0.18363 5.01e-4,-0.0102 0.01358,-0.17838 0.01679,-0.17377 0.01959,-0.16946 0.02259,-0.16543 0.02551,-0.16163 0.02832,-0.15803 0.01965,-0.0994 0.03311,-0.15321 0.03591,-0.15027 0.03878,-0.14733 0.04151,-0.14438 0.04425,-0.14139 0.0469,-0.13852", + "fill": { + "paint": "transparent" + }, + "id": "path7056", + "name": "path7056", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 55.282634,156.13456 0.01306,-0.0279 0.01466,-0.028 0.01619,-0.028 0.01779,-0.028 0.01946,-0.0282 0.02113,-0.028 0.02286,-0.028 0.02465,-0.028 0.02612,-0.0279 0.02791,-0.0276 2.93e-4,-2.8e-4 0.02972,-0.0275 0.03105,-0.0268 0.03264,-0.0264 0.03424,-0.026 0.02552,-0.0182 0.03724,-0.0254 0.03878,-0.0246 0.04004,-0.024 0.04151,-0.0233 0.02232,-0.0119 0.04365,-0.022 0.04451,-0.0209 0.04538,-0.0199 0.04624,-0.0187 0.04697,-0.0176 0.04763,-0.0165 0.04838,-0.0153 0.04904,-0.014 0.04051,-0.0106 0.04604,-0.0109 0.04917,-0.0104 0.04885,-0.009 0.04844,-0.008 0.04797,-0.006 0.04763,-0.005 0.04703,-0.003 0.0465,-0.002 0.04598,-5.7e-4", + "fill": { + "paint": "transparent" + }, + "id": "path7057", + "name": "path7057", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 59.031791,155.41035 0.04311,1.1e-4 0.170635,0.002 0.167797,0.006 0.164984,0.009 0.162187,0.0123 0.06104,0.005 0.157163,0.0165 0.15361,0.0196 0.150241,0.0225 0.146987,0.0255 0.0771,0.0147 0.141084,0.0297 0.137426,0.0323 0.133809,0.0351 0.130397,0.0376 0.09098,0.0284 0.123534,0.0415 0.119663,0.0439 0.115916,0.046 0.112265,0.0483 0.09523,0.044 0.105815,0.0523 0.102367,0.0544 0.09895,0.0564 0.09543,0.0584 0.0026,0.002 0.09197,0.0604 0.08852,0.0622 0.08494,0.064 0.08145,0.0656 0.0779,0.0672 0.0072,0.006 0.07493,0.0697 0.07215,0.0719 0.06919,0.074 0.06617,0.076 0.06303,0.0778 0.008,0.0104 0.05976,0.08 0.05657,0.0819 0.05336,0.0835 0.05004,0.0848 0.04658,0.0861", + "fill": { + "paint": "transparent" + }, + "id": "path7058", + "name": "path7058", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 55.318775,161.89652 0.01679,0.0252 0.01818,0.0247 0.01939,0.0241 0.02066,0.0233 0.02179,0.0226 0.01,0.01 0.02318,0.0213 0.02412,0.0202 0.02526,0.0194 0.02639,0.0186 0.02752,0.0176 0.02859,0.0167 0.02945,0.0157 0.01189,0.006 0.03065,0.0142 0.03159,0.0131 0.03251,0.0121 0.03345,0.0109 0.03418,0.01 0.03491,0.009 0.0098,0.002 0.03584,0.007 0.03665,0.006 0.03732,0.005 0.03792,0.004 0.03852,0.002 0.03905,5.6e-4 0.0047,3e-5", + "fill": { + "paint": "transparent" + }, + "id": "path7059", + "name": "path7059", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 54.985413,161.36913 -0.01566,-0.0262 -0.01446,-0.0268 -0.01332,-0.0276 -0.01206,-0.0282 -5e-4,-0.003 -0.01057,-0.0287 -0.0091,-0.0291 -0.0079,-0.0298 -0.0066,-0.0303 -4.86e-4,-0.002 -0.0053,-0.0307 -0.004,-0.0309", + "fill": { + "paint": "transparent" + }, + "id": "path7060", + "name": "path7060", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 55.726256,161.7302 h -0.0053 l -0.03905,-5.6e-4 -0.03852,-0.002 -0.03805,-0.004 -0.03732,-0.005 -0.03665,-0.006 -0.03584,-0.007 -0.0097,-0.002 -0.03497,-0.009 -0.03424,-0.01 -0.03345,-0.011 -0.03251,-0.0121 -0.03152,-0.0131 -0.03071,-0.0142 -0.01201,-0.006 -0.02945,-0.0157 -0.02859,-0.0167 -0.02746,-0.0176 -0.02639,-0.0186 -0.02532,-0.0194 -0.02419,-0.0202 -0.02325,-0.0211 -0.01,-0.01 -0.02179,-0.0226 -0.02066,-0.0234 -0.01939,-0.0242 -0.01818,-0.0247 -0.01685,-0.0252", + "fill": { + "paint": "transparent" + }, + "id": "path7061", + "name": "path7061", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 63.144359,157.27564 0.03451,0.0693 0.03285,0.0708 0.03111,0.0724 0.02925,0.0738 0.02752,0.0753 0.02558,0.0767 0.02359,0.078 0.01972,0.0719 0.01979,0.0801 0.01779,0.0814 0.01566,0.0828 0.01366,0.0841 0.01165,0.0853 0.0094,0.0867 0.0072,0.0879 0.004,0.063 0.004,0.0901 0.002,0.0913 -5e-4,0.0926 -0.0034,0.094 -0.0053,0.0953 -0.0079,0.0967 -0.01009,0.0981 -0.0053,0.0446 -0.01379,0.10016 -0.01606,0.10121 -0.01859,0.1023 -0.02105,0.10338 -0.02359,0.1045 -0.02618,0.10557 -0.02865,0.10669 -0.004,0.0156", + "fill": { + "paint": "transparent" + }, + "id": "path7062", + "name": "path7062", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 63.057752,160.80786 -0.0096,0.0343 -0.01105,0.0345 -0.01259,0.0345 -0.01412,0.0346 -0.01559,0.0346 -0.0026,0.005 -0.01726,0.0346 -0.01879,0.0343 -0.02019,0.0342 -0.02179,0.0339 -0.02319,0.0336 -4.99e-4,0.002 -0.02465,0.0333 -0.02612,0.0327 -0.02732,0.0322 -0.02859,0.0316 -0.02878,0.0298 -0.03105,0.0302 -0.03212,0.0294 -0.03325,0.0285 -0.03424,0.0276 -0.03265,0.0247 -0.03351,0.0239 -0.03698,0.0246 -0.03765,0.0236 -0.03824,0.0222 -0.03884,0.0211 -0.03938,0.0198 -0.03984,0.0185 -0.04025,0.0172 -0.04057,0.0159 -0.04091,0.0146 -0.0086,0.003 -0.04117,0.013 -0.04124,0.0116 -0.04125,0.0103 -0.04124,0.009 -0.04117,0.008 -0.04085,0.006 -0.04057,0.005 -0.04025,0.003 -0.03984,0.002 -0.03938,5.6e-4", + "fill": { + "paint": "transparent" + }, + "id": "path7063", + "name": "path7063", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 133.02434,3.869424 0.008,-0.02233 0.01,-0.02233 0.0112,-0.02233 0.0128,-0.02233 0.0144,-0.02226 0.016,-0.02219 0.0168,-0.02196 0.0192,-0.02172 0.02,-0.02135 0.0216,-0.02089 0.0232,-0.02037 0.024,-0.0196 0.0256,-0.01878 0.0264,-0.01787 v -7.39e-4 l 0.0272,-0.01665 0.0279,-0.0156 0.0287,-0.01454 0.0112,-0.0053 0.0103,-0.0045 0.0303,-0.01273 0.0311,-0.01136 0.0311,-0.01006 0.0272,-0.0075 0.0311,-0.0075 0.0311,-0.006 0.0312,-0.0045 0.0303,-0.003 0.0304,-0.0023 0.0296,-6.82e-4", + "fill": { + "paint": "transparent" + }, + "id": "path7064", + "name": "path7064", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 136.66804,5.501121 -0.0583,0.03362 -0.0615,0.03701 -0.0607,0.03807 -0.0527,0.0346 -0.0592,0.03982 -0.0575,0.04073 -0.0568,0.04156 -0.0551,0.0424 -0.0544,0.04315 -0.0527,0.04391 -0.0511,0.04459 -0.0503,0.04526", + "fill": { + "paint": "transparent" + }, + "id": "path7065", + "name": "path7065", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 137.4138,5.298251 -0.0415,6.82e-4 -0.0424,0.0023 -0.0431,0.003 -0.0431,0.0045 -0.0184,0.0023 -0.0439,0.0068 -0.0439,0.0081 -0.0439,0.0094 -0.0439,0.01089 -0.0439,0.01227 -0.0439,0.01363 -0.0439,0.01491 -0.0431,0.01627 -0.0431,0.01756 -0.0424,0.01885 -0.0424,0.02006 -0.0415,0.02128 -0.0359,0.01976", + "fill": { + "paint": "transparent" + }, + "id": "path7066", + "name": "path7066", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 104.05022,41.935172 -0.0216,-0.04314 -0.02,-0.0439 -0.0192,-0.04465 -0.0176,-0.04525 -0.0168,-0.0457 -0.0152,-0.04614 -0.0136,-0.04675 -0.008,-0.01854 -0.0121,-0.04726 -0.0103,-0.04779 -0.01,-0.0484 -0.008,-0.04898 -0.008,-0.04937 -0.008,-0.04989 -0.008,-0.05019 v -0.0174 -0.05079 l -5e-4,-0.05117 5e-4,-0.05169 v -0.05214 -0.05244 l 0.008,-0.05289 0.008,-0.05319 v -0.01177 l 0.008,-0.05356 0.01,-0.05388 0.0112,-0.05416 0.0128,-0.05447 0.0144,-0.05477 0.0152,-0.055 0.0176,-0.05515 v -0.0037", + "fill": { + "paint": "transparent" + }, + "id": "path7067", + "name": "path7067", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 103.96905,40.481793 0.0383,-0.10874 0.0439,-0.109368 0.0503,-0.109835 0.0568,-0.110112 0.0623,-0.110127 0.0687,-0.109887 0.0743,-0.109301 0.0296,-0.04074 0.0825,-0.107913 0.0882,-0.106503 0.094,-0.105123 0.0559,-0.05897 0.10356,-0.103044 0.10857,-0.100771 0.11402,-0.09834 0.0568,-0.04636 0.12152,-0.09443 0.12576,-0.09103 0.12991,-0.08752 0.13408,-0.08371 0.13773,-0.07992 0.14134,-0.07591 0.12185,-0.0607 0.12143,-0.0565 0.14829,-0.0637 0.14997,-0.05868 0.151,-0.05357 0.15221,-0.04838 0.15292,-0.04307 0.15331,-0.03781 0.0719,-0.0159 0.15244,-0.02993 0.15165,-0.02447 0.15052,-0.01906 0.081,-0.008 0.14732,-0.01072 0.14518,-0.0052 0.14308,-3.3e-4 0.0472,5.7e-4 0.13958,0.0067 0.13655,0.0114 0.13311,0.01613 0.12967,0.02086 0.12599,0.02544 0.12208,0.02986 0.11833,0.03414 0.093,0.03061 0.11065,0.04134 0.10619,0.04517 0.10171,0.049 0.0881,0.04726 0.0934,0.05567 0.0889,0.0589 0.084,0.0619 0.0775,0.06318 0.0751,0.06812 0.0703,0.07083 0.0655,0.0733 0.0608,0.0761 0.0568,0.07921 0.0511,0.08151 0.0463,0.08331", + "fill": { + "paint": "transparent" + }, + "id": "path7068", + "name": "path7068", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 110.3024,39.028414 0.0216,0.04315 0.02,0.04389 0.0192,0.04465 0.0176,0.04517 0.0168,0.04576 0.0152,0.0463 0.0136,0.04667 0.008,0.01854 0.0121,0.04704 0.0103,0.04786 0.01,0.04838 0.008,0.04899 0.008,0.04937 0.008,0.04989 v 0.05019 0.01733 0.05079 l 5e-4,0.05117 -5e-4,0.05169 v 0.05207 0.05244 l -0.008,0.05289 -0.008,0.05319 v 0.01177 l -0.008,0.0535 -0.01,0.05386 -0.0112,0.05417 -0.0128,0.05447 -0.0144,0.05477 -0.016,0.055 -0.0176,0.05522 v 0.0037", + "fill": { + "paint": "transparent" + }, + "id": "path7069", + "name": "path7069", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 108.06153,39.173632 -0.0232,0.02694 -0.0232,0.02822 -0.0216,0.02941 -0.0216,0.03061 -0.0113,0.01673 -0.0103,0.01673 -0.0192,0.03263 -0.0176,0.03316 -0.0168,0.03376 -0.0152,0.03407 -0.0103,0.02611 -0.0121,0.03353 -0.0103,0.03332 -0.009,0.03294 -0.008,0.03263 v 0.0067 l -0.008,0.03121 -0.008,0.03023 v 0.02926 0.02836 l 8e-5,0.02745", + "fill": { + "paint": "transparent" + }, + "id": "path7070", + "name": "path7070", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 110.38356,40.481793 -0.0384,0.108762 -0.0439,0.109376 -0.0503,0.109834 -0.0568,0.11009 -0.0623,0.110119 -0.0687,0.109916 -0.0743,0.109296 -0.0296,0.04089 -0.0825,0.107898 -0.0882,0.106488 -0.094,0.105153 -0.0559,0.05898 -0.10345,0.103013 -0.10876,0.100786 -0.11392,0.09834 -0.0568,0.04644 -0.12146,0.09433 -0.12583,0.09103 -0.12999,0.08742 -0.13391,0.08381 -0.13782,0.07992 -0.14126,0.07591 -0.12184,0.06078 -0.12144,0.0565 -0.14836,0.06369 -0.1499,0.05868 -0.15117,0.05357 -0.15212,0.04846 -0.15283,0.04299 -0.15333,0.03796 -0.0719,0.0159 -0.15259,0.02971 -0.15157,0.02447 -0.15052,0.01906 -0.0811,0.008 -0.14726,0.01072 -0.1451,0.0052 -0.14317,2.92e-4 -0.0472,-5.62e-4 -0.13958,-0.0067 -0.13639,-0.0114 -0.13326,-0.01613 -0.12959,-0.02093 -0.12593,-0.02544 -0.12223,-0.02986 -0.11818,-0.03406 -0.0931,-0.03083 -0.1105,-0.04134 -0.10618,-0.04525 -0.10171,-0.04899 -0.0882,-0.04726 -0.0934,-0.05567 -0.0888,-0.0589 -0.084,-0.06198 -0.0775,-0.06318 -0.0751,-0.06812 -0.0703,-0.07083 -0.0655,-0.07323 -0.0607,-0.07611 -0.0568,-0.07921 -0.0511,-0.08152 -0.0463,-0.08331", + "fill": { + "paint": "transparent" + }, + "id": "path7071", + "name": "path7071", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 103.05679,40.38175 0.0487,-0.13791 0.0559,-0.138705 0.064,-0.139322 0.0719,-0.13962 0.0791,-0.139688 0.0869,-0.139358 0.0945,-0.138639 0.0376,-0.05177 0.10466,-0.136876 0.11186,-0.135051 0.11928,-0.133355 0.0711,-0.07481 0.13119,-0.130671 0.13791,-0.127796 0.14444,-0.124734 0.0719,-0.05891 0.15412,-0.1197 0.15948,-0.115454 0.16491,-0.110937 0.16986,-0.106278 0.17481,-0.101356 0.17921,-0.09624 0.15444,-0.07701 0.15396,-0.07158 0.18816,-0.08082 0.19007,-0.07443 0.19167,-0.06789 0.19304,-0.06138 0.19383,-0.0547 0.19446,-0.04809 0.091,-0.02011 0.19343,-0.03796 0.19231,-0.03106 0.19087,-0.02417 0.10283,-0.01027 0.18671,-0.01366 0.18416,-0.0067 0.18153,-3.91e-4 0.0599,0.0023 0.17698,0.008 0.17314,0.01441 0.1689,0.02041 0.16442,0.02641 0.1598,0.03226 0.15484,0.03781 0.15004,0.04337 0.11809,0.03895 0.14022,0.05259 0.13462,0.0574 0.12912,0.06198 0.1117,0.05988 0.11857,0.0706 0.11265,0.07458 0.10651,0.07851 0.0981,0.08022 0.0953,0.08632 0.0892,0.08983 0.0828,0.09282 0.0767,0.09645 0.0711,0.100425 0.0655,0.103382 0.0583,0.105677", + "fill": { + "paint": "transparent" + }, + "id": "path7082", + "name": "path7082", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 110.51419,40.38175 0.008,-0.01501 0.0176,-0.05657 0.016,-0.0565 0.0144,-0.05642 0.0128,-0.05597 0.0112,-0.05567 0.01,-0.05537 0.009,-0.055 V 39.9519 l 0.008,-0.05455 0.008,-0.0544 V 39.78907 39.7355 l 5e-4,-0.05304 -5e-4,-0.05267 v -0.05207 -0.02851 l -0.008,-0.05154 -0.008,-0.05117 -0.008,-0.05064 -0.009,-0.05019 -0.01,-0.04974 -0.0112,-0.04907 -0.0121,-0.04847 -0.008,-0.02904 -0.0144,-0.04794 -0.016,-0.04749 -0.0176,-0.04704 -0.0184,-0.04637 -0.02,-0.04576 -0.0208,-0.04525 -0.0224,-0.0445", + "fill": { + "paint": "transparent" + }, + "id": "path7083", + "name": "path7083", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 104.02761,42.227557 -0.008,-0.02041 -0.0103,-0.04344 -0.01,-0.0436 -0.008,-0.02312 -0.008,-0.04404 -0.008,-0.0442 -0.008,-0.04428 -0.008,-0.0445 v -0.0445 -0.04449 -0.0445", + "fill": { + "paint": "transparent" + }, + "id": "path7084", + "name": "path7084", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 103.82052,41.917855 0.0487,0.08803 0.0544,0.08612 0.0599,0.08371 0.0639,0.08042 0.0687,0.07741 0.0743,0.07481 0.0791,0.07188 0.0819,0.06692 0.0888,0.06542 0.0938,0.06228 0.0988,0.0589 0.0932,0.04997 0.10747,0.05177 0.11225,0.04779 0.11689,0.0439 0.0983,0.03256 0.12505,0.03601 0.12903,0.03151 0.13318,0.02686 0.13703,0.02206 0.14069,0.0171 0.1443,0.012 0.14757,0.0067 0.0496,5.7e-4 0.15125,-3.3e-4 0.15355,-0.006 0.15557,-0.01132 0.0857,-0.009 0.15908,-0.02011 0.16019,-0.02581 0.16123,-0.03151 0.0759,-0.0168 0.16203,-0.03999 0.16163,-0.0457 0.16076,-0.05109 0.15972,-0.05657 0.15843,-0.06213 0.15676,-0.0673 0.12839,-0.05965 0.12872,-0.06421 0.14932,-0.08022 0.14565,-0.08451 0.14158,-0.08852 0.13742,-0.09243 0.13295,-0.09614 0.12831,-0.09974 0.06,-0.04915 0.12049,-0.103944 0.11489,-0.106533 0.1093,-0.108881 0.0592,-0.06243 0.0994,-0.111109 0.0932,-0.112574 0.0872,-0.114028 0.0312,-0.04314 0.0791,-0.115544 0.0727,-0.116129 0.0663,-0.1164 0.0599,-0.116369 0.0535,-0.116062 0.0472,-0.115604 0.0407,-0.114944", + "fill": { + "paint": "transparent" + }, + "id": "path7085", + "name": "path7085", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 110.24822,38.887901 0.0192,0.01493 0.0351,0.02851 0.0343,0.02926 0.016,0.01381 0.0327,0.03023 0.0328,0.03098 0.032,0.03166 0.0312,0.03226 0.0303,0.03293 0.0296,0.03353 0.0288,0.03429", + "fill": { + "paint": "transparent" + }, + "id": "path7086", + "name": "path7086", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 103.15977,42.225224 -0.0256,-0.05109 -0.024,-0.05199 -0.0232,-0.05267 -0.0216,-0.05349 -0.02,-0.0541 -0.0184,-0.0547 -0.0176,-0.05522 -0.0144,-0.05087 -0.0144,-0.0559 -0.0128,-0.05657 -0.0112,-0.05725 -0.0103,-0.05785 -0.009,-0.05837 -0.008,-0.0589 -0.008,-0.05935 v -0.05124 -0.06018 -0.0607 l 4.8e-4,-0.06108 v -0.06168 -0.06213 l 0.008,-0.0625 0.008,-0.06287 0.008,-0.04599 0.01,-0.0634 0.0113,-0.06384 0.0128,-0.06423 0.0144,-0.06446 0.016,-0.06482 0.0184,-0.06506 0.0192,-0.06527 0.012,-0.03676", + "fill": { + "paint": "transparent" + }, + "id": "path7087", + "name": "path7087", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 110.42838,38.845667 -0.0487,-0.08802 -0.0544,-0.08612 -0.0599,-0.08372 -0.0639,-0.08041 -0.0687,-0.07742 -0.0743,-0.07481 -0.0791,-0.07188 -0.0818,-0.06692 -0.0888,-0.06535 -0.0939,-0.06228 -0.0987,-0.0589 -0.0932,-0.04997 -0.10746,-0.05177 -0.11226,-0.04779 -0.11688,-0.04375 -0.0984,-0.03256 -0.12504,-0.03609 -0.12904,-0.03143 -0.13318,-0.02685 -0.13703,-0.02206 -0.1407,-0.0171 -0.14421,-0.012 -0.14757,-0.0067 -0.0496,-5.7e-4 -0.15125,3.3e-4 -0.15347,0.006 -0.15556,0.01132 -0.0857,0.009 -0.15916,0.02011 -0.16026,0.02581 -0.16116,0.03151 -0.0759,0.0168 -0.16212,0.04007 -0.16162,0.04547 -0.16077,0.05117 -0.1597,0.05657 -0.15843,0.06198 -0.15676,0.0673 -0.1284,0.0598 -0.12864,0.06421 -0.1494,0.08022 -0.14565,0.08442 -0.14158,0.08851 -0.13742,0.09244 -0.13295,0.09614 -0.12831,0.09975 -0.0599,0.04914 -0.1205,0.103937 -0.11488,0.106518 -0.1093,0.108896 -0.0592,0.06243 -0.0994,0.111117 -0.0932,0.112566 -0.0872,0.114036 -0.0312,0.04314 -0.0791,0.115545 -0.0727,0.116144 -0.0663,0.116392 -0.0599,0.116369 -0.0535,0.11607 -0.0472,0.115604 -0.0407,0.114944", + "fill": { + "paint": "transparent" + }, + "id": "path7088", + "name": "path7088", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 111.19213,40.38175 -0.0208,0.06243 -0.0224,0.06258 -0.024,0.06273 -0.016,0.03992 -0.0263,0.06287 -0.028,0.06302 -0.0295,0.0631 -0.0312,0.06318 -0.0327,0.06317 -0.0343,0.06317 -0.036,0.06318 -0.0376,0.06309 -0.0391,0.06303 -0.0408,0.0628 -0.028,0.04164", + "fill": { + "paint": "transparent" + }, + "id": "path7089", + "name": "path7089", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 110.74271,41.281162 -0.0859,0.121637 -0.0916,0.120533 -0.0972,0.119296 -0.1029,0.117922 -0.10834,0.11634 -0.11394,0.114605 -0.11928,0.112619 -0.1244,0.110404 -0.12967,0.107958 -0.13439,0.105274 -0.10491,0.0778 -0.1423,0.09984 -0.14605,0.09604 -0.14956,0.09233 -0.15325,0.08842 -0.15675,0.08462 -0.0376,0.01936 -0.0319,0.01635 -0.16155,0.0787 -0.16371,0.07413 -0.16562,0.06939 -0.16731,0.06445 -0.16866,0.05958 -0.0448,0.01478 -0.16947,0.05297 -0.16978,0.04779 -0.17001,0.04254 -0.16987,0.03744 -0.16977,0.03211 -0.0623,0.01065 -0.1681,0.02491 -0.16668,0.01966 -0.16506,0.01433 -0.16338,0.009 -0.16156,0.0037 -0.086,1.12e-4 -0.15707,-0.0038 -0.15419,-0.008 -0.15101,-0.01321 -0.14805,-0.01801 -0.14494,-0.02266 -0.10283,-0.01921 -0.13878,-0.03023 -0.13502,-0.03451 -0.13087,-0.03865 -0.1268,-0.04254 -0.12248,-0.04636", + "fill": { + "paint": "transparent" + }, + "id": "path7090", + "name": "path7090", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 104.50683,43.381715 -0.0239,-0.01006 -0.0623,-0.02611 -0.0607,-0.02716 -0.0599,-0.02813 -0.0583,-0.02904 -0.0575,-0.02993 -0.0559,-0.03091 -0.0544,-0.03173 -0.0279,-0.01703 -0.0527,-0.03316 -0.052,-0.03407 -0.0503,-0.03489 -0.0496,-0.03564 -0.0479,-0.03654 -0.0472,-0.03736 -0.0455,-0.03804 -0.028,-0.02461 -0.0431,-0.03954 -0.0424,-0.04014 -0.0407,-0.04097 -0.04,-0.04179 -0.0384,-0.04239 -0.0367,-0.04299 -0.0359,-0.04367 -0.024,-0.03046 -0.0335,-0.0451 -0.0327,-0.04576 -0.0312,-0.04637 -0.0303,-0.04704 -0.0288,-0.04764 -0.0272,-0.04816 -0.0263,-0.04854", + "fill": { + "paint": "transparent" + }, + "id": "path7091", + "name": "path7091", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 111.08913,38.538305 0.0248,0.04854 0.0232,0.04937 0.0216,0.04997 0.0208,0.05079 0.0192,0.05124 0.0184,0.05177 0.0168,0.05229 0.0152,0.05267 0.008,0.02881 0.0136,0.05319 0.012,0.05388 0.0112,0.05447 0.01,0.05507 0.008,0.05545 0.008,0.05597 0.008,0.05635 v 0.0568 0.02723", + "fill": { + "paint": "transparent" + }, + "id": "path7092", + "name": "path7092", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 111.32954,39.49062 5e-4,0.0577 -5e-4,0.05822 v 0.05859 0.05897 l -0.008,0.0595 -0.008,0.0598 -0.008,0.0601 -0.008,0.02874 -0.0103,0.06048 -0.0112,0.06078 -0.0128,0.06108 -0.0144,0.06138 -0.016,0.0616 -0.0176,0.06198 -0.0192,0.06213 -0.008,0.02041", + "fill": { + "paint": "transparent" + }, + "id": "path7093", + "name": "path7093", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 103.73471,40.38175 -0.01,0.02963 -0.0168,0.05642 -0.0152,0.05635 -0.0136,0.05627 -0.0128,0.05605 -0.0113,0.05582 -0.01,0.05545 -0.008,0.05515 -0.008,0.05477 -0.008,0.0544 v 0.05388 0.0535 l -5e-4,0.04847 5e-4,0.05267 v 0.05229 0.05184 l 0.008,0.05147 0.008,0.05094 0.008,0.049 0.009,0.05019 0.0103,0.04974 0.0112,0.04914 0.0128,0.04846 0.0136,0.04794", + "fill": { + "paint": "transparent" + }, + "id": "path7094", + "name": "path7094", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 67.241902,139.52412 0.01206,0.0246 0.01081,0.0255 0.0096,0.026 0.0082,0.0266 0.002,0.006 0.0066,0.0269 0.0053,0.0275 0.004,0.028 0.0026,0.0284 3.4e-4,0.006 5e-4,0.0288 -4.87e-4,0.0294 -0.002,0.0299 -0.0026,0.0303 -0.0047,0.0307 -0.0066,0.0309 -0.008,0.0311 -0.0091,0.0311 -0.002,0.005", + "fill": { + "paint": "transparent" + }, + "id": "path7121", + "name": "path7121", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 67.268335,139.99679 -0.01253,0.0355 -0.01446,0.0356 -0.01632,0.0357 -0.01832,0.0357 -0.02032,0.0357 -0.02233,0.0357 -0.02432,0.0355 -0.02618,0.0354 -0.02819,0.0351 -0.03018,0.0347 -0.03192,0.0342 -0.03379,0.0336 -0.03544,0.0328 -0.03705,0.0319 -0.0154,0.0125 -0.03905,0.0303 -0.04044,0.0293 -0.04191,0.0283 -0.02019,0.0129 -0.04451,0.0269 -0.04564,0.0257 -0.04664,0.0241 -0.01832,0.009 -0.03965,0.0184 -0.0481,0.0206 -0.04864,0.019 -0.04911,0.0174 -0.04938,0.0157 -0.04977,0.014 -0.05004,0.0123 -1.54e-4,5e-5 -0.04977,0.0105 -0.04938,0.009 -0.04898,0.007 -0.04844,0.005 -0.04798,0.004 -0.0475,0.002 -0.04677,1.5e-4 -0.01679,-3.8e-4 -0.04538,-0.002 -0.04425,-0.004 -0.04297,-0.005 -0.04185,-0.007 -0.04064,-0.008 -0.03944,-0.01 -0.03824,-0.0111 -0.02592,-0.008 -0.03625,-0.0134 -0.03497,-0.0147 -0.03345,-0.0159 -0.03185,-0.017 -0.03045,-0.0181 -0.02885,-0.019 -0.02712,-0.02 -0.02526,-0.0206 -0.02438,-0.0221 -0.02286,-0.023 -0.02132,-0.0238 -0.01985,-0.0248 -0.01832,-0.0258 -0.01679,-0.0265 -0.01506,-0.0271", + "fill": { + "paint": "transparent" + }, + "id": "path7122", + "name": "path7122", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 66.160781,144.05429 0.01201,0.0246 0.01081,0.0255 0.0096,0.026 0.0082,0.0266 0.002,0.006 0.0066,0.0271 0.0053,0.0275 0.004,0.028 0.0026,0.0284 3.4e-4,0.006 5e-4,0.0288 -4.87e-4,0.0293 -0.002,0.03 -0.0026,0.0303 -0.0047,0.0307 -0.0066,0.0309 -0.0079,0.0311 -0.0092,0.0311 -0.002,0.005", + "fill": { + "paint": "transparent" + }, + "id": "path7123", + "name": "path7123", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 66.187207,144.52698 -0.01253,0.0356 -0.01446,0.0356 -0.01632,0.0357 -0.01832,0.0357 -0.02032,0.0357 -0.02226,0.0357 -0.02432,0.0355 -0.02625,0.0354 -0.02819,0.0351 -0.03011,0.0347 -0.03206,0.0342 -0.03371,0.0336 -0.03544,0.0328 -0.03705,0.0319 -0.0154,0.0125 -0.03905,0.0304 -0.04044,0.0293 -0.04192,0.0282 -0.02019,0.0129 -0.04451,0.0269 -0.04557,0.0257 -0.04664,0.0241 -0.01832,0.009 -0.03952,0.0184 -0.04818,0.0206 -0.04864,0.019 -0.04911,0.0174 -0.04957,0.0157 -0.04977,0.014 -0.0499,0.0123 -1.99e-4,6e-5 -0.04964,0.0105 -0.04938,0.009 -0.04898,0.007 -0.04844,0.005 -0.04797,0.004 -0.04744,0.002 -0.0469,1.1e-4 -0.01679,-3.7e-4 -0.04538,-0.002 -0.04425,-0.004 -0.04305,-0.005 -0.04185,-0.007 -0.04064,-0.008 -0.03944,-0.01 -0.03831,-0.0111 -0.02579,-0.009 -0.03625,-0.0134 -0.03497,-0.0147 -0.03345,-0.0159 -0.03193,-0.017 -0.03037,-0.0181 -0.02885,-0.019 -0.02732,-0.02 -0.02513,-0.0206 -0.02438,-0.0221 -0.02286,-0.023 -0.02132,-0.0238 -0.01985,-0.0249 -0.01839,-0.0257 -0.01679,-0.0266 -0.01499,-0.027", + "fill": { + "paint": "transparent" + }, + "id": "path7124", + "name": "path7124", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 72.251937,144.05429 0.01201,0.0246 0.01081,0.0255 0.0096,0.026 0.0082,0.0266 0.002,0.006 0.0066,0.0271 0.0053,0.0275 0.004,0.028 0.0026,0.0284 3.33e-4,0.006 5e-4,0.0288 -4.87e-4,0.0293 -0.002,0.03 -0.0034,0.0303 -0.0047,0.0307 -0.0066,0.0309 -0.008,0.0311 -0.0091,0.0311 -0.002,0.005", + "fill": { + "paint": "transparent" + }, + "id": "path7125", + "name": "path7125", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 72.278369,144.52698 -0.01246,0.0356 -0.01446,0.0356 -0.01632,0.0357 -0.01839,0.0357 -0.02032,0.0357 -0.02233,0.0357 -0.02419,0.0355 -0.02631,0.0354 -0.02819,0.0351 -0.03005,0.0347 -0.03206,0.0342 -0.03371,0.0336 -0.03544,0.0328 -0.03705,0.0319 -0.0154,0.0125 -0.03905,0.0304 -0.04044,0.0293 -0.0419,0.0282 -0.02019,0.0129 -0.04451,0.0269 -0.04564,0.0257 -0.04664,0.0241 -0.01832,0.009 -0.03952,0.0184 -0.04818,0.0206 -0.04864,0.019 -0.04911,0.0174 -0.04944,0.0157 -0.04977,0.014 -0.0499,0.0123 -2e-4,6e-5 -0.04964,0.0105 -0.04938,0.009 -0.04898,0.007 -0.04844,0.005 -0.04797,0.004 -0.0475,0.002 -0.04684,1.1e-4 -0.01673,-3.7e-4 -0.04538,-0.002 -0.04425,-0.004 -0.04305,-0.005 -0.04185,-0.007 -0.04064,-0.008 -0.03944,-0.01 -0.03839,-0.0111 -0.02586,-0.009 -0.03638,-0.0134 -0.03491,-0.0147 -0.03345,-0.0159 -0.03193,-0.017 -0.03037,-0.0181 -0.02885,-0.019 -0.02732,-0.02 -0.02513,-0.0206 -0.02438,-0.0221 -0.02286,-0.023 -0.02132,-0.0238 -0.01985,-0.0249 -0.01832,-0.0257 -0.01679,-0.0266 -0.01499,-0.027", + "fill": { + "paint": "transparent" + }, + "id": "path7126", + "name": "path7126", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 73.703144,139.12974 -0.01279,0.0355 -0.0144,0.0357 -0.01606,0.0358 -0.01839,0.0357 -0.01999,0.0357 -0.02239,0.0356 -0.02398,0.0355 -0.02632,0.0353 -0.02799,0.035 -0.03032,0.0347 -0.03191,0.0343 -0.03424,0.0336 -0.03518,0.033 -0.03758,0.0321 -0.01519,0.0123 -0.03911,0.0307 -0.0407,0.0294 -0.04151,0.0282 -0.04311,0.027 -0.04478,0.0258 -0.04551,0.0245 -0.04151,0.0208 -0.03911,0.0181 -0.04872,0.0208 -0.04891,0.0191 -0.0493,0.0174 -0.04957,0.0157 -0.04964,0.014 -0.04977,0.0123 -4.86e-4,1.1e-4 -0.04964,0.0105 -0.04917,0.009 -0.04885,0.007 -0.04844,0.005 -0.04798,0.004 -0.04744,0.002 -0.04697,1e-4 -0.01659,-3.5e-4 -0.04544,-0.002 -0.04425,-0.004 -0.04305,-0.005 -0.04185,-0.007 -0.04064,-0.008 -0.03944,-0.01 -0.03838,-0.0111 -0.02579,-0.009 -0.03638,-0.0134 -0.03492,-0.0147 -0.03345,-0.0159 -0.03192,-0.017 -0.03038,-0.0181 -0.02885,-0.019 -0.02732,-0.02 -0.02519,-0.0206 -0.02438,-0.0221 -0.02286,-0.023 -0.02132,-0.0238 -0.01985,-0.0249 -0.01832,-0.0257 -0.01679,-0.0266 -0.01499,-0.0271", + "fill": { + "paint": "transparent" + }, + "id": "path7195", + "name": "path7195", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 73.676712,138.65704 0.01201,0.0242 0.01033,0.0252 0.0096,0.0259 0.008,0.0268 0.0079,0.0273 0.008,0.0278 0.008,0.0282 v 0.0285 l 4.99e-4,0.0114 v 0.0287 l -4.86e-4,0.0291 v 0.0296 0.0301 l -0.0079,0.0305 -0.008,0.0309 -0.008,0.0311 -0.0096,0.0313 v 0.007", + "fill": { + "paint": "transparent" + }, + "id": "path7196", + "name": "path7196", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 98.05037,54.037148 0.0103,0.01824 0.0121,0.01794 0.0128,0.01755 0.0144,0.01703 0.016,0.01628 0.0168,0.01553 0.0168,0.01358 0.0184,0.01358 0.02,0.0129 0.0208,0.01207 0.0224,0.01125 0.0232,0.01029 0.0248,0.009 0.0192,0.0067 0.0264,0.008 0.0272,0.0067 0.028,0.0052 0.0296,0.0037 0.0303,0.003 0.0312,0.0022 0.0128,3.08e-4 0.032,-1.5e-4 0.0327,-0.0022 0.0327,-0.003 0.0336,-0.0052 0.0335,-0.0052 0.0343,-0.0067 0.008,-5.62e-4 0.0343,-0.009 0.0343,-0.01006 0.0343,-0.01132 0.0335,-0.0126 0.0336,-0.01396 0.0311,-0.01426 4e-4,-1.95e-4 0.0319,-0.0162 0.0311,-0.01725 0.0303,-0.01809 0.0287,-0.01906 0.028,-0.02003 0.0272,-0.02101 0.0152,-0.01222 0.0256,-0.02221 0.024,-0.02281 0.0224,-0.02334 0.0208,-0.02387 0.02,-0.02402 0.0176,-0.02431 0.0168,-0.02432 0.0152,-0.02454 0.0136,-0.02454 0.0121,-0.02454 0.0103,-0.02454 0.009,-0.02447", + "fill": { + "paint": "transparent" + }, + "id": "path7271", + "name": "path7271", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 93.39366,57.008729 0.0103,0.01824 0.0112,0.01793 0.0128,0.01755 0.0145,0.01695 0.0161,0.01628 0.0168,0.01553 0.0168,0.01358 0.0184,0.01373 0.02,0.0129 0.0208,0.012 0.0224,0.01117 0.0232,0.01035 0.0247,0.009 0.0192,0.0067 0.0264,0.008 0.0272,0.0067 0.0287,0.0052 0.0296,0.0037 0.0303,0.003 0.0312,0.0022 0.0128,3.31e-4 0.0319,-1.58e-4 0.0328,-0.0022 0.0335,-0.003 0.0336,-0.0052 0.0335,-0.0052 0.0342,-0.0067 0.008,-5.71e-4 0.0342,-0.009 0.0342,-0.01006 0.0343,-0.01132 0.0335,-0.0126 0.0335,-0.01396 0.0311,-0.01418 3.2e-4,-1.57e-4 0.0319,-0.0162 0.0311,-0.01725 0.0303,-0.01816 0.0287,-0.01906 0.028,-0.02004 0.0272,-0.02101 0.0152,-0.01222 0.0256,-0.02221 0.0239,-0.02281 0.0224,-0.02334 0.0208,-0.02372 0.0192,-0.02402 0.0176,-0.02431 0.016,-0.02432 0.0152,-0.02454 0.0137,-0.02454 0.012,-0.02454 0.0103,-0.02447 0.009,-0.02447", + "fill": { + "paint": "transparent" + }, + "id": "path7272", + "name": "path7272", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 97.0813,57.008729 0.0103,0.01824 0.0121,0.01793 0.0127,0.01755 0.0144,0.01695 0.016,0.01628 0.0168,0.01553 0.0168,0.01358 0.0184,0.01373 0.02,0.0129 0.0208,0.012 0.0224,0.01117 0.0232,0.01035 0.0247,0.009 0.02,0.0067 0.0264,0.008 0.0272,0.0067 0.0279,0.0052 0.0296,0.0037 0.0303,0.003 0.0311,0.0022 0.0128,3.31e-4 0.0319,-1.58e-4 0.0327,-0.0022 0.0327,-0.003 0.0335,-0.0052 0.0336,-0.0052 0.0343,-0.0067 0.008,-5.71e-4 0.0343,-0.009 0.0343,-0.01006 0.0343,-0.01132 0.0336,-0.0126 0.0335,-0.01396 0.0311,-0.01418 3.1e-4,-1.57e-4 0.0319,-0.0162 0.0311,-0.01725 0.0304,-0.01816 0.0287,-0.01906 0.028,-0.02004 0.0272,-0.02101 0.0144,-0.01222 0.0256,-0.02221 0.024,-0.02281 0.0224,-0.02334 0.0208,-0.02372 0.0192,-0.02402 0.0184,-0.02431 0.0168,-0.02432 0.0152,-0.02454 0.0136,-0.02454 0.0121,-0.02454 0.0103,-0.02447 0.009,-0.02447", + "fill": { + "paint": "transparent" + }, + "id": "path7273", + "name": "path7273", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 95.72201,55.522946 0.0105,0.01824 0.0112,0.01794 0.0128,0.01755 0.0144,0.01695 0.016,0.01628 0.0168,0.01553 0.0168,0.01358 0.0184,0.01373 0.02,0.01291 0.0208,0.01207 0.0224,0.01125 0.0232,0.01028 0.0248,0.009 0.0192,0.0067 0.0263,0.008 0.0272,0.0067 0.0287,0.0052 0.0295,0.0037 0.0303,0.003 0.0311,0.0022 0.0128,3.01e-4 0.0319,-1.35e-4 0.0327,-0.0022 0.0328,-0.003 0.0335,-0.0052 0.0335,-0.0052 0.0342,-0.0067 0.008,-5.71e-4 0.0343,-0.009 0.0342,-0.01006 0.0342,-0.01132 0.0335,-0.01261 0.0336,-0.01396 0.0311,-0.01418 4e-4,-1.79e-4 0.0319,-0.0162 0.0312,-0.0171 0.0303,-0.01816 0.0287,-0.01906 0.0279,-0.02003 0.0272,-0.02101 0.0152,-0.01222 0.0256,-0.02221 0.024,-0.02281 0.0224,-0.02334 0.0208,-0.02386 0.0192,-0.02402 0.0176,-0.02424 0.0168,-0.02431 0.0152,-0.02454 0.0136,-0.02454 0.0121,-0.02454 0.0103,-0.02447 0.009,-0.02446", + "fill": { + "paint": "transparent" + }, + "id": "path7274", + "name": "path7274", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 94.3628,54.037148 0.0105,0.01824 0.0112,0.01794 0.0128,0.01755 0.0145,0.01703 0.016,0.01628 0.0168,0.01553 0.0168,0.01358 0.0184,0.01358 0.02,0.0129 0.0208,0.01207 0.0224,0.01125 0.0232,0.01029 0.0247,0.009 0.0192,0.0067 0.0263,0.008 0.0272,0.0067 0.0287,0.0052 0.0296,0.0037 0.0303,0.003 0.0312,0.0022 0.0128,3.08e-4 0.0318,-1.5e-4 0.0327,-0.0022 0.0327,-0.003 0.0335,-0.0052 0.0336,-0.0052 0.0342,-0.0067 0.008,-5.62e-4 0.0343,-0.009 0.0342,-0.01006 0.0342,-0.01132 0.0335,-0.0126 0.0335,-0.01396 0.0312,-0.01426 3.2e-4,-1.95e-4 0.0319,-0.0162 0.0311,-0.01725 0.0304,-0.01809 0.0287,-0.01906 0.0279,-0.02003 0.0272,-0.02101 0.0152,-0.01222 0.0256,-0.02221 0.024,-0.02281 0.0224,-0.02334 0.0208,-0.02387 0.0192,-0.02402 0.0176,-0.02431 0.0161,-0.02432 0.0152,-0.02454 0.0137,-0.02454 0.012,-0.02454 0.0105,-0.02454 0.009,-0.02447", + "fill": { + "paint": "transparent" + }, + "id": "path7275", + "name": "path7275", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 94.70613,54.248284 0.0152,-0.02454 0.0168,-0.02431 0.0184,-0.02417 0.02,-0.02386 0.0216,-0.02342 0.0232,-0.02312 0.024,-0.02251 0.0112,-0.01001 0.0263,-0.02176 0.0272,-0.02086 0.0287,-0.01996 0.0296,-0.01906 0.0303,-0.01816 0.032,-0.0171 0.0327,-0.01605 0.008,-0.003 0.008,-0.003 0.0336,-0.01433 0.0335,-0.01313 0.0335,-0.0117 0.0342,-0.01042 0.0342,-0.009 0.0343,-0.008 0.0343,-0.006 0.0152,-0.0022 0.0335,-0.0052 0.0335,-0.003 0.0327,-0.0022 0.0318,-2.77e-4 0.0312,5.71e-4 0.0303,0.0022 0.0296,0.0037", + "fill": { + "paint": "transparent" + }, + "id": "path7276", + "name": "path7276", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 95.59849,53.753554 v -0.009 l 0.008,-0.02402 0.008,-0.02386 v -0.02357 -0.02312 l 5e-4,-0.02266 -5e-4,-0.02206 -5e-4,-0.0114 v -0.02191 l -0.008,-0.02153 -0.008,-0.02116 -0.008,-0.02056 -0.008,-0.01974 -0.009,-0.01891", + "fill": { + "paint": "transparent" + }, + "id": "path7277", + "name": "path7277", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 96.06532,55.734061 0.0152,-0.02454 0.0168,-0.02431 0.0184,-0.02417 0.02,-0.02386 0.0217,-0.02342 0.0232,-0.02312 0.024,-0.02266 0.0112,-0.01005 0.0263,-0.02176 0.0272,-0.02093 0.0279,-0.01996 0.0294,-0.01906 0.0303,-0.01816 0.0311,-0.01703 0.0327,-0.01605 0.008,-0.003 0.008,-0.003 0.0335,-0.01433 0.0335,-0.01313 0.0336,-0.01177 0.0342,-0.01042 0.0343,-0.009 0.0343,-0.008 0.0343,-0.006 0.0152,-0.0022 0.0336,-0.0052 0.0335,-0.003 0.0327,-0.0022 0.0319,-2.55e-4 0.0311,5.69e-4 0.0303,0.0022 0.0296,0.0037", + "fill": { + "paint": "transparent" + }, + "id": "path7278", + "name": "path7278", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 96.95778,55.239322 v -0.009 l 0.008,-0.02402 0.008,-0.02387 v -0.02342 -0.02312 -0.02266 l -5e-4,-0.02206 v -0.01132 -0.02191 -0.02161 l -0.008,-0.02116 -0.008,-0.02041 -0.008,-0.01973 -0.009,-0.01891", + "fill": { + "paint": "transparent" + }, + "id": "path7279", + "name": "path7279", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 97.42461,57.21986 0.0152,-0.02454 0.0168,-0.02431 0.0184,-0.02417 0.02,-0.02387 0.0216,-0.02342 0.0232,-0.02312 0.024,-0.02251 0.0112,-0.01006 0.0264,-0.02176 0.0272,-0.02086 0.0288,-0.01996 0.0295,-0.01906 0.0304,-0.01816 0.0312,-0.0171 0.0327,-0.01598 0.008,-0.003 0.008,-0.003 0.0335,-0.01455 0.0336,-0.01313 0.0336,-0.0117 0.0343,-0.01042 0.0343,-0.009 0.0343,-0.008 0.0343,-0.006 0.0152,-0.0022 0.0336,-0.0052 0.0336,-0.003 0.0328,-0.0022 0.0319,-2.55e-4 0.0312,5.77e-4 0.0311,0.0022 0.0295,0.0037", + "fill": { + "paint": "transparent" + }, + "id": "path7280", + "name": "path7280", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 98.31698,56.725107 v -0.009 l 0.008,-0.02402 0.008,-0.02387 v -0.02357 -0.02312 l 5e-4,-0.02266 -5e-4,-0.02221 -5e-4,-0.01132 v -0.02191 l -0.008,-0.02161 -0.008,-0.02116 -0.008,-0.02056 -0.008,-0.01973 -0.009,-0.01891", + "fill": { + "paint": "transparent" + }, + "id": "path7281", + "name": "path7281", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 93.73698,57.21986 0.0152,-0.02454 0.0168,-0.02431 0.0184,-0.02417 0.02,-0.02387 0.0216,-0.02342 0.0232,-0.02312 0.024,-0.02251 0.0113,-0.01006 0.0263,-0.02176 0.0272,-0.02086 0.0287,-0.01996 0.0296,-0.01906 0.0303,-0.01816 0.0319,-0.0171 0.0319,-0.01598 0.008,-0.003 0.008,-0.003 0.0335,-0.01455 0.0336,-0.01313 0.0335,-0.0117 0.0342,-0.01042 0.0342,-0.009 0.0342,-0.008 0.0342,-0.006 0.0152,-0.0022 0.0335,-0.0052 0.0335,-0.003 0.0327,-0.0022 0.0319,-2.55e-4 0.0312,5.77e-4 0.0303,0.0022 0.0295,0.0037", + "fill": { + "paint": "transparent" + }, + "id": "path7282", + "name": "path7282", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 94.62933,56.725107 v -0.009 l 0.008,-0.02402 0.008,-0.02387 v -0.02357 -0.02312 l 5e-4,-0.02266 -4.8e-4,-0.02221 v -0.01132 -0.02191 -0.02161 l -0.008,-0.02116 -0.008,-0.02056 -0.008,-0.01973 -0.009,-0.01891", + "fill": { + "paint": "transparent" + }, + "id": "path7283", + "name": "path7283", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 98.3936,54.248284 0.0152,-0.02454 0.0168,-0.02431 0.0184,-0.02417 0.02,-0.02386 0.0216,-0.02342 0.0232,-0.02312 0.024,-0.02251 0.0112,-0.01001 0.0264,-0.02176 0.0272,-0.02086 0.0288,-0.01996 0.0295,-0.01906 0.0303,-0.01816 0.0312,-0.0171 0.0327,-0.01605 0.008,-0.003 0.008,-0.003 0.0335,-0.01433 0.0336,-0.01313 0.0336,-0.0117 0.0343,-0.01042 0.0343,-0.009 0.0343,-0.008 0.0343,-0.006 0.0152,-0.0022 0.0335,-0.0052 0.0336,-0.003 0.0327,-0.0022 0.0319,-2.77e-4 0.0312,5.71e-4 0.0303,0.0022 0.0296,0.0037", + "fill": { + "paint": "transparent" + }, + "id": "path7285", + "name": "path7285", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 99.28613,53.753554 v -0.009 l 0.008,-0.02402 0.008,-0.02386 v -0.02357 -0.02312 l 5e-4,-0.02266 -5e-4,-0.02206 v -0.0114 -0.02191 l -0.008,-0.02153 -0.008,-0.02116 -0.008,-0.02056 -0.008,-0.01974 -0.009,-0.01891", + "fill": { + "paint": "transparent" + }, + "id": "path7286", + "name": "path7286", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 98.30108,56.44149 -0.0103,-0.01824 -0.012,-0.01794 -0.0128,-0.01755 -0.0144,-0.01703 -0.016,-0.01635 -0.0168,-0.01553 -0.0168,-0.01366 -0.0184,-0.01373 -0.02,-0.0129 -0.0208,-0.012 -0.0224,-0.01117 -0.0232,-0.0102 -0.0247,-0.009 -0.0192,-0.0067 -0.0263,-0.008 -0.0272,-0.0067 -0.0287,-0.0052 -0.0296,-0.0037 -0.0303,-0.003 -0.0311,-0.0022 -0.0128,-3.23e-4 -0.032,1.65e-4 -0.0328,0.0022 -0.0327,0.003 -0.0336,0.0052 -0.0335,0.0052 -0.0343,0.0067 -0.008,5.7e-4 -0.0343,0.009 -0.0343,0.01005 -0.0343,0.01132 -0.0336,0.0126 -0.0335,0.01396 -0.0311,0.01418 -2.5e-4,1.64e-4 -0.032,0.0162 -0.0312,0.01725 -0.0303,0.01809 -0.0287,0.01906 -0.0279,0.02003 -0.0272,0.02101 -0.0152,0.01222 -0.0256,0.02221 -0.024,0.02281 -0.0224,0.02334 -0.0208,0.02372 -0.0192,0.02402 -0.0176,0.02424 -0.016,0.02431 -0.0152,0.02454 -0.0136,0.02454 -0.0121,0.02454 -0.0103,0.02447 -0.009,0.02447", + "fill": { + "paint": "transparent" + }, + "id": "path7288", + "name": "path7288", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 94.83867,56.525005 0.008,-0.02221 0.009,-0.03181 0.008,-0.03151 0.008,-0.03113 v -0.03076 -0.02484 l 3.1e-4,-0.03016 v -0.02957 -0.02903 l -0.008,-0.02835 -0.008,-0.02431 -0.008,-0.02761 -0.009,-0.02701 -0.0104,-0.02626 -0.012,-0.02551 -0.0137,-0.02484 -0.0152,-0.02424 -0.0168,-0.02364 -0.0176,-0.02281 -0.0168,-0.01914 -0.0208,-0.02101 -0.0217,-0.02026 -0.0232,-0.01951 -0.0248,-0.01861 -0.0216,-0.01455 -0.0272,-0.01673 -0.0287,-0.01568 -0.0303,-0.01471 -0.0311,-0.01366 -0.0224,-0.009 -0.0335,-0.01162 -0.0342,-0.01044 -0.036,-0.009 -0.0367,-0.008 -0.0208,-0.0037 -0.0391,-0.006 -0.04,-0.0052 -0.0407,-0.003 -0.0415,-0.0022 -0.0176,-1.34e-4 -0.0431,5.54e-4 -0.0431,0.0022 -0.0439,0.0037 -0.0448,0.0052 -0.0448,0.0067 -0.0448,0.009 -0.0455,0.01042 -0.0455,0.012 -0.0232,0.0067 -0.0455,0.01455 -0.0448,0.0159 -0.0439,0.0174 -0.0439,0.01891 -0.0431,0.02033 -0.0424,0.02183 -0.0121,0.0067 -0.0415,0.02356 -0.0407,0.02484 -0.02,0.01298 -0.0383,0.02626 -0.0367,0.02716 -0.0352,0.02791 -0.0335,0.02873 -0.0319,0.02956 -0.0303,0.03016 -0.0287,0.03083 -0.0272,0.03151 -0.024,0.02993 -0.024,0.03226 -0.0224,0.03241 -0.0208,0.03256 -0.0184,0.03263 -0.0168,0.03263 -0.0152,0.03248 -0.0128,0.03241 -0.0112,0.03226", + "fill": { + "paint": "transparent" + }, + "id": "path7289", + "name": "path7289", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 96.64881,56.525005 -0.008,0.02221 -0.008,0.03188 -0.008,0.03151 -0.008,0.03113 v 0.03076 0.02484 l -3.2e-4,0.03016 v 0.02956 0.02903 l 0.008,0.02835 0.008,0.02431 0.008,0.02761 0.009,0.02701 0.0103,0.02634 0.012,0.02544 0.0136,0.02484 0.0152,0.02424 0.0168,0.02364 0.0184,0.02273 0.0168,0.01914 0.02,0.02101 0.0216,0.02026 0.0232,0.01951 0.0247,0.01861 0.0216,0.01455 0.0272,0.0168 0.0287,0.01568 0.0295,0.01471 0.0312,0.01373 0.0232,0.009 0.0335,0.01162 0.0343,0.01042 0.0359,0.009 0.0367,0.008 0.0208,0.0037 0.0391,0.006 0.04,0.0052 0.0407,0.003 0.0415,0.0022 0.0176,1.34e-4 0.0431,-5.55e-4 0.0431,-0.0022 0.0439,-0.0037 0.0439,-0.0052 0.0448,-0.0067 0.0448,-0.009 0.0455,-0.01043 0.0455,-0.012 0.0224,-0.0067 0.0455,-0.01441 0.0448,-0.0159 0.0439,-0.0174 0.0439,-0.01891 0.0431,-0.02033 0.0424,-0.02183 0.012,-0.0067 0.0415,-0.02356 0.0407,-0.02484 0.02,-0.01306 0.0383,-0.02626 0.0367,-0.02701 0.0352,-0.0279 0.0335,-0.02874 0.032,-0.02956 0.0303,-0.03016 0.0287,-0.03083 0.0272,-0.03151 0.024,-0.02993 0.024,-0.03226 0.0224,-0.03248 0.0208,-0.03256 0.0184,-0.03263 0.0168,-0.03256 0.0152,-0.03248 0.0128,-0.03233 0.0112,-0.03226", + "fill": { + "paint": "transparent" + }, + "id": "path7290", + "name": "path7290", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 98.52632,56.525005 0.008,-0.02221 0.009,-0.03181 0.008,-0.03151 0.008,-0.03113 v -0.03076 -0.02484 l 1.6e-4,-0.03016 v -0.02957 -0.02903 l -0.008,-0.02835 -0.008,-0.02431 -0.008,-0.02761 -0.009,-0.02701 -0.0103,-0.02626 -0.012,-0.02551 -0.0136,-0.02484 -0.0152,-0.02424 -0.0168,-0.02364 -0.0176,-0.02281 -0.0168,-0.01914 -0.02,-0.02101 -0.0216,-0.02026 -0.0232,-0.01951 -0.0247,-0.01861 -0.0216,-0.01455 -0.0272,-0.01673 -0.0288,-0.01568 -0.0295,-0.01471 -0.0311,-0.01366 -0.0224,-0.009 -0.0336,-0.01162 -0.0343,-0.01044 -0.036,-0.009 -0.0367,-0.008 -0.0216,-0.0037 -0.0384,-0.006 -0.04,-0.0052 -0.0407,-0.003 -0.0415,-0.0022 -0.0176,-1.34e-4 -0.0431,5.54e-4 -0.0431,0.0022 -0.0439,0.0037 -0.0448,0.0052 -0.0448,0.0067 -0.0448,0.009 -0.0455,0.01042 -0.0455,0.012 -0.0232,0.0067 -0.0455,0.01455 -0.0448,0.0159 -0.0448,0.0174 -0.0439,0.01891 -0.0431,0.02033 -0.0424,0.02183 -0.012,0.0067 -0.0415,0.02356 -0.0407,0.02484 -0.02,0.01298 -0.0383,0.02626 -0.0367,0.02716 -0.0351,0.02791 -0.0336,0.02873 -0.0319,0.02956 -0.0303,0.03016 -0.0287,0.03083 -0.0272,0.03151 -0.024,0.02993 -0.024,0.03226 -0.0224,0.03241 -0.0208,0.03256 -0.0184,0.03263 -0.0168,0.03263 -0.0152,0.03248 -0.0128,0.03241 -0.0112,0.03226", + "fill": { + "paint": "transparent" + }, + "id": "path7291", + "name": "path7291", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 96.94188,54.955715 -0.0103,-0.01824 -0.0112,-0.01793 -0.0128,-0.0174 -0.0144,-0.01703 -0.016,-0.01628 -0.0168,-0.01553 -0.0168,-0.01358 -0.0184,-0.01366 -0.02,-0.01291 -0.0208,-0.012 -0.0224,-0.01117 -0.0232,-0.01042 -0.0247,-0.009 -0.02,-0.0067 -0.0264,-0.008 -0.0272,-0.0067 -0.0287,-0.0052 -0.0296,-0.0037 -0.0304,-0.003 -0.0311,-0.0022 -0.0128,-3.31e-4 -0.0319,1.72e-4 -0.0327,0.0022 -0.0327,0.003 -0.0335,0.0052 -0.0335,0.0052 -0.0342,0.0067 -0.008,5.71e-4 -0.0343,0.009 -0.0342,0.01006 -0.0342,0.01132 -0.0336,0.01261 -0.0335,0.01396 -0.0311,0.01425 -4e-4,1.59e-4 -0.0319,0.0162 -0.0311,0.01725 -0.0304,0.01815 -0.0287,0.01906 -0.0279,0.02003 -0.0272,0.02101 -0.0144,0.01222 -0.0256,0.02221 -0.024,0.02281 -0.0224,0.02334 -0.0208,0.02372 -0.0192,0.02402 -0.0184,0.02424 -0.0168,0.02431 -0.0152,0.02454 -0.0137,0.02454 -0.012,0.02454 -0.0103,0.02446 -0.009,0.02447", + "fill": { + "paint": "transparent" + }, + "id": "path7292", + "name": "path7292", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 95.58276,53.469954 -0.0104,-0.01824 -0.012,-0.01793 -0.0128,-0.01748 -0.0145,-0.01695 -0.0161,-0.01635 -0.0168,-0.01553 -0.0168,-0.01366 -0.0184,-0.01358 -0.02,-0.0129 -0.0208,-0.01207 -0.0224,-0.01117 -0.0232,-0.01035 -0.0247,-0.009 -0.02,-0.0067 -0.0264,-0.008 -0.0272,-0.0067 -0.0279,-0.0052 -0.0296,-0.0037 -0.0303,-0.003 -0.0312,-0.0022 -0.0128,-3e-4 -0.0319,1.35e-4 -0.0327,0.0022 -0.0327,0.003 -0.0335,0.0052 -0.0335,0.0052 -0.0342,0.0067 -0.008,5.7e-4 -0.0342,0.009 -0.0342,0.01006 -0.0342,0.01132 -0.0335,0.01261 -0.0336,0.01396 -0.0312,0.01425 -4e-4,1.95e-4 -0.0319,0.01613 -0.0311,0.01725 -0.0304,0.01816 -0.0287,0.01906 -0.0279,0.02003 -0.0272,0.02101 -0.0144,0.01222 -0.0256,0.02221 -0.024,0.02281 -0.0224,0.02342 -0.0208,0.02372 -0.0193,0.02402 -0.0184,0.02424 -0.0168,0.02431 -0.0152,0.02454 -0.0136,0.02454 -0.0121,0.02454 -0.0103,0.02447 -0.009,0.02447", + "fill": { + "paint": "transparent" + }, + "id": "path7293", + "name": "path7293", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 94.34691,53.753554 v 0.009 l -0.008,0.02402 -0.008,0.02387 v 0.02357 0.02312 l -5e-4,0.02266 5e-4,0.02206 v 0.01132 0.02191 l 0.008,0.02153 0.008,0.02116 0.008,0.02041 0.008,0.01973 0.009,0.01891", + "fill": { + "paint": "transparent" + }, + "id": "path7295", + "name": "path7295", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 99.27023,53.469954 -0.0103,-0.01824 -0.0113,-0.01793 -0.0127,-0.01748 -0.0144,-0.01695 -0.016,-0.01635 -0.0168,-0.01553 -0.0168,-0.01366 -0.0184,-0.01358 -0.02,-0.0129 -0.0208,-0.01207 -0.0224,-0.01117 -0.0232,-0.01035 -0.0247,-0.009 -0.0192,-0.0067 -0.0264,-0.008 -0.0272,-0.0067 -0.028,-0.0052 -0.0296,-0.0037 -0.0303,-0.003 -0.0311,-0.0022 -0.0128,-3e-4 -0.032,1.35e-4 -0.0328,0.0022 -0.0327,0.003 -0.0335,0.0052 -0.0336,0.0052 -0.0343,0.0067 -0.008,5.7e-4 -0.0343,0.009 -0.0343,0.01006 -0.0343,0.01132 -0.0335,0.01261 -0.0336,0.01396 -0.0311,0.01425 -4e-4,1.95e-4 -0.0319,0.01613 -0.0312,0.01725 -0.0303,0.01816 -0.0287,0.01906 -0.028,0.02003 -0.0272,0.02101 -0.0152,0.01222 -0.0256,0.02221 -0.024,0.02281 -0.0224,0.02342 -0.0208,0.02372 -0.0192,0.02402 -0.0176,0.02424 -0.016,0.02431 -0.0152,0.02454 -0.0136,0.02454 -0.0121,0.02454 -0.0103,0.02447 -0.009,0.02447", + "fill": { + "paint": "transparent" + }, + "id": "path7296", + "name": "path7296", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 95.7062,55.239322 v 0.009 l -0.008,0.02402 -0.008,0.02387 v 0.02357 0.02312 l -5e-4,0.02266 4.8e-4,0.02221 v 0.01132 0.02191 0.02153 l 0.008,0.02116 0.008,0.02056 0.008,0.01974 0.009,0.01891", + "fill": { + "paint": "transparent" + }, + "id": "path7298", + "name": "path7298", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 97.61796,53.553445 -0.008,0.02221 -0.009,0.03181 -0.008,0.03151 -0.008,0.03113 v 0.03061 0.02484 l -3.2e-4,0.03016 v 0.02956 0.02904 l 0.008,0.02835 0.008,0.02431 0.008,0.02761 0.009,0.027 0.0103,0.02626 0.012,0.02551 0.0136,0.02484 0.0152,0.02424 0.0168,0.02364 0.0176,0.02273 0.0168,0.01913 0.02,0.02101 0.0216,0.02026 0.0232,0.01951 0.0247,0.01861 0.0216,0.01455 0.0272,0.0168 0.0287,0.01575 0.0296,0.01471 0.0311,0.01358 0.0232,0.009 0.0335,0.01162 0.0343,0.01042 0.0359,0.009 0.0367,0.008 0.0208,0.0037 0.0391,0.006 0.04,0.0052 0.0407,0.003 0.0415,0.0022 0.0176,1.5e-4 0.0431,-5.7e-4 0.0431,-0.0022 0.0439,-0.0037 0.0448,-0.0052 0.0448,-0.0067 0.0448,-0.009 0.0455,-0.01042 0.0455,-0.012 0.0232,-0.0067 0.0455,-0.01448 0.0448,-0.0159 0.0448,-0.0174 0.0439,-0.01891 0.0431,-0.02034 0.0424,-0.02183 0.012,-0.0067 0.0415,-0.02357 0.0407,-0.02484 0.02,-0.01298 0.0384,-0.02626 0.0367,-0.02716 0.0351,-0.0279 0.0336,-0.02873 0.0319,-0.02956 0.0303,-0.03016 0.0287,-0.03083 0.0272,-0.03151 0.024,-0.02971 0.024,-0.03226 0.0224,-0.03241 0.0208,-0.03256 0.0184,-0.03263 0.0168,-0.03263 0.0152,-0.03248 0.0128,-0.03241 0.0112,-0.03226", + "fill": { + "paint": "transparent" + }, + "id": "path7299", + "name": "path7299", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 97.06539,56.725107 v 0.009 l -0.008,0.02402 -0.008,0.02387 v 0.02357 0.02312 l -5e-4,0.02266 5e-4,0.02221 5e-4,0.01132 v 0.02191 l 0.008,0.02161 0.008,0.02116 0.008,0.02056 0.008,0.01973 0.009,0.01891", + "fill": { + "paint": "transparent" + }, + "id": "path7300", + "name": "path7300", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 99.49547,53.553445 0.008,-0.02213 0.008,-0.03188 0.008,-0.03151 0.008,-0.03113 v -0.03076 -0.02484 l 1.6e-4,-0.03016 v -0.02956 -0.02896 l -0.008,-0.02837 -0.008,-0.02431 -0.008,-0.0276 -0.009,-0.02701 -0.0103,-0.02634 -0.012,-0.02544 -0.0136,-0.02484 -0.0152,-0.02424 -0.0168,-0.02364 -0.0184,-0.02273 -0.0168,-0.01914 -0.02,-0.02101 -0.0216,-0.02026 -0.0232,-0.01951 -0.0247,-0.01861 -0.0216,-0.01456 -0.0272,-0.0168 -0.0287,-0.01568 -0.0296,-0.01471 -0.0311,-0.01373 -0.0232,-0.009 -0.0336,-0.01162 -0.0343,-0.01043 -0.0359,-0.009 -0.0367,-0.008 -0.0216,-0.0037 -0.0384,-0.006 -0.04,-0.0052 -0.0407,-0.003 -0.0415,-0.0022 -0.0176,-1.43e-4 -0.0431,5.63e-4 -0.0431,0.0022 -0.0439,0.0037 -0.0448,0.0052 -0.0448,0.0067 -0.0448,0.009 -0.0455,0.01042 -0.0455,0.012 -0.0232,0.0067 -0.0455,0.01441 -0.0448,0.0159 -0.0448,0.0174 -0.0439,0.01891 -0.0431,0.02033 -0.0424,0.02183 -0.012,0.0067 -0.0415,0.02357 -0.0407,0.02484 -0.02,0.01298 -0.0383,0.02625 -0.0367,0.02716 -0.0351,0.02791 -0.0335,0.02874 -0.0319,0.02956 -0.0303,0.03016 -0.0287,0.03083 -0.0272,0.03158 -0.024,0.02993 -0.024,0.03226 -0.0224,0.03248 -0.0208,0.03256 -0.0184,0.03263 -0.0168,0.03256 -0.0152,0.03248 -0.0127,0.03241 -0.0113,0.03226", + "fill": { + "paint": "transparent" + }, + "id": "path7301", + "name": "path7301", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 95.28961,55.039236 -0.008,0.02221 -0.008,0.03181 -0.008,0.03151 -0.008,0.03113 v 0.03076 0.02484 l -3.2e-4,0.03016 v 0.02956 0.02904 l 0.008,0.02835 0.008,0.02431 0.008,0.02761 0.009,0.027 0.0103,0.02626 0.0121,0.02544 0.0137,0.02484 0.0152,0.02424 0.0168,0.02364 0.0176,0.02274 0.0168,0.01914 0.02,0.02101 0.0216,0.02033 0.0232,0.01951 0.0247,0.01861 0.0216,0.01456 0.0272,0.01673 0.0287,0.01583 0.0295,0.01471 0.0311,0.01373 0.0224,0.009 0.0335,0.01162 0.0343,0.01042 0.036,0.009 0.0367,0.008 0.0208,0.0037 0.0391,0.006 0.04,0.0052 0.0407,0.003 0.0415,0.0022 0.0176,1.43e-4 0.0431,-5.77e-4 0.0431,-0.0022 0.0439,-0.0037 0.0448,-0.0052 0.0448,-0.0067 0.0448,-0.009 0.0455,-0.01042 0.0455,-0.012 0.0232,-0.0067 0.0455,-0.01441 0.0448,-0.0159 0.0439,-0.01755 0.0439,-0.01891 0.0431,-0.02033 0.0424,-0.02183 0.012,-0.0067 0.0415,-0.02356 0.0407,-0.02484 0.02,-0.01298 0.0383,-0.02626 0.0367,-0.02716 0.0352,-0.02792 0.0335,-0.02874 0.0319,-0.02956 0.0303,-0.03016 0.0287,-0.03083 0.027,-0.03151 0.024,-0.02993 0.024,-0.03226 0.0224,-0.03241 0.0208,-0.03256 0.0184,-0.03263 0.0168,-0.03256 0.0152,-0.03256 0.0127,-0.03241 0.0113,-0.03226", + "fill": { + "paint": "transparent" + }, + "id": "path7302", + "name": "path7302", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 94.61352,56.44149 -0.0103,-0.01824 -0.0112,-0.01794 -0.0128,-0.01755 -0.0145,-0.01703 -0.0152,-0.01635 -0.0168,-0.01553 -0.0168,-0.01366 -0.0185,-0.01373 -0.02,-0.0129 -0.0208,-0.012 -0.0224,-0.01117 -0.0232,-0.0102 -0.0247,-0.009 -0.0193,-0.0067 -0.0264,-0.008 -0.0271,-0.0067 -0.028,-0.0052 -0.0296,-0.0037 -0.0303,-0.003 -0.0311,-0.0022 -0.0128,-3.23e-4 -0.0319,1.65e-4 -0.0328,0.0022 -0.0328,0.003 -0.0335,0.0052 -0.0335,0.0052 -0.0342,0.0067 -0.008,5.7e-4 -0.0342,0.009 -0.0342,0.01005 -0.0342,0.01132 -0.0335,0.0126 -0.0335,0.01396 -0.0311,0.01418 -4e-4,1.64e-4 -0.0318,0.0162 -0.0312,0.01725 -0.0303,0.01809 -0.0287,0.01906 -0.028,0.02003 -0.0272,0.02101 -0.0144,0.01222 -0.0256,0.02221 -0.024,0.02281 -0.0224,0.02334 -0.0208,0.02372 -0.0192,0.02402 -0.0176,0.02424 -0.0168,0.02431 -0.0152,0.02454 -0.0137,0.02454 -0.0121,0.02454 -0.0103,0.02447 -0.009,0.02447", + "fill": { + "paint": "transparent" + }, + "id": "path7303", + "name": "path7303", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 97.16702,55.039236 0.008,-0.02221 0.009,-0.03188 0.008,-0.03151 0.008,-0.03113 v -0.03076 -0.02484 l 3.1e-4,-0.03016 v -0.02956 -0.02904 l -0.008,-0.02837 -0.008,-0.02431 -0.008,-0.02761 -0.009,-0.02701 -0.0103,-0.02626 -0.0121,-0.02544 -0.0136,-0.02484 -0.0152,-0.02424 -0.0168,-0.02364 -0.0176,-0.02273 -0.0168,-0.01913 -0.02,-0.02101 -0.0216,-0.02033 -0.0232,-0.01951 -0.0247,-0.01861 -0.0216,-0.01456 -0.0272,-0.0168 -0.0287,-0.01583 -0.0296,-0.01471 -0.0312,-0.01373 -0.0232,-0.009 -0.0336,-0.01162 -0.0343,-0.01042 -0.036,-0.009 -0.0367,-0.008 -0.0208,-0.0037 -0.0383,-0.006 -0.04,-0.0052 -0.0407,-0.003 -0.0415,-0.0022 -0.0176,-1.28e-4 -0.0431,5.56e-4 -0.0431,0.0022 -0.0439,0.0037 -0.0448,0.0052 -0.0448,0.0067 -0.0448,0.009 -0.0455,0.01042 -0.0455,0.012 -0.0232,0.0067 -0.0455,0.01441 -0.0448,0.0159 -0.0448,0.0174 -0.0439,0.01891 -0.0431,0.02033 -0.0424,0.02183 -0.012,0.0067 -0.0415,0.02357 -0.0407,0.02484 -0.02,0.01298 -0.0384,0.02626 -0.0367,0.02716 -0.0352,0.0279 -0.0335,0.02873 -0.0319,0.02956 -0.0303,0.03016 -0.0287,0.03083 -0.0272,0.03151 -0.024,0.02993 -0.024,0.03226 -0.0224,0.03248 -0.02,0.03256 -0.0184,0.03263 -0.0168,0.03256 -0.0152,0.03256 -0.0128,0.03248 -0.0112,0.03226", + "fill": { + "paint": "transparent" + }, + "id": "path7305", + "name": "path7305", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 93.93033,53.553445 -0.008,0.02221 -0.009,0.03181 -0.008,0.03151 -0.008,0.03113 v 0.03061 0.02484 l -1.6e-4,0.03016 v 0.02956 0.02904 l 0.008,0.02835 0.008,0.02431 0.008,0.02761 0.009,0.027 0.0105,0.02626 0.0121,0.02551 0.0137,0.02484 0.0152,0.02424 0.0168,0.02364 0.0176,0.02273 0.0168,0.01913 0.0208,0.02101 0.0216,0.02026 0.0232,0.01951 0.0248,0.01861 0.0216,0.01455 0.0272,0.0168 0.0287,0.01575 0.0296,0.01471 0.0311,0.01358 0.0224,0.009 0.0336,0.01162 0.0342,0.01042 0.036,0.009 0.0367,0.008 0.0216,0.0037 0.0384,0.006 0.04,0.0052 0.0408,0.003 0.0415,0.0022 0.0176,1.5e-4 0.0431,-5.7e-4 0.0431,-0.0022 0.0439,-0.0037 0.0448,-0.0052 0.0448,-0.0067 0.0448,-0.009 0.0455,-0.01042 0.0455,-0.012 0.0232,-0.0067 0.0455,-0.01448 0.0448,-0.0159 0.0448,-0.0174 0.0439,-0.01891 0.0431,-0.02034 0.0424,-0.02183 0.012,-0.0067 0.0415,-0.02357 0.0407,-0.02484 0.02,-0.01298 0.0384,-0.02626 0.0367,-0.02716 0.0351,-0.0279 0.0335,-0.02873 0.032,-0.02956 0.0303,-0.03016 0.0287,-0.03083 0.028,-0.03151 0.024,-0.02971 0.024,-0.03226 0.0224,-0.03241 0.0208,-0.03256 0.0184,-0.03263 0.0168,-0.03263 0.0152,-0.03248 0.0128,-0.03241 0.0112,-0.03226", + "fill": { + "paint": "transparent" + }, + "id": "path7306", + "name": "path7306", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 95.80782,53.553445 v -0.008 l 0.009,-0.02956 0.008,-0.02941 0.008,-0.02911 0.008,-0.02875 v -0.02835 -0.02792 l -2.4e-4,-0.02745 -5e-4,-0.01305 v -0.02701 -0.02685 l -0.008,-0.02634 -0.008,-0.02581 -0.008,-0.02521 -0.009,-0.02454 -0.0104,-0.02387 -0.0112,-0.02327 -0.0128,-0.02296 -0.0144,-0.02243 -0.0152,-0.02183 -0.0168,-0.02123 -0.0176,-0.02056 -0.0192,-0.01973 -0.01,-0.009 -0.02,-0.01846 -0.0216,-0.01771 -0.0232,-0.01703 -0.0239,-0.01635 -0.0256,-0.01545 -0.0263,-0.01463 -0.028,-0.01366 -0.0103,-0.0052", + "fill": { + "paint": "transparent" + }, + "id": "path7307", + "name": "path7307", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 95.48048,52.864136 -0.0294,-0.01162 -0.0312,-0.01065 -0.0319,-0.01002 -0.0334,-0.009 -0.0343,-0.008 -0.0351,-0.006 -0.0359,-0.0052 -0.0367,-0.0037 -0.0384,-0.0022 -0.0383,-0.0022 -0.0391,-3e-5 -0.04,0.0022 -0.0103,5.48e-4 -0.0407,0.003 -0.0407,0.0052 -0.0407,0.006 -0.0415,0.0067 -0.0415,0.009 -0.0359,0.008 -0.0424,0.01117 -0.0424,0.01252 -0.0415,0.01381 -0.0415,0.01523 -0.0407,0.0165 -0.028,0.01222 -0.04,0.01854 -0.0272,0.01343 -0.0391,0.02063 -0.0383,0.02176 -0.0376,0.02273 -0.0367,0.02371 -0.0287,0.02026 -0.0342,0.02514 -0.0327,0.02581 -0.0311,0.02656 -0.0303,0.02723 -0.0287,0.02791 -0.008,0.0052 -0.0272,0.02866 -0.0256,0.02905 -0.0247,0.02941 -0.0232,0.02964 -0.0217,0.02993 -0.02,0.03001 -0.0185,0.03016 -0.0168,0.03016 -0.0152,0.03016 -0.0137,0.03001 -0.012,0.02993 -0.0105,0.02993", + "fill": { + "paint": "transparent" + }, + "id": "path7308", + "name": "path7308", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 92.96133,56.525005 -0.008,0.02221 -0.009,0.03188 -0.008,0.03151 -0.008,0.03113 v 0.03076 0.02484 l -2.3e-4,0.03016 v 0.02956 0.02903 l 0.008,0.02835 0.008,0.02431 0.008,0.02761 0.009,0.02701 0.0103,0.02634 0.0121,0.02544 0.0137,0.02484 0.0152,0.02424 0.0168,0.02364 0.0176,0.02273 0.0168,0.01914 0.02,0.02101 0.0216,0.02026 0.0232,0.01951 0.0248,0.01861 0.0216,0.01455 0.0272,0.0168 0.0287,0.01568 0.0303,0.01471 0.0311,0.01373 0.0224,0.009 0.0335,0.01162 0.0343,0.01042 0.0359,0.009 0.0367,0.008 0.0216,0.0037 0.0383,0.006 0.04,0.0052 0.0408,0.003 0.0415,0.0022 0.0176,1.34e-4 0.0431,-5.55e-4 0.0431,-0.0022 0.0439,-0.0037 0.0448,-0.0052 0.0448,-0.0067 0.0448,-0.009 0.0455,-0.01043 0.0455,-0.012 0.0232,-0.0067 0.0455,-0.01441 0.0448,-0.0159 0.0448,-0.0174 0.0439,-0.01891 0.0431,-0.02033 0.0424,-0.02183 0.012,-0.0067 0.0415,-0.02356 0.0407,-0.02484 0.02,-0.01306 0.0384,-0.02626 0.0367,-0.02701 0.0352,-0.0279 0.0335,-0.02874 0.0319,-0.02956 0.0303,-0.03016 0.0287,-0.03083 0.0272,-0.03151 0.024,-0.02993 0.024,-0.03226 0.0224,-0.03248 0.02,-0.03256 0.0184,-0.03263 0.0168,-0.03256 0.0152,-0.03248 0.0128,-0.03233 0.0112,-0.03226", + "fill": { + "paint": "transparent" + }, + "id": "path7309", + "name": "path7309", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 93.23962,52.201055 0.20325,-0.125702 0.20701,-0.121397 0.21046,-0.116947 0.21388,-0.112379 0.21692,-0.107658 0.21979,-0.102841 0.22172,-0.09754 0.22483,-0.09282 0.0112,-0.0052 0.22635,-0.08712 0.22738,-0.08161 0.22843,-0.07611 0.2293,-0.07053 0.22987,-0.0649 0.23026,-0.05928 0.23058,-0.05365 0.23074,-0.04809 0.0583,-0.01132 0.22915,-0.04067 0.22747,-0.03481 0.22595,-0.02911 0.22419,-0.02333 0.22236,-0.01764 0.22043,-0.012 0.21859,-0.0067 0.21637,-5.63e-4 0.11744,0.0022 0.21198,0.008 0.20861,0.01276 0.20525,0.01801 0.20174,0.02312 0.19798,0.02813 0.19407,0.03316 0.19031,0.03796 0.18625,0.04277", + "fill": { + "paint": "transparent" + }, + "id": "path7668", + "name": "path7668", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 100.35819,50.806626 0.0424,0.01042 0.13495,0.03564 0.13279,0.03796 0.13031,0.04044 0.12784,0.04299 0.12535,0.0454 0.12264,0.04756 0.12017,0.04974 0.1176,0.05199 0.0632,0.02926 0.11369,0.05537 0.11114,0.05762 0.10842,0.05958 0.10578,0.0616 0.10306,0.06347 0.10011,0.06542 0.0975,0.06715 0.0946,0.06903 0.0679,0.05207 0.0901,0.0724 0.0875,0.0742 0.0848,0.07591 0.0819,0.07761 0.0791,0.07912 0.0759,0.08062 0.0735,0.08201 0.0703,0.08331 0.0679,0.08522 0.0527,0.07038 0.0631,0.08852 0.0599,0.09003 0.0575,0.09153 0.0544,0.09274 0.0511,0.09393 0.0487,0.09483 0.0448,0.09574", + "fill": { + "paint": "transparent" + }, + "id": "path7669", + "name": "path7669", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 103.68493,53.612831 0.02,0.06812 0.0184,0.06879 0.0176,0.06933 0.016,0.06993 0.0144,0.07038 0.0136,0.0709 0.0121,0.0712 0.008,0.03173 0.0103,0.0718 0.009,0.0724 0.008,0.07278 0.008,0.07337 0.008,0.07382 v 0.07428 0.07458 l 2.3e-4,0.02837", + "fill": { + "paint": "transparent" + }, + "id": "path7670", + "name": "path7670", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 103.84257,54.838107 v 0.07611 l -0.008,0.07651 -0.008,0.07681 -0.008,0.05575 -0.009,0.07741 -0.0103,0.07781 -0.0113,0.07821 -0.0128,0.07851 -0.0144,0.07892 -0.016,0.07921 -0.0176,0.07952 -0.0192,0.07973 -0.02,0.07992 -0.0216,0.08012 -0.0232,0.07902", + "fill": { + "paint": "transparent" + }, + "id": "path7671", + "name": "path7671", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 103.57387,56.220877 -0.0296,0.08122 -0.0311,0.08132 -0.0327,0.08141 -0.02,0.04809 -0.0351,0.08162 -0.0367,0.08172 -0.0383,0.08181 -0.0391,0.08182 -0.0415,0.0819 -0.0424,0.08191 -0.0439,0.08192 -0.0455,0.08182 -0.0472,0.08181 -0.0487,0.08172 -0.0288,0.04749", + "fill": { + "paint": "transparent" + }, + "id": "path7672", + "name": "path7672", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 102.9077,57.542513 -0.0544,0.08141 -0.0559,0.08112 -0.0575,0.08092 -0.0256,0.03474 -0.0599,0.08062 -0.0615,0.08042 -0.0631,0.08012 -0.0647,0.07982 -0.0663,0.07952 -0.0671,0.07911 -0.0687,0.07871 -0.0703,0.07841 -0.0719,0.07791 -0.0735,0.07741 -0.0103,0.01117", + "fill": { + "paint": "transparent" + }, + "id": "path7673", + "name": "path7673", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 101.95612,58.705058 -0.0144,0.01493 -0.0152,0.01493 -0.0152,0.01478 -0.0152,0.01485 -0.0152,0.01486 -0.0152,0.01471 -0.0152,0.01471 -0.0152,0.0147 -0.0152,0.01471 -0.0152,0.01463", + "fill": { + "paint": "transparent" + }, + "id": "path7674", + "name": "path7674", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 99.23836,60.6114 -0.18393,0.08572 -0.2138,0.09434 -0.21565,0.08942 -0.21739,0.08462 -0.21876,0.07962 -0.22004,0.07458 -0.22091,0.0694 -0.22156,0.0643 -0.21652,0.0577 -0.22147,0.0538 -0.22123,0.04839 -0.22093,0.04314 v 5.71e-4 l -0.22011,0.03774 -0.21907,0.03248 -0.21795,0.02701 -0.21693,0.02183 -0.0535,0.0052 -0.21405,0.01523 -0.21173,0.01005 -0.20925,0.0052 -0.20669,-2.17e-4 -0.20406,-0.0052 -0.2015,-0.0102 -0.19878,-0.01516 -0.19607,-0.01996 -0.10746,-0.01313 -0.19087,-0.0273 -0.18735,-0.03181 -0.18353,-0.03639 -0.17978,-0.04067 -0.17584,-0.0451 -0.17161,-0.04907 -0.16772,-0.05319 -0.1633,-0.05732", + "fill": { + "paint": "transparent" + }, + "id": "path7675", + "name": "path7675", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 92.53996,61.204433 -0.0224,-0.008 -0.10609,-0.04067 -0.10427,-0.04232 -0.10242,-0.04405 -0.10043,-0.04576 -0.0985,-0.04726 -0.0965,-0.04883 -0.0944,-0.05049 -0.0328,-0.01816 -0.0919,-0.05244 -0.0899,-0.05395 -0.088,-0.05545 -0.0858,-0.05687 -0.0839,-0.0583 -0.0817,-0.0595 -0.0799,-0.06093 -0.0367,-0.02911 -0.0767,-0.06295 -0.0751,-0.06423 -0.0727,-0.0655 -0.0703,-0.0667 -0.0687,-0.06789 -0.0663,-0.06903 -0.064,-0.07 -0.0335,-0.03796 -0.0615,-0.07217 -0.0592,-0.07337 -0.0575,-0.07458 -0.0551,-0.07561 -0.0527,-0.07661 -0.0503,-0.07751 -0.0487,-0.07831", + "fill": { + "paint": "transparent" + }, + "id": "path7676", + "name": "path7676", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 90.21232,59.365731 -0.0743,-0.133358 -0.0687,-0.136963 -0.0631,-0.140244 -0.0568,-0.143034 -0.0472,-0.133379 -0.0448,-0.146973 -0.0383,-0.148549 -0.0327,-0.151438 -0.0264,-0.154079 -0.02,-0.156502 -0.0137,-0.15855 -0.008,-0.140957 v -0.161581 l 0.008,-0.163773 0.0121,-0.165812 0.0184,-0.167593 0.0256,-0.16918 0.024,-0.129673 0.0376,-0.171207 0.0448,-0.172477 0.052,-0.173608 0.0592,-0.174621 0.0664,-0.17547 0.0439,-0.107749 0.0775,-0.176444 0.085,-0.176618 0.0923,-0.176714 0.0996,-0.176671 0.10698,-0.176497 0.0503,-0.07901 0.1177,-0.175927 0.12479,-0.174726 0.13191,-0.173535 0.13902,-0.172205 0.14629,-0.170847 0.0455,-0.05147 0.15571,-0.16889 0.16227,-0.166525 0.16891,-0.163968 0.17522,-0.161169 0.18144,-0.158205 0.18768,-0.154971 0.1935,-0.151558 0.19928,-0.147889 0.20469,-0.14392 0.20988,-0.139749 0.0583,-0.03766", + "fill": { + "paint": "transparent" + }, + "id": "path7677", + "name": "path7677", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 66.539638,143.11058 0.004,0.007 0.0086,0.0137 0.0089,0.0134 0.0094,0.0132 0.0098,0.013 0.01009,0.0128 0.01057,0.0125 0.01081,0.0122 0.0053,0.006 0.01141,0.0118 0.01165,0.0115", + "fill": { + "paint": "transparent" + }, + "id": "path8145", + "name": "path8145", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 66.640145,143.23771 0.02139,0.0197 0.02278,0.0191 0.02406,0.0184 0.02551,0.0177 0.02678,0.017 0.02799,0.0163 0.02919,0.0154 0.03032,0.0144 0.03146,0.0134 0.03212,0.0124 0.03325,0.0113 0.03411,0.0102 0.03511,0.009 0.03604,0.008 0.03705,0.007 0.03811,0.006 0.03905,0.005 0.03997,0.003 0.04098,0.002 0.02259,5.5e-4 0.04245,2e-5 0.04284,-0.002 0.04325,-0.003 0.04365,-0.004 0.04391,-0.005 0.04425,-0.007 0.04451,-0.008 0.04478,-0.01 0.04485,-0.0109 4.93e-4,-1.2e-4 0.04504,-0.0124 0.04484,-0.0138 0.04451,-0.015 0.04425,-0.0163 0.04384,-0.0176 0.04338,-0.0189 0.04271,-0.0201 0.04218,-0.0213 0.03279,-0.0176", + "fill": { + "paint": "transparent" + }, + "id": "path8146", + "name": "path8146", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 69.328078,142.02993 -0.01805,-0.0332 -0.01939,-0.0329 -0.02072,-0.0323 -0.02199,-0.0318 -0.02325,-0.0311 -0.02445,-0.0305 -0.02559,-0.0297 -0.0083,-0.009 -0.02699,-0.0285 -0.02805,-0.0276 -0.02919,-0.0268 -0.03039,-0.0262 -0.03159,-0.0254 -0.03279,-0.0246 -0.03398,-0.0236 -0.03498,-0.0228 -0.03604,-0.0218 -0.0047,-0.003 -0.03718,-0.0206 -0.03818,-0.0197 -0.03924,-0.0187 -0.04031,-0.0177 -0.04144,-0.0167 -0.04237,-0.0156 -0.04325,-0.0146 -0.03578,-0.0111 -0.04484,-0.0125 -0.04577,-0.0114 -0.04664,-0.0102 -0.04744,-0.009 -0.04838,-0.008 -0.04911,-0.007 -0.04977,-0.005 -0.02391,-0.002", + "fill": { + "paint": "transparent" + }, + "id": "path8147", + "name": "path8147", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 66.160828,142.31877 -0.01339,0.0198 -0.02332,0.0364 -0.02239,0.037 -0.0096,0.0167 -0.02085,0.0378 -0.01985,0.0384 -0.01879,0.0388 -0.0176,0.0394 -0.01639,0.0397 -0.01519,0.0402 -0.01392,0.0405", + "fill": { + "paint": "transparent" + }, + "id": "path8148", + "name": "path8148", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 65.969571,142.70299 -0.01259,0.0406 -0.01117,0.0413 -0.0098,0.0412 -0.0083,0.0412 -0.0072,0.0409 -0.0053,0.0407 -0.004,0.0404 -0.0026,0.0402 -4.99e-4,0.0396 2.39e-4,0.0393 0.002,0.0388 0.0026,0.0388 0.002,0.0159 0.0047,0.0386 0.0066,0.0384 0.008,0.038 0.0091,0.0377 0.01057,0.0371 0.01189,0.0365 0.01306,0.0359 0.01426,0.0352 0.01559,0.0344 0.01659,0.0336", + "fill": { + "paint": "transparent" + }, + "id": "path8149", + "name": "path8149", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 66.933414,147.34347 h -0.004 l -0.206664,-0.002 -0.204031,-0.007 -0.201258,-0.0113 -0.198473,-0.0156 -0.195542,-0.0199 -0.192584,-0.0241 -0.189591,-0.0283 -0.186521,-0.0325 -0.183468,-0.0366 -0.06549,-0.0141 -0.179011,-0.042 -0.175552,-0.0458 -0.171996,-0.0496 -0.168296,-0.0533 -0.164485,-0.0568 -0.160674,-0.0603 -0.156782,-0.0637 -0.152872,-0.067 -0.14888,-0.0703 -0.119147,-0.06 -0.141758,-0.0761 -0.13776,-0.0791 -0.133615,-0.0821 -0.129524,-0.0849 -0.112301,-0.0784 -0.122013,-0.0904 -0.117922,-0.0931 -0.113634,-0.0956 -0.109274,-0.098 -0.100014,-0.0956 -0.101443,-0.10322 -0.09723,-0.10565 -0.09294,-0.10787 -0.08852,-0.10998 -0.08217,-0.10938 -0.08056,-0.11497 -0.07623,-0.11722 -0.07183,-0.11913 -0.06727,-0.12082", + "fill": { + "paint": "transparent" + }, + "id": "path8150", + "name": "path8150", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 68.24695,146.56014 -0.01799,-0.0333 -0.0194,-0.0329 -0.02072,-0.0323 -0.02199,-0.0318 -0.02325,-0.0311 -0.02445,-0.0305 -0.02566,-0.0297 -0.0083,-0.009 -0.02699,-0.0286 -0.02799,-0.0276 -0.02919,-0.0268 -0.03045,-0.0262 -0.03172,-0.0254 -0.03279,-0.0246 -0.03392,-0.0236 -0.03498,-0.0227 -0.03604,-0.0218 -0.0047,-0.003 -0.03719,-0.0206 -0.03818,-0.0197 -0.03931,-0.0187 -0.04031,-0.0177 -0.04144,-0.0167 -0.04239,-0.0156 -0.04331,-0.0146 -0.03571,-0.0109 -0.04484,-0.0125 -0.04577,-0.0114 -0.04664,-0.0103 -0.0475,-0.009 -0.04838,-0.008 -0.04904,-0.007 -0.04977,-0.005 -0.02399,-0.002", + "fill": { + "paint": "transparent" + }, + "id": "path8151", + "name": "path8151", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 65.079708,146.84896 -0.0086,0.0129 -0.01606,0.0243 -0.01559,0.0245 -0.0072,0.0115 -0.01486,0.0249 -0.01439,0.0252 -0.01399,0.0255 -0.01345,0.0257 -0.013,0.026 -0.01245,0.0262 -0.01189,0.0265", + "fill": { + "paint": "transparent" + }, + "id": "path8152", + "name": "path8152", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 74.930607,143.26113 0.02791,-0.0157 0.03997,-0.024 0.03911,-0.025 0.03832,-0.0258 0.03672,-0.0267 0.03584,-0.0275 0.03424,-0.0284 0.03351,-0.029 0.02951,-0.0275 0.03037,-0.0301 0.02872,-0.0305 0.02792,-0.031 0.02639,-0.0314 0.02472,-0.0318 0.02318,-0.0321 0.02158,-0.0323 0.008,-0.0115 0.01918,-0.0324 0.0176,-0.0323 0.01599,-0.0322 0.0144,-0.0321 0.01279,-0.0319 0.01129,-0.0318 0.0096,-0.0317 0.0088,-0.0315 0.008,-0.0222 0.0079,-0.0314 0.008,-0.0312 v -0.0309 -0.0305 l 4e-4,-0.03 v -0.0294 -0.0288 -0.0282", + "fill": { + "paint": "transparent" + }, + "id": "path8153", + "name": "path8153", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 75.559796,142.28356 v -0.01 -0.0182 l -0.008,-0.0181 v -0.008 l -0.0079,-0.0179 -0.008,-0.0178 -0.008,-0.0176 -0.008,-0.0174 -0.0079,-0.0172 -0.008,-0.017 -0.0088,-0.0167", + "fill": { + "paint": "transparent" + }, + "id": "path8154", + "name": "path8154", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 73.423428,143.11058 v 0.007 l 0.0088,0.0137 0.0088,0.0134 0.0096,0.0132 0.0096,0.013 0.01033,0.0128 0.01033,0.0125 0.01033,0.0122 0.008,0.006 0.01117,0.0118 0.01129,0.0115", + "fill": { + "paint": "transparent" + }, + "id": "path8155", + "name": "path8155", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 73.523941,143.23771 0.02158,0.0197 0.02318,0.0191 0.02399,0.0184 0.0256,0.0177 0.02719,0.017 0.02799,0.0163 0.02951,0.0154 0.03037,0.0144 0.03112,0.0134 0.03185,0.0124 0.03351,0.0113 0.03424,0.0102 0.03518,0.009 0.03584,0.008 0.03672,0.007 0.03839,0.006 0.03911,0.005 0.03997,0.003 0.0407,0.002 0.02239,5.5e-4 0.04239,2e-5 0.04311,-0.002 0.04312,-0.003 0.04391,-0.004 0.04391,-0.005 0.04391,-0.007 0.04478,-0.008 0.04478,-0.01 0.04478,-0.0109 5e-4,-1.2e-4 0.04478,-0.0124 0.04478,-0.0138 0.04478,-0.015 0.04391,-0.0163 0.04391,-0.0176 0.04312,-0.0189 0.04237,-0.0201 0.04239,-0.0213 0.03272,-0.0176", + "fill": { + "paint": "transparent" + }, + "id": "path8156", + "name": "path8156", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 76.20521,142.01714 -0.01839,-0.033 -0.01999,-0.0327 -0.02158,-0.0321 -0.02239,-0.0316 -0.02399,-0.0309 -0.02478,-0.0302 -0.02631,-0.0294 -0.008,-0.006 -0.02718,-0.0284 -0.02792,-0.0275 -0.02958,-0.0266 -0.03032,-0.0258 -0.03185,-0.0252 -0.03351,-0.0243 -0.03424,-0.0233 -0.03511,-0.0224 -0.03591,-0.0215 v -5.6e-4 l -0.03758,-0.0204 -0.03837,-0.0195 -0.03912,-0.0185 -0.04071,-0.0175 -0.04151,-0.0165 -0.04239,-0.0154 -0.04311,-0.0143 -0.03185,-0.01 -0.04478,-0.0124 -0.04551,-0.0113 -0.04718,-0.0101 -0.04718,-0.009 -0.0487,-0.008 -0.04957,-0.007 -0.04957,-0.005 -0.01919,-0.002", + "fill": { + "paint": "transparent" + }, + "id": "path8157", + "name": "path8157", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 73.044644,142.31877 -0.01358,0.0198 -0.02318,0.0364 -0.02239,0.037 -0.0096,0.0167 -0.02079,0.0378 -0.01993,0.0384 -0.01879,0.0388 -0.0176,0.0394 -0.01639,0.0397 -0.01519,0.0402 -0.01392,0.0405", + "fill": { + "paint": "transparent" + }, + "id": "path8158", + "name": "path8158", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 67.480907,147.31245 0.01673,-0.0291 0.01713,-0.0323 0.01559,-0.0323 0.01393,-0.0321 0.01239,-0.032 0.01081,-0.0318 0.0094,-0.0316 0.008,-0.0314 0.002,-0.007 0.0066,-0.0313 0.0047,-0.0311 0.0026,-0.0309 0.002,-0.0304 3.92e-4,-0.03 -4.98e-4,-0.0293 -0.0026,-0.0288 -0.004,-0.0282", + "fill": { + "paint": "transparent" + }, + "id": "path8159", + "name": "path8159", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 67.594874,146.81378 -0.002,-0.01 -0.0026,-0.0182 -0.004,-0.0181 -0.0026,-0.008 -0.0047,-0.018 -0.0053,-0.0177 -0.0066,-0.0176 -0.0066,-0.0175 -0.0072,-0.0172 -0.008,-0.0169 -0.0084,-0.0167", + "fill": { + "paint": "transparent" + }, + "id": "path8160", + "name": "path8160", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 72.853407,142.70299 -0.01259,0.0406 -0.01129,0.0413 -0.0098,0.0412 -0.0083,0.0412 -0.0072,0.0409 -0.0053,0.0407 -0.004,0.0404 -0.0026,0.0402 -4.99e-4,0.0396 2.92e-4,0.0393 0.002,0.0388 0.0026,0.0388 0.002,0.0159 0.0047,0.0386 0.0066,0.0384 0.0079,0.038 0.0092,0.0377 0.01045,0.0371 0.01189,0.0365 0.01306,0.0359 0.01418,0.0352 0.01559,0.0344 0.01666,0.0336", + "fill": { + "paint": "transparent" + }, + "id": "path8161", + "name": "path8161", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 68.883049,137.3557 -0.01057,0.0347 -0.0092,0.0352 -0.0079,0.0357 -0.0066,0.0361 -0.0047,0.0364 -0.0026,0.0252 -0.0026,0.0366 -0.002,0.037 v 0.0373 l 0.002,0.0376 0.0026,0.0377 0.0026,0.0224 0.0047,0.038 0.0066,0.0385 0.008,0.0387 0.0096,0.039 0.01105,0.0393 0.01253,0.0395 0.01412,0.0395 0.01559,0.0397 0.01706,0.0396 0.01852,0.0395 0.01045,0.0208", + "fill": { + "paint": "transparent" + }, + "id": "path8162", + "name": "path8162", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 76.388405,137.79424 0.07031,0.1484 0.06469,0.15205 0.0583,0.15529 0.0519,0.15804 0.04551,0.16039 0.02791,0.11167 0.03431,0.16323 0.02791,0.16608 0.02158,0.16873 0.0144,0.17109 0.008,0.17318 v 0.11209 0.1759 l -0.01045,0.17806 -0.01679,0.18009 -0.02398,0.18187 -0.03112,0.18343 -0.01918,0.0977 -0.04239,0.18524 -0.04957,0.18652 -0.0575,0.18764 -0.0647,0.18868 -0.07191,0.1895 -0.03032,0.075 -0.08285,0.19038 -0.09044,0.19064 -0.09803,0.19081 -0.105707,0.19079 -0.113441,0.19064 -0.02951,0.0473 -0.123041,0.19024 -0.13047,0.18916 -0.13798,0.18802 -0.145495,0.18685 -0.153084,0.18556 -0.01839,0.0215 -0.161713,0.18404 -0.168583,0.18181 -0.175612,0.17938 -0.182482,0.17675 -0.189193,0.17389 -0.195834,0.17086 -0.202139,0.16751 -0.208454,0.16394 -0.214359,0.16015 -0.202465,0.14383", + "fill": { + "paint": "transparent" + }, + "id": "path8163", + "name": "path8163", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 70.083105,146.85138 -0.147267,0.0445 -0.16058,0.0462 -0.160634,0.0436 -0.160727,0.0411 -0.160834,0.0386 -0.0034,5.7e-4 -0.160727,0.0361 -0.160541,0.0336 -0.160287,0.0311 -0.159954,0.0286 -0.1595,0.0259 -0.15899,0.0234 -0.158388,0.0209 -0.157742,0.0184 -0.157029,0.0159 -0.156197,0.0134 -0.15541,0.0109 -0.154489,0.008 -0.153511,0.006 -0.152493,0.004 -0.151512,0.002", + "fill": { + "paint": "transparent" + }, + "id": "path8164", + "name": "path8164", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 68.046771,143.26113 0.02772,-0.0157 0.04004,-0.024 0.03905,-0.025 0.03792,-0.0258 0.03672,-0.0267 0.03565,-0.0275 0.03445,-0.0284 0.03325,-0.029 0.02958,-0.0275 0.03037,-0.0301 0.02898,-0.0305 0.02746,-0.031 0.02612,-0.0314 0.02459,-0.0318 0.02312,-0.0321 0.02166,-0.0323 0.0072,-0.0115 0.01938,-0.0324 0.01786,-0.0323 0.01626,-0.0322 0.01472,-0.0321 0.01319,-0.0319 0.01153,-0.0318 0.01009,-0.0317 0.0086,-0.0315 0.0047,-0.0222 0.0066,-0.0314 0.0047,-0.0312 0.0034,-0.0309 0.002,-0.0305 3.4e-4,-0.03 -4.99e-4,-0.0294 -0.0026,-0.0288 -0.004,-0.0282", + "fill": { + "paint": "transparent" + }, + "id": "path8165", + "name": "path8165", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 68.675987,142.28356 -0.002,-0.01 -0.0026,-0.0182 -0.004,-0.0181 -0.0026,-0.008 -0.0053,-0.0179 -0.0053,-0.0178 -0.0066,-0.0176 -0.0066,-0.0174 -0.0072,-0.0172 -0.008,-0.017 -0.0084,-0.0167", + "fill": { + "paint": "transparent" + }, + "id": "path8166", + "name": "path8166", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 59.511593,140.90346 -0.01745,0.0544 -0.04485,0.14684 -0.04104,0.14637 -0.03738,0.14584 -0.03371,0.14517 -0.02998,0.14451 -0.02645,0.14369 -0.02286,0.14288 -0.01069,0.0753 -0.01745,0.14188 -0.01386,0.14111 -0.01033,0.14026 -0.0072,0.13932 -0.0026,0.13831 5.3e-5,0.13724 0.0026,0.1361 0.004,0.0894 0.009,0.13471 0.01246,0.13367 0.01585,0.1326 0.01925,0.1314 0.02252,0.13011 0.02558,0.12875 0.02885,0.12733 0.02312,0.0918 0.03458,0.12585 0.03785,0.12478 0.04117,0.12357 0.04425,0.12221 0.04737,0.1207 0.05031,0.11908 0.05338,0.11734", + "fill": { + "paint": "transparent" + }, + "id": "path8167", + "name": "path8167", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 77.717179,136.49525 -0.147501,-0.23525 -0.162265,-0.22955 -0.176412,-0.2226 -0.180884,-0.20498 -0.201339,-0.20538 -0.21557,-0.19792 -0.229298,-0.18979 -0.223074,-0.16707 -0.25407,-0.17203 -0.267663,-0.16292 -0.280836,-0.15327 -0.246961,-0.12138 -0.303597,-0.13378 -0.316077,-0.12284 -0.328298,-0.11151 -0.255516,-0.0764 -0.3493,-0.0908 -0.36002,-0.0779 -0.370554,-0.065 -0.380756,-0.0518 -0.390411,-0.038 -0.399492,-0.0239 -0.407763,-0.009 -0.08959,-1.5e-4 -0.416564,0.008 -0.421953,0.0236 -0.427431,0.0388 -0.21168,0.0247 -0.435726,0.062 -0.438245,0.0774 -0.440258,0.093 -0.185261,0.0437 -0.441956,0.11517 -0.440097,0.13026 -0.437525,0.14521 -0.434214,0.15997 -0.430109,0.1746 -0.425173,0.18892 -0.310061,0.14839 -0.31565,0.16065 -0.405336,0.22124 -0.394801,0.2327 -0.383741,0.24372 -0.372075,0.25418 -0.35988,0.2642 -0.347213,0.27376 -0.14888,0.12349 -0.326053,0.28466 -0.311019,0.29158 -0.295709,0.29799 -0.148686,0.1584 -0.26929,0.30376 -0.252597,0.30763 -0.236214,0.31163 -0.06603,0.0918 -0.214652,0.31547 -0.197554,0.31726 -0.180143,0.31804 -0.162726,0.31806 -0.145223,0.31732 -0.127857,0.31605 -0.110751,0.3143", + "fill": { + "paint": "transparent" + }, + "id": "path8168", + "name": "path8168", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 73.891144,136.85737 -0.03272,-0.0614 -0.03672,-0.0624 -0.04072,-0.0637 -0.04478,-0.0651 -0.03351,-0.046 -0.0527,-0.0685 -0.05591,-0.0687 -0.0599,-0.0689 -0.0639,-0.0694 -0.02958,-0.0308 -0.06951,-0.0703 -0.0719,-0.0689 -0.07431,-0.0675 -0.0767,-0.0661 -0.07909,-0.0644 -0.08127,-0.0628 -0.08332,-0.0611 -0.08538,-0.0592 -0.07711,-0.0509 -0.06136,-0.0387 -0.08806,-0.053 -0.08836,-0.0501 -0.0886,-0.0473 -0.0888,-0.0445 -0.08895,-0.0415 -0.0891,-0.0387 -0.08924,-0.036 -0.08929,-0.0332 -0.0894,-0.0305 -0.05577,-0.0176 -0.089,-0.0259 -0.08866,-0.0231 -0.08801,-0.0202 -0.08739,-0.0175 -0.08662,-0.0147 -0.08567,-0.012 -0.08475,-0.009 -0.08374,-0.007 -0.08266,-0.004 -0.08153,-0.002", + "fill": { + "paint": "transparent" + }, + "id": "path8169", + "name": "path8169", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 75.387222,139.76437 v 5.1e-4 l 0.09259,0.0266 0.09141,0.0277 0.09029,0.0288 0.08924,0.0299 0.02399,0.008 0.08796,0.0312 0.08692,0.0323 0.0859,0.0333 0.08477,0.0343 0.08374,0.0353 0.08245,0.0362 0.08142,0.0372 0.08014,0.0383 0.0791,0.039 0.07751,0.04 0.07669,0.0407 0.0751,0.0417", + "fill": { + "paint": "transparent" + }, + "id": "path8170", + "name": "path8170", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 68.24695,146.56014 0.0154,0.0311 0.01426,0.032 0.013,0.0327 0.01177,0.0335 0.01057,0.0341 0.0091,0.0346 0.008,0.0352 0.0066,0.0355 0.0047,0.0357 0.0026,0.0185 0.0034,0.036 0.002,0.0366 2.46e-4,0.0371 -5e-4,0.0377 -0.0026,0.0381 -0.004,0.0386 -0.0053,0.0389 -0.0072,0.0392 -0.0084,0.0395 -0.0026,0.0129", + "fill": { + "paint": "transparent" + }, + "id": "path8171", + "name": "path8171", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 69.975537,143.96523 0.0047,-0.0156 0.01153,-0.0397 0.01021,-0.0397 0.0086,-0.0396 0.0072,-0.0395 0.0053,-0.0391 0.004,-0.0388 0.0026,-0.0385 0.002,-0.0379 5.4e-5,-0.0374 -0.002,-0.0368 -4.99e-4,-0.0129 -0.0034,-0.0364 -0.0047,-0.0359 -0.0053,-0.0355 -0.0072,-0.035 -0.0085,-0.0344 -0.0034,-0.0128 -0.01045,-0.0339 -0.01177,-0.0334 -0.01319,-0.0329 -0.0144,-0.0322 -0.01559,-0.0314", + "fill": { + "paint": "transparent" + }, + "id": "path8172", + "name": "path8172", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 70.656392,141.15801 h -0.002 l -0.02199,-5.7e-4 -0.02139,-0.002 -0.02066,-0.003 -0.01959,-0.005 -0.01865,-0.005 -0.01745,-0.006 -0.01632,-0.008 -0.01141,-0.006 -0.0144,-0.009 -0.01319,-0.01 -0.01201,-0.0104 -0.0086,-0.009 -0.01009,-0.0119 -0.0086,-0.0125 -0.0072,-0.0129", + "fill": { + "paint": "transparent" + }, + "id": "path8173", + "name": "path8173", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 69.195042,138.29111 -0.002,-2e-5 -0.02199,-5.7e-4 -0.02139,-0.002 -0.02059,-0.003 -0.01965,-0.005 -0.01852,-0.005 -0.01745,-0.007 -0.0164,-0.008 -0.01141,-0.006 -0.01446,-0.009 -0.01326,-0.01 -0.01201,-0.0105 -0.0086,-0.009 -0.01009,-0.012 -0.0088,-0.0125 -0.0072,-0.013", + "fill": { + "paint": "transparent" + }, + "id": "path8174", + "name": "path8174", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 70.486743,136.5932 0.09665,0.002 0.09777,0.004 0.0989,0.006 0.09997,0.009 0.100998,0.0117 0.10202,0.0143 0.102896,0.0171 0.103725,0.0198 0.104458,0.0225 0.01593,0.004 0.10465,0.0257 0.103833,0.028 0.102584,0.0304 0.101395,0.0327 0.100014,0.035 0.09856,0.0371 0.09704,0.0394 0.09549,0.0414 0.09388,0.0437 0.05657,0.0277 0.08905,0.0459 0.08621,0.0473 0.08338,0.0485 0.0806,0.0498 0.06104,0.0398 0.07455,0.0513 0.07127,0.0522 0.06806,0.053 0.0647,0.0539 v 5.5e-4 l 0.0607,0.0538 0.05749,0.0539 0.05351,0.054 0.0503,0.0541 0.04717,0.0545 0.01358,0.0159 0.04239,0.054 0.03911,0.0537 0.03598,0.0532 0.03272,0.053 0.02872,0.0527", + "fill": { + "paint": "transparent" + }, + "id": "path8175", + "name": "path8175", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 73.506131,138.03791 -0.008,0.0172 -0.0079,0.0172 -0.0096,0.0173 -0.008,0.01 -0.01206,0.0173 -0.01358,0.017 -0.01519,0.0166 -0.01599,0.0162 -0.0176,0.0156 -0.01925,0.015 -0.01999,0.0142 -0.02158,0.0133 -0.02239,0.0123 -0.02318,0.0112 -5e-4,2.7e-4", + "fill": { + "paint": "transparent" + }, + "id": "path8176", + "name": "path8176", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 69.195042,138.29111 -0.01332,-0.0271 -0.02319,-0.0525 -0.01952,-0.0516 -0.01593,-0.0509 -0.01232,-0.05 -0.0066,-0.0343 -0.0066,-0.049 -0.0026,-0.0481 -5.3e-5,-0.0469 0.0034,-0.0457 0.0066,-0.0455 0.0066,-0.033 0.01201,-0.0445 0.01506,-0.0432 0.01799,-0.0419 0.02085,-0.0404 0.02419,-0.04 0.02746,-0.0393 0.03078,-0.0383 0.02399,-0.0265 0.03584,-0.036 0.03931,-0.0348 0.04271,-0.0338 0.04624,-0.0325 0.02785,-0.0178 0.05184,-0.0305 0.05531,-0.0288 0.05871,-0.0271 0.06243,-0.0255 0.02218,-0.008 0.06775,-0.0231 0.07086,-0.0208 0.0743,-0.0186 0.0779,-0.0164 0.009,-0.002 0.08217,-0.0138 0.08516,-0.0112 0.08821,-0.009 0.08362,-0.005 0.0949,-0.003 0.09666,-1.2e-4 0.09839,0.003 0.100122,0.006 0.101875,0.009 0.103533,0.0125 0.105178,0.0159 0.04724,0.008 0.107424,0.0207 0.106884,0.0238 0.106259,0.027 0.105419,0.03 0.104506,0.033 0.103484,0.0359 0.01805,0.007 0.102067,0.0393 0.04124,0.0168 0.09743,0.0421 0.09413,0.0441 0.09099,0.046 0.08777,0.0478 0.08476,0.0496 0.08169,0.0515 0.07871,0.0532 0.07311,0.0531 0.06918,0.0539 0.06483,0.0543 0.06044,0.0545 0.05623,0.055 0.05231,0.0553 0.04838,0.0557 0.04478,0.0561", + "fill": { + "paint": "transparent" + }, + "id": "path8177", + "name": "path8177", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 75.014901,140.90586 v 0.005 l -0.008,0.016 -0.0079,0.0156 -0.0079,0.01 -0.0088,0.0149 -0.0096,0.0144 -0.01033,0.014 -0.01117,0.0134 -0.01201,0.0129 -0.01279,0.0123 -0.01366,0.0118", + "fill": { + "paint": "transparent" + }, + "id": "path8178", + "name": "path8178", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 74.715929,144.08284 -0.05591,0.0142 -0.0583,0.0134 -0.0583,0.0119 -0.0583,0.0104 -0.05751,0.009 -0.05749,0.008 -0.0575,0.006 -0.05676,0.005 -0.05678,0.003 -0.0559,0.002 -0.02558,1.8e-4 -0.05437,-5.8e-4 -0.05351,-0.002 -0.0527,-0.003 -0.05197,-0.005 -0.05111,-0.006 -0.04957,-0.008 -0.0487,-0.009 -0.04791,-0.01 -0.04717,-0.0112 -0.0463,-0.0124 -0.04239,-0.0129 -0.04391,-0.0147 -0.04312,-0.0159 -0.04151,-0.017 -0.0407,-0.018 -0.03911,-0.019 -0.03758,-0.0199 -0.03672,-0.0209 -0.03518,-0.0219 -0.03351,-0.0226 -0.03272,-0.0234 -0.02079,-0.0163 -0.03032,-0.0249 -0.02951,-0.0258 -0.02799,-0.0267 -0.02632,-0.0274 -0.02479,-0.0281 -0.01758,-0.0206 -0.02319,-0.0296 -0.02158,-0.0303 -0.02032,-0.031 -0.01892,-0.0316 -0.01745,-0.032", + "fill": { + "paint": "transparent" + }, + "id": "path8179", + "name": "path8179", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 75.163756,141.522 0.0079,0.002 0.03998,0.0102 0.03911,0.0113 0.03831,0.0124 0.03758,0.0135 0.03584,0.0145 0.03518,0.0154 0.03424,0.0164 0.03272,0.0172 0.03112,0.0181 0.03032,0.0189 0.008,0.005 0.02872,0.02 0.02799,0.0209 0.02639,0.0216 0.02558,0.0224 0.02399,0.0232 0.008,0.008 0.02239,0.0242 0.02158,0.0249 0.02,0.0255 0.01925,0.0262 0.0176,0.0266 0.01606,0.0274 0.01519,0.028 0.01367,0.0286 0.01279,0.0293 0.01117,0.0298 v 0.01 l 0.0096,0.0304 0.0079,0.0309 0.008,0.0314 0.008,0.0319 0.0079,0.0323 v 0.0102 0.0327 0.0334 l -4e-4,0.0339 v 0.0344 0.0349 l -0.008,0.0352 -0.0079,0.0355 -0.008,0.0357 -0.0088,0.0359 -0.01033,0.0357 v 0.0113", + "fill": { + "paint": "transparent" + }, + "id": "path8180", + "name": "path8180", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 75.826893,142.63125 -0.008,0.0109 -0.0096,0.025 -0.01033,0.0249 -0.008,0.014 -0.01129,0.0244 -0.01201,0.0242 -0.01201,0.024 -0.01279,0.0237 -0.01366,0.0234 -0.01446,0.0233 -0.0144,0.023", + "fill": { + "paint": "transparent" + }, + "id": "path8181", + "name": "path8181", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 75.697696,142.8854 -0.03193,0.0467 -0.03424,0.0464 -0.03672,0.0458 -0.03911,0.0453 -0.04151,0.0446 -0.04478,0.0438 -0.0463,0.0429 -0.0487,0.0421 -0.0079,0.004 -0.05111,0.0409 -0.0527,0.0394 -0.05511,0.0379 -0.05676,0.0363 -0.0583,0.0347 -0.05991,0.033 -0.0615,0.0313 -0.05111,0.0243 -0.05111,0.0226 -0.0639,0.026 -0.06476,0.024 -0.0647,0.0217 -0.06557,0.0195 -0.0655,0.0172 -0.06551,0.015 -0.06549,0.0128 -0.008,0.002 -0.06469,0.0101 -0.0639,0.008 -0.06309,0.005 -0.0623,0.003 -0.0615,5.6e-4 -0.0599,-5.6e-4 -0.05917,-0.003 -0.0583,-0.005 -0.03112,-0.004 -0.05591,-0.008 -0.05437,-0.0104 -0.0527,-0.0122 -0.05111,-0.0141 -0.04957,-0.0157 -0.04717,-0.0175 -0.04551,-0.019 -0.04391,-0.0206 -0.01918,-0.01 -0.0407,-0.0229 -0.03911,-0.0243 -0.03758,-0.0257 -0.03518,-0.0269 -0.01839,-0.0152 -0.03185,-0.029 -0.03037,-0.0302 -0.02791,-0.0313 -0.02558,-0.0323 -0.02399,-0.0336 -0.02239,-0.0348 -0.01117,-0.0199 -0.01925,-0.0364 -0.01679,-0.0372 -0.01439,-0.0379 -0.01279,-0.0389 -0.01033,-0.0399 -0.0079,-0.0405 v -0.0232 l -0.008,-0.0413 v -0.0423 l -1.54e-4,-0.0434 v -0.0441 l 0.0079,-0.0448 0.008,-0.0455 0.0096,-0.0458 0.01117,-0.0458 0.01201,-0.0397", + "fill": { + "paint": "transparent" + }, + "id": "path8182", + "name": "path8182", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 73.353126,142.91428 v 0.009 0.0172 0.0171 0.008 l 0.008,0.0169 0.008,0.0168 0.008,0.0166 0.008,0.0165 0.008,0.0163 0.008,0.0161 0.0079,0.0159", + "fill": { + "paint": "transparent" + }, + "id": "path8183", + "name": "path8183", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 69.328078,142.02993 0.01559,0.0314 0.01439,0.0322 0.01306,0.0329 0.01189,0.0334 0.01057,0.0339 0.0034,0.0129 0.0086,0.0345 0.0072,0.035 0.0053,0.0355 0.0047,0.0359 0.0034,0.0363 5e-4,0.0129 0.002,0.0368 -9.9e-5,0.0374 -0.002,0.0378 -0.0034,0.0385 -0.004,0.0388 -0.0053,0.0391 -0.0072,0.0395 -0.0086,0.0395 -0.01021,0.0398 -0.01165,0.0397 -0.0047,0.0156", + "fill": { + "paint": "transparent" + }, + "id": "path8184", + "name": "path8184", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 75.488688,142.08448 v -0.007 l -0.0088,-0.0136 -0.0088,-0.0134 -0.0096,-0.0131 -0.0096,-0.0129 -0.01033,-0.0127 -0.01033,-0.0124 -0.01117,-0.0122 -0.008,-0.006 -0.01117,-0.0117 -0.01129,-0.0114", + "fill": { + "paint": "transparent" + }, + "id": "path8185", + "name": "path8185", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 67.198745,146.05222 0.0053,0.002 0.04025,0.0102 0.03938,0.0113 0.03845,0.0125 0.03745,0.0134 0.03631,0.0145 0.03524,0.0154 0.03405,0.0164 0.03272,0.0172 0.03152,0.0181 0.03032,0.0189 0.008,0.005 0.02885,0.02 0.02778,0.0209 0.02659,0.0216 0.02539,0.0224 0.02419,0.0231 0.0072,0.008 0.02259,0.0241 0.02139,0.0249 0.02019,0.0255 0.01892,0.0262 0.01752,0.0267 0.01632,0.0273 0.01512,0.028 0.01392,0.0287 0.01266,0.0293 0.01141,0.0298 0.0034,0.01 0.0095,0.0304 0.0082,0.0309 0.0072,0.0314 0.0053,0.0319 0.004,0.0323 4.94e-4,0.0102 0.0026,0.0327 5e-4,0.0334 -3.4e-4,0.0339 -0.002,0.0344 -0.0034,0.0348 -0.0047,0.0352 -0.0066,0.0355 -0.0072,0.0357 -0.009,0.0358 -0.01057,0.0357 -0.004,0.0113", + "fill": { + "paint": "transparent" + }, + "id": "path8186", + "name": "path8186", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 67.861849,147.16145 -0.0026,0.006 -0.0047,0.0134 -0.0053,0.0134 -0.0034,0.007 -0.0053,0.0133 -0.0053,0.0132 -0.0053,0.0131 -0.0066,0.0131 -0.0066,0.013 -0.0066,0.0129 -0.0066,0.0129", + "fill": { + "paint": "transparent" + }, + "id": "path8187", + "name": "path8187", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 66.628584,144.7332 0.02438,0.044 0.02705,0.0429 0.02979,0.042 0.03212,0.0404 0.03458,0.0388 0.03711,0.0374 0.03965,0.036 0.04091,0.0334 0.04425,0.0326 0.04677,0.0311 0.04938,0.0293 0.05204,0.0277 0.05443,0.0259 0.05683,0.0239 0.05897,0.0218 0.04211,0.0138 0.06223,0.0181 0.06416,0.0157 0.06609,0.0134 0.06799,0.0109 0.06999,0.009 0.07183,0.006 0.07376,0.004 0.02718,5.7e-4 0.07614,-2.1e-4 0.07718,-0.003 0.07807,-0.006 0.07886,-0.009 0.07966,-0.0113 0.08023,-0.0142 0.08075,-0.0171 3.46e-4,-7e-5 0.08114,-0.02 0.08084,-0.0228 0.08041,-0.0255 0.07982,-0.0283 0.07918,-0.031 0.07821,-0.0336 0.06429,-0.03 0.02979,-0.0146 0.07574,-0.0393 0.07414,-0.0417 0.07232,-0.0438 0.03278,-0.0209 0.06815,-0.046 0.0657,-0.0475 0.06337,-0.0495 0.02499,-0.0204 0.06023,-0.0519 0.05777,-0.0533 0.0549,-0.0545 0.05203,-0.0555 0.04898,-0.0564 0.04584,-0.0571 0.04265,-0.0575 0.03944,-0.0578 0.03618,-0.058 0.03298,-0.058 0.02972,-0.058 0.02659,-0.058 0.02338,-0.0579 0.02039,-0.0577", + "fill": { + "paint": "transparent" + }, + "id": "path8188", + "name": "path8188", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 73.512434,144.7332 0.008,0.0133 0.01519,0.0273 0.016,0.0267 0.0088,0.0136 0.01758,0.0259 0.01918,0.0255 0.01919,0.0248 0.01999,0.0241 0.02158,0.0236 0.02239,0.0228 0.02312,0.0221", + "fill": { + "paint": "transparent" + }, + "id": "path8189", + "name": "path8189", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 68.883049,137.3557 0.01069,-0.0304 0.01206,-0.0302 0.01352,-0.03 0.01486,-0.0296 0.01626,-0.0291 0.0098,-0.0162 0.01826,-0.0282 0.01972,-0.0276 0.02113,-0.0273 0.02259,-0.0269 0.02399,-0.0263 0.01273,-0.0131 0.02605,-0.0256 0.02759,-0.0251 0.02905,-0.0247 0.03065,-0.0241 0.03212,-0.0237 0.03371,-0.0231 0.03538,-0.0225 0.03698,-0.0219 0.03858,-0.0213 0.04025,-0.0206 0.02019,-0.01 0.04265,-0.0195 0.04384,-0.0186 0.04531,-0.0177 0.04671,-0.0168 0.04818,-0.0159 0.04977,-0.015 0.05137,-0.0141 0.05317,-0.0132 0.05511,-0.0123 0.04485,-0.009 0.05871,-0.0106 0.05977,-0.009 0.06091,-0.008 0.0621,-0.007 0.0633,-0.006 0.0645,-0.005 0.06577,-0.003 0.0671,-0.002 0.0684,-5.5e-4 h 0.0066", + "fill": { + "paint": "transparent" + }, + "id": "path8190", + "name": "path8190", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 69.356948,142.83888 -0.02259,0.0579 -0.02558,0.0579 -0.02865,0.0579 -0.03185,0.0578 -0.03498,0.0577 -0.03818,0.0575 -0.04144,0.0572 -0.04457,0.0567 -0.04763,0.0562 -0.05077,0.0555 -0.05384,0.0547 -0.05663,0.0536 -0.0595,0.0524 -0.06196,0.051 -0.01473,0.0116 -0.06491,0.0489 -0.06688,0.0469 -0.06879,0.0449 -0.07078,0.0428 -0.07271,0.0407 -0.07479,0.0388 -0.06309,0.0304 -0.05977,0.0269 -0.07879,0.0328 -0.07942,0.0301 -0.07992,0.0274 -0.08032,0.0245 -0.08046,0.0218 -0.0806,0.019 -0.07742,0.0156 -0.07967,0.0134 -0.07901,0.0105 -0.07823,0.008 -0.07742,0.005 -0.07653,0.002 -0.07558,-5.1e-4 -0.02332,-5.6e-4 -0.07318,-0.004 -0.07127,-0.007 -0.06935,-0.009 -0.06743,-0.0114 -0.06544,-0.0138 -0.0635,-0.016 -0.06164,-0.0184 -0.03851,-0.0129 -0.0585,-0.022 -0.05631,-0.024 -0.05398,-0.0259 -0.05144,-0.0277 -0.04898,-0.0295 -0.04637,-0.0311 -0.04384,-0.0326 -0.03931,-0.0323 -0.03938,-0.036 -0.03685,-0.0373 -0.03424,-0.0387 -0.03092,-0.0389 -0.02964,-0.0419 -0.02692,-0.043 -0.02432,-0.0439", + "fill": { + "paint": "transparent" + }, + "id": "path8191", + "name": "path8191", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 68.279919,141.522 0.0053,0.002 0.04025,0.0102 0.03938,0.0113 0.03852,0.0124 0.03738,0.0135 0.03638,0.0145 0.03524,0.0154 0.03405,0.0164 0.03279,0.0172 0.03152,0.0181 0.03018,0.0189 0.0079,0.005 0.02878,0.02 0.02778,0.0209 0.02659,0.0216 0.02532,0.0224 0.02405,0.0232 0.0072,0.008 0.02259,0.0242 0.02139,0.0249 0.02019,0.0255 0.01892,0.0262 0.01752,0.0266 0.01632,0.0274 0.01512,0.028 0.01386,0.0286 0.01266,0.0293 0.01141,0.0298 0.0034,0.01 0.0095,0.0304 0.0082,0.0309 0.0072,0.0314 0.0053,0.0319 0.004,0.0323 4.99e-4,0.0102 0.0026,0.0327 4.92e-4,0.0334 -3.47e-4,0.0339 -0.002,0.0344 -0.0026,0.0349 -0.0047,0.0352 -0.0066,0.0355 -0.0072,0.0357 -0.009,0.0359 -0.01057,0.0357 -0.004,0.0113", + "fill": { + "paint": "transparent" + }, + "id": "path8192", + "name": "path8192", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 68.943023,142.63125 -0.01852,0.0477 -0.02132,0.0478 -0.02399,0.0479 -0.02639,0.0479 -0.02919,0.0479 -0.03185,0.0478 -0.03458,0.0474 -0.03725,0.0472 -0.03272,0.0386 -0.04191,0.0462 -0.04418,0.0451 -0.04645,0.0439 -0.04857,0.0429 -0.05084,0.0416 -0.05304,0.0405 -0.05518,0.0392 -0.0573,0.0378 -0.02472,0.0154 -0.06023,0.0357 -0.01386,0.008 -0.06177,0.0333 -0.06283,0.0312 -0.06383,0.0291 -0.06476,0.0269 -0.06551,0.0248 -0.06623,0.0226 -0.06679,0.0203 -0.03018,0.008 -0.06671,0.0168 -0.0665,0.0144 -0.06617,0.0121 -0.06564,0.01 -0.06504,0.008 -0.06437,0.005 -0.06363,0.003 -0.0627,3.6e-4 -0.02399,-4.7e-4 -0.06083,-0.003 -0.05944,-0.005 -0.05804,-0.007 -0.0565,-0.009 -0.02945,-0.005 -0.05391,-0.0121 -0.05217,-0.014 -0.05037,-0.0158 -0.04864,-0.0176 -0.03165,-0.0129 -0.04544,-0.0204 -0.04338,-0.022 -0.04144,-0.0235 -0.03938,-0.0249 -0.02964,-0.0206 -0.03604,-0.0277 -0.03379,-0.0289 -0.03165,-0.0302 -0.02952,-0.0312 -0.02318,-0.0271 -0.02592,-0.0337 -0.02391,-0.0348 -0.02166,-0.0358 -0.0194,-0.0367 -0.01719,-0.0377 -0.01512,-0.0388 -0.01292,-0.0399 -0.01069,-0.0407 -0.0072,-0.0343 -0.0066,-0.0419 -0.004,-0.0428 -0.002,-0.0436 4.99e-4,-0.0444 0.0026,-0.0348 0.0047,-0.0453 0.0072,-0.046 0.0098,-0.0465 0.01246,-0.0469 0.0095,-0.0309", + "fill": { + "paint": "transparent" + }, + "id": "path8193", + "name": "path8193", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 66.469317,142.91428 0.002,0.009 0.0034,0.0172 0.004,0.0171 0.0026,0.008 0.0047,0.0169 0.0047,0.0168 0.0053,0.0166 0.0066,0.0165 0.0066,0.0163 0.0072,0.0161 0.008,0.0159", + "fill": { + "paint": "transparent" + }, + "id": "path8194", + "name": "path8194", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 61.53229,144.70194 -0.09437,-0.1884 -0.0846,-0.19391 -0.07431,-0.19853 -0.04418,-0.13608 -0.05637,-0.2041 -0.04598,-0.20877 -0.03544,-0.21282 -0.01745,-0.14273 -0.01719,-0.21809 -0.0066,-0.22201 0.0047,-0.2254 0.0086,-0.14014 0.02325,-0.22955 0.03484,-0.23251 0.04664,-0.23509 0.03084,-0.13083 0.06504,-0.23817 0.07718,-0.23991 0.08934,-0.24134 0.04697,-0.11565 0.107568,-0.24278 0.119856,-0.24316 0.132402,-0.24335 0.0565,-0.0974 0.150099,-0.2432 0.1622,-0.24176 0.174419,-0.24008 0.18668,-0.23807 0.19882,-0.23574 0.210901,-0.23302 0.12963,-0.13555 0.22977,-0.22771 0.240219,-0.22258 0.250558,-0.21723 0.260794,-0.21157 0.270794,-0.20561 0.28059,-0.19939 0.108614,-0.0737 0.293756,-0.19021 0.301078,-0.18199 0.308054,-0.17345 0.314632,-0.16466 0.320674,-0.15558 0.326298,-0.14624 0.0847,-0.0361 0.09778,-0.0407 0.331696,-0.13032 0.334,-0.1197 0.3358,-0.10894 0.337213,-0.0981 0.338225,-0.0874 0.338878,-0.0764 0.150093,-0.0304 0.336433,-0.0603 0.334041,-0.0492 0.331069,-0.038 0.327558,-0.027 0.3237,-0.016 0.319461,-0.005", + "fill": { + "paint": "transparent" + }, + "id": "path8195", + "name": "path8195", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 63.419005,146.52697 0.01213,-0.0879 0.01386,-0.0883 0.01566,-0.0888 0.01726,-0.0892 0.01899,-0.0895 0.02072,-0.0899 0.02252,-0.0902 0.02419,-0.0905 0.02592,-0.0907 0.02778,-0.091 0.0086,-0.0273 0.02992,-0.0911 0.03165,-0.0914 0.03345,-0.0915 0.03524,-0.0918 0.03705,-0.0918 0.03884,-0.0921 0.04065,-0.0922 0.04245,-0.0923 0.04425,-0.0923 0.04604,-0.0925 0.0026,-0.005", + "fill": { + "paint": "transparent" + }, + "id": "path8196", + "name": "path8196", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 64.746001,143.52131 0.06928,-0.0889 0.07102,-0.0886 0.07262,-0.0881 0.07438,-0.0879 0.0066,-0.008 0.0763,-0.0874 0.0779,-0.087 0.0795,-0.0865 0.0811,-0.086 0.08271,-0.0855 0.0843,-0.0849 0.08588,-0.0844 0.08744,-0.0838 0.08895,-0.0831 0.09045,-0.0824 0.09197,-0.0818 0.09349,-0.081 0.0066,-0.005", + "fill": { + "paint": "transparent" + }, + "id": "path8197", + "name": "path8197", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 68.604885,142.08448 -0.004,-0.007 -0.0085,-0.0136 -0.0089,-0.0134 -0.0094,-0.0131 -0.0098,-0.0129 -0.01,-0.0127 -0.01033,-0.0124 -0.01069,-0.0122 -0.0053,-0.006 -0.01117,-0.0117 -0.01165,-0.0114", + "fill": { + "paint": "transparent" + }, + "id": "path8198", + "name": "path8198", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 67.523765,146.61472 -0.004,-0.007 -0.0086,-0.0136 -0.0089,-0.0134 -0.0094,-0.0131 -0.0096,-0.0129 -0.01009,-0.0127 -0.01045,-0.0124 -0.01069,-0.0122 -0.0053,-0.006 -0.01117,-0.0116 -0.01153,-0.0114", + "fill": { + "paint": "transparent" + }, + "id": "path8199", + "name": "path8199", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 60.012464,145.36931 -0.06966,-0.11491 -0.06656,-0.11701 -0.06337,-0.11897 -0.06004,-0.12081 -0.05663,-0.1224 -0.0154,-0.0348 -0.05223,-0.12425 -0.04864,-0.12542 -0.04484,-0.12644 -0.04144,-0.12749 -0.03792,-0.12925 -0.03445,-0.13093 -0.03092,-0.13248 -0.02732,-0.13389 -0.02391,-0.13523 -0.02019,-0.13643 -0.01659,-0.13748 -0.0026,-0.0334 -0.01189,-0.13861 -0.0082,-0.14003 -0.0047,-0.14133 -5e-4,-0.14256 0.0026,-0.14372 0.0072,-0.14477 0.01081,-0.14572 0.01459,-0.14659 0.002,-0.0159 0.01892,-0.14737 0.02278,-0.14839 0.02672,-0.14934 0.03065,-0.15025 0.03478,-0.15101 0.03884,-0.15172 0.04291,-0.15233 0.04331,-0.14139", + "fill": { + "paint": "transparent" + }, + "id": "path8200", + "name": "path8200", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 59.598601,140.82805 0.112264,-0.31251 0.129472,-0.3142 0.146874,-0.31542 0.164439,-0.31611 0.181942,-0.31613 0.1994,-0.31534 0.216664,-0.31359 0.114306,-0.15539 0.24177,-0.30903 0.257963,-0.30471 0.274606,-0.3005 0.180189,-0.18569 0.302531,-0.2938 0.31761,-0.28702 0.332435,-0.27969 0.184821,-0.14727 0.354516,-0.26742 0.366625,-0.25734 0.378216,-0.24683 0.389338,-0.23584 0.399779,-0.22434 0.409633,-0.2124 0.401379,-0.19204 0.408607,-0.18001 0.429477,-0.17301 0.433135,-0.15825 0.435999,-0.14331 0.438112,-0.1282 0.439378,-0.113 0.440004,-0.0976 0.240171,-0.047 0.435513,-0.0734 0.432015,-0.0578 0.428157,-0.0424 0.263186,-0.0185 0.418309,-0.0175 0.411633,-0.002 0.40451,0.0121 0.281995,0.0173 0.388918,0.0365 0.379389,0.0504 0.369609,0.0638 0.291457,0.0612 0.349473,0.0869 0.337886,0.099 0.326144,0.11082 0.28682,0.11104 0.302578,0.13218 0.289618,0.14257 0.276445,0.15255 0.263586,0.16243 0.251119,0.1722 0.237532,0.18101 0.223387,0.1891 0.01279,0.0112 0.210127,0.1988 0.196622,0.20709 0.182721,0.21447 0.168178,0.22101 0.155169,0.22953 0.01033,0.0161 0.140936,0.23827 0.126553,0.24456 0.111364,0.2494", + "fill": { + "paint": "transparent" + }, + "id": "path8201", + "name": "path8201", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 70.905005,134.30297 -0.365018,0.007 -0.370028,0.0196 -0.374605,0.033 -0.378525,0.0464 -0.381721,0.0599 -0.384235,0.0735 -0.385726,0.0871 -0.386326,0.10052 -0.02179,0.006 -0.38578,0.11465 -0.383147,0.12758 -0.38017,0.14044 -0.355216,0.14403 -0.344415,0.15188 -0.367017,0.17572 -0.360081,0.18702 -0.352711,0.19812 -0.336926,0.2039 -0.333168,0.21685 -0.32234,0.22547 -0.31088,0.23351 -0.298914,0.241 -0.286599,0.24799 -0.273919,0.25445 -0.260987,0.26049 -0.02885,0.03 -0.244502,0.2647 -0.229784,0.26811 -0.215205,0.27133 -0.200719,0.27431 -0.04404,0.0634 -0.181888,0.276 -0.166692,0.27696 -0.151597,0.27744 -0.136594,0.27774 -0.04538,0.0997 -0.116012,0.27655 -0.101035,0.2751 -0.08612,0.2733 -0.07151,0.27116 -0.02945,0.13037 -0.05017,0.26776 -0.03597,0.26461 -0.02179,0.26088 -0.008,0.25669 0.002,0.14689 0.01345,0.25189 0.02678,0.24765 0.03984,0.2425 0.05257,0.23673 0.03884,0.14366 0.0739,0.23096 0.08671,0.22599 0.09898,0.22 0.110799,0.21312 0.122988,0.20703 0.135853,0.20213 0.148295,0.1964 0.160193,0.18969 0.103473,0.11222 0.177952,0.17702 0.190425,0.17067 0.202618,0.16369 0.214331,0.15602 0.124727,0.0838 0.231203,0.14269 0.242902,0.13446 0.254357,0.12575 0.265577,0.11669 0.125034,0.0502 0.281083,0.10258 0.29161,0.0926 0.301911,0.0822 0.311706,0.0713 0.10465,0.021", + "fill": { + "paint": "transparent" + }, + "id": "path8202", + "name": "path8202", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 64.874012,147.27141 0.103581,0.0194 0.104445,0.0182 0.105383,0.017 0.106307,0.0158 0.0026,3.6e-4 0.107244,0.0146 0.108157,0.0133 0.108986,0.0121 0.109814,0.0108 0.110704,0.01 0.111472,0.008 0.1123,0.007 0.113046,0.006 0.113814,0.005 0.114511,0.003 0.115219,0.002 0.10089,4.9e-4", + "fill": { + "paint": "transparent" + }, + "id": "path8203", + "name": "path8203", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 66.62248,147.43392 0.128892,-5.7e-4 0.129664,-0.002 0.130457,-0.004 0.131223,-0.006 0.01141,-5.6e-4 0.132109,-0.008 0.132635,-0.009 0.13323,-0.0109 0.133762,-0.0126 0.134246,-0.0143 0.134742,-0.016 0.135121,-0.0177 0.135521,-0.0194 0.135913,-0.0211 0.136154,-0.0229 0.13644,-0.0245 0.136694,-0.0264 0.01057,-0.002", + "fill": { + "paint": "transparent" + }, + "id": "path8204", + "name": "path8204", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 73.783608,144.97331 0.05111,-0.0388 0.261739,-0.20678 0.252472,-0.21199 0.242889,-0.21675 0.232895,-0.22107 0.222834,-0.225 0.212453,-0.22853 0.201892,-0.23174 0.133516,-0.16214 0.182888,-0.23516 0.171847,-0.23696 0.160761,-0.23866 0.116805,-0.18554 0.140545,-0.23978 0.12919,-0.24 0.117922,-0.24007 0.09276,-0.20698 0.09691,-0.23882 0.08564,-0.23778 0.07431,-0.23652 0.0607,-0.2237 0.05351,-0.23327 0.04239,-0.23106 0.03185,-0.22861 4.94e-4,-0.007 0.02079,-0.22646 0.01033,-0.22385 4.8e-4,-0.2208 -0.0096,-0.21735 v -0.0186 l -0.02079,-0.21465 -0.03032,-0.21149 -0.03997,-0.20779 -0.04957,-0.20355 -0.0079,-0.0225 -0.0607,-0.20039 -0.07031,-0.19683 -0.07989,-0.19266 -0.08845,-0.18785 -0.09771,-0.18366 -0.107317,-0.17993 -0.116564,-0.17557 -0.125359,-0.17056 -0.01446,-0.0188 -0.134702,-0.16439 -0.144135,-0.15999 -0.153245,-0.15512 -0.161953,-0.1497 -0.01519,-0.0133 -0.170981,-0.14321 -0.179924,-0.13781 -0.188712,-0.13202 -0.197187,-0.1259 -0.008,-0.005 -0.205583,-0.11911 -0.214439,-0.11286 -0.223074,-0.10635 -0.231616,-0.0995 -0.240017,-0.0926 -0.248074,-0.0851 -0.255756,-0.0776 -0.217317,-0.0582 -0.268556,-0.0627 -0.275286,-0.0544 -0.281895,-0.0458 -0.288499,-0.037 -0.294889,-0.028 -0.301124,-0.0188 -0.307076,-0.01 -0.156436,-0.002", + "fill": { + "paint": "transparent" + }, + "id": "path8205", + "name": "path8205", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 70.968197,135.11694 -0.0072,2e-5 -0.0611,5.6e-4 -0.0605,0.002 -0.05984,0.004 -0.05924,0.005 -0.05851,0.007 -0.0577,0.008 -0.05691,0.009 -0.05604,0.0108 -0.05503,0.0121 -0.05417,0.0134 -0.01259,0.003 -0.05317,0.015 -0.05223,0.0163 -0.05137,0.0176 -0.05031,0.0188 -0.0493,0.02 -0.04825,0.0211 -0.04717,0.0223 -0.04604,0.0234 -0.04478,0.0246 -0.04365,0.0256 -0.01418,0.009 -0.04192,0.0269 -0.04071,0.028 -0.03938,0.0289 -0.03811,0.0298 -0.03665,0.0305 -0.03524,0.0314 -0.03371,0.0321 -0.03232,0.0328 -0.03092,0.0335 -0.02951,0.0341 -0.01386,0.0168 -0.02732,0.0353 -0.02592,0.0359 -0.02445,0.0365 -0.02299,0.037 -0.02139,0.0373 -0.01985,0.0377 -0.01819,0.0378 -0.01659,0.0379 -0.01486,0.038 -0.01326,0.0381", + "fill": { + "paint": "transparent" + }, + "id": "path8206", + "name": "path8206", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 70.939427,135.06035 0.02659,5e-5 0.207882,0.003 0.20515,0.008 0.202331,0.0118 0.199493,0.0162 0.196475,0.0206 0.193503,0.025 0.190431,0.0292 0.187307,0.0334 0.184186,0.0375 0.08729,0.0194 0.179258,0.0436 0.175699,0.0474 0.172094,0.0511 0.168343,0.0548 0.164433,0.0584 0.160586,0.0619 0.156516,0.0653 0.152611,0.0686 0.148515,0.0719 0.127757,0.0662 0.141105,0.0778 0.13694,0.0811 0.132709,0.084 0.12855,0.0869 0.119291,0.0858 0.120643,0.0925 0.116492,0.0952 0.112169,0.0977 0.107785,0.10018 v 0.002 l 0.103628,0.10293 0.09946,0.10553 0.09532,0.10792 0.09085,0.11017 0.08629,0.11223 v 0.003 l 0.08221,0.11501 0.07831,0.11748 0.07351,0.11968 0.06951,0.12159 0.0647,0.12327", + "fill": { + "paint": "transparent" + }, + "id": "path8207", + "name": "path8207", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 75.387222,139.76437 -0.149567,-0.29069 -0.149645,-0.29073 -0.149567,-0.29069 -0.149653,-0.29072 -0.149567,-0.29068 -0.149647,-0.29069 -0.149566,-0.29071 -0.149646,-0.2907 -0.149653,-0.29071 -0.149567,-0.29068", + "fill": { + "paint": "transparent" + }, + "id": "path8208", + "name": "path8208", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 98.97909,144.19405 0.02,0.0316 0.0216,0.0312 0.0224,0.0308 0.024,0.0302 0.0256,0.0296 0.0263,0.0289 0.028,0.0281 0.0288,0.0274 0.0255,0.0227 0.0311,0.0256 0.0319,0.025 0.0336,0.0241 0.0343,0.0233 0.0359,0.0225 0.0367,0.0218 0.0383,0.0208 0.0391,0.0199 0.0279,0.0131 0.0415,0.0184 0.0424,0.0174 0.0431,0.0164 0.0448,0.0154 0.0455,0.0143 0.0463,0.0132 0.0479,0.0122 0.0487,0.011 0.0184,0.004 0.0503,0.009 0.0511,0.008 0.0519,0.007 0.0527,0.006 0.0535,0.005 0.0544,0.003 0.0551,0.002 0.0559,5.7e-4 v 0", + "fill": { + "paint": "transparent" + }, + "id": "path8209", + "name": "path8209", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 93.96915,139.66384 0.02,0.0316 0.0216,0.0312 0.0224,0.0307 0.024,0.0303 0.0256,0.0296 0.0264,0.029 0.0279,0.0281 0.0287,0.0274 0.0256,0.0228 0.0312,0.0256 0.0319,0.025 0.0335,0.0241 0.0342,0.0233 0.0359,0.0225 0.0367,0.0219 0.0384,0.0208 0.0391,0.02 0.028,0.0131 0.0415,0.0184 0.0424,0.0174 0.0431,0.0164 0.0448,0.0154 0.0455,0.0143 0.0472,0.0132 0.0479,0.0122 0.0487,0.0111 0.0184,0.004 0.0503,0.009 0.0511,0.008 0.052,0.007 0.0527,0.006 0.0535,0.005 0.0544,0.003 0.0551,0.002 0.0559,5.6e-4 v 0", + "fill": { + "paint": "transparent" + }, + "id": "path8210", + "name": "path8210", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 100.85298,139.66384 0.02,0.0316 0.0216,0.0312 0.0224,0.0307 0.024,0.0303 0.0256,0.0296 0.0263,0.029 0.0279,0.0281 0.0288,0.0274 0.0256,0.0228 0.0311,0.0256 0.0319,0.025 0.0336,0.0241 0.0343,0.0233 0.0359,0.0225 0.0367,0.0219 0.0383,0.0208 0.0391,0.02 0.028,0.0131 0.0415,0.0184 0.0424,0.0174 0.0431,0.0164 0.0448,0.0154 0.0455,0.0143 0.0463,0.0132 0.0479,0.0122 0.0487,0.0111 0.0184,0.004 0.0503,0.009 0.0511,0.008 0.052,0.007 0.0527,0.006 0.0535,0.005 0.0544,0.003 0.0551,0.002 0.0559,5.6e-4 v 0", + "fill": { + "paint": "transparent" + }, + "id": "path8211", + "name": "path8211", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 107.01447,138.99205 0.13504,0.0421 0.16321,0.0544 0.16028,0.0572 0.15724,0.0599 0.1542,0.0626 0.15108,0.0653 0.1479,0.0679 0.14469,0.0703 v 5.2e-4 l 0.14166,0.0729 0.13862,0.0755 0.13543,0.078 0.13222,0.0804 0.12896,0.0826 0.12575,0.0848 0.12217,0.087 0.11888,0.089 0.0192,0.0147 0.11537,0.0916 0.11217,0.0938 0.10898,0.096 0.10555,0.0979 0.10219,0.0998 0.0987,0.10171 0.0953,0.10343 0.0916,0.10509 0.0208,0.0244 0.088,0.10785 0.0849,0.10998 0.0817,0.11191 0.0783,0.11372 0.0751,0.11534 0.0711,0.1168 0.0679,0.11813 0.0639,0.11928", + "fill": { + "paint": "transparent" + }, + "id": "path8212", + "name": "path8212", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 102.97473,134.68923 0.10731,0.0336 0.12998,0.0434 0.12776,0.0458 0.12528,0.0479 0.12289,0.05 0.12032,0.0521 0.11784,0.0542 0.11529,0.0561 3.2e-4,1.8e-4 0.11289,0.0583 0.1105,0.0602 0.10793,0.0622 0.10531,0.0641 0.10283,0.0659 0.10011,0.0676 0.0974,0.0694 0.0948,0.071 0.0144,0.0113 0.0919,0.0731 0.0894,0.075 0.0868,0.0767 0.0842,0.0782 0.0814,0.0797 0.0791,0.0812 0.0759,0.0825 0.0727,0.0838 0.016,0.0191 0.0703,0.0861 0.0679,0.0876 0.0648,0.0893 0.0623,0.0907 0.06,0.0919 0.0568,0.0932 0.0544,0.0941 0.0511,0.0952", + "fill": { + "paint": "transparent" + }, + "id": "path8213", + "name": "path8213", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 91.3292,140.33488 0.0655,-0.18991 0.0735,-0.19078 0.0816,-0.19152 0.0896,-0.19206 0.0976,-0.19244 0.10571,-0.19253 0.11368,-0.19235 0.1216,-0.1919 0.12952,-0.19105 0.0695,-0.0971 0.14118,-0.18909 0.14868,-0.18733 0.15628,-0.1856 0.16419,-0.1839 0.10276,-0.11013 0.17704,-0.18129 0.184,-0.17843 0.19104,-0.17538 0.19774,-0.17206 0.10124,-0.0847 0.20765,-0.16672 0.21389,-0.16263 0.21972,-0.15839 0.2257,-0.15402 0.10155,-0.0667 0.23385,-0.14735 0.23858,-0.14214 0.24312,-0.13674 0.24744,-0.13117 0.0999,-0.0508 0.098,-0.0486 0.25416,-0.1207 0.25718,-0.11438 0.25983,-0.108 0.2623,-0.10155 0.10914,-0.0402 0.26462,-0.0919 0.26566,-0.0851 0.26662,-0.0783 0.26709,-0.0712", + "fill": { + "paint": "transparent" + }, + "id": "path8214", + "name": "path8214", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 94.22793,144.81464 0.0805,-0.002 0.0814,-0.004 0.0824,-0.007 0.0831,-0.009 0.0837,-0.0122 0.0844,-0.015 0.0848,-0.0177 0.0849,-0.0206 0.0851,-0.0233 0.0847,-0.026 0.0846,-0.0288 0.084,-0.0314 0.0415,-0.0168 0.012,-0.005 0.0824,-0.0356 0.081,-0.038 0.0799,-0.0402 0.0783,-0.0426 0.0767,-0.0448 0.0751,-0.0471 0.0176,-0.0114 0.0719,-0.0492 0.0695,-0.0507 0.0671,-0.0523 0.0647,-0.0539 0.0623,-0.0552 0.0599,-0.0565 0.0256,-0.0254 0.0551,-0.0578 0.0527,-0.0586 0.0496,-0.0593 0.0463,-0.0599 0.0431,-0.0604 0.0407,-0.061 0.0272,-0.0432 0.0351,-0.0612 0.0319,-0.0611 0.0287,-0.061 0.0256,-0.0609 0.0224,-0.0607 0.02,-0.0605 1.6e-4,-5.8e-4 0.0168,-0.0601 0.0136,-0.0595 0.0103,-0.0589 0.008,-0.0581 0.008,-0.0573 v -0.0564 -0.0556 l -3.2e-4,-0.01 -0.008,-0.0552 -0.008,-0.0546 -0.01,-0.0538 -0.012,-0.0528 -0.0144,-0.0515 -0.0168,-0.0499 -0.0192,-0.0484", + "fill": { + "paint": "transparent" + }, + "id": "path8215", + "name": "path8215", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 102.19294,140.28444 0.0805,-0.002 0.0816,-0.004 0.0823,-0.007 0.0832,-0.009 0.0838,-0.0122 0.0844,-0.015 0.0846,-0.0177 0.0849,-0.0206 0.085,-0.0233 0.0849,-0.0262 0.0845,-0.0288 0.084,-0.0314 0.0424,-0.0168 0.0121,-0.005 0.0824,-0.0356 0.0809,-0.038 0.0799,-0.0402 0.0783,-0.0426 0.0767,-0.0448 0.0751,-0.0471 0.0176,-0.0114 0.0719,-0.0492 0.0695,-0.0507 0.0671,-0.0523 0.0648,-0.0538 0.0623,-0.0552 0.0599,-0.0565 0.0256,-0.0254 0.0551,-0.0577 0.052,-0.0586 0.0496,-0.0593 0.0463,-0.0599 0.0431,-0.0605 0.0407,-0.061 0.0264,-0.0432 0.0351,-0.0611 0.0319,-0.0612 0.0287,-0.0611 0.0256,-0.0609 0.0224,-0.0607 0.02,-0.0604 1.5e-4,-5.7e-4 0.0168,-0.0601 0.0136,-0.0596 0.0103,-0.0589 0.008,-0.0582 0.008,-0.0573 v -0.0565 l -5e-4,-0.0555 -4.9e-4,-0.01 v -0.0552 l -0.008,-0.0546 -0.01,-0.0538 -0.012,-0.0527 -0.0144,-0.0515 -0.0168,-0.05 -0.0192,-0.0484", + "fill": { + "paint": "transparent" + }, + "id": "path8216", + "name": "path8216", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 95.30903,140.28444 0.0806,-0.002 0.0814,-0.004 0.0824,-0.007 0.0831,-0.009 0.0839,-0.0122 0.0843,-0.015 0.0848,-0.0177 0.0848,-0.0206 0.085,-0.0233 0.0848,-0.0262 0.0845,-0.0288 0.084,-0.0314 0.0415,-0.0168 0.012,-0.005 0.0825,-0.0356 0.081,-0.038 0.0799,-0.0402 0.0783,-0.0426 0.0767,-0.0448 0.0751,-0.0471 0.0176,-0.0114 0.0719,-0.0492 0.0695,-0.0507 0.0671,-0.0523 0.0648,-0.0538 0.0623,-0.0552 0.0592,-0.0565 0.0256,-0.0254 0.0551,-0.0577 0.052,-0.0586 0.0496,-0.0593 0.0463,-0.0599 0.0431,-0.0605 0.0407,-0.061 0.0264,-0.0432 0.0351,-0.0611 0.0319,-0.0612 0.0287,-0.0611 0.0256,-0.0609 0.0232,-0.0607 0.0192,-0.0604 2.4e-4,-5.7e-4 0.0168,-0.0601 0.0136,-0.0596 0.0103,-0.0589 0.008,-0.0582 0.008,-0.0573 v -0.0565 l -5e-4,-0.0555 -4e-4,-0.01 -0.008,-0.0552 -0.008,-0.0546 -0.01,-0.0538 -0.0121,-0.0527 -0.0152,-0.0515 -0.0176,-0.05 -0.0192,-0.0484", + "fill": { + "paint": "transparent" + }, + "id": "path8217", + "name": "path8217", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 100.31912,144.81464 0.0805,-0.002 0.0814,-0.004 0.0824,-0.007 0.0831,-0.009 0.0837,-0.0122 0.0844,-0.015 0.0847,-0.0177 0.0849,-0.0206 0.085,-0.0233 0.0848,-0.026 0.0846,-0.0288 0.084,-0.0314 0.0415,-0.0168 0.0121,-0.005 0.0825,-0.0356 0.081,-0.038 0.0799,-0.0402 0.0775,-0.0426 0.0767,-0.0448 0.0751,-0.0471 0.0176,-0.0114 0.0719,-0.0492 0.0695,-0.0507 0.0671,-0.0523 0.0647,-0.0539 0.0623,-0.0552 0.0599,-0.0565 0.0256,-0.0254 0.0551,-0.0578 0.0527,-0.0586 0.0496,-0.0593 0.0463,-0.0599 0.0431,-0.0604 0.04,-0.061 0.0272,-0.0432 0.0351,-0.0612 0.0318,-0.0611 0.0288,-0.061 0.0256,-0.0609 0.0224,-0.0607 0.0192,-0.0605 2.4e-4,-5.8e-4 0.0168,-0.0601 0.0136,-0.0595 0.0113,-0.0589 0.008,-0.0581 0.008,-0.0573 v -0.0564 l -5e-4,-0.0556 -3.9e-4,-0.01 -0.008,-0.0552 -0.008,-0.0546 -0.01,-0.0538 -0.012,-0.0528 -0.0144,-0.0515 -0.0168,-0.0499 -0.0192,-0.0484", + "fill": { + "paint": "transparent" + }, + "id": "path8218", + "name": "path8218", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 92.88799,144.19405 0.02,0.0316 0.0216,0.0312 0.0232,0.0308 0.024,0.0302 0.0256,0.0296 0.0264,0.0289 0.0279,0.0281 0.0287,0.0274 0.0256,0.0227 0.0312,0.0256 0.0318,0.025 0.0336,0.0241 0.0343,0.0233 0.0359,0.0225 0.0367,0.0218 0.0384,0.0208 0.0391,0.0199 0.0279,0.0131 0.0415,0.0184 0.0424,0.0174 0.0431,0.0164 0.0448,0.0154 0.0455,0.0143 0.0463,0.0132 0.0479,0.0122 0.0487,0.011 0.0184,0.004 0.0503,0.009 0.0511,0.008 0.052,0.007 0.0527,0.006 0.0535,0.005 0.0544,0.003 0.0551,0.002 0.0559,5.7e-4 v 0", + "fill": { + "paint": "transparent" + }, + "id": "path8219", + "name": "path8219", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 91.51679,143.6909 -0.0463,-0.0931 -0.0439,-0.0945 -0.0415,-0.0959 -0.0391,-0.0973 -0.0367,-0.0983 -0.0342,-0.0994 -0.0311,-0.10034 -0.0264,-0.0925 -0.0263,-0.10176 -0.0232,-0.10297 -0.0208,-0.10413 -0.0184,-0.10522 -0.0152,-0.10627 -0.0128,-0.1072 -0.01,-0.10804 -0.008,-0.0934 -0.008,-0.10939 v -0.11037 -0.11129 -0.11219 l 0.008,-0.11298 0.01,-0.11374 0.0128,-0.1144 0.0112,-0.0837 0.0176,-0.11537 0.0208,-0.11611 0.0232,-0.11677 0.0264,-0.11738 0.0295,-0.11794 0.0327,-0.11845 0.0358,-0.11881 0.0216,-0.0669", + "fill": { + "paint": "transparent" + }, + "id": "path8220", + "name": "path8220", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 92.65781,150.27797 -0.0583,-0.11656 -0.0551,-0.11848 -0.052,-0.12025 -0.0496,-0.12183 -0.0463,-0.12333 -0.0424,-0.12461 -0.0391,-0.12575 -0.0327,-0.11618 -0.0327,-0.12754 -0.0296,-0.12908 -0.0263,-0.13057 -0.0232,-0.13191 -0.0192,-0.13319 -0.0161,-0.13438 -0.0128,-0.13546 -0.008,-0.11703 -0.008,-0.13712 v -0.13835 -0.1395 l 0.008,-0.14062 0.008,-0.14166 0.0121,-0.14256 0.016,-0.1434 0.0137,-0.1049 0.0216,-0.14465 0.0256,-0.14552 0.0296,-0.1464 0.0335,-0.14713 0.0367,-0.14786 0.0407,-0.14843 0.0448,-0.14897 0.0271,-0.084", + "fill": { + "paint": "transparent" + }, + "id": "path8221", + "name": "path8221", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 102.71355,143.36292 -0.0431,-0.015 -0.0448,-0.014 -0.0455,-0.0129 -0.0168,-0.005 -0.0472,-0.0114 -0.0479,-0.0103 -0.0487,-0.009 -0.0496,-0.008 -0.0511,-0.007 -0.0511,-0.005 -0.0527,-0.005 -0.0535,-0.003 -0.0535,-0.002 -0.0424,-4.2e-4", + "fill": { + "paint": "transparent" + }, + "id": "path8222", + "name": "path8222", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 106.13993,140.33488 -0.0463,0.13677 -0.0503,0.13725 -0.0551,0.13769 -0.0592,0.13805 -0.0632,0.13837 -0.0671,0.13856 -0.0719,0.13873 -0.0759,0.13881 -0.0799,0.13875 -0.084,0.13858 -0.0881,0.13837 -0.0922,0.13793 -0.0964,0.13743 -0.0896,0.12233 -0.10371,0.13598 -0.10772,0.13497 -0.11161,0.13397 -0.11544,0.13299 -0.11944,0.13204 -0.12361,0.13112 -0.0912,0.0935 -0.13079,0.12953 -0.13439,0.12799 -0.13799,0.12632 -0.14141,0.12457 -0.14469,0.12274 -0.14805,0.12076 -0.0856,0.0677", + "fill": { + "paint": "transparent" + }, + "id": "path8223", + "name": "path8223", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 103.41296,143.9769 -0.24959,0.18868 -0.25735,0.1827 -0.2647,0.17642 -0.27172,0.16976 -0.27822,0.16276 -0.28426,0.15543 -0.28979,0.14776 -0.29475,0.13985 -0.2992,0.13158 -0.16547,0.0685 -0.30473,0.11822 -0.30744,0.10932 -0.25615,0.0836 -0.30832,0.0919 -0.30857,0.0824 -0.30872,0.0728 -0.30847,0.0633 -0.30832,0.0539 -0.29531,0.043 -0.30321,0.035 -0.30001,0.0255 -0.29657,0.0161 -0.29299,0.007 -0.28898,-0.002 -0.0527,-0.002 -0.28235,-0.0129 -0.27652,-0.0216 -0.27053,-0.0302 -0.26447,-0.0386 -0.25838,-0.047 -0.25231,-0.055 -0.10172,-0.0249 -0.24288,-0.0659 -0.23562,-0.0734 -0.2281,-0.0805 -0.22036,-0.0873 -0.21236,-0.0939 -0.2043,-0.10025 -0.0592,-0.0311 -0.19415,-0.10847 -0.18625,-0.11445 -0.17791,-0.12019 -0.0592,-0.0424 -0.1673,-0.12791 -0.15908,-0.13322 -0.15028,-0.13807 -0.0544,-0.0534 -0.13926,-0.14534 -0.1308,-0.1501 -0.122,-0.15435 -0.0448,-0.0611 -0.11081,-0.16148 -0.10212,-0.16574 -0.0931,-0.16929", + "fill": { + "paint": "transparent" + }, + "id": "path8224", + "name": "path8224", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 95.24215,141.70487 -0.0816,0.002 -0.0826,0.004 -0.0833,0.007 -0.0843,0.01 -0.0849,0.0125 -0.0855,0.0154 -0.0857,0.0182 -0.086,0.0212 -0.0861,0.0239 -0.0859,0.0267 -0.0856,0.0296 -0.0848,0.0323 -0.0743,0.0307 -0.0287,0.0126 -0.0825,0.038 -0.0809,0.0402 -0.0791,0.0426 -0.0775,0.0447 -0.0759,0.0471 -0.0743,0.0492 -0.0336,0.0232 -0.0703,0.0517 -0.0679,0.0532 -0.0655,0.0546 -0.0623,0.056 -0.0599,0.0573 -0.0575,0.0584 -0.0383,0.0412 -0.052,0.0597 -0.0487,0.0603 -0.0455,0.0608 -0.0424,0.0613 -0.0391,0.0617 -0.036,0.0621 -0.0327,0.0618 -0.0296,0.062 -0.0272,0.0617 -0.0232,0.0614 -0.0208,0.0611 -0.0176,0.0607 -0.0144,0.0602 v 0.0181 l -0.0103,0.0597 -0.008,0.059 -0.008,0.0583 v 0.0574 0.0564 l 0.008,0.0553 0.008,0.0541 0.01,0.0539 0.008,0.0225 0.0136,0.0531 0.0168,0.0521 0.0192,0.0509 0.0216,0.0496 0.024,0.0479 0.0264,0.046", + "fill": { + "paint": "transparent" + }, + "id": "path8225", + "name": "path8225", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 103.20715,137.17463 -0.0815,0.002 -0.0826,0.004 -0.0835,0.007 -0.0842,0.01 -0.0849,0.0125 -0.0854,0.0153 -0.0859,0.0182 -0.0859,0.0211 -0.0861,0.024 -0.0858,0.0267 -0.0856,0.0296 -0.0849,0.0323 -0.0743,0.0307 -0.0287,0.0127 -0.0825,0.0379 -0.0809,0.0402 -0.0791,0.0424 -0.0775,0.0449 -0.0759,0.0471 -0.0743,0.0492 -0.0336,0.0231 -0.0703,0.0516 -0.0679,0.0532 -0.0655,0.0545 -0.0623,0.056 -0.0599,0.0573 -0.0575,0.0585 -0.0383,0.0412 -0.052,0.0597 -0.0487,0.0603 -0.0455,0.0608 -0.0424,0.0613 -0.04,0.0617 -0.036,0.0621 -0.0327,0.0618 -0.0295,0.062 -0.0272,0.0617 -0.0239,0.0615 -0.02,0.0611 -0.0176,0.0607 -0.0144,0.0602 v 0.0181 l -0.0103,0.0597 -0.008,0.059 -0.008,0.0583 v 0.0574 0.0564 l 0.008,0.0553 0.008,0.0541 0.01,0.0538 0.008,0.0224 0.0136,0.053 0.0168,0.0521 0.0192,0.051 0.0216,0.0495 0.024,0.0478 0.0263,0.0462", + "fill": { + "paint": "transparent" + }, + "id": "path8226", + "name": "path8226", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 96.3234,137.17463 -0.0817,0.002 -0.0825,0.004 -0.0835,0.007 -0.0842,0.01 -0.0849,0.0125 -0.0855,0.0153 -0.0858,0.0182 -0.0861,0.0211 -0.086,0.024 -0.086,0.0267 -0.0854,0.0296 -0.0849,0.0323 -0.0743,0.0307 -0.0287,0.0127 -0.0825,0.0379 -0.0808,0.0402 -0.0791,0.0424 -0.0775,0.0449 -0.0759,0.0471 -0.0743,0.0492 -0.0336,0.0231 -0.0703,0.0516 -0.0679,0.0532 -0.0655,0.0545 -0.0623,0.056 -0.0599,0.0573 -0.0575,0.0585 -0.0384,0.0412 -0.052,0.0597 -0.0487,0.0603 -0.0455,0.0608 -0.0424,0.0613 -0.0391,0.0617 -0.0367,0.0621 -0.0327,0.0618 -0.0296,0.062 -0.0263,0.0617 -0.024,0.0615 -0.0208,0.0611 -0.0176,0.0607 -0.0144,0.0602 v 0.0181 l -0.0103,0.0597 -0.008,0.059 -0.008,0.0583 v 0.0574 0.0564 l 0.008,0.0553 0.008,0.0541 0.01,0.0538 0.008,0.0224 0.0137,0.053 0.0168,0.0521 0.0192,0.051 0.0216,0.0495 0.024,0.0478 0.0264,0.0462", + "fill": { + "paint": "transparent" + }, + "id": "path8227", + "name": "path8227", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 101.33333,141.70487 -0.0816,0.002 -0.0826,0.004 -0.0833,0.007 -0.0843,0.01 -0.0849,0.0125 -0.0855,0.0154 -0.0857,0.0182 -0.086,0.0212 -0.086,0.0239 -0.0859,0.0267 -0.0856,0.0296 -0.0849,0.0323 -0.0743,0.0307 -0.0295,0.0126 -0.0825,0.038 -0.0809,0.0402 -0.0791,0.0426 -0.0775,0.0447 -0.0759,0.0471 -0.0743,0.0492 -0.0336,0.0232 -0.0703,0.0517 -0.0679,0.0532 -0.0655,0.0546 -0.0631,0.056 -0.0599,0.0573 -0.0575,0.0584 -0.0384,0.0412 -0.052,0.0597 -0.0487,0.0603 -0.0455,0.0608 -0.0424,0.0613 -0.0391,0.0617 -0.0359,0.0621 -0.0327,0.0618 -0.0295,0.062 -0.0264,0.0617 -0.024,0.0614 -0.02,0.0611 -0.0176,0.0607 -0.0144,0.0602 v 0.0181 l -0.0103,0.0597 -0.008,0.059 -0.008,0.0583 v 0.0574 0.0564 l 0.008,0.0553 0.008,0.0541 0.01,0.0539 0.008,0.0225 0.0136,0.0531 0.0168,0.0521 0.0192,0.0509 0.0216,0.0496 0.024,0.0479 0.0264,0.046", + "fill": { + "paint": "transparent" + }, + "id": "path8228", + "name": "path8228", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 95.97472,143.25623 -0.0695,5.6e-4 -0.0703,0.003 -0.0711,0.005 -0.0719,0.008 -0.0719,0.01 -0.0727,0.0118 -0.0735,0.014 -0.0735,0.0161 -0.0735,0.0184 -0.0735,0.0206 -0.0176,0.005 -0.0735,0.0232 -0.0727,0.0252 -0.0719,0.0274 -0.0711,0.0293 -0.0703,0.0313 -0.0695,0.0332 -0.0687,0.0351 -0.0679,0.037 -0.0663,0.0388 -0.0655,0.0406 -0.0161,0.0104 -0.0631,0.0422 -0.0607,0.0434 -0.0583,0.0445 -0.0568,0.0456 -0.0544,0.0467 -0.0527,0.0477 -0.0503,0.0486 -0.0479,0.0496 -0.0463,0.0505 -0.0439,0.0513 -0.0319,0.0396 -0.04,0.0522 -0.0376,0.0526 -0.0351,0.0527 -0.0329,0.0528 -0.0303,0.053 -0.0279,0.0529 -0.0248,0.0528 -0.0224,0.0527 -0.02,0.0524 -0.0176,0.0523", + "fill": { + "paint": "transparent" + }, + "id": "path8229", + "name": "path8229", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 96.62238,143.36292 -0.0431,-0.015 -0.0448,-0.014 -0.0455,-0.0129 -0.0168,-0.005 -0.0472,-0.0114 -0.0479,-0.0103 -0.0487,-0.009 -0.0496,-0.008 -0.0503,-0.007 -0.0519,-0.005 -0.0527,-0.005 -0.0527,-0.003 -0.0544,-0.002 -0.0424,-4.2e-4", + "fill": { + "paint": "transparent" + }, + "id": "path8230", + "name": "path8230", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 96.64514,142.44697 -0.0152,-0.0336 -0.0168,-0.0334 -0.0184,-0.033 -0.02,-0.0326 -0.0208,-0.0321 -0.0224,-0.0314 -0.0232,-0.0308 -0.0248,-0.03 -0.02,-0.0232 -0.0263,-0.0284 -0.0272,-0.0276 -0.0287,-0.0268 -0.0303,-0.0262 -0.0312,-0.0257 -0.0327,-0.0248 -0.0335,-0.0241 -0.0351,-0.0232 -0.0359,-0.0225 -0.0376,-0.0215 -0.0248,-0.0133 -0.0391,-0.02 -0.04,-0.019 -0.0415,-0.0181 -0.0424,-0.0171 -0.0439,-0.0161 -0.0448,-0.0151 -0.0463,-0.014 -0.0472,-0.013 -0.0479,-0.0118 -0.0137,-0.003 -0.0496,-0.0104 -0.0503,-0.009 -0.0511,-0.008 -0.052,-0.007 -0.0527,-0.005 -0.0535,-0.005 -0.0544,-0.003 -0.0551,-0.002 -0.0511,-5.3e-4", + "fill": { + "paint": "transparent" + }, + "id": "path8231", + "name": "path8231", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 103.93971,138.72604 -0.0695,5.6e-4 -0.0703,0.003 -0.0711,0.005 -0.0719,0.008 -0.0719,0.01 -0.0727,0.0118 -0.0727,0.014 -0.0735,0.0161 -0.0735,0.0183 -0.0735,0.0206 -0.0176,0.005 -0.0735,0.0232 -0.0727,0.0252 -0.0719,0.0274 -0.0711,0.0293 -0.0703,0.0313 -0.0695,0.0332 -0.0687,0.0351 -0.0679,0.037 -0.0663,0.0388 -0.0656,0.0405 -0.016,0.0104 -0.0631,0.042 -0.0607,0.0434 -0.0592,0.0445 -0.0568,0.0456 -0.0544,0.0467 -0.0527,0.0477 -0.0503,0.0486 -0.0479,0.0496 -0.0463,0.0505 -0.0439,0.0513 -0.032,0.0396 -0.04,0.0521 -0.0376,0.0525 -0.0351,0.0527 -0.0327,0.0529 -0.0303,0.0529 -0.0272,0.053 -0.0248,0.0527 -0.0232,0.0527 -0.02,0.0524 -0.0176,0.0523", + "fill": { + "paint": "transparent" + }, + "id": "path8232", + "name": "path8232", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 105.95224,136.97863 0.0463,0.0931 0.0439,0.0945 0.0415,0.0959 0.0391,0.0972 0.0367,0.0984 0.0343,0.0994 0.0311,0.10034 0.0263,0.0926 0.0264,0.10174 0.0232,0.10297 0.0208,0.10414 0.0184,0.10525 0.0152,0.10626 0.0128,0.10721 0.01,0.10805 0.008,0.0934 0.008,0.10939 v 0.11037 0.11131 0.11215 l -0.008,0.11301 -0.01,0.11372 -0.0128,0.11439 -0.0112,0.0838 -0.0176,0.11538 -0.0208,0.1161 -0.0232,0.11678 -0.0263,0.11739 -0.0296,0.11794 -0.0327,0.11842 -0.036,0.11881 -0.0216,0.067", + "fill": { + "paint": "transparent" + }, + "id": "path8233", + "name": "path8233", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 97.05581,138.72604 -0.0695,5.6e-4 -0.0703,0.003 -0.0711,0.005 -0.0719,0.008 -0.0719,0.01 -0.0727,0.0118 -0.0727,0.014 -0.0735,0.0161 -0.0735,0.0183 -0.0735,0.0206 -0.0176,0.005 -0.0735,0.0232 -0.0727,0.0252 -0.0719,0.0274 -0.0711,0.0293 -0.0703,0.0313 -0.0695,0.0332 -0.0687,0.0351 -0.0679,0.037 -0.0663,0.0388 -0.0655,0.0405 -0.016,0.0104 -0.0632,0.042 -0.0607,0.0434 -0.0583,0.0445 -0.0568,0.0456 -0.0544,0.0467 -0.0527,0.0477 -0.0503,0.0486 -0.0479,0.0496 -0.0463,0.0505 -0.0439,0.0513 -0.0319,0.0396 -0.04,0.0521 -0.0376,0.0525 -0.0351,0.0527 -0.0327,0.0529 -0.0303,0.0529 -0.0272,0.053 -0.0256,0.0527 -0.0224,0.0527 -0.02,0.0524 -0.0176,0.0523", + "fill": { + "paint": "transparent" + }, + "id": "path8234", + "name": "path8234", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 94.48745,149.42685 0.0663,0.12268 0.0711,0.12102 0.0759,0.11896 0.0804,0.11672 0.0846,0.11416 0.0128,0.0167 0.0894,0.11094 0.094,0.10873 0.0986,0.10643 0.10308,0.10388 0.1073,0.10121 0.0136,0.0124 0.1121,0.0979 0.11649,0.0953 0.12104,0.0926 0.12535,0.0898 0.12961,0.0869 0.008,0.005 0.13391,0.0835 0.13823,0.0804 0.14245,0.0773 0.14677,0.074 0.14701,0.0689 0.15476,0.0672 0.15891,0.0638 0.16284,0.0602 0.1669,0.0565 0.149,0.0464 0.1741,0.0494 0.17769,0.0452 0.18129,0.0414 0.18488,0.0371 0.14517,0.0259 0.19128,0.0297 0.1943,0.0252 0.19736,0.0208 0.20045,0.0163 0.20318,0.0116 0.20589,0.007 0.20845,0.002 0.21077,-0.002 0.21293,-0.008 0.0551,-0.003", + "fill": { + "paint": "transparent" + }, + "id": "path8235", + "name": "path8235", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 107.57726,148.61148 0.0224,-0.0243 0.0961,-0.10811 0.0933,-0.10863 0.0906,-0.10919 0.088,-0.1097 0.0853,-0.11014 0.0826,-0.11057 0.0799,-0.11095 0.0775,-0.11134 0.0743,-0.11167 0.0719,-0.112 0.0695,-0.11231 0.0408,-0.0682 0.0647,-0.11254 0.0623,-0.11259 0.0592,-0.11261 0.0568,-0.11258 0.0535,-0.11248 0.0511,-0.11237 0.0487,-0.11217 0.0455,-0.11196 0.0431,-0.11172 0.04,-0.11147 0.0376,-0.11112", + "fill": { + "paint": "transparent" + }, + "id": "path8236", + "name": "path8236", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 104.58737,138.83272 -0.0431,-0.015 -0.0439,-0.014 -0.0455,-0.0129 -0.0168,-0.005 -0.0472,-0.0114 -0.0479,-0.0103 -0.0487,-0.009 -0.0496,-0.008 -0.0503,-0.007 -0.052,-0.005 -0.052,-0.005 -0.0535,-0.003 -0.0544,-0.002 -0.0424,-3.9e-4", + "fill": { + "paint": "transparent" + }, + "id": "path8237", + "name": "path8237", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 102.06582,143.25623 -0.0695,5.6e-4 -0.0703,0.003 -0.0711,0.005 -0.0719,0.008 -0.0719,0.01 -0.0727,0.0118 -0.0727,0.014 -0.0735,0.0161 -0.0735,0.0184 -0.0735,0.0206 -0.0168,0.005 -0.0735,0.0232 -0.0727,0.0252 -0.0719,0.0274 -0.0711,0.0293 -0.0703,0.0313 -0.0695,0.0332 -0.0687,0.0351 -0.0679,0.037 -0.0663,0.0388 -0.0655,0.0406 -0.016,0.0104 -0.0631,0.0422 -0.0608,0.0434 -0.0592,0.0445 -0.0568,0.0456 -0.0544,0.0467 -0.0527,0.0477 -0.0503,0.0486 -0.0479,0.0496 -0.0463,0.0505 -0.0439,0.0513 -0.0319,0.0396 -0.04,0.0522 -0.0376,0.0526 -0.0351,0.0527 -0.0328,0.0528 -0.0303,0.053 -0.0279,0.0529 -0.0247,0.0528 -0.0224,0.0527 -0.02,0.0524 -0.0176,0.0523", + "fill": { + "paint": "transparent" + }, + "id": "path8238", + "name": "path8238", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 110.75268,141.86358 0.0384,0.0747 0.0367,0.0754 0.0351,0.0762 0.0343,0.0769 0.0327,0.0773 0.0311,0.078 0.0304,0.0787 0.0287,0.0791 0.0272,0.0797 0.0256,0.0801 0.0103,0.0322 0.024,0.0807 0.0224,0.0812 0.0216,0.082 0.02,0.0825 0.0184,0.0832 0.0176,0.0837 0.016,0.0842 0.0144,0.0847 0.0128,0.085 0.0112,0.0855 v 0.0291", + "fill": { + "paint": "transparent" + }, + "id": "path8239", + "name": "path8239", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 104.61014,137.91677 -0.0152,-0.0336 -0.0168,-0.0334 -0.0184,-0.033 -0.0192,-0.0326 -0.0208,-0.0321 -0.0224,-0.0314 -0.0232,-0.0308 -0.0248,-0.03 -0.02,-0.0231 -0.0264,-0.0285 -0.0272,-0.0275 -0.0288,-0.0268 -0.0303,-0.0263 -0.0311,-0.0254 -0.0328,-0.0249 -0.0335,-0.024 -0.0351,-0.0233 -0.0367,-0.0224 -0.0376,-0.0215 -0.0247,-0.0133 -0.0391,-0.02 -0.0407,-0.019 -0.0415,-0.0181 -0.0424,-0.0171 -0.0439,-0.0161 -0.0448,-0.0151 -0.0463,-0.014 -0.0472,-0.013 -0.0479,-0.0118 -0.0136,-0.003 -0.0496,-0.0104 -0.0503,-0.009 -0.0511,-0.008 -0.052,-0.007 -0.0527,-0.005 -0.0535,-0.005 -0.0544,-0.003 -0.0551,-0.002 -0.0511,-5.4e-4", + "fill": { + "paint": "transparent" + }, + "id": "path8240", + "name": "path8240", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 93.71445,151.66139 -0.016,-0.0151 -0.0632,-0.0607 -0.0623,-0.0615 -0.0607,-0.0623 -0.0599,-0.063 -0.0583,-0.0637 -0.0575,-0.0644 -0.0559,-0.0651 -0.0543,-0.0657 -0.0535,-0.0663 -0.0519,-0.0669 -0.0161,-0.0206 -0.0503,-0.0678 -0.0496,-0.0686 -0.0479,-0.0694 -0.0463,-0.07 -0.0455,-0.0707 -0.0439,-0.0713 -0.0431,-0.0719 -0.0415,-0.0725 -0.04,-0.073 -0.0391,-0.0735", + "fill": { + "paint": "transparent" + }, + "id": "path8241", + "name": "path8241", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 102.73623,142.44697 -0.0152,-0.0336 -0.0168,-0.0334 -0.0184,-0.033 -0.02,-0.0326 -0.0208,-0.0321 -0.0224,-0.0314 -0.0232,-0.0308 -0.0247,-0.03 -0.02,-0.0232 -0.0264,-0.0284 -0.0272,-0.0276 -0.0288,-0.0268 -0.0303,-0.0262 -0.0312,-0.0257 -0.0328,-0.0248 -0.0335,-0.0241 -0.0351,-0.0232 -0.0359,-0.0225 -0.0376,-0.0215 -0.0247,-0.0133 -0.0391,-0.02 -0.0407,-0.019 -0.0415,-0.0181 -0.0424,-0.0171 -0.0439,-0.0161 -0.0448,-0.0151 -0.0455,-0.014 -0.0472,-0.013 -0.0479,-0.0118 -0.0136,-0.003 -0.0496,-0.0104 -0.0503,-0.009 -0.0511,-0.008 -0.052,-0.007 -0.0527,-0.005 -0.0535,-0.005 -0.0544,-0.003 -0.0551,-0.002 -0.0511,-5.3e-4", + "fill": { + "paint": "transparent" + }, + "id": "path8242", + "name": "path8242", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 109.11058,146.07078 0.0216,-0.067 0.0359,-0.11882 0.0327,-0.11841 0.0296,-0.11795 0.0263,-0.11739 0.0232,-0.11679 0.0208,-0.11608 0.0176,-0.11538 0.0112,-0.0838 0.0128,-0.11439 0.01,-0.11371 0.008,-0.113 v -0.11218 -0.11131 -0.11036 l -0.008,-0.10939 -0.008,-0.0933 -0.01,-0.10806 -0.0128,-0.10721 -0.0152,-0.10625 -0.0184,-0.10524 -0.0208,-0.10415 -0.0232,-0.10297 -0.0263,-0.10173 -0.0264,-0.0926 -0.0311,-0.10035 -0.0343,-0.0993 -0.0367,-0.0984 -0.0391,-0.0973 -0.0415,-0.0959 -0.0439,-0.0945 -0.0463,-0.0931", + "fill": { + "paint": "transparent" + }, + "id": "path8243", + "name": "path8243", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 97.70362,138.83272 -0.0431,-0.015 -0.0448,-0.014 -0.0455,-0.0129 -0.0168,-0.005 -0.0472,-0.0114 -0.0479,-0.0103 -0.0487,-0.009 -0.0496,-0.008 -0.0503,-0.007 -0.0511,-0.005 -0.0527,-0.005 -0.0527,-0.003 -0.0535,-0.002 -0.0424,-3.9e-4", + "fill": { + "paint": "transparent" + }, + "id": "path8244", + "name": "path8244", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 97.72623,137.91677 -0.0152,-0.0336 -0.0168,-0.0334 -0.0184,-0.033 -0.0192,-0.0326 -0.0208,-0.0321 -0.0224,-0.0314 -0.0232,-0.0308 -0.0247,-0.03 -0.02,-0.0231 -0.0264,-0.0285 -0.0272,-0.0275 -0.0287,-0.0268 -0.0303,-0.0263 -0.0311,-0.0254 -0.0328,-0.0249 -0.0336,-0.024 -0.0352,-0.0233 -0.0359,-0.0224 -0.0376,-0.0215 -0.0247,-0.0133 -0.0391,-0.02 -0.04,-0.019 -0.0415,-0.0181 -0.0424,-0.0171 -0.0439,-0.0161 -0.0448,-0.0151 -0.0455,-0.014 -0.0472,-0.013 -0.0479,-0.0118 -0.0136,-0.003 -0.0496,-0.0104 -0.0503,-0.009 -0.0511,-0.008 -0.052,-0.007 -0.0527,-0.005 -0.0535,-0.005 -0.0544,-0.003 -0.0551,-0.002 -0.0511,-5.4e-4", + "fill": { + "paint": "transparent" + }, + "id": "path8245", + "name": "path8245", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 79.742394,140.3303 -0.08612,0.2721 -0.09652,0.27346 -0.10698,0.27459 -0.117609,0.27557 -0.128158,0.27633 -0.138939,0.2768 -0.149567,0.27695 -0.160201,0.2768 -0.156035,0.25293 -0.180403,0.27535 -0.190472,0.2735 -0.200626,0.27163 -0.210846,0.2696 -0.221149,0.26747 -0.231389,0.26522 -0.241684,0.26277 -0.251919,0.26017 -0.145567,0.14442 -0.268057,0.25573 -0.276678,0.25105 -0.285235,0.24623 -0.293622,0.24117 -0.302011,0.23594 -0.310081,0.23053 -0.318068,0.22487 -0.325899,0.21901 -0.09037,0.059 -0.335488,0.21123 -0.341557,0.20414 -0.347473,0.19688 -0.352959,0.18937 -0.358174,0.1817 -0.363019,0.17377 -0.367442,0.16568 -0.371548,0.15742 -0.04957,0.0202", + "fill": { + "paint": "transparent" + }, + "id": "path8246", + "name": "path8246", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 71.371882,148.53946 -0.157023,0.0622 -0.410659,0.15444 -0.412839,0.14359 -0.414325,0.13257 -0.415177,0.12138 -0.415385,0.11016 -0.41513,0.0988 -0.414259,0.0876 -0.412904,0.0761 -0.411094,0.0648 -0.408893,0.0536 -0.137507,0.0155 -0.402857,0.0384 -0.398219,0.0271 -0.393523,0.0159 -0.388819,0.005 -0.383967,-0.006 -0.182789,-0.007 -0.37412,-0.0213 -0.367248,-0.0317 -0.360181,-0.0419 -0.352951,-0.0518 -0.345708,-0.0615 -0.221395,-0.0453 -0.331835,-0.0769 -0.323226,-0.0858 -0.314479,-0.0945 -0.30571,-0.10307 -0.296834,-0.11145 -0.237153,-0.0977 -0.280489,-0.12607 -0.270988,-0.13366 -0.261327,-0.14092 -0.251485,-0.14789 -0.241484,-0.15458 -0.224666,-0.15622 -0.223293,-0.16827 -0.213393,-0.1746 -0.203217,-0.18047 -0.192857,-0.18598 -0.182289,-0.19112 -0.0047,-0.005 -0.173306,-0.19837 -0.164006,-0.20473 -0.154044,-0.21036 -0.143669,-0.21525 -0.132876,-0.21934 -0.121722,-0.22271", + "fill": { + "paint": "transparent" + }, + "id": "path8247", + "name": "path8247", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 73.556151,131.49407 0.245441,0.0464 0.301439,0.0649 0.295302,0.0722 0.288831,0.0794 0.282029,0.0864 0.275406,0.0931 0.256468,0.095 0.261827,0.10594 0.25471,0.1122 0.247361,0.11829 0.239851,0.12423 0.232416,0.12993 0.01999,0.0116 0.224833,0.1364 0.217396,0.14203 0.209888,0.14738 0.202144,0.15243 0.194063,0.15723 0.185927,0.1618 0.03185,0.0289 0.177605,0.16818 0.170181,0.17319 0.162434,0.17785 0.154444,0.18212 0.146128,0.18602 0.137739,0.18957 0.130158,0.19429 0.122721,0.19918 0.114811,0.20356 0.02158,0.0399 0.105143,0.20818 0.09676,0.21144 0.08813,0.21429 0.0799,0.21724 0.07192,0.22155 0.06309,0.22549 0.05511,0.22904 0.0463,0.23214 0.03758,0.23482 0.008,0.0391 0.02718,0.23729 0.01919,0.2407 0.0096,0.24387 v 0.24677 l -0.008,0.24935 -0.01679,0.25158 v 0.0186 l -0.02719,0.25354 -0.03672,0.25603 -0.04551,0.25833 -0.05511,0.2603 -0.0647,0.26196 -0.06871,0.24495", + "fill": { + "paint": "transparent" + }, + "id": "path8248", + "name": "path8248", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 57.107822,140.44492 0.05064,-0.15069 0.05385,-0.15106 0.05704,-0.15141 0.06031,-0.15173 0.06363,-0.15199 0.06679,-0.15223 0.07006,-0.1524 0.07327,-0.15256 0.07653,-0.15265 0.07982,-0.15264 0.02819,-0.0526 0.08422,-0.15258 0.08739,-0.15244 0.09061,-0.15224 0.09383,-0.15205 0.09708,-0.15177 0.100362,-0.15152 0.10358,-0.15121 0.106848,-0.15087 0.110055,-0.15047 0.113334,-0.15003 0.0082,-0.0106", + "fill": { + "paint": "transparent" + }, + "id": "path8249", + "name": "path8249", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 61.035123,135.08425 0.255923,-0.20872 0.262213,-0.20456 0.26829,-0.20025 0.274312,-0.19574 0.28011,-0.19103 0.285667,-0.18621 0.251479,-0.15704 0.295522,-0.17663 0.299898,-0.17092 0.304011,-0.16507 0.308047,-0.15914 0.311854,-0.15306 0.315504,-0.14691 0.257381,-0.11414 0.267038,-0.11308 0.322247,-0.12942 0.32404,-0.12251 0.325612,-0.11558 0.327011,-0.10856 0.328238,-0.10155 0.329263,-0.0944 0.305955,-0.0814 0.328924,-0.0805 0.328431,-0.073 0.327565,-0.0657 0.326572,-0.0584 0.325257,-0.0511 0.323854,-0.0438", + "fill": { + "paint": "transparent" + }, + "id": "path8250", + "name": "path8250", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 69.495341,131.41629 0.182875,-0.0215 0.216078,-0.0227 0.214817,-0.0195 0.21354,-0.0163 0.212125,-0.0131 0.210761,-0.01 0.209295,-0.007 0.207888,-0.004 0.206377,-5.6e-4 0.204855,0.002 0.02559,5e-4 0.203257,0.006 0.201739,0.009 0.200087,0.0117 0.198466,0.0147 0.196775,0.0175 0.194961,0.0205 0.193184,0.0233 0.191357,0.0263 0.189352,0.0291 0.18744,0.0319", + "fill": { + "paint": "transparent" + }, + "id": "path8251", + "name": "path8251", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 80.984402,142.38244 -0.125047,0.37302 -0.14405,0.37507 -0.163231,0.37664 -0.18241,0.37764 -0.201811,0.37797 -0.221075,0.37747 -0.109058,0.1746 -0.248961,0.37505 -0.267249,0.37152 -0.285633,0.3677 -0.304084,0.3636 -0.322721,0.35914 -0.341151,0.35423 -0.07831,0.078 -0.363685,0.34757 -0.37951,0.33903 -0.394934,0.33003 -0.409941,0.32052 -0.424732,0.3104 -0.438798,0.29986 -0.01033,0.007 -0.452784,0.28837 -0.463565,0.27518 -0.473706,0.26155 -0.483214,0.24751 -0.49209,0.23308 -0.462952,0.20271 -0.484487,0.19552 -0.507154,0.18709 -0.509794,0.17033 -0.511739,0.15349 -0.513111,0.13663 -0.513838,0.11962 -0.05297,0.0113 -0.510373,0.10026 -0.506428,0.0829 -0.501698,0.0655 -0.496381,0.0484 -0.490537,0.0314 -0.48428,0.0146 -0.0601,5.7e-4 -0.474632,-0.004 -0.465611,-0.02 -0.456155,-0.036 -0.0926,-0.009 -0.440791,-0.0543 -0.428697,-0.069 -0.417183,-0.0836 -0.244842,-0.0571 -0.399193,-0.10624 -0.386473,-0.11966 -0.372753,-0.13241 -0.358434,-0.14459 -0.343543,-0.15613 -0.328377,-0.16716", + "fill": { + "paint": "transparent" + }, + "id": "path8252", + "name": "path8252", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 61.387501,150.70497 -0.107088,-0.0587 -0.134461,-0.0768 -0.131809,-0.0788 -0.129084,-0.0807 -0.126393,-0.0825 -0.123567,-0.0843 -0.120695,-0.0861 -0.104409,-0.0776 -0.11582,-0.0896 -0.11313,-0.0914 -0.110391,-0.0931 -0.107592,-0.0947 -0.104746,-0.0962 -0.101924,-0.0977 -0.09451,-0.0947 -0.09675,-0.1011 -0.09402,-0.10278 -0.09125,-0.10427 -0.08841,-0.10575 -0.08553,-0.10713 -0.08261,-0.10845 -0.07854,-0.10812 -0.07734,-0.11175 -0.07462,-0.11328 -0.07175,-0.11467 -0.06895,-0.11596 -0.06603,-0.11714 -0.06296,-0.11819", + "fill": { + "paint": "transparent" + }, + "id": "path8253", + "name": "path8253", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 59.233489,144.26529 0.08076,0.14953 0.08641,0.14746 0.09187,0.1451 0.0971,0.14238 0.102164,0.13928 0.107088,0.13607 0.112505,0.13352 0.117874,0.13078 0.123081,0.12784 0.125573,0.12225 0.132935,0.12141 0.138285,0.11844 0.143584,0.11531 0.148633,0.112 0.14181,0.10044 0.158043,0.10511 0.163159,0.10166 0.16825,0.098 0.173207,0.0943 0.151225,0.0772 0.182142,0.0871 0.187061,0.0831 0.191883,0.079 0.196722,0.0748 0.201499,0.0705 0.206136,0.0662 0.210713,0.0617 0.215152,0.0571 0.219389,0.0523 0.09365,0.0206 0.225132,0.0454 0.228964,0.0404 0.232709,0.0353 0.236453,0.0302 0.24007,0.0249 0.243723,0.0195 0.247195,0.0142 0.250606,0.009 0.253871,0.003 0.01859,2e-5", + "fill": { + "paint": "transparent" + }, + "id": "path8254", + "name": "path8254", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 59.494149,136.56725 -0.03371,0.0377 -0.06976,0.0787 -0.06919,0.0792 -0.03325,0.0384 -0.06831,0.0798 -0.06775,0.0803 -0.03325,0.0399 -0.06702,0.0808 -0.06656,0.0812 -0.01726,0.021 -0.06617,0.0814 -0.01985,0.0246 -0.03645,0.0447 -0.02938,0.0346", + "fill": { + "paint": "transparent" + }, + "id": "path8255", + "name": "path8255", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 81.532887,143.44158 -0.132382,0.39337 -0.153645,0.39576 -0.174973,0.39748 -0.1964,0.39849 -0.21795,0.39867 -0.239372,0.3978 -0.260387,0.39571 -0.110499,0.15818 -0.289145,0.3906 -0.30936,0.38575 -0.329891,0.38104 -0.201258,0.21922 -0.363539,0.37373 -0.382381,0.3658 -0.400773,0.35726 -0.204609,0.17302 -0.427691,0.34325 -0.443189,0.33141 -0.458042,0.31902 -0.472433,0.30597 -0.486019,0.29232 -0.498713,0.27807 -0.438471,0.22727 -0.433201,0.20962 -0.523966,0.23447 -0.529582,0.21659 -0.534228,0.19843 -0.537872,0.18 -0.540656,0.16144 -0.54253,0.14271 -0.25425,0.0603 -0.539544,0.11416 -0.536559,0.0949 -0.532862,0.0757 -0.286052,0.033 -0.521247,0.0462 -0.513992,0.0272 -0.506922,0.009 -0.165644,-0.002 -0.494041,-0.0155 -0.482968,-0.0332 -0.471121,-0.0504 -0.458494,-0.0671 -0.445368,-0.0834 -0.431916,-0.0993 -0.418202,-0.11456 -0.329516,-0.1041 -0.390465,-0.14056 -0.374798,-0.15411 -0.359068,-0.16728 -0.311992,-0.1627 -0.329363,-0.19134 -0.312733,-0.20287 -0.295608,-0.21362 -0.274014,-0.22015 -0.263918,-0.23558 -0.246754,-0.24524 -0.228997,-0.25394 -4.47e-4,-5e-4 -0.213639,-0.26536 -0.197114,-0.27526 -0.179505,-0.28343 -0.161013,-0.28993", + "fill": { + "paint": "transparent" + }, + "id": "path8256", + "name": "path8256", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 82.081467,144.50073 -0.122728,0.36671 -0.141177,0.36873 -0.159628,0.37024 -0.178338,0.3712 -0.196861,0.3715 -0.215491,0.37099 -0.0623,0.10146 -0.238886,0.36908 -0.256709,0.36595 -0.274527,0.36262 -0.292503,0.35897 -0.310566,0.35495 -0.328611,0.35056 -0.01679,0.0172 -0.347554,0.34543 -0.363038,0.33773 -0.378478,0.32954 -0.393502,0.32088 -0.408268,0.31173 -0.361613,0.25977 -0.43424,0.29322 -0.445588,0.2811 -0.456288,0.26857 -0.466431,0.25561 -0.475944,0.24222 -0.366656,0.17442 -0.373914,0.16748 -0.492723,0.20504 -0.496879,0.18932 -0.500339,0.1734 -0.50307,0.15737 -0.505202,0.1412 -0.438406,0.10906 -0.502324,0.1097 -0.499845,0.0929 -0.496774,0.0762 -0.493155,0.0597 -0.489072,0.0432 -0.03405,0.002 -0.48029,0.0256 -0.4717,0.01 -0.462985,-0.006 -0.45405,-0.0219 -0.445123,-0.0372 -0.436065,-0.0523 -0.130297,-0.0186 -0.421913,-0.071 -0.410214,-0.0848 -0.397774,-0.0983 -0.384807,-0.11115 -0.371587,-0.12368 -0.358188,-0.13572", + "fill": { + "paint": "transparent" + }, + "id": "path8257", + "name": "path8257", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 63.035764,153.09389 -0.02892,-0.013 -0.15649,-0.0725 -0.153517,-0.075 -0.150526,-0.0773 -0.147521,-0.0797 -0.144343,-0.082 -0.141231,-0.0841 -0.137952,-0.0863 -0.04245,-0.0274 -0.134102,-0.0892 -0.13113,-0.0913 -0.127999,-0.0935 -0.124839,-0.0956 -0.121675,-0.0974 -0.11845,-0.0994 -0.115183,-0.10118 -0.04604,-0.042 -0.110943,-0.10408 -0.107869,-0.10605 -0.104698,-0.10789 -0.101527,-0.10967 -0.0982,-0.11137 -0.0949,-0.1129 -0.09153,-0.11448 -0.04004,-0.0521 -0.08723,-0.11742 -0.08422,-0.11926 -0.081,-0.121 -0.07775,-0.12261 -0.07447,-0.12407 -0.07102,-0.12539 -0.06761,-0.12659", + "fill": { + "paint": "transparent" + }, + "id": "path8258", + "name": "path8258", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 82.939793,142.2943 0.01999,0.13902 0.0176,0.14027 0.01519,0.1414 0.01201,0.14251 0.0096,0.14351 0.008,0.14448 v 0.14537 0.14616 0.1469 l -0.008,0.14754 -0.008,0.14809 -0.0079,0.0818 -0.01201,0.14876 -0.01519,0.14955 -0.01846,0.1503 -0.02079,0.15103 -0.02399,0.1517 -0.02719,0.15234 -0.03032,0.1529 -0.03351,0.15343 -0.03591,0.15394 -0.03911,0.15432 -0.04239,0.15465 -0.01367,0.0467", + "fill": { + "paint": "transparent" + }, + "id": "path8259", + "name": "path8259", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 82.939793,142.2943 -0.01366,-0.0852 -0.01999,-0.11186 -0.02158,-0.11052 -0.02319,-0.10912 -0.02399,-0.1078 -0.02552,-0.10641 -0.02719,-0.10508 -0.02872,-0.10369 -0.03037,-0.10233 -0.03112,-0.101 -0.03285,-0.0985 -0.03511,-0.1 -0.03672,-0.0993 -0.03839,-0.0988 -0.03997,-0.098 -0.04151,-0.0974 -0.04311,-0.0965 -0.04478,-0.0958 -0.0463,-0.0948 -0.04791,-0.0939", + "fill": { + "paint": "transparent" + }, + "id": "path8260", + "name": "path8260", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 82.692673,145.68084 -0.08206,0.26933 -0.09133,0.27047 -0.100818,0.27142 -0.110199,0.27217 -0.119604,0.27272 -0.129109,0.27295 -0.138453,0.27291 -0.147894,0.27257 -0.04791,0.085 -0.16004,0.27154 -0.169296,0.27035 -0.178418,0.26897 -0.187673,0.26755 -0.19686,0.26598 -0.206137,0.26426 -0.215485,0.26239 -0.224665,0.26039 -0.008,0.008 -0.234182,0.25809 -0.242396,0.25452 -0.250565,0.25084 -0.258536,0.24692 -0.266463,0.24288 -0.274207,0.2386 -0.281962,0.23419 -0.227058,0.18093 -0.295296,0.22577 -0.301864,0.22023 -0.308235,0.21449 -0.314231,0.20856 -0.320069,0.20241 -0.325659,0.19605 -0.330935,0.1895 -0.212766,0.11686", + "fill": { + "paint": "transparent" + }, + "id": "path8261", + "name": "path8261", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 83.148561,146.56101 0.01606,-0.0496 0.05437,-0.17794 0.0503,-0.17741 0.04551,-0.17673 0.04151,-0.17596 0.03672,-0.17509 0.03279,-0.17415 0.02865,-0.17316 0.01129,-0.0742 0.02239,-0.17201 0.01839,-0.17105 0.01366,-0.17003 0.0096,-0.16892 0.008,-0.16768 v -0.16638 -0.16502 -0.0909 l -0.0088,-0.16342 -0.01279,-0.16223 -0.01679,-0.16095 -0.02079,-0.15952 -0.02478,-0.15799 -0.02872,-0.15638 -0.03272,-0.15465 -0.02239,-0.095 -0.03911,-0.15302 -0.04311,-0.15173 -0.04718,-0.15032 -0.0511,-0.14869 -0.05437,-0.1469 -0.0583,-0.14497 -0.0615,-0.1429", + "fill": { + "paint": "transparent" + }, + "id": "path8262", + "name": "path8262", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 81.783767,139.24975 0.02558,0.0207 0.09779,0.0817 0.09604,0.0831 0.09412,0.0844 0.0922,0.0857 0.09037,0.0868 0.08836,0.0879 0.08629,0.0891 0.08429,0.09 0.08221,0.0911 0.08014,0.0921 0.0783,0.093 0.02639,0.0325 0.0759,0.0948 0.07351,0.096 0.07191,0.0971 0.06952,0.0982 0.06791,0.0993 0.06551,0.10034 0.0639,0.10131 0.0615,0.10217 0.05991,0.10303 0.05749,0.10375 0.05511,0.10446", + "fill": { + "paint": "transparent" + }, + "id": "path8263", + "name": "path8263", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 60.147452,152.24072 -0.05464,-0.10814 -0.0527,-0.10945 -0.05064,-0.11063 -0.04857,-0.11181 -0.04651,-0.1129 -0.04431,-0.1139 -0.04211,-0.11489 -0.03997,-0.11576 -0.03765,-0.11657 -0.03544,-0.11732 -0.03305,-0.11797 -0.02019,-0.0763 -0.02925,-0.1189 -0.02719,-0.12001 -0.02491,-0.12103 -0.02278,-0.12203 -0.02045,-0.12296 -0.01826,-0.12385 -0.01593,-0.1247 -0.01358,-0.12543 -0.01141,-0.12616 -0.0089,-0.12676 -0.0066,-0.12737 -0.0026,-0.0689", + "fill": { + "paint": "transparent" + }, + "id": "path8264", + "name": "path8264", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 60.731899,152.04474 0.151319,0.24218 0.163893,0.23684 0.175851,0.23054 0.03325,0.0414 0.189204,0.22192 0.201347,0.21571 0.213205,0.20887 0.03725,0.0347 0.226358,0.20009 0.238465,0.19314 0.250113,0.18563 0.03565,0.0251 0.262746,0.17639 0.274252,0.1683 0.28552,0.1599 0.02919,0.0155 0.29752,0.15017 0.308915,0.14135 0.320148,0.13219 0.331069,0.12266 0.34165,0.1128 0.351792,0.10254 0.01679,0.005 0.361792,0.0914 0.370854,0.0804 0.379937,0.0691 0.388992,0.0577 0.39788,0.046 0.346334,0.0298 0.413871,0.0236 0.420395,0.0111 0.426611,-0.002 0.432535,-0.0145 0.438158,-0.0275 0.292197,-0.0255 0.446594,-0.0498 0.448832,-0.0629 0.450933,-0.0764 0.45289,-0.0898 0.454635,-0.10322 0.240019,-0.0599 0.456748,-0.12405 0.455256,-0.13712 0.453018,-0.15004 0.450058,-0.16277 0.446387,-0.17534 0.441904,-0.18757 0.436632,-0.19955 0.365218,-0.17815 0.424805,-0.22071 0.417143,-0.23145 0.408761,-0.24183", + "fill": { + "paint": "transparent" + }, + "id": "path8265", + "name": "path8265", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 77.386556,153.25669 0.08333,-0.0512 0.229624,-0.14454 0.226025,-0.1474 0.222594,-0.15028 0.219164,-0.15323 0.215711,-0.15614 0.08837,-0.0656 0.210448,-0.15991 0.206615,-0.16244 0.202618,-0.16482 0.198547,-0.1671 0.194303,-0.16923 0.189997,-0.17126 0.185594,-0.17319 0.181217,-0.17496 0.176565,-0.17668 0.172101,-0.17826 0.167378,-0.17973 0.162752,-0.18113 0.157955,-0.18248 0.153332,-0.18368 0.14852,-0.18482 0.143816,-0.1859", + "fill": { + "paint": "transparent" + }, + "id": "path8266", + "name": "path8266", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 81.523139,149.5928 0.07031,-0.0932 0.07669,-0.10447 0.0751,-0.1047 0.05676,-0.0805 0.0727,-0.10505 0.0711,-0.10526 0.06952,-0.1054 0.06791,-0.10556 0.0663,-0.10569 0.0647,-0.1058 0.06309,-0.10589 0.06157,-0.10593", + "fill": { + "paint": "transparent" + }, + "id": "path8267", + "name": "path8267", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 82.338649,148.36545 0.05917,-0.10371 0.06316,-0.11455 0.0615,-0.1145 0.05917,-0.11454 0.05197,-0.10274 0.0559,-0.11458 0.05437,-0.11454 0.05197,-0.1145 0.05031,-0.11443 0.0487,-0.1143 0.04718,-0.11417 0.04478,-0.11402 0.04311,-0.11381 0.04151,-0.1136 0.03997,-0.11336 0.03758,-0.11309", + "fill": { + "paint": "transparent" + }, + "id": "path8268", + "name": "path8268", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 81.739663,139.21704 0.07431,0.14831 0.0703,0.15063 0.0663,0.15286 0.0623,0.15483 0.0583,0.15669 0.05437,0.15833 0.0503,0.15978 0.03911,0.13504 0.04239,0.16192 0.03831,0.16384 0.03424,0.16562 0.02951,0.1674 0.02558,0.16894 0.02079,0.17044 0.01679,0.17173 0.01045,0.13546 0.0088,0.17377 0.008,0.17531 1.6e-4,0.17671 -0.008,0.17814 -0.0088,0.17937 -0.01366,0.18055 -0.0176,0.18158 -0.01439,0.12024 -0.02558,0.18302 -0.03032,0.18417 -0.03518,0.18522 -0.03997,0.1862 -0.04478,0.18703 -0.0487,0.18779 -0.05437,0.1884 -0.02872,0.0943", + "fill": { + "paint": "transparent" + }, + "id": "path8269", + "name": "path8269", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 81.191171,138.15792 0.0743,0.14827 0.07031,0.15064 0.0663,0.15285 0.0623,0.15487 0.0583,0.15668 0.05437,0.15832 0.0503,0.15977 0.03837,0.13506 0.04239,0.16188 0.03831,0.16386 0.03424,0.16564 0.02951,0.16737 0.02558,0.16898 0.02158,0.17039 0.01679,0.17179 0.01033,0.13545 0.0088,0.17374 0.008,0.1753 1.6e-4,0.17676 -0.0079,0.1781 -0.0088,0.1794 -0.0136,0.18054 -0.01758,0.1816 -0.0144,0.12021 -0.02558,0.18303 -0.03032,0.18418 -0.03518,0.18522 -0.03997,0.18619 -0.04478,0.187 -0.04957,0.18777 -0.0535,0.18836 -0.02872,0.0944", + "fill": { + "paint": "transparent" + }, + "id": "path8270", + "name": "path8270", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 80.642598,137.09876 0.07431,0.14829 0.0703,0.15065 0.0663,0.15285 0.06237,0.15483 0.0583,0.1567 0.05437,0.15832 0.0503,0.15978 0.03911,0.13506 0.04239,0.1619 0.03839,0.16382 0.03424,0.16566 0.02958,0.16737 0.02558,0.16896 0.02079,0.17043 0.01679,0.17175 0.01045,0.13544 0.0088,0.17377 0.008,0.17531 1.6e-4,0.17672 -0.008,0.17814 -0.0088,0.17936 -0.01366,0.18054 -0.01758,0.18156 -0.01446,0.12026 -0.02558,0.18301 -0.03031,0.18414 -0.03518,0.18522 -0.03997,0.18622 -0.04478,0.18709 -0.04957,0.18785 -0.05437,0.1885 -0.02872,0.0942", + "fill": { + "paint": "transparent" + }, + "id": "path8271", + "name": "path8271", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 57.397487,145.62794 -0.07192,-0.14366 -0.06823,-0.14598 -0.06443,-0.14813 -0.06057,-0.15011 -0.05657,-0.15193 -0.0525,-0.15355 -0.04838,-0.15493 -0.04057,-0.14304 -0.04025,-0.15711 -0.03612,-0.15904 -0.03206,-0.16081 -0.02791,-0.16253 -0.02378,-0.16411 -0.01959,-0.16555 -0.01533,-0.16687 -0.0096,-0.14414 -0.0072,-0.16894 -0.0026,-0.17045 0.002,-0.1719 0.0053,-0.17323 0.01033,-0.17449 0.01473,-0.17566 0.01925,-0.17664 0.01686,-0.12918 0.02705,-0.17819 0.03159,-0.1793 0.03618,-0.18032 0.04098,-0.1813 0.04564,-0.18215 0.0503,-0.18287 0.05497,-0.18351 0.03298,-0.1034", + "fill": { + "paint": "transparent" + }, + "id": "path8272", + "name": "path8272", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 80.094019,136.03959 0.07431,0.14831 0.07031,0.15064 0.06637,0.15287 0.0623,0.15484 0.0583,0.15669 0.05437,0.15832 0.05031,0.15976 0.03911,0.13506 0.04239,0.1619 0.03838,0.16383 0.03352,0.16567 0.02951,0.16735 0.02558,0.16896 0.0216,0.17042 0.01679,0.17178 0.01033,0.13546 0.0088,0.17374 0.008,0.1753 8.7e-5,0.17675 -0.008,0.1781 -0.0088,0.17939 -0.01367,0.18053 -0.01839,0.18157 -0.0144,0.12027 -0.02558,0.18301 -0.03032,0.18418 -0.03511,0.1852 -0.03997,0.1862 -0.04478,0.18705 -0.04957,0.18783 -0.05437,0.18846 -0.02872,0.0943", + "fill": { + "paint": "transparent" + }, + "id": "path8273", + "name": "path8273", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 80.022197,135.90089 -0.05511,-0.10381 -0.05751,-0.10309 -0.05917,-0.10231 -0.0615,-0.10152 -0.06309,-0.10066 -0.06557,-0.0996 -0.06791,-0.0987 -0.06951,-0.0977 -0.0711,-0.0965 -0.07271,-0.0953 -0.0751,-0.0941 -0.02478,-0.03 -0.07749,-0.0925 -0.0791,-0.0915 -0.08156,-0.0906 -0.08357,-0.0896 -0.08565,-0.0885 -0.08758,-0.0874 -0.08955,-0.0864 -0.09149,-0.0852 -0.09332,-0.0839 -0.09516,-0.0827 -0.097,-0.0813 -0.02239,-0.0185", + "fill": { + "paint": "transparent" + }, + "id": "path8274", + "name": "path8274", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 80.435822,141.3233 -0.132389,0.39329 -0.153477,0.39562 -0.174893,0.39739 -0.196476,0.39845 -0.217876,0.39861 -0.239285,0.39778 -0.260394,0.39572 -0.110811,0.1586 -0.289224,0.39062 -0.309362,0.38579 -0.329896,0.38107 -0.20118,0.21913 -0.363538,0.37369 -0.382368,0.36582 -0.400772,0.35724 -0.204611,0.17306 -0.42769,0.34324 -0.443195,0.33141 -0.458114,0.31901 -0.472361,0.30595 -0.486012,0.29234 -0.498713,0.27807 -0.438479,0.22728 -0.433221,0.20962 -0.523939,0.23448 -0.529589,0.21658 -0.534221,0.19844 -0.537884,0.17997 -0.540617,0.16146 -0.542562,0.14271 -0.254204,0.0604 -0.539584,0.11417 -0.536566,0.0948 -0.532861,0.0757 -0.28606,0.033 -0.52124,0.0462 -0.513992,0.0272 -0.506915,0.009 -0.165651,-0.002 -0.494048,-0.0155 -0.482967,-0.0332 -0.471122,-0.0505 -0.458487,-0.0671 -0.445375,-0.0835 -0.431909,-0.0991 -0.418215,-0.11459 -0.32951,-0.1041 -0.390458,-0.14056 -0.374806,-0.15412 -0.359053,-0.16727 -0.312006,-0.16268 -0.329364,-0.19137 -0.312732,-0.20286 -0.295609,-0.2136 -0.274059,-0.22015 -0.263912,-0.23558 -0.246714,-0.24524 -0.228991,-0.25394 -4.46e-4,-5.2e-4 -0.21364,-0.26536 -0.197113,-0.27526 -0.179504,-0.2834 -0.161021,-0.28995", + "fill": { + "paint": "transparent" + }, + "id": "path8275", + "name": "path8275", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 77.666841,140.03472 0.02719,-0.0845 0.04478,-0.1498 0.04072,-0.14928 0.03758,-0.14867 0.03351,-0.14797 0.02958,-0.14719 0.02552,-0.14637 0.02239,-0.14544 0.01358,-0.10545 0.01606,-0.14421 0.01206,-0.14335 0.0088,-0.14243 0.008,-0.1414 v -0.14029 -0.13912 l -0.008,-0.13789 -0.008,-0.11764 -0.01279,-0.13621 -0.01599,-0.13514 -0.01925,-0.13394 -0.02319,-0.13266 -0.02631,-0.13127 -0.02951,-0.12981 -0.03278,-0.12826 -0.03345,-0.11676 -0.03911,-0.1265 -0.04311,-0.12531 -0.04631,-0.124 -0.04957,-0.12254 -0.0527,-0.12089 -0.0559,-0.11915 -0.05917,-0.11725", + "fill": { + "paint": "transparent" + }, + "id": "path8276", + "name": "path8276", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 65.878621,147.55707 0.354236,-0.005 0.358467,-0.0161 0.362326,-0.0271 0.365751,-0.038 0.368762,-0.0492 0.371295,-0.0603 0.373193,-0.0715 0.374512,-0.0827 0.375152,-0.0939 0.375099,-0.10486 0.08022,-0.0239 0.374026,-0.11815 0.371108,-0.12857 0.368136,-0.13901 0.365004,-0.14938 0.361694,-0.15973 4.92e-4,-3e-4 0.354037,-0.16805 0.351559,-0.17882 0.345054,-0.18769 0.338192,-0.19632 0.330849,-0.20464 0.01679,-0.0107 0.321661,-0.21233 0.312719,-0.21936 0.303378,-0.22612 0.293856,-0.23257 0.284273,-0.2388 0.04152,-0.0361 0.271567,-0.24443 0.260467,-0.24895 0.249193,-0.25319 0.237773,-0.25712 0.226265,-0.2608 0.0647,-0.0774 0.210133,-0.2635 0.197667,-0.26532 0.185354,-0.26692 0.172981,-0.26835 0.160835,-0.26964 0.06951,-0.12339 0.14269,-0.27016 0.13015,-0.26987 0.117694,-0.2692 0.105226,-0.26814 0.09293,-0.26681", + "fill": { + "paint": "transparent" + }, + "id": "path8277", + "name": "path8277", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 70.753194,131.83404 -0.372081,0.005 -0.376511,0.0169 -0.380523,0.0283 -0.384161,0.0401 -0.387306,0.0516 -0.389918,0.0633 -0.391976,0.0751 -0.393342,0.0868 -0.394029,0.0985 -0.393962,0.11013 -0.08426,0.025 -0.39281,0.12411 -0.389777,0.13505 -0.386672,0.14598 -0.383335,0.15687 -0.37983,0.16776 -5e-4,3.3e-4 -0.37184,0.17649 -0.369209,0.18784 -0.362412,0.19712 -0.355203,0.20621 -0.347454,0.21488 -0.01773,0.0113 -0.337853,0.22301 -0.328377,0.23039 -0.318689,0.23749 -0.308674,0.24427 -0.29854,0.25079 -0.04344,0.0379 -0.28522,0.2567 -0.27358,0.26148 -0.261673,0.2659 -0.24978,0.27006 -0.237718,0.27394 -0.0676,0.0812 -0.220707,0.27675 -0.207689,0.27867 -0.194623,0.28037 -0.181703,0.28182 -0.168929,0.28317 -0.07287,0.12964 -0.149848,0.28372 -0.136746,0.28346 -0.12356,0.28273 -0.110571,0.28163 -0.09753,0.2802", + "fill": { + "paint": "transparent" + }, + "id": "path8278", + "name": "path8278", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 81.461059,143.30287 0.01839,-0.0595 0.05351,-0.18473 0.0487,-0.18411 0.04478,-0.18348 0.03997,-0.18268 0.03511,-0.1818 0.03111,-0.18083 0.02639,-0.17976 0.01129,-0.0845 0.01999,-0.17854 0.01519,-0.17752 0.01117,-0.1765 0.008,-0.17526 v -0.174 -0.17264 l -0.008,-0.17119 -0.008,-0.10091 -0.01279,-0.1695 -0.01679,-0.16824 -0.02079,-0.16691 -0.02558,-0.16536 -0.02945,-0.1638 -0.03351,-0.16211 -0.03758,-0.16025 -0.02632,-0.10392 -0.04391,-0.1585 -0.04791,-0.15715 -0.05197,-0.15561 -0.05591,-0.15391 -0.0599,-0.15205 -0.0639,-0.14999 -0.06791,-0.14782", + "fill": { + "paint": "transparent" + }, + "id": "path8279", + "name": "path8279", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 59.485661,136.51038 -0.03719,0.0428 -0.06799,0.0795 -0.06719,0.0801 -0.03065,0.0369 -0.06609,0.081 -0.0653,0.0816 -0.0645,0.0822 -0.0635,0.0828 -0.0627,0.0833 -0.06183,0.0839 -0.06091,0.0846", + "fill": { + "paint": "transparent" + }, + "id": "path8280", + "name": "path8280", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 78.502245,139.73459 -0.125046,0.35467 -0.144776,0.35676 -0.164744,0.35819 -0.184635,0.35888 -0.108661,0.19486 -0.215405,0.35818 -0.234822,0.35606 -0.254549,0.35362 -0.274287,0.35086 -0.11761,0.14216 -0.302417,0.34621 -0.320702,0.34027 -0.338844,0.33385 -0.356816,0.32675 -0.104578,0.0915 -0.379276,0.31672 -0.39461,0.30664 -0.409793,0.29621 -0.424646,0.28541 -0.08702,0.056 -0.442302,0.27181 -0.453336,0.25812 -0.46356,0.24381 -0.472739,0.22891 -0.142005,0.065 -0.482673,0.20862 -0.489019,0.19247 -0.494181,0.17589 -0.498386,0.15902 -0.10256,0.0305 -0.498426,0.13744 -0.497947,0.11958 -0.49696,0.10183 -0.495554,0.0842 -0.145068,0.0213 -0.489359,0.061 -0.483747,0.0433 -0.477564,0.0257 -0.470867,0.009 -0.193116,-0.002 -0.457522,-0.0152 -0.447567,-0.0318 -0.437279,-0.0479 -0.42683,-0.0636 -0.232902,-0.0421 -0.407295,-0.0868 -0.394169,-0.10114 -0.380849,-0.11502 -0.367397,-0.12849 -0.250413,-0.0983 -0.343549,-0.15032 -0.328782,-0.16225 -0.31356,-0.1736 -0.298093,-0.18444 -0.233982,-0.15981 -0.272153,-0.20482 -0.256643,-0.21469 -0.240563,-0.22366 -0.223881,-0.2318 -0.183662,-0.2108 -0.196762,-0.25104 -0.180922,-0.25954 -0.164385,-0.26676 -0.147221,-0.27278 -0.130876,-0.28016 -0.115352,-0.28922 -0.09908,-0.29716 -0.08227,-0.30374 -0.05743,-0.26827 -0.04964,-0.3122 -0.03251,-0.31935 -0.01499,-0.32576 0.0026,-0.3312 0.01559,-0.27238 0.03578,-0.33813 0.05437,-0.34309 0.07327,-0.34728 0.09236,-0.35064 0.07518,-0.24421", + "fill": { + "paint": "transparent" + }, + "id": "path8281", + "name": "path8281", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 82.009632,144.36203 0.01758,-0.058 0.0535,-0.18472 0.04957,-0.1841 0.04478,-0.18343 0.03997,-0.1826 0.03511,-0.18168 0.03112,-0.18069 0.02639,-0.17962 0.01117,-0.0833 0.02,-0.17842 0.01606,-0.17743 0.01117,-0.17635 0.008,-0.17516 v -0.17391 -0.17255 l -0.008,-0.17112 -0.008,-0.0997 -0.01279,-0.16942 -0.01679,-0.16819 -0.02079,-0.1668 -0.02479,-0.1653 -0.02951,-0.16375 -0.03351,-0.16201 -0.03758,-0.16021 -0.02639,-0.10288 -0.04391,-0.15844 -0.0479,-0.15711 -0.05197,-0.15557 -0.05591,-0.15387 -0.0599,-0.15201 -0.0639,-0.14996 -0.06712,-0.14777", + "fill": { + "paint": "transparent" + }, + "id": "path8282", + "name": "path8282", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 71.371882,148.53946 -0.139386,0.053 -0.415764,0.14962 -0.417916,0.13868 -0.419474,0.12753 -0.420268,0.11627 -0.420495,0.10492 -0.420155,0.0935 -0.419188,0.0821 -0.417777,0.0706 -0.41587,0.0592 -0.413531,0.0478 -0.130977,0.0129 -0.407535,0.0327 -0.402844,0.0214 -0.398067,0.0103 -0.393208,-5.5e-4 -0.388359,-0.0116 -0.177212,-0.009 -0.378617,-0.0271 -0.371687,-0.0374 -0.364471,-0.0476 -0.357202,-0.0575 -0.34984,-0.0673 -0.216416,-0.0474 -0.336141,-0.0826 -0.327564,-0.0916 -0.318669,-0.10035 -0.309861,-0.1089 -0.300878,-0.11733 -0.232562,-0.099 -0.284741,-0.1319 -0.275232,-0.13954 -0.265471,-0.14684 -0.255537,-0.15391 -0.245435,-0.16061 -0.220802,-0.15646 -0.227444,-0.17427 -0.217443,-0.18065 -0.207257,-0.18666 -0.19676,-0.1922 -0.186094,-0.19741 -0.175499,-0.20249 -0.167851,-0.2109 -0.157861,-0.21664 -0.147361,-0.22161 -0.136448,-0.22582 -0.125225,-0.22925", + "fill": { + "paint": "transparent" + }, + "id": "path8283", + "name": "path8283", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 82.558205,145.42116 0.008,-0.014 0.04312,-0.14515 0.0407,-0.14481 0.03839,-0.14438 0.03511,-0.14397 0.03185,-0.14344 0.02951,-0.14288 0.02639,-0.14232 0.02399,-0.14168 0.02079,-0.14102 0.01839,-0.14032 0.01519,-0.13961 0.008,-0.0488 0.01206,-0.13906 0.0096,-0.13857 0.0079,-0.13796 v -0.13734 -0.13658 -0.13577 -0.13492 l -0.0079,-0.134 -0.0088,-0.13302 -0.01201,-0.13199 -0.01439,-0.1309", + "fill": { + "paint": "transparent" + }, + "id": "path8284", + "name": "path8284", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 82.877146,142.2987 -0.01033,-0.0845 -0.0144,-0.10443 -0.01606,-0.10397 -0.01839,-0.10343 -0.01918,-0.10283 -0.02158,-0.10227 -0.02319,-0.10157 -0.02478,-0.1009 -0.02631,-0.10016 -0.02719,-0.0994 -0.02478,-0.0856 -0.03032,-0.0985 -0.03191,-0.0979 -0.03351,-0.0974 -0.03511,-0.0968 -0.03672,-0.096 -0.03839,-0.0953 -0.03997,-0.0947 -0.04151,-0.0939 -0.04311,-0.093", + "fill": { + "paint": "transparent" + }, + "id": "path8285", + "name": "path8285", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 83.044057,146.35929 0.02639,-0.0793 0.04478,-0.14307 0.04239,-0.14262 0.03911,-0.14215 0.03591,-0.14163 0.03351,-0.14101 0.03032,-0.14043 0.02719,-0.13973 0.02478,-0.13907 0.02158,-0.13834 0.01918,-0.13758 0.01606,-0.13681 0.01117,-0.11524 0.01129,-0.13607 0.008,-0.13553 0.008,-0.13487 v -0.13421 l 2.4e-4,-0.1334 v -0.13256 l -0.0079,-0.13161 -0.008,-0.13066 -0.01033,-0.12958 -0.01279,-0.1285 -0.01599,-0.12735", + "fill": { + "paint": "transparent" + }, + "id": "path8286", + "name": "path8286", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 77.430421,135.80416 -0.08086,-0.14951 -0.08637,-0.14747 -0.0918,-0.14508 -0.09716,-0.14238 -0.102188,-0.13929 -0.107064,-0.13609 -0.112493,-0.13349 -0.117849,-0.1308 -0.123114,-0.12782 -0.125599,-0.12229 -0.132883,-0.12138 -0.138292,-0.11845 -0.143569,-0.1153 -0.148688,-0.11202 -0.14183,-0.10043 -0.158022,-0.10514 -0.163154,-0.10162 -0.168262,-0.0981 -0.173214,-0.0942 -0.151166,-0.0772 -0.182169,-0.0871 -0.18704,-0.0831 -0.191909,-0.0791 -0.196709,-0.0748 -0.201418,-0.0706 -0.20621,-0.0661 -0.210687,-0.0617 -0.215164,-0.0571 -0.219396,-0.0524 -0.09365,-0.0206 -0.225106,-0.0455 -0.228957,-0.0404 -0.232756,-0.0353 -0.236412,-0.0302 -0.240126,-0.025 -0.243668,-0.0195 -0.247248,-0.0141 -0.250552,-0.009 -0.253871,-0.003 -0.01852,-3e-5", + "fill": { + "paint": "transparent" + }, + "id": "path8287", + "name": "path8287", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 80.912574,142.24373 0.01758,-0.0576 0.05351,-0.18456 0.04957,-0.18397 0.04478,-0.18329 0.03997,-0.18251 0.03591,-0.18161 0.03112,-0.18063 0.02639,-0.17958 0.01045,-0.0825 0.02,-0.17838 0.01606,-0.17738 0.01117,-0.17629 0.008,-0.17514 v -0.17383 -0.1725 l -0.008,-0.17104 -0.008,-0.0991 -0.01279,-0.16936 -0.01679,-0.16811 -0.02079,-0.16679 -0.02472,-0.16528 -0.02872,-0.16368 -0.03278,-0.16198 -0.03672,-0.16019 -0.02632,-0.10228 -0.04391,-0.15842 -0.0479,-0.15705 -0.05197,-0.15554 -0.05591,-0.15388 -0.0599,-0.152 -0.06316,-0.14994 -0.06712,-0.14776", + "fill": { + "paint": "transparent" + }, + "id": "path8288", + "name": "path8288", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 75.825541,153.73424 0.238725,-0.11645 0.334687,-0.17096 0.330049,-0.17768 0.325107,-0.18425 0.319829,-0.19062 0.314311,-0.1968 0.308641,-0.20279 0.302571,-0.20859 0.24289,-0.1748 0.288904,-0.21704 0.281236,-0.22139 0.273488,-0.2256 0.265583,-0.22962 0.257582,-0.2335 0.249594,-0.23723 0.241537,-0.24082 0.0176,-0.0184 0.231462,-0.24317 0.222268,-0.24515 0.212926,-0.24701 0.203664,-0.24875 0.194463,-0.25038 0.185281,-0.2519 0.176171,-0.25335 0.167144,-0.25476 0.05591,-0.0892 0.154683,-0.25588 0.145409,-0.25632 0.135986,-0.25646 0.12664,-0.25635 0.117285,-0.25598 0.108025,-0.2554 0.09866,-0.25467 0.08949,-0.25376", + "fill": { + "paint": "transparent" + }, + "id": "path8289", + "name": "path8289", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 58.076057,146.93351 0.168823,0.28557 0.187153,0.27889 0.204722,0.27059 0.215925,0.25485 0.236033,0.24944 0.253625,0.24052 0.270688,0.23076 0.272021,0.20902 0.301851,0.20891 0.318823,0.19798 0.33532,0.18628 0.306049,0.15264 0.364371,0.16234 0.379937,0.14903 0.395381,0.13528 0.320235,0.096 0.422454,0.10954 0.435919,0.094 0.449073,0.078 0.461899,0.0617 0.474252,0.0448 0.48584,0.0275 0.49658,0.01 0.13718,-4.6e-4 0.508613,-0.0134 0.515404,-0.032 0.52232,-0.0509 0.272508,-0.0337 0.533194,-0.0799 0.536566,-0.0991 0.539338,-0.11838 0.241144,-0.059 0.541822,-0.14634 0.539684,-0.16496 0.536619,-0.18345 0.532661,-0.20173 0.527783,-0.21976 0.521894,-0.23752 0.409174,-0.20078 0.41731,-0.21855 0.496874,-0.27935 0.48394,-0.29344 0.470268,-0.30699 0.455968,-0.31987 0.440877,-0.33211 0.425366,-0.34383 0.195676,-0.16653 0.398759,-0.35751 0.380309,-0.36593 0.361446,-0.37371 0.193357,-0.21152 0.328377,-0.38087 0.307761,-0.38555 0.287786,-0.39028 0.09868,-0.1417 0.259901,-0.3952 0.238818,-0.39723 0.217484,-0.39806 0.196068,-0.39789 0.174566,-0.39687 0.153331,-0.39508 0.132143,-0.39276", + "fill": { + "paint": "transparent" + }, + "id": "path8290", + "name": "path8290", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 75.825541,153.73424 -0.107545,0.0507 -0.111616,0.0513 -0.08436,0.0378 -0.04717,0.0206 -0.106427,0.046 -0.05197,0.0217 -0.102896,0.0424 -0.06317,0.0251 -0.09307,0.0362 -0.0783,0.0294 v 4.2e-4 l -0.07751,0.0279 -0.01117,0.004 -0.06791,0.0229 -0.02558,0.008 -0.05437,0.0167 -0.03997,0.0115 -0.008,0.002 -0.03584,0.009 -0.01839,0.005 -0.02239,0.004 -0.0079,5.7e-4 -0.01519,0.002 -0.0079,2.5e-4 -0.0079,-5.3e-4 -0.008,-0.002", + "fill": { + "paint": "transparent" + }, + "id": "path8291", + "name": "path8291", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 75.825301,153.73376 0.08932,-0.051 0.249119,-0.14583 0.245355,-0.14917 0.24153,-0.15242 0.237613,-0.15567 0.233622,-0.15871 0.229383,-0.16173 0.225314,-0.16468 0.221073,-0.16753 0.216678,-0.17032 0.212367,-0.17298 0.207967,-0.17563 0.108818,-0.0944 0.200627,-0.17909 0.195828,-0.1812 0.190797,-0.1832 0.185827,-0.18508 0.180809,-0.18683 0.175621,-0.18852 0.170494,-0.19012 0.165392,-0.1916 0.160107,-0.19297 0.154924,-0.19432 0.149726,-0.19557", + "fill": { + "paint": "transparent" + }, + "id": "path8292", + "name": "path8292", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 83.52863,141.36818 0.0751,0.15064 0.07191,0.1531 0.06791,0.15534 0.0639,0.15745 0.05917,0.15931 0.05511,0.16102 0.05031,0.16254 0.04239,0.1501 0.04237,0.16478 0.03839,0.1668 0.03351,0.16869 0.02951,0.17046 0.02478,0.17211 0.02079,0.17366 0.01599,0.17499 0.01033,0.15124 0.008,0.17716 v 0.17877 0.18029 l -0.008,0.18167 -0.01129,0.18303 -0.01519,0.18419 -0.02,0.18532 -0.0176,0.13557 -0.02799,0.18688 -0.03351,0.18805 -0.03839,0.18915 -0.04311,0.19014 -0.04791,0.19103 -0.0527,0.19183 -0.0575,0.19246 -0.03431,0.1085", + "fill": { + "paint": "transparent" + }, + "id": "path8293", + "name": "path8293", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 75.213761,153.8369 -0.03518,0.0181 -0.06551,0.0341 -0.06557,0.0341 -0.0176,0.009 -0.06549,0.0343 -0.01679,0.009 -0.06557,0.0345 -0.01679,0.009 -0.06469,0.035 -0.01919,0.0103 -0.06157,0.0345 -0.03997,0.023 v 0.002 l -0.03591,0.0221 -0.01839,0.0118 -0.01925,0.0131 -0.008,0.003 -0.01279,0.0105 -5e-4,5.3e-4 -0.0079,0.005 v 0.005 0.005", + "fill": { + "paint": "transparent" + }, + "id": "path8294", + "name": "path8294", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 60.804227,151.97183 0.177991,0.21479 0.189938,0.20912 0.201339,0.20266 0.01559,0.0148 0.212913,0.19482 0.224274,0.18797 0.23534,0.18072 0.01253,0.009 0.246609,0.17255 0.258354,0.16541 0.269828,0.15784 0.280977,0.14982 0.291763,0.14135 0.29459,0.12931 0.311272,0.12322 0.321501,0.11382 0.331656,0.10426 0.34175,0.0944 0.351844,0.0844 0.289506,0.0602 0.369442,0.0654 0.377597,0.0543 0.38558,0.043 0.393542,0.0314 0.401185,0.0195 0.246468,0.006 0.413039,1.3e-4 0.418355,-0.0122 0.423467,-0.0249 0.42837,-0.0377 0.43294,-0.0505 0.19559,-0.0267 0.439031,-0.0692 0.440789,-0.0822 0.442258,-0.095 0.443221,-0.10798 0.44385,-0.12091 0.14674,-0.043 0.443823,-0.13815 0.44151,-0.15051 0.438638,-0.16279 0.435353,-0.17492 0.431602,-0.18699 0.113453,-0.0515 0.10937,-0.0505 0.424347,-0.20464 0.417776,-0.21541 0.410593,-0.22587 0.402757,-0.23597 0.394456,-0.24573", + "fill": { + "paint": "transparent" + }, + "id": "path8295", + "name": "path8295", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 76.968861,152.1892 0.205969,-0.13432 0.243283,-0.16425 0.239059,-0.16751 0.234661,-0.17072 0.230256,-0.17382 0.225706,-0.1768 0.221081,-0.17969 0.216438,-0.18251 0.211653,-0.18523 0.206929,-0.18785 0.202058,-0.19038 0.197261,-0.19289 0.0407,-0.0405 0.190637,-0.19519 0.185281,-0.19692 0.179684,-0.19856 0.174099,-0.20005 0.168584,-0.20141 0.162832,-0.20268 0.157077,-0.20383 0.151398,-0.20487 0.145735,-0.20583 0.139986,-0.2067 0.134301,-0.20749 0.128551,-0.2082", + "fill": { + "paint": "transparent" + }, + "id": "path8296", + "name": "path8296", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 81.561892,147.611 0.01679,-0.0282 0.0759,-0.12817 0.07351,-0.12815 0.0711,-0.12818 0.06871,-0.12825 0.0599,-0.11445 0.0647,-0.12841 0.0623,-0.12847 0.0607,-0.12844 0.0583,-0.1284 0.0559,-0.1283 0.05351,-0.12816 0.05111,-0.12799 0.04957,-0.12779 0.04717,-0.12758 0.04478,-0.12727 0.04237,-0.12699 0.04072,-0.1267", + "fill": { + "paint": "transparent" + }, + "id": "path8297", + "name": "path8297", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 57.850751,139.73459 0.06123,-0.18025 0.06623,-0.18075 0.07136,-0.1812 0.07646,-0.18163 0.08158,-0.18197 0.08675,-0.18223 0.09195,-0.18245 0.09714,-0.18253 0.102308,-0.18254 0.107521,-0.18245 0.112745,-0.18222 0.117861,-0.18188 0.123034,-0.1814 0.02791,-0.0401 0.129218,-0.18062 0.134108,-0.17956 0.138939,-0.17845 0.143803,-0.17732 0.14868,-0.17608 0.153565,-0.17483 0.158495,-0.17352 0.163318,-0.17212 0.168123,-0.17064 0.173028,-0.16912 0.177797,-0.16748 0.182529,-0.16578 0.128491,-0.11313", + "fill": { + "paint": "transparent" + }, + "id": "path8298", + "name": "path8298", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 61.074909,135.13236 0.239884,-0.20384 0.246361,-0.19993 0.252751,-0.19592 0.258981,-0.19171 0.265046,-0.18729 0.270947,-0.18272 0.276539,-0.17793 0.03544,-0.0221 0.282642,-0.17233 0.287233,-0.16673 0.291564,-0.16106 0.295707,-0.1552 0.299767,-0.14932 0.303517,-0.14325 0.307115,-0.13714 0.01606,-0.007 0.02205,-0.01 0.310001,-0.12974 0.312046,-0.12293 0.313805,-0.11603 0.315365,-0.10918 0.31677,-0.10218 0.31795,-0.0952 0.318982,-0.0882 0.05563,-0.0147 0.31883,-0.0797 0.318383,-0.0724 0.317749,-0.0651 0.316738,-0.0578 0.315603,-0.0505 0.314193,-0.0433 0.312538,-0.036", + "fill": { + "paint": "transparent" + }, + "id": "path8299", + "name": "path8299", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 69.501091,131.48687 0.09803,-0.01 0.221095,-0.0195 0.21965,-0.0159 0.218069,-0.0123 0.21647,-0.009 0.214859,-0.005 0.213099,-0.002 0.211399,0.002 0.209648,0.005 0.207835,0.009 0.205983,0.0123 0.204084,0.0158 0.169949,0.0159 0.200033,0.0219 0.197747,0.0252 0.195302,0.0285 0.192764,0.0317 0.190278,0.0348 0.187685,0.0379 0.184961,0.041 0.182323,0.0441 0.17961,0.0471 0.176812,0.0498 0.174099,0.0527", + "fill": { + "paint": "transparent" + }, + "id": "path8300", + "name": "path8300", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 74.172873,131.88838 0.150199,0.0487 0.238652,0.0831 0.232823,0.0887 0.226824,0.094 0.220602,0.0991 0.214352,0.10411 0.156769,0.0815 0.203725,0.11283 0.197507,0.11753 0.191038,0.12204 0.184407,0.12642 0.177852,0.13058 0.146521,0.11473 0.166504,0.13892 0.16012,0.14302 0.153398,0.14686 0.146695,0.15044 0.139572,0.15377 0.120968,0.1426 0.127839,0.16168 0.121355,0.16542 0.114583,0.16874 0.107616,0.17177 0.10059,0.17445 0.09379,0.17778 0.08725,0.18155 0.08062,0.185 0.07351,0.18807 0.0663,0.1908 0.05437,0.17507 0.0527,0.19494 0.0463,0.19825 0.03911,0.20132 0.03193,0.20403 0.02478,0.20647 0.01519,0.18098 0.01033,0.20998 v 0.21257 l -0.0079,0.21502 -0.01206,0.21719 -0.01999,0.21919 -0.02079,0.1716 -0.03351,0.22198 -0.04151,0.22389 -0.04957,0.22556 -0.0575,0.22702 -0.06551,0.22826 -0.04717,0.14905", + "fill": { + "paint": "transparent" + }, + "id": "path8301", + "name": "path8301", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 59.721681,150.11097 0.07086,0.12454 0.0743,0.12335 0.07775,0.122 0.081,0.12054 0.08422,0.11889 0.08733,0.11716 0.09045,0.11528 0.03644,0.0451 0.0945,0.11244 0.09788,0.1109 0.101095,0.10924 0.104409,0.10758 0.107533,0.10576 0.110691,0.1039 0.113766,0.10193 0.04044,0.0352 0.117765,0.0992 0.120988,0.0972 0.124248,0.0953 0.127384,0.0934 0.130497,0.0913 0.133562,0.0892 0.136587,0.0871 0.03445,0.0213 0.140251,0.0842 0.143364,0.0821 0.146554,0.0799 0.149599,0.0776 0.152647,0.0753 0.155595,0.0728 0.158496,0.0703 0.01918,0.008", + "fill": { + "paint": "transparent" + }, + "id": "path8302", + "name": "path8302", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 63.255006,153.07902 0.357795,0.13616 0.371248,0.12406 0.384567,0.11161 0.397441,0.0986 0.409907,0.0853 0.421726,0.0714 0.13177,0.019 0.435906,0.0526 0.444934,0.0376 0.453898,0.0222 0.462845,0.007 0.471654,-0.009 0.480182,-0.0252 0.03571,-0.002 0.489058,-0.0429 0.493163,-0.0593 0.496767,-0.076 0.499944,-0.0926 0.502385,-0.10939 0.43991,-0.10914 0.505356,-0.14094 0.503203,-0.1571 0.500525,-0.17315 0.49706,-0.18909 0.492884,-0.20482 0.375357,-0.16787 0.367764,-0.17479 0.476191,-0.24214 0.46659,-0.2555 0.456542,-0.26851 0.445814,-0.28101 0.434567,-0.29318 0.362813,-0.26041 0.408347,-0.31172 0.393729,-0.32088 0.37863,-0.32956 0.363292,-0.33771 0.347713,-0.34544 0.0176,-0.0177 0.328771,-0.35061 0.310719,-0.35503 0.292749,-0.35903 0.274761,-0.36272 0.256788,-0.36609 0.239132,-0.36921 0.06309,-0.10284 0.215478,-0.37106 0.196955,-0.37155 0.178251,-0.37124 0.159634,-0.37021 0.141098,-0.36869 0.1228,-0.36666", + "fill": { + "paint": "transparent" + }, + "id": "path8303", + "name": "path8303", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 58.372251,139.73459 -0.03405,0.10727 -0.06983,0.24065 -0.0605,0.23938 -0.05103,0.23775 -0.04171,0.23577 -0.03251,0.23353 -0.02332,0.23102 -0.01,0.14218 -0.0089,0.22802 4.7e-5,0.22565 0.0088,0.22288 0.01745,0.21982 0.02599,0.21648 0.03424,0.21287 0.02892,0.14662 0.04898,0.20976 0.0575,0.20716 0.06577,0.20399 0.07383,0.20028 0.08163,0.19607 0.08919,0.19143 0.09719,0.18776 0.105491,0.1847 0.113622,0.18123 0.04384,0.0656 0.124447,0.17592 0.132249,0.17178 0.139811,0.16729 0.05064,0.0575 0.149567,0.16061 0.157848,0.15681 0.165945,0.15272 0.1738,0.14825 0.181409,0.14338 0.188625,0.13815 0.121042,0.0832 0.199487,0.12885 0.207162,0.12364 0.214812,0.11831 0.22236,0.11277 0.229745,0.10699 0.236999,0.10102 0.115807,0.0462 0.247288,0.0917 0.253977,0.0853 0.260608,0.0787 0.267183,0.0718 0.273712,0.0648 0.280057,0.0577 0.07806,0.0145 0.287906,0.0484 0.293423,0.0407 0.29884,0.033 0.303997,0.0251 0.309073,0.017 0.313853,0.009 0.02599,4e-4", + "fill": { + "paint": "transparent" + }, + "id": "path8304", + "name": "path8304", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 59.37472,149.38898 0.06863,0.104 0.07136,0.10319 0.07399,0.10223 0.07661,0.10125 0.0791,0.10016 0.08163,0.099 0.08412,0.0977 0.08656,0.0965 0.08884,0.0951 0.09119,0.0936 0.09338,0.0922 0.09558,0.0905 0.07566,0.0691 0.09923,0.0875 0.101779,0.0862 0.104254,0.0848 0.106751,0.0834 0.109274,0.082 0.111677,0.0805 0.114066,0.079 0.116504,0.0774 0.118739,0.0759 0.121035,0.0741 0.123275,0.0725 0.125425,0.0706 0.07079,0.0386", + "fill": { + "paint": "transparent" + }, + "id": "path8305", + "name": "path8305", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 83.832554,146.80445 -0.03997,0.11893 -0.04151,0.11916 -0.04391,0.11943 -0.04551,0.11965 -4e-4,0.002 -0.04717,0.11993 -0.04957,0.12005 -0.05111,0.12023 -0.05351,0.12035 -0.0551,0.12046 -0.05676,0.1205 -0.05917,0.12056 -0.0607,0.12056 -0.06309,0.12058 -0.06476,0.1205 -0.0663,0.12043 -0.05677,0.10004", + "fill": { + "paint": "transparent" + }, + "id": "path8306", + "name": "path8306", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 82.977506,148.70693 -0.240412,0.39886 -0.261426,0.39703 -0.282435,0.39451 -0.303451,0.39136 -0.324132,0.38734 -0.344596,0.38235 -0.295062,0.30676 -0.380229,0.37072 -0.398286,0.3621 -0.41651,0.35343 -0.135501,0.10993 -0.44087,0.34167 -0.456689,0.33034 -0.4722,0.31848 -0.127344,0.0822 -0.490805,0.30259 -0.502637,0.28799 -0.513811,0.27287 -0.524052,0.25729 -0.533387,0.24118 -0.251913,0.10693 -0.54554,0.21679 -0.293623,0.10854 -0.550564,0.18855 -0.552651,0.1699 -0.553663,0.15116 -0.553924,0.13231 -0.553276,0.11343 -0.551877,0.0947 -0.182136,0.0272 -0.545541,0.0692 -0.539918,0.0505 -0.53384,0.0317 -0.214571,0.008 -0.520222,0.006 -0.510879,-0.0122 -0.501784,-0.03 -0.01899,-0.002 -0.490864,-0.0479 -0.47931,-0.0647 -0.466729,-0.0811 -0.453477,-0.0968 -0.439565,-0.11211 -0.425379,-0.12696 -0.410852,-0.14136 -0.258842,-0.0992 -0.385833,-0.16381 -0.370221,-0.17672 -0.354377,-0.18919 -0.246794,-0.14458 -0.327758,-0.2102 -0.311267,-0.22125 -0.294255,-0.23153 -0.218856,-0.18857 -0.266011,-0.2509 -0.24904,-0.26039 -0.231636,-0.269 -0.173893,-0.22275 -0.203064,-0.28779 -0.185748,-0.29605 -0.16761,-0.30277", + "fill": { + "paint": "transparent" + }, + "id": "path8307", + "name": "path8307", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 58.816307,137.3692 -0.0047,0.006 -0.0047,0.005 -0.0026,0.002 -0.002,0.002 -1.41e-4,9e-5 -4.99e-4,1.5e-4 -5.4e-5,-5.7e-4 v -5e-5 l 5.01e-4,-0.002 3.39e-4,-5.5e-4 0.0026,-0.004 0.0026,-0.005 0.0026,-0.005 0.0026,-0.005 0.0047,-0.007 0.0047,-0.007 0.004,-0.006 0.0047,-0.007 0.0047,-0.007", + "fill": { + "paint": "transparent" + }, + "id": "path8308", + "name": "path8308", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 58.624562,147.99266 0.16883,0.28556 0.187159,0.27888 0.204717,0.2706 0.215978,0.25485 0.235974,0.24943 0.253631,0.24053 0.270688,0.23075 0.27206,0.209 0.301818,0.20895 0.318816,0.19795 0.335314,0.18628 0.306049,0.15263 0.364372,0.16235 0.379929,0.14904 0.395395,0.13529 0.320281,0.0961 0.422461,0.10951 0.435859,0.094 0.449079,0.0781 0.461899,0.0617 0.474253,0.0449 0.485892,0.0275 0.496568,0.01 0.137133,-4.8e-4 0.50862,-0.0134 0.515404,-0.032 0.52232,-0.0509 0.272547,-0.0337 0.533148,-0.0799 0.536612,-0.0992 0.539304,-0.11835 0.241184,-0.0591 0.541836,-0.14633 0.539625,-0.16498 0.536665,-0.18343 0.532662,-0.20172 0.527743,-0.21978 0.521894,-0.2375 0.409233,-0.20081 0.417297,-0.21856 0.496879,-0.27933 0.483942,-0.29345 0.470274,-0.30697 0.455889,-0.31985 0.440943,-0.33213 0.425379,-0.34382 0.195662,-0.16655 0.398766,-0.35749 0.38031,-0.36593 0.361459,-0.37372 0.193344,-0.21159 0.328377,-0.38086 0.307848,-0.38551 0.287625,-0.39028 0.09867,-0.14146 0.259827,-0.39518 0.238819,-0.39725 0.21747,-0.39812 0.196075,-0.39791 0.174653,-0.39692 0.153318,-0.39513 0.132236,-0.39282", + "fill": { + "paint": "transparent" + }, + "id": "path8309", + "name": "path8309", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 70.785283,132.51239 -0.354283,0.005 -0.358469,0.0161 -0.362279,0.0271 -0.36579,0.0381 -0.368756,0.0492 -0.371254,0.0603 -0.373206,0.0715 -0.37456,0.0828 -0.375152,0.0939 -0.375099,0.10486 -0.08022,0.0239 -0.373973,0.11817 -0.371155,0.12856 -0.368129,0.139 -0.365011,0.14938 -0.361632,0.15972 -5e-4,3.1e-4 -0.354043,0.16807 -0.351532,0.17882 -0.345129,0.1877 -0.338132,0.19631 -0.330862,0.20462 -0.01679,0.0107 -0.321662,0.21234 -0.312671,0.21937 -0.303418,0.22609 -0.293909,0.23259 -0.284262,0.23879 -0.04144,0.0361 -0.27162,0.24439 -0.260454,0.24897 -0.24914,0.25318 -0.237785,0.25714 -0.226359,0.2608 -0.06442,0.0774 -0.210181,0.26352 -0.197701,0.26532 -0.185308,0.26692 -0.173007,0.26835 -0.16088,0.26962 -0.06935,0.12342 -0.14269,0.27014 -0.130143,0.26989 -0.117681,0.26919 -0.105227,0.26816 -0.0929,0.26678", + "fill": { + "paint": "transparent" + }, + "id": "path8310", + "name": "path8310", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 58.997036,140.03472 -0.02692,0.0845 -0.04484,0.14981 -0.04104,0.14926 -0.03725,0.14867 -0.03338,0.14798 -0.02971,0.14718 -0.02586,0.14637 -0.02205,0.14546 -0.01379,0.10541 -0.01566,0.14423 -0.01206,0.14335 -0.0084,0.14244 -0.0047,0.14139 -5e-4,0.1403 0.0026,0.13913 0.0053,0.13787 0.0079,0.11764 0.01246,0.13622 0.01606,0.13512 0.01939,0.13397 0.02286,0.13265 0.02618,0.13127 0.02945,0.12981 0.03279,0.12824 0.03319,0.1168 0.03944,0.12647 0.04284,0.12533 0.04624,0.12399 0.04938,0.12253 0.05257,0.1209 0.05571,0.11914 0.05877,0.11725", + "fill": { + "paint": "transparent" + }, + "id": "path8311", + "name": "path8311", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 80.363994,141.18459 0.02158,-0.0699 0.05351,-0.18592 0.04957,-0.18531 0.04478,-0.18461 0.03997,-0.18376 0.03518,-0.18286 0.03032,-0.18186 0.02639,-0.18075 0.01206,-0.0952 0.01925,-0.17948 0.01519,-0.17846 0.01033,-0.17736 0.008,-0.17615 v -0.17485 -0.17346 l -0.008,-0.17201 -0.008,-0.11137 -0.0144,-0.17021 -0.01839,-0.16893 -0.02239,-0.16753 -0.02632,-0.16599 -0.03038,-0.16438 -0.03431,-0.16265 -0.03912,-0.16081 -0.03032,-0.11348 -0.0463,-0.15889 -0.0503,-0.15752 -0.05437,-0.15596 -0.0583,-0.15422 -0.0623,-0.15229 -0.06549,-0.15021 -0.06952,-0.14796", + "fill": { + "paint": "transparent" + }, + "id": "path8312", + "name": "path8312", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 65.878773,147.63197 0.373054,-0.014 0.376951,-0.0252 0.380562,-0.0366 0.383641,-0.0481 0.386267,-0.0596 0.388319,-0.0711 0.389883,-0.0827 0.39065,-0.0942 0.390859,-0.10566 0.390263,-0.11701 0.03206,-0.0102 0.388758,-0.1292 0.385447,-0.13986 0.382028,-0.15053 0.378364,-0.16114 0.354571,-0.16225 0.348526,-0.1704 0.363785,-0.19 0.356921,-0.19909 0.34952,-0.20778 0.341637,-0.2162 v -5.6e-4 l 0.332375,-0.22366 0.32302,-0.23079 0.313279,-0.23762 0.30321,-0.24413 0.293137,-0.25044 0.02872,-0.0257 0.280517,-0.25586 0.268855,-0.26044 0.257189,-0.26469 0.245362,-0.26867 0.233549,-0.27238 0.0551,-0.0668 0.217397,-0.27496 0.204544,-0.27678 0.191578,-0.27838 0.178897,-0.27974 0.166258,-0.28102 0.06316,-0.11313 0.148213,-0.28152 0.135261,-0.28122 0.122408,-0.28054 0.109538,-0.27944 0.09676,-0.27804", + "fill": { + "paint": "transparent" + }, + "id": "path8313", + "name": "path8313", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 77.980752,139.73459 0.03758,-0.11858 0.06951,-0.24183 0.05991,-0.24036 0.05031,-0.23854 0.04151,-0.23644 0.03191,-0.23407 0.02318,-0.23155 0.0096,-0.1484 0.008,-0.22913 v -0.22695 l -0.0096,-0.22432 -0.01839,-0.22126 -0.02719,-0.21786 -0.03511,-0.21409 -0.01519,-0.0784 -0.04717,-0.21066 -0.0559,-0.20766 -0.0639,-0.20425 -0.02632,-0.0763 -0.0759,-0.20007 -0.08389,-0.19642 -0.09171,-0.19235 -0.09995,-0.1887 -0.108193,-0.18529 -0.116156,-0.1815 -0.04551,-0.0672 -0.126792,-0.17546 -0.134787,-0.17136 -0.142377,-0.16685 -0.0551,-0.0609 -0.152446,-0.16017 -0.160913,-0.15627 -0.169057,-0.15211 -0.176971,-0.14751 -0.184641,-0.14256 -0.191917,-0.13726 -0.129271,-0.0867 -0.203017,-0.1276 -0.210768,-0.12228 -0.218442,-0.11685 -0.226026,-0.11113 -0.233455,-0.10528 -0.240811,-0.0992 -0.1244,-0.0477 -0.251352,-0.0897 -0.258074,-0.083 -0.264612,-0.0762 -0.271248,-0.0692 -0.277731,-0.0621 -0.284021,-0.0548 -0.08549,-0.0148 -0.292004,-0.0453 -0.29746,-0.0375 -0.302737,-0.0295 -0.307856,-0.0214 -0.312778,-0.0133 -0.317457,-0.005 -0.03292,-5e-5", + "fill": { + "paint": "transparent" + }, + "id": "path8314", + "name": "path8314", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 61.864239,151.62542 0.328183,0.16709 0.34335,0.15604 0.358282,0.14453 0.37266,0.13241 0.386412,0.11966 0.3992,0.10627 0.245482,0.0571 0.417335,0.0836 0.428785,0.069 0.440783,0.0543 0.09237,0.009 0.456095,0.036 0.465558,0.0201 0.474638,0.004 0.06017,-5.7e-4 0.484287,-0.0146 0.490584,-0.0314 0.496374,-0.0484 0.501744,-0.0655 0.506376,-0.0829 0.51038,-0.10028 0.05291,-0.0113 0.513845,-0.11967 0.513111,-0.13658 0.511779,-0.15352 0.509787,-0.17033 0.507162,-0.18708 0.48448,-0.19554 0.462845,-0.20262 0.491917,-0.23304 0.483227,-0.2475 0.473706,-0.26155 0.463712,-0.27522 0.452864,-0.28846 0.01201,-0.008 0.438871,-0.29995 0.424646,-0.31051 0.409799,-0.32044 0.394529,-0.32974 0.378791,-0.33856 0.362804,-0.34677 0.02639,-0.0262 0.343949,-0.35368 0.326144,-0.35953 0.308322,-0.36492 0.04237,-0.052 0.286033,-0.3681 0.266937,-0.37094 0.24832,-0.37392 0.108818,-0.17431 0.220908,-0.37709 0.201745,-0.37795 0.182649,-0.37782 0.163306,-0.3769 0.144136,-0.37524 0.125039,-0.37308", + "fill": { + "paint": "transparent" + }, + "id": "path8315", + "name": "path8315", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 87.79121,143.06944 0.12296,-0.35324 0.13933,-0.35503 0.1558,-0.35641 0.17234,-0.35736 0.18897,-0.35766 0.0918,-0.1634 0.21292,-0.35699 0.22914,-0.35532 0.24538,-0.35341 0.26174,-0.35127 0.27827,-0.34891 0.0852,-0.10243 0.2997,-0.34529 0.31479,-0.34042 0.32989,-0.33523 0.34492,-0.32963 0.35961,-0.32362 0.0551,-0.0477 0.37632,-0.3162 0.38926,-0.30798 0.40172,-0.29938 0.41395,-0.29043 0.42585,-0.28112 0.0224,-0.0141 0.43807,-0.27089 0.44775,-0.25988 0.45684,-0.24852 0.46548,-0.23679 0.46883,-0.22255 v -3.9e-4 l 0.47891,-0.21151 0.48321,-0.19779 0.48745,-0.18401 0.49138,-0.17024 0.49519,-0.15644 0.10619,-0.0317 0.49665,-0.13883 0.4967,-0.12421 0.49585,-0.10942 0.49415,-0.0947 0.49161,-0.0798 0.48817,-0.0651 0.48426,-0.0505 0.47977,-0.0358 0.4746,-0.0213 0.46907,-0.007", + "fill": { + "paint": "transparent" + }, + "id": "path8316", + "name": "path8316", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 103.39906,133.10969 0.0216,3e-5 0.33557,0.005 0.33173,0.0115 0.32766,0.0188 0.32318,0.0259 0.31863,0.033 0.31376,0.04 0.30871,0.0467 0.30361,0.0535 0.29825,0.0601 0.19591,0.0436 0.28868,0.0706 0.28282,0.0769 0.2771,0.083 0.27124,0.089 0.20213,0.0715 0.26048,0.099 0.25407,0.10462 0.24774,0.11002 0.24113,0.11523 0.20016,0.10219 0.22938,0.12487 0.22291,0.12982 0.21596,0.13457 0.20925,0.13919 0.18784,0.13296 0.19678,0.1483 0.19,0.15266 0.1832,0.15683 0.17593,0.16073 0.1662,0.16181 0.16298,0.16928 0.15605,0.17317 0.14899,0.1768 0.14183,0.1802 7e-5,1.2e-4 0.13527,0.18452 0.12863,0.18849 0.12153,0.19204 0.11441,0.19519 0.10691,0.1979", + "fill": { + "paint": "transparent" + }, + "id": "path8317", + "name": "path8317", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 112.87914,138.74512 0.0599,0.0539 0.0932,0.0859 0.0913,0.0871 0.0896,0.0882 0.0878,0.0893 0.0858,0.0905 0.084,0.0915 0.0821,0.0924 0.08,0.0933 0.0783,0.0942 0.0759,0.0952 0.0527,0.0679 0.0727,0.0971 0.0711,0.0984 0.0695,0.0993 0.0679,0.10042 0.0655,0.10136 0.0639,0.10227 0.0615,0.10312 0.0599,0.10391 0.0575,0.10467 0.0559,0.10536", + "fill": { + "paint": "transparent" + }, + "id": "path8318", + "name": "path8318", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 88.10424,148.67077 -0.0775,-0.15527 -0.0735,-0.1578 -0.0695,-0.16012 -0.0655,-0.16228 -0.0615,-0.16418 -0.0568,-0.16595 -0.052,-0.16744 -0.0439,-0.15443 -0.0431,-0.1698 -0.0391,-0.17183 -0.0342,-0.1738 -0.0303,-0.17565 -0.0256,-0.17734 -0.0208,-0.17891 -0.0168,-0.18035 -0.0104,-0.15583 -0.008,-0.18258 v -0.1842 -0.18579 l 0.008,-0.18718 0.0113,-0.18856 0.016,-0.18983 0.0208,-0.19093 0.0184,-0.13958 0.0295,-0.19256 0.0342,-0.19377 0.0391,-0.19488 0.0448,-0.19592 0.0496,-0.19683 0.0544,-0.19766 0.0592,-0.19834 0.0359,-0.11174", + "fill": { + "paint": "transparent" + }, + "id": "path8319", + "name": "path8319", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 111.56619,140.29194 -0.12047,-0.12177 -0.12481,-0.11973 -0.12894,-0.11752 -0.13303,-0.11527 -0.13711,-0.11284 -0.14086,-0.11027 -0.14462,-0.10753 -0.0883,-0.0631 -0.1502,-0.10289 -0.1543,-0.10028 -0.15811,-0.0976 -0.16211,-0.0949 -0.16586,-0.0921 -0.16979,-0.0891 -0.17345,-0.0862 -0.0822,-0.0391 -0.17873,-0.0817 -0.18249,-0.0784 -0.18607,-0.0754 -0.18983,-0.072 -0.19327,-0.0687 -0.19688,-0.0654 -0.2003,-0.0619 -0.0583,-0.0172 -0.2046,-0.0574 -0.20797,-0.0539 -0.2111,-0.0501 -0.21419,-0.0463 -0.21732,-0.0426 -0.2202,-0.0388 -0.22315,-0.0348 -0.0256,-0.004", + "fill": { + "paint": "transparent" + }, + "id": "path8320", + "name": "path8320", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 91.83694,144.35283 -0.01,0.0152 -0.0695,0.11297 -0.0679,0.11302 -0.0656,0.11315 -0.0639,0.11325 -0.04,0.0723 -0.0607,0.11329 -0.0583,0.11326 -0.0568,0.11323 -0.0551,0.11314 -0.0527,0.11301 -0.0511,0.11288 -0.0487,0.11268 -0.0472,0.1125 -0.0448,0.11225 -0.0431,0.112 -0.0407,0.11175 -0.0391,0.11148", + "fill": { + "paint": "transparent" + }, + "id": "path8321", + "name": "path8321", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 111.29807,139.23965 -0.10092,-0.15858 -0.10626,-0.15602 -0.11137,-0.15321 -0.11626,-0.15011 -0.0599,-0.0744 -0.12328,-0.14495 -0.12863,-0.14238 -0.13407,-0.13966 -0.13926,-0.13685 -0.0711,-0.0672 -0.14694,-0.13225 -0.15237,-0.12951 -0.15764,-0.12653 -0.16289,-0.12346 -0.16812,-0.12023 -0.17313,-0.11677 -0.17792,-0.11323 -0.18265,-0.10948 -0.14837,-0.0842 -0.1904,-0.10226 -0.19526,-0.0984 -0.1999,-0.0945 -0.2047,-0.0905 -0.20933,-0.0865 -0.21396,-0.0822 -0.21844,-0.0781 -0.22307,-0.0736 -0.13279,-0.0411 -0.22979,-0.0665 -0.2341,-0.062 -0.23872,-0.0573 -0.24281,-0.0527 -0.24727,-0.0479 -0.25128,-0.0429 -0.25543,-0.038 -0.25942,-0.033 -0.0767,-0.009", + "fill": { + "paint": "transparent" + }, + "id": "path8322", + "name": "path8322", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 102.65842,135.65189 -0.20022,0.0131 -0.20126,0.0159 -0.20247,0.0188 -0.20365,0.0216 -0.087,0.0101 -0.20533,0.0259 -0.20565,0.0287 -0.20622,0.0316 -0.20653,0.0344 -0.20677,0.0373 -0.2071,0.0403 -0.20709,0.0429 -0.20725,0.0459 -0.20718,0.0487 -0.20709,0.0514 -0.20685,0.0543 -0.20653,0.0571 -0.20614,0.0599 -0.0113,0.004", + "fill": { + "paint": "transparent" + }, + "id": "path8323", + "name": "path8323", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 91.10142,141.69791 -0.0592,0.0835 -0.0882,0.12757 -0.0858,0.1279 -0.0833,0.12828 -0.0809,0.12873 -0.016,0.0262 -0.0783,0.12903 -0.0751,0.12924 -0.0727,0.12939 -0.0703,0.12948 -0.0679,0.12952 -0.0656,0.1295 -0.0631,0.12943 -0.0607,0.12937 -0.0575,0.12922 -0.0551,0.12899 -0.0527,0.1288 -0.0503,0.12859 -0.0479,0.12826 -0.0455,0.12794", + "fill": { + "paint": "transparent" + }, + "id": "path8324", + "name": "path8324", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 111.42525,139.69779 -0.11121,-0.13606 -0.11602,-0.13414 -0.1208,-0.13206 -0.12551,-0.12984 -0.12992,-0.12742 -0.13438,-0.12481 -0.13855,-0.12203 -0.14262,-0.11902 -0.0224,-0.0184 -0.14709,-0.11541 -0.15164,-0.11267 -0.15595,-0.10991 -0.16043,-0.10702 -0.16483,-0.10406 -0.16906,-0.10101 -0.17314,-0.0978 -0.1773,-0.0945 v -5.7e-4 l -0.18119,-0.0911 -0.18537,-0.0879 -0.18952,-0.0845 -0.19351,-0.081 -0.19751,-0.0774 -0.2015,-0.0737 -0.20532,-0.07 -0.16931,-0.054 -0.21203,-0.0631 -0.21582,-0.0592 -0.21947,-0.0552 -0.223,-0.0511 -0.22666,-0.047 -0.23018,-0.043 -0.23346,-0.0386 -0.14109,-0.0209", + "fill": { + "paint": "transparent" + }, + "id": "path8325", + "name": "path8325", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 91.31993,143.24463 -0.0144,0.022 -0.0711,0.11442 -0.0695,0.11437 -0.0671,0.11433 -0.0655,0.11436 -0.0503,0.0904 -0.0615,0.11454 -0.0599,0.11462 -0.0575,0.11464 -0.0559,0.11464 -0.0535,0.11456 -0.052,0.11448 -0.0496,0.11437 -0.0479,0.11423 -0.0455,0.11404 -0.0439,0.11384 -0.0415,0.11364 -0.04,0.11338", + "fill": { + "paint": "transparent" + }, + "id": "path8326", + "name": "path8326", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 106.83702,138.67756 0.16555,0.0225 0.20957,0.032 0.20684,0.0356 0.20407,0.0391 0.20118,0.0424 0.19838,0.0459 0.19535,0.0492 0.18009,0.049 0.18936,0.0554 0.18632,0.0586 0.18304,0.0617 0.17993,0.0647 0.17664,0.0677 0.17338,0.0706 0.016,0.007 0.16978,0.0737 0.16643,0.0767 0.1629,0.0794 0.15948,0.0821 0.15603,0.0846 0.15246,0.0872 0.14891,0.0897 0.0327,0.0205 0.14502,0.0929 0.14166,0.0956 0.1383,0.0979 0.13455,0.10033 0.13102,0.10259 0.1272,0.10467 0.12344,0.1067", + "fill": { + "paint": "transparent" + }, + "id": "path8327", + "name": "path8327", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 92.30962,145.53414 v 0.002 l -0.0655,0.1093 -0.064,0.10915 -0.0615,0.10908 -0.0599,0.109 -0.0144,0.0264 -0.0575,0.1091 -0.0559,0.1091 -0.0544,0.10914 -0.0527,0.1091 -0.0503,0.10902 -0.0487,0.10893 -0.0472,0.10883 -0.0448,0.10867 -0.0431,0.1085 -0.0415,0.1083 -0.04,0.10809 -0.0376,0.10787", + "fill": { + "paint": "transparent" + }, + "id": "path8328", + "name": "path8328", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 91.47021,147.30305 -0.0176,0.0511 -0.0431,0.13234 -0.0407,0.13194 -0.0376,0.13153 -0.0351,0.13101 -0.0319,0.13054 -0.0295,0.12994 -0.0272,0.12939 -0.0248,0.12874 -0.0216,0.12809 -0.0192,0.12748 -0.0168,0.12674 -0.01,0.0836 -0.0128,0.12616 -0.01,0.12565 -0.008,0.12513 -0.008,0.12449 v 0.12382 0.12305 0.12223 l 0.008,0.12135 0.008,0.12045 0.01,0.11946 0.0121,0.11843", + "fill": { + "paint": "transparent" + }, + "id": "path8329", + "name": "path8329", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 96.43445,152.40154 -0.17554,-0.01 -0.2376,-0.0174 -0.23482,-0.0215 -0.23195,-0.0257 -0.22897,-0.0296 -0.22612,-0.0336 -0.22306,-0.0376 -0.19672,-0.0368 -0.21691,-0.0447 -0.21357,-0.0484 -0.2102,-0.0521 -0.20686,-0.0557 -0.20333,-0.0593 -0.20007,-0.0628 -0.0128,-0.005 -0.19615,-0.0663 -0.19247,-0.0697 -0.18887,-0.0731 -0.18505,-0.0761 -0.18136,-0.0794 -0.17745,-0.0824 -0.17378,-0.0855 -0.04,-0.0203 -0.16923,-0.0893 -0.16546,-0.0921 -0.16148,-0.095 -0.15747,-0.0976 -0.1534,-0.10027 -0.14925,-0.10274 -0.14501,-0.10516", + "fill": { + "paint": "transparent" + }, + "id": "path8330", + "name": "path8330", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 90.97942,150.62796 -0.008,-0.005 -0.16786,-0.1292 -0.1626,-0.13297 -0.15684,-0.1365 -0.15107,-0.13978 -0.14525,-0.14283 -0.0121,-0.0124 -0.13941,-0.1468 -0.13392,-0.15023 -0.12815,-0.15341 -0.12232,-0.15634 -0.11649,-0.15912 -0.0128,-0.0181 -0.11019,-0.16279 -0.10458,-0.16578 -0.0986,-0.16853 -0.0927,-0.17101 -0.0864,-0.17319 -0.0805,-0.17575 -0.0743,-0.17876 -0.0687,-0.18149 -0.0631,-0.18394 -0.0568,-0.18615 -0.008,-0.0224 -0.0496,-0.18821 -0.0439,-0.19102 -0.0376,-0.19361 -0.0312,-0.19594 -0.0256,-0.19805 v -0.0179 l -0.0184,-0.20001 -0.012,-0.20235 -0.008,-0.20447 v -0.20641 l 0.008,-0.20809 3.3e-4,-0.006 0.0144,-0.20963 0.0208,-0.2113 0.0272,-0.21285 0.0342,-0.21426 0.04,-0.2075 0.0479,-0.21642 0.0544,-0.21776 0.0615,-0.21897 0.0687,-0.21996 0.0663,-0.19535", + "fill": { + "paint": "transparent" + }, + "id": "path8331", + "name": "path8331", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 88.90114,143.23939 0.0703,-0.19094 0.0759,-0.19131 0.0808,-0.19164 0.0861,-0.19192 0.0914,-0.19212 0.0967,-0.19223 0.10203,-0.19229 0.1073,-0.19222 0.11274,-0.19206 0.11793,-0.19178 0.12336,-0.1914 0.12855,-0.19084 0.11368,-0.16205 0.13824,-0.18951 0.14325,-0.18843 0.14837,-0.18736 0.15348,-0.1862 0.15859,-0.185 0.16363,-0.18378 0.16883,-0.18241 0.17377,-0.18109 0.17905,-0.17961 0.184,-0.1781 0.18904,-0.17647 0.19414,-0.17481 0.0775,-0.0679", + "fill": { + "paint": "transparent" + }, + "id": "path8332", + "name": "path8332", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 98.4242,135.16389 0.0184,-0.005 0.23993,-0.0698 0.24024,-0.0661 0.2405,-0.0623 0.24073,-0.0586 0.24073,-0.0548 0.24057,-0.0511 0.24048,-0.0473 0.24033,-0.0434 0.24,-0.0397 0.23979,-0.0359 0.0759,-0.0106 0.23809,-0.0308 0.23682,-0.0268 0.23545,-0.0231 0.23402,-0.0192 0.23249,-0.0155 0.23083,-0.0117 0.2293,-0.008 0.22763,-0.005 0.22587,-5.6e-4 0.22403,0.003", + "fill": { + "paint": "transparent" + }, + "id": "path8333", + "name": "path8333", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 103.23639,134.48227 0.22548,0.007 0.30647,0.0154 0.30273,0.0222 0.29882,0.0292 0.29474,0.0359 0.23777,0.0343 0.28579,0.0477 0.28068,0.0539 0.27556,0.0602 0.27045,0.0663 0.25031,0.0681 0.2588,0.0776 0.25271,0.0831 0.24641,0.0884 0.2404,0.0937 0.0127,0.005 0.2345,0.0995 0.22858,0.10476 0.2226,0.10987 0.21652,0.11484 0.2102,0.11963 0.0288,0.0172 0.20335,0.12512 0.1971,0.12972 0.19072,0.13413 0.18408,0.13832 0.17744,0.14232 0.0391,0.033 0.16971,0.14759 0.1633,0.15155 0.15652,0.15527 0.14963,0.15873 0.14255,0.16191 0.0383,0.0453 0.13472,0.1672 0.12839,0.17104 0.12159,0.17455 0.11483,0.17775 0.10784,0.18066 0.10123,0.18415 0.0948,0.18788 0.0881,0.19128 0.081,0.19421 0.0208,0.0535 0.0719,0.19729", + "fill": { + "paint": "transparent" + }, + "id": "path8334", + "name": "path8334", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 111.29503,139.23761 0.0287,0.0863 0.028,0.0867 0.0263,0.0873 0.01,0.0318 0.0248,0.0879 0.0232,0.0884 0.0224,0.0891 0.0208,0.0895 0.0192,0.0901 0.0184,0.0906 0.0168,0.0909 0.0152,0.0914 0.0136,0.0916 0.0128,0.0919 4.9e-4,0.004", + "fill": { + "paint": "transparent" + }, + "id": "path8335", + "name": "path8335", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 90.37356,145.18544 -0.0487,0.14696 -0.0487,0.15668 -0.0448,0.15616 -0.0407,0.15553 -0.0376,0.15486 -0.0335,0.15409 -0.0294,0.15329 v 0.0103 l -0.0256,0.15258 -0.0224,0.15184 -0.0185,0.151 -0.0152,0.15013 -0.0112,0.14918 -0.008,0.14813 -0.008,0.14707 -4.1e-4,0.0276 -2.3e-4,0.14601 v 0.14501 l 0.008,0.14395 0.0103,0.14272 0.0137,0.14151 0.0168,0.14015 0.02,0.13882 0.008,0.0355 0.0248,0.13777 0.0279,0.13686 0.031,0.13569 0.0343,0.13448 0.0376,0.13309 0.0407,0.13161 0.0439,0.12994", + "fill": { + "paint": "transparent" + }, + "id": "path8336", + "name": "path8336", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 105.57896,150.05832 -0.29921,0.1698 -0.30337,0.16444 -0.30752,0.15895 -0.31135,0.15326 -0.31472,0.14744 -0.31807,0.14149 -0.16579,0.0709 -0.17585,0.0731 -0.32222,0.12818 -0.32382,0.12158 -0.32526,0.11502 -0.32679,0.10842 -0.32828,0.10182 -0.32966,0.0953 -0.11825,0.0325 -0.32989,0.0859 -0.32997,0.079 -0.32934,0.0721 -0.32869,0.0651 -0.32759,0.0582 -0.32629,0.0513 -0.32478,0.0443 -0.32278,0.0374 -0.32087,0.0305 -0.31879,0.0236 -0.31616,0.0168 -0.31367,0.01 -0.31087,0.003", + "fill": { + "paint": "transparent" + }, + "id": "path8337", + "name": "path8337", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 93.31888,151.52425 0.15826,0.0635 0.16092,0.0611 0.16364,0.0587 0.16641,0.0561 0.16915,0.0536 0.17169,0.051 0.17434,0.0483 0.17689,0.0457 0.17937,0.043 0.18185,0.0402 0.18415,0.0374 0.10787,0.0203 0.18784,0.0329 0.18984,0.03 0.19199,0.0271 0.19399,0.0241 0.19615,0.0209 0.19821,0.0179 0.20022,0.0148 0.20214,0.0117 0.20413,0.009 0.20598,0.005 0.20789,0.002 0.0431,7e-5", + "fill": { + "paint": "transparent" + }, + "id": "path8338", + "name": "path8338", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 97.53495,152.29836 0.29338,-0.003 0.29593,-0.009 0.29842,-0.0159 0.30058,-0.0224 0.30288,-0.0289 0.30465,-0.0355 0.30634,-0.042 0.30791,-0.0486 0.30913,-0.0552 0.31008,-0.0618 0.31087,-0.0685 0.3112,-0.0751 0.31136,-0.0815 0.13462,-0.0373 0.31097,-0.0908 0.30951,-0.097 0.30817,-0.10331 0.30673,-0.10956 0.30511,-0.1158 0.30362,-0.122 0.17664,-0.0742 0.16787,-0.0727 0.29921,-0.13504 0.29609,-0.14061 0.29267,-0.1461 0.28915,-0.15145 0.28507,-0.15662 0.28099,-0.16163", + "fill": { + "paint": "transparent" + }, + "id": "path8339", + "name": "path8339", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 105.5641,150.03637 0.0833,-0.0495 0.28404,-0.17345 0.279,-0.17837 0.2738,-0.1831 0.2683,-0.18766 0.26254,-0.19197 0.25663,-0.19611 0.25063,-0.20013 0.16979,-0.14074 0.23929,-0.20587 0.23257,-0.20913 0.22595,-0.21232 0.16115,-0.15737 0.21357,-0.21697 0.20637,-0.21947 0.19943,-0.22193 0.1232,-0.14269 0.18664,-0.22444 0.17873,-0.22578 0.17097,-0.22703 0.16316,-0.22817 0.15556,-0.22919 0.1478,-0.23015 0.14015,-0.23101 0.11728,-0.20461 0.12534,-0.23154 0.11746,-0.23147 0.10954,-0.23121 0.10162,-0.23076 0.0938,-0.23013 0.0861,-0.22937 0.0783,-0.2285", + "fill": { + "paint": "transparent" + }, + "id": "path8340", + "name": "path8340", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 89.82563,144.12668 -0.0137,0.0401 -0.0527,0.16264 -0.0487,0.16189 -0.0448,0.16102 -0.0407,0.16013 -0.0367,0.15916 -0.0327,0.15811 -0.0287,0.15706 -0.01,0.06 -0.0232,0.15637 -0.0192,0.15576 -0.0161,0.15502 -0.0121,0.15423 -0.008,0.15332 -0.008,0.15233 -4.9e-4,0.15128 v 0.0724 l 0.008,0.1499 0.009,0.14881 0.012,0.14766 0.0161,0.14635 0.0192,0.145 0.0232,0.14355 0.0263,0.14205 0.0176,0.0834 0.0319,0.14027 0.036,0.13896 0.0391,0.13748 0.0424,0.13584 0.0463,0.13409 0.0496,0.13221 0.0527,0.13017", + "fill": { + "paint": "transparent" + }, + "id": "path8341", + "name": "path8341", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 93.31895,151.52423 -0.0655,-0.0262 -0.15987,-0.0669 -0.15685,-0.0694 -0.15379,-0.0719 -0.15052,-0.0744 -0.1475,-0.0767 -0.14429,-0.079 -0.14094,-0.0814 -0.0767,-0.0458 -0.1363,-0.085 -0.1332,-0.0873 -0.13007,-0.0894 -0.12687,-0.0915 -0.12368,-0.0936 -0.12033,-0.0956 -0.11704,-0.0975 -0.0759,-0.0661 -0.11193,-0.10107 -0.10875,-0.1031 -0.10546,-0.10499 -0.10228,-0.10683 -0.0988,-0.10855 -0.0954,-0.11016 -0.092,-0.11174 -0.0639,-0.0811 -0.0868,-0.11535 -0.0837,-0.11724 -0.0805,-0.119 -0.0767,-0.12062 -0.0735,-0.1221 -0.0703,-0.12341 -0.0671,-0.1246", + "fill": { + "paint": "transparent" + }, + "id": "path8342", + "name": "path8342", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 111.26603,143.53631 0.0256,-0.0804 0.0424,-0.13858 0.0391,-0.13822 0.0367,-0.13782 0.0336,-0.1373 0.0312,-0.13677 0.0279,-0.13621 0.0256,-0.13558 0.0232,-0.13497 0.02,-0.13425 0.0176,-0.13355 0.0144,-0.13279 0.0103,-0.11417 0.01,-0.13204 0.008,-0.13152 0.008,-0.13092 v -0.13018 -0.12943 -0.12857 l -0.008,-0.12771 -0.009,-0.12668 -0.0112,-0.12567 -0.0136,-0.12461 -0.0168,-0.12347", + "fill": { + "paint": "transparent" + }, + "id": "path8343", + "name": "path8343", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 90.92181,146.24425 -0.028,0.0825 -0.0463,0.14379 -0.0431,0.14335 -0.04,0.14283 -0.0367,0.14224 -0.0335,0.14165 -0.0303,0.14098 -0.0272,0.14023 -0.024,0.13947 -0.0208,0.13869 -0.0176,0.13786 -0.0152,0.13698 -0.0121,0.13611 -0.008,0.12309 -0.008,0.13535 v 0.13482 l -4e-4,0.13415 v 0.13334 l 0.008,0.13252 0.008,0.13156 0.0113,0.13051 0.0145,0.12938 0.0168,0.12819 0.0193,0.12692 0.0224,0.12557 0.0248,0.1242", + "fill": { + "paint": "transparent" + }, + "id": "path8344", + "name": "path8344", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 89.47744,152.41813 -0.0544,-0.1067 -0.052,-0.10779 -0.0503,-0.10885 -0.0487,-0.10989 -0.0463,-0.11083 -0.0448,-0.11173 -0.0424,-0.11254 -0.0407,-0.11332 -0.0384,-0.11406 -0.0367,-0.11474 -0.0256,-0.0856 -0.0329,-0.11571 -0.0311,-0.1167 -0.0287,-0.11763 -0.0272,-0.11855 -0.0248,-0.11937 -0.0232,-0.12019 -0.0208,-0.12092 -0.0184,-0.12164 -0.0168,-0.12226 -0.0144,-0.12282 -0.009,-0.0832", + "fill": { + "paint": "transparent" + }, + "id": "path8345", + "name": "path8345", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 91.65087,146.82824 0.0551,-0.1073 0.0568,-0.10735 0.0551,-0.10063 0.0599,-0.10738 0.0615,-0.10734 0.0631,-0.10729 0.0648,-0.10719 0.0663,-0.10712 0.0679,-0.10699 0.0695,-0.10685 0.0711,-0.10669 0.052,-0.0759", + "fill": { + "paint": "transparent" + }, + "id": "path8346", + "name": "path8346", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 106.90996,138.78595 0.12984,0.01 0.13287,0.0116 0.13183,0.0129 v 9e-5 l 0.13111,0.0141 0.13023,0.0154 0.12944,0.0165 0.12847,0.0179 0.12767,0.019 0.1268,0.0202 0.12583,0.0215 0.12482,0.0226 0.12383,0.0239", + "fill": { + "paint": "transparent" + }, + "id": "path8347", + "name": "path8347", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 90.09767,148.94041 -0.0439,-0.12946 -0.0415,-0.13126 -0.0384,-0.1329 -0.0351,-0.13443 -0.0312,-0.1358 -0.028,-0.13703 -0.0248,-0.13814 -0.008,-0.0387 -0.0208,-0.1393 -0.0176,-0.14053 -0.0137,-0.14163 -0.0103,-0.14278 -0.008,-0.14379 v -0.14479 -0.14571 l 4.9e-4,-0.0306 0.008,-0.14673 0.008,-0.14802 0.0112,-0.14926 0.0152,-0.15046 0.0184,-0.15154 0.0224,-0.15259 0.0263,-0.15346 0.0296,-0.15431 0.0335,-0.15498 0.0367,-0.15559 0.0407,-0.15601 0.0448,-0.15635 0.0479,-0.15648 0.052,-0.15649 v -0.003", + "fill": { + "paint": "transparent" + }, + "id": "path8348", + "name": "path8348", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 98.60996,156.94232 -0.0391,-6e-5 -0.22636,-0.002 -0.22451,-0.005 -0.22274,-0.009 -0.22077,-0.0117 -0.21883,-0.0149 -0.21692,-0.0179 -0.21484,-0.021 -0.21292,-0.024 -0.21085,-0.0271 -0.20869,-0.0302 -0.0941,-0.0146 -0.20549,-0.0344 -0.20327,-0.0374 -0.20094,-0.0403 -0.19846,-0.043 -0.19608,-0.0456 -0.19357,-0.0485 -0.19096,-0.0513 -0.18839,-0.0539 -0.18593,-0.0565 -0.18312,-0.0591", + "fill": { + "paint": "transparent" + }, + "id": "path8349", + "name": "path8349", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 94.3529,156.295 -0.151,-0.0514 -0.21613,-0.0778 -0.21213,-0.0813 -0.2082,-0.0849 -0.20413,-0.0884 -0.19992,-0.0919 -0.19574,-0.0952 -0.19136,-0.0984 -0.16243,-0.088 -0.18383,-0.10467 -0.17977,-0.10784 -0.17546,-0.11095 -0.17114,-0.11391 -0.16674,-0.11679 -0.16219,-0.1196 -0.15771,-0.12231 v -5.7e-4 l -0.15374,-0.12537 -0.14948,-0.12826 -0.14517,-0.13102 -0.14078,-0.1337 -0.13638,-0.1362 -0.13175,-0.13858 -0.12712,-0.14086 -0.12248,-0.14301 -0.008,-0.01 -0.11816,-0.14619 -0.114,-0.14896 -0.10961,-0.15156 -0.1053,-0.15389 -0.10076,-0.15608 -0.096,-0.15802 -0.0912,-0.1598 -0.0864,-0.16129", + "fill": { + "paint": "transparent" + }, + "id": "path8350", + "name": "path8350", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 112.09392,142.86934 -0.0874,0.25503 -0.096,0.25604 -0.10483,0.25688 -0.1136,0.25754 -0.12264,0.25809 -0.13136,0.25837 -0.14037,0.25841 -0.13942,0.24193 -0.15749,0.25778 -0.16593,0.25679 -0.17465,0.25568 -0.18337,0.25448 -0.19207,0.25317 -0.20078,0.25176 -0.20966,0.25019 -0.149,0.17091 -0.22435,0.2472 -0.23227,0.2444 -0.24025,0.24151 -0.18687,0.18048 -0.25423,0.23609 -0.26174,0.23244 -0.26926,0.2287 -0.19718,0.16127 -0.28197,0.22203 -0.28866,0.21745 -0.29522,0.21273 -0.30161,0.20771 -0.30768,0.20254 -0.31343,0.19714 -0.31903,0.19154 -0.10818,0.0629", + "fill": { + "paint": "transparent" + }, + "id": "path8351", + "name": "path8351", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 105.64336,150.14856 -0.31071,0.17531 -0.31512,0.16973 -0.31926,0.16401 -0.32318,0.15812 -0.3267,0.1521 -0.32998,0.14592 -0.16651,0.0708 -0.17713,0.0731 -0.3342,0.13238 -0.33581,0.12551 -0.33741,0.11873 -0.33893,0.11192 -0.34043,0.10508 -0.3418,0.0982 -0.11121,0.0305 -0.34211,0.089 -0.34204,0.0817 -0.34148,0.0746 -0.34076,0.0674 -0.33956,0.0602 -0.33829,0.053 -0.33652,0.0459 -0.33476,0.0386 -0.3327,0.0315 -0.33022,0.0243 -0.32789,0.0173 -0.32518,0.0104 -0.32231,0.004", + "fill": { + "paint": "transparent" + }, + "id": "path8352", + "name": "path8352", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 90.08009,152.47057 0.0503,0.0861 0.052,0.0854 0.0535,0.0849 0.0551,0.0842 0.0568,0.0837 0.0575,0.083 0.0592,0.0822 0.0607,0.0815 0.0615,0.0807 0.0152,0.0197 0.0631,0.0797 0.0648,0.079 0.0663,0.0782 0.0679,0.0777 0.0687,0.0769 0.0703,0.0761 0.0719,0.0754 0.0727,0.0745 0.0743,0.0737 0.0152,0.0147", + "fill": { + "paint": "transparent" + }, + "id": "path8353", + "name": "path8353", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 91.23573,153.94654 0.17216,0.16217 0.17937,0.15844 0.18633,0.15441 0.19295,0.15012 0.11289,0.0834 0.20302,0.14273 0.20973,0.13814 0.21627,0.13346 0.22299,0.12861 0.11673,0.064 0.2325,0.12096 0.23914,0.11597 0.24592,0.11083 0.25231,0.1055 0.25871,0.10005 0.26502,0.0945 0.27116,0.0887 0.27693,0.0828 0.22036,0.0605 0.28683,0.0718 0.29202,0.0654 0.29713,0.059 0.30249,0.0523 0.30753,0.0458 0.31264,0.0389 0.31774,0.032 0.32286,0.025 0.15868,0.01 0.33006,0.0145 0.33373,0.008 0.33716,-1.4e-4 0.34044,-0.008 0.34372,-0.0151 0.34659,-0.0228 0.34939,-0.0303 0.35186,-0.038 0.0695,-0.008", + "fill": { + "paint": "transparent" + }, + "id": "path8354", + "name": "path8354", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 100.71094,156.44096 0.46779,-0.064 0.47012,-0.0773 0.47178,-0.0908 0.47307,-0.10415 0.47339,-0.11757 0.47331,-0.13091 0.47235,-0.14414 0.47075,-0.15723 0.4682,-0.1701 0.23809,-0.0918 0.46285,-0.18916 0.45709,-0.20098 0.45117,-0.21265 0.44503,-0.22424 0.30791,-0.1639 0.31408,-0.17484 0.42553,-0.2498 0.41619,-0.25949 0.40635,-0.26876 0.39605,-0.2777 0.30488,-0.22506 0.37504,-0.29133 0.36281,-0.29848 0.35052,-0.30527 0.33796,-0.31178 0.28722,-0.27978 0.31192,-0.32101 0.29786,-0.32536 0.28372,-0.32941 0.26965,-0.33313 v -0.005 l 0.25422,-0.33525 0.23906,-0.33702 0.22412,-0.33852 0.20915,-0.33988 0.1944,-0.34101 0.028,-0.052 0.17705,-0.34131 0.16195,-0.34097 0.14701,-0.34015 0.13199,-0.33886 0.11706,-0.33719", + "fill": { + "paint": "transparent" + }, + "id": "path8355", + "name": "path8355", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 114.34126,146.60436 0.0192,-0.0593 0.0511,-0.16656 0.0479,-0.16611 0.0439,-0.1656 0.0407,-0.16499 0.0367,-0.1643 0.0335,-0.16359 0.0303,-0.16281 0.0263,-0.16195 0.0232,-0.1611 0.0192,-0.16015 0.016,-0.15917 0.0128,-0.15819 0.008,-0.10668 0.008,-0.15738 v -0.15681 l 3.2e-4,-0.15603 v -0.15521 l -0.008,-0.1542 -0.01,-0.15313 -0.0127,-0.15196 -0.016,-0.15066 -0.0192,-0.14936 -0.0224,-0.14789 -0.0256,-0.14642 -0.0287,-0.14483", + "fill": { + "paint": "transparent" + }, + "id": "path8356", + "name": "path8356", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 91.26449,146.90608 0.0391,-0.11171 0.0407,-0.11192 0.0431,-0.11216 0.0448,-0.11234 0.012,-0.0284 0.0472,-0.11264 0.0496,-0.11281 0.0511,-0.11292 0.0535,-0.11305 0.0551,-0.1131 0.0575,-0.11319 0.0592,-0.11321 0.0615,-0.11321 0.0631,-0.11319 0.0647,-0.11312 0.0671,-0.11304 0.0687,-0.11287 0.0367,-0.0589", + "fill": { + "paint": "transparent" + }, + "id": "path8357", + "name": "path8357", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 106.76759,138.53657 0.14318,0.0215 0.21285,0.0355 0.21036,0.0391 0.20782,0.0428 0.20509,0.0462 0.20222,0.0496 0.19925,0.053 0.19607,0.0563 0.19304,0.0595 0.18968,0.0627 0.1864,0.0657 0.18296,0.0688 0.17961,0.0717 0.17609,0.0747 0.0128,0.005 0.17242,0.0778 0.16914,0.0807 0.16555,0.0835 0.16219,0.0862 0.15876,0.0889 0.15515,0.0916 0.15173,0.0941 0.0287,0.0184 0.14789,0.0975 0.14437,0.10004 0.14078,0.10251 0.13719,0.10481 0.13343,0.10708 0.12951,0.10919 0.12559,0.11119", + "fill": { + "paint": "transparent" + }, + "id": "path8358", + "name": "path8358", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 90.16782,144.78846 0.0407,-0.11576 0.0424,-0.11606 0.0448,-0.11629 0.0472,-0.11658 0.0192,-0.0471 0.0496,-0.11694 0.052,-0.11711 0.0544,-0.11725 0.0559,-0.11735 0.0583,-0.11738 0.0607,-0.11746 0.0623,-0.11746 0.0647,-0.11741 0.0664,-0.11739 0.0687,-0.11731 0.0711,-0.11714 0.0727,-0.11699 0.0703,-0.1095", + "fill": { + "paint": "transparent" + }, + "id": "path8359", + "name": "path8359", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 105.57337,136.40529 0.19735,0.0286 0.23889,0.0391 0.23546,0.0436 0.23178,0.0479 0.22834,0.0523 0.22452,0.0566 0.22082,0.0608 0.21701,0.0648 0.009,0.003 0.213,0.0691 0.20885,0.073 0.20485,0.0769 0.20062,0.0807 0.19638,0.0843 0.19217,0.0879 0.18783,0.0914 0.18345,0.0949 0.0472,0.0252 0.17818,0.0992 0.17392,0.10264 0.16946,0.1059 0.16508,0.10899 0.16035,0.11205 0.15572,0.11497 0.15108,0.1178 0.14638,0.12054 0.0575,0.0494 0.14061,0.1252 0.13653,0.1283 0.13192,0.13116 0.12751,0.13385 0.12264,0.13635 0.11794,0.13861 0.1129,0.14068 0.10778,0.1426", + "fill": { + "paint": "transparent" + }, + "id": "path8360", + "name": "path8360", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 93.31872,151.52418 0.14397,0.0631 0.14669,0.0609 0.14949,0.0586 0.15244,0.0564 0.15508,0.0541 0.15804,0.0516 0.16059,0.0493 0.16338,0.0469 0.16611,0.0443 0.16874,0.0418 0.17123,0.0392 0.1657,0.0348 0.17609,0.0339 0.17834,0.0311 0.18063,0.0284 0.18289,0.0255 0.1852,0.0227 0.18736,0.0198 0.18975,0.0168 0.192,0.0139 0.19423,0.0109 0.19646,0.008 0.19879,0.005 0.0964,0.002", + "fill": { + "paint": "transparent" + }, + "id": "path8361", + "name": "path8361", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 97.53399,152.34281 0.28851,-0.004 0.2917,-0.0102 0.29475,-0.0166 0.29776,-0.0231 0.30082,-0.0298 0.30345,-0.0364 0.23402,-0.0325 0.30808,-0.0483 0.30929,-0.055 0.31031,-0.0615 0.31136,-0.0682 0.31208,-0.075 0.31264,-0.0817 0.31343,-0.0884 0.3136,-0.095 0.31399,-0.10172 0.27412,-0.0943 0.31384,-0.11436 0.31255,-0.12059 0.31072,-0.12684 0.30888,-0.13298 0.30681,-0.13909 0.30449,-0.14507 0.30193,-0.15101 0.29937,-0.15686 0.29634,-0.16256 0.20013,-0.11402", + "fill": { + "paint": "transparent" + }, + "id": "path8362", + "name": "path8362", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 89.61949,143.72965 0.0487,-0.13764 0.0511,-0.13789 0.0544,-0.1381 0.0575,-0.13836 0.0599,-0.13853 0.009,-0.0195 0.0639,-0.13878 0.0663,-0.13895 0.0695,-0.13903 0.0727,-0.13912 0.0751,-0.13917 0.0783,-0.13917 0.0814,-0.13911 0.0844,-0.13903 0.0873,-0.13891 0.0904,-0.13867 0.0932,-0.13845 0.0962,-0.13816 0.0991,-0.13771 0.10203,-0.13734 0.10482,-0.13678 v -0.002", + "fill": { + "paint": "transparent" + }, + "id": "path8363", + "name": "path8363", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 98.81115,135.91022 0.12479,-0.0371 0.21685,-0.062 0.21715,-0.059 0.21749,-0.0558 0.21779,-0.0528 0.20213,-0.0462 0.21772,-0.0467 0.21741,-0.0435 0.21716,-0.0403 0.21676,-0.0371 0.21612,-0.0339 0.21564,-0.0308 0.21485,-0.0276 0.2142,-0.0243 0.21324,-0.0212 0.21237,-0.0181 0.21141,-0.0149 0.21028,-0.0118 0.20917,-0.009", + "fill": { + "paint": "transparent" + }, + "id": "path8364", + "name": "path8364", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 104.32123,135.27115 0.16923,0.0145 0.27221,0.0282 0.26837,0.0336 0.26453,0.0392 0.26039,0.0446 0.2563,0.05 0.25208,0.0552 0.24761,0.0603 0.24336,0.0654 0.22412,0.0658 0.23385,0.0747 0.22899,0.0795 0.22394,0.084 0.21884,0.0885 0.21372,0.0928 0.20854,0.0971 0.20333,0.10133 0.19807,0.10548 0.0376,0.0206 0.19271,0.11074 0.18783,0.11493 0.18273,0.11893 0.17753,0.12273 0.17193,0.12635 0.16643,0.12974 0.16069,0.13299 0.15483,0.13608 0.14877,0.13893 0.0981,0.0964 0.14029,0.14503 0.13487,0.14843 0.12951,0.15168 0.12385,0.15469 0.0834,0.10995 0.11473,0.16009 0.10897,0.16288 0.10315,0.16533 0.0972,0.16749", + "fill": { + "paint": "transparent" + }, + "id": "path8365", + "name": "path8365", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 90.9365,150.02461 -0.0144,-0.10352 -0.0128,-0.10435 -0.0112,-0.10508 -0.009,-0.10583 -0.008,-0.10657 -0.008,-0.10717 v -0.10777 -0.10833 l 5e-4,-0.10885 v -0.10929 -0.0601 l 0.008,-0.10988 0.008,-0.1105 0.01,-0.11111 0.0112,-0.11168 0.0136,-0.11224 0.0152,-0.11271 0.0176,-0.11323 0.0192,-0.11366 0.0216,-0.11411 0.0232,-0.11447 0.009,-0.0419", + "fill": { + "paint": "transparent" + }, + "id": "path8366", + "name": "path8366", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 96.88115,152.57694 -0.10482,-3.7e-4 -0.25719,-0.004 -0.25479,-0.008 -0.25224,-0.0129 -0.24967,-0.0172 -0.24704,-0.0215 -0.24433,-0.0259 -0.13095,-0.0156 -0.23961,-0.0323 -0.23658,-0.0363 -0.23321,-0.0404 -0.23018,-0.0444 -0.227,-0.0483 -0.2237,-0.0523 -0.15277,-0.0384 -0.21763,-0.0586 -0.21412,-0.0622 -0.21038,-0.0658 -0.20677,-0.0694 -0.20301,-0.0728 -0.19927,-0.0763 -0.16387,-0.0664 -0.19263,-0.0825 -0.18888,-0.0859 -0.18487,-0.0891 -0.18097,-0.0921 -0.17682,-0.095 -0.17274,-0.0981", + "fill": { + "paint": "transparent" + }, + "id": "path8367", + "name": "path8367", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 91.08511,151.16507 -0.0463,-0.0271 -0.20972,-0.12818 -0.20366,-0.13279 -0.19727,-0.13724 -0.19079,-0.14139 -0.18408,-0.14535 -0.052,-0.0428 -0.17617,-0.15097 -0.16987,-0.15508 -0.16338,-0.15892 -0.1566,-0.16256 -0.14988,-0.16595 -0.0479,-0.0554 -0.14165,-0.17139 -0.13519,-0.17514 -0.12856,-0.17863 -0.12183,-0.18171 -0.11482,-0.18459 -0.10826,-0.18811 -0.10186,-0.19177 -0.0951,-0.19516 -0.0884,-0.19821 -0.0279,-0.0669 -0.0791,-0.20163 -0.0719,-0.20402 -0.0655,-0.20734 -0.0583,-0.21043 -0.0511,-0.21316 -0.0439,-0.21561 -0.0129,-0.0693 -0.0343,-0.21831 -0.027,-0.22119 -0.02,-0.22388 -0.0128,-0.22629 -0.008,-0.22842 -1.6e-4,-0.0613 v -0.23068 l 0.0112,-0.23296 0.0192,-0.23514 0.0271,-0.23712 0.0343,-0.23885 0.008,-0.0451 0.0439,-0.24064 0.052,-0.24235 0.0599,-0.24389 0.0679,-0.24513 0.0759,-0.24623 0.008,-0.0217", + "fill": { + "paint": "transparent" + }, + "id": "path8368", + "name": "path8368", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 88.13085,142.86934 -0.008,0.0188 -0.0751,0.24318 -0.0671,0.24211 -0.0592,0.24082 -0.0511,0.23935 -0.0431,0.23769 -0.008,0.0419 -0.0342,0.23592 -0.0272,0.2342 -0.0192,0.23227 -0.0121,0.23015 -0.008,0.22787 1.7e-4,0.0579 0.008,0.22567 0.0129,0.22358 0.0192,0.22122 0.0264,0.21856 0.0335,0.21575 0.0121,0.0659 0.0431,0.21309 0.0503,0.21069 0.0568,0.208 0.0639,0.20498 0.0703,0.20168 0.0775,0.19938 0.0263,0.0638 0.0866,0.19599 0.0934,0.193 0.0999,0.1897 0.10627,0.18607 0.11265,0.18263 0.11961,0.17981 0.12624,0.17673 0.13286,0.17334 0.13919,0.16964 0.0455,0.053 0.14718,0.16432 0.15387,0.161 0.16052,0.15741 0.1669,0.15365 0.17313,0.14961 0.0496,0.041 0.1809,0.14412 0.18751,0.14023 0.19391,0.13615 0.20014,0.13177 0.20621,0.12724 0.0431,0.0257", + "fill": { + "paint": "transparent" + }, + "id": "path8369", + "name": "path8369", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 91.14863,151.05563 0.16315,0.0936 0.16707,0.091 0.17082,0.0883 0.17465,0.0857 0.17833,0.0829 0.18209,0.08 0.1856,0.077 0.18936,0.0739 0.1927,0.0708 0.19623,0.0676 0.19943,0.0644 0.20269,0.0611 0.20567,0.0576 0.0216,0.006 0.20884,0.0537 0.21189,0.0503 0.21484,0.0467 0.2178,0.0431 0.22068,0.0394 0.22363,0.0357 0.22659,0.032 0.22946,0.0283 0.23225,0.0243 0.23506,0.0205 0.23786,0.0166 0.2404,0.0126 0.14654,0.006", + "fill": { + "paint": "transparent" + }, + "id": "path8370", + "name": "path8370", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 97.10878,152.47061 0.21892,-0.005 0.22035,-0.008 0.22148,-0.0109 0.22284,-0.0141 0.14564,-0.0109 0.22499,-0.0195 0.22587,-0.0229 0.22691,-0.0262 0.22762,-0.0295 0.22827,-0.0328 0.22914,-0.0361 0.2297,-0.0395 0.23003,-0.0429 0.23058,-0.0462 0.23099,-0.0494 0.23098,-0.0527 0.2313,-0.0561 0.23114,-0.0594 0.16322,-0.0439", + "fill": { + "paint": "transparent" + }, + "id": "path8371", + "name": "path8371", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 105.586,150.06791 0.10675,-0.0621 0.31534,-0.18947 0.31001,-0.19502 0.30425,-0.20034 0.29816,-0.2055 0.29194,-0.2104 0.28548,-0.21509 0.27884,-0.21962 0.19488,-0.15942 0.26613,-0.22622 0.25886,-0.22991 0.25127,-0.23348 0.18473,-0.17841 0.23761,-0.23884 0.22972,-0.24172 0.22178,-0.24449 0.14709,-0.16877 0.20726,-0.24745 0.19854,-0.24899 0.18991,-0.25039 0.18128,-0.25169 0.17274,-0.2529 0.16412,-0.25393 0.15563,-0.25497 0.13783,-0.23891 0.1387,-0.25558 0.12999,-0.25554 0.12128,-0.25522 0.11234,-0.25473 0.10363,-0.25405 0.095,-0.2532 0.0864,-0.25225", + "fill": { + "paint": "transparent" + }, + "id": "path8372", + "name": "path8372", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 111.96353,142.86934 0.0455,-0.14273 0.0848,-0.29385 0.0735,-0.29224 0.0615,-0.29019 0.0503,-0.28769 0.0391,-0.28493 0.0279,-0.28178 0.012,-0.18352 0.01,-0.27825 v -0.27535 l -0.0121,-0.27204 -0.0224,-0.26827 -0.0327,-0.26417 -0.0431,-0.2597 -0.0391,-0.19111 -0.0615,-0.25533 -0.0719,-0.25192 -0.0822,-0.24789 -0.092,-0.24327 -0.10164,-0.23815 -0.1109,-0.23249 -0.12088,-0.22808 -0.13103,-0.22463 -0.14133,-0.22064 -0.15117,-0.21616 -0.16075,-0.21105 -0.17002,-0.2055 -0.13224,-0.14908 -0.18496,-0.19438 -0.19511,-0.18962 -0.20493,-0.18445 -0.21452,-0.17891 -0.22404,-0.17302 -0.23297,-0.1667 -0.1598,-0.10712 -0.24712,-0.15521 -0.25655,-0.1488 -0.26581,-0.14211 -0.27493,-0.13524 -0.28404,-0.12805 -0.29281,-0.12054 -0.14949,-0.0574 -0.30529,-0.10889 -0.31343,-0.10078 -0.32159,-0.0925 -0.32942,-0.0841 -0.33747,-0.0756 -0.34524,-0.0667 -0.10466,-0.0181 -0.35499,-0.0548 -0.3617,-0.0455 -0.36792,-0.0359 -0.37423,-0.026 -0.38023,-0.0161 -0.38582,-0.006 -0.04,-6e-5", + "fill": { + "paint": "transparent" + }, + "id": "path8373", + "name": "path8373", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 103.17895,133.26682 -0.45222,0.007 -0.45765,0.0206 -0.46245,0.0346 -0.46691,0.0486 -0.47075,0.0627 -0.47387,0.077 -0.47651,0.0913 -0.4781,0.10549 -0.47882,0.11976 -0.4789,0.1339 -0.10243,0.0305 -0.47738,0.15082 -0.47379,0.16415 -0.46988,0.17743 -0.46595,0.19066 -0.46173,0.2039 v 3.9e-4 l -0.45189,0.21455 -0.44878,0.22824 -0.4404,0.23963 -0.43184,0.25059 -0.42225,0.26119 -0.0216,0.0137 -0.41059,0.27106 -0.39909,0.28003 -0.38726,0.28865 -0.37519,0.29688 -0.3629,0.30483 -0.0527,0.046 -0.34675,0.31201 -0.33245,0.3178 -0.31807,0.32321 -0.30352,0.32821 -0.289,0.33295 -0.0821,0.0988 -0.26829,0.33635 -0.2524,0.33872 -0.23658,0.34073 -0.22083,0.34254 -0.20534,0.3442 -0.0885,0.15756 -0.18216,0.34484 -0.16618,0.34449 -0.1502,0.34365 -0.13432,0.34232 -0.11856,0.34056", + "fill": { + "paint": "transparent" + }, + "id": "path8374", + "name": "path8374", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 90.71616,145.84728 0.0391,-0.11174 0.0407,-0.11191 0.0431,-0.11214 0.0448,-0.11236 0.0121,-0.0284 0.0472,-0.11262 0.0496,-0.11282 0.0511,-0.11293 0.0535,-0.11303 0.0551,-0.11312 0.0575,-0.11317 0.0592,-0.1132 0.0615,-0.11321 0.0631,-0.11318 0.0647,-0.11313 0.0671,-0.113 0.0687,-0.11288 0.0367,-0.0588", + "fill": { + "paint": "transparent" + }, + "id": "path8375", + "name": "path8375", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 106.21646,137.47736 0.0671,0.01 0.22699,0.0364 0.22404,0.0404 0.22066,0.0443 0.21756,0.0483 0.21413,0.0521 0.21084,0.0559 0.20741,0.0595 0.0988,0.0302 0.20222,0.065 0.19853,0.0685 0.19488,0.0719 0.19119,0.0754 0.18744,0.0787 0.18368,0.082 0.17969,0.0851 0.11816,0.0588 0.17347,0.0904 0.16954,0.0936 0.16562,0.0964 0.16154,0.0994 0.15741,0.10217 0.15348,0.10489 0.14909,0.10756 0.11752,0.0888 0.14262,0.11294 0.13853,0.11567 0.13463,0.11827 0.13048,0.1207 0.12615,0.12299 0.12177,0.12513 0.1172,0.12712", + "fill": { + "paint": "transparent" + }, + "id": "path8376", + "name": "path8376", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 88.00045,142.86934 0.0791,-0.23244 0.0865,-0.23327 0.0938,-0.23403 0.10115,-0.23463 0.10843,-0.23508 0.11584,-0.23537 0.12321,-0.23545 0.04,-0.0732 0.13279,-0.23527 0.13998,-0.23475 0.14725,-0.23416 0.15453,-0.23354 0.16194,-0.2328 0.16922,-0.23204 0.17666,-0.23109 0.02,-0.0258 0.18487,-0.23002 0.19183,-0.22815 0.19863,-0.22626 0.20549,-0.22422 0.21229,-0.2221 0.21915,-0.21984 0.21061,-0.20312 0.23219,-0.21517 0.23825,-0.21213 0.24448,-0.20892 0.25048,-0.20562 0.25638,-0.20213 0.26215,-0.1985 0.21436,-0.15651", + "fill": { + "paint": "transparent" + }, + "id": "path8377", + "name": "path8377", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 97.9775,134.02111 0.01,-0.003 0.25982,-0.0823 0.25998,-0.0781 0.2603,-0.074 0.26063,-0.0698 0.26094,-0.0658 0.0997,-0.024 0.26087,-0.0601 0.26062,-0.0559 0.26023,-0.0518 0.25958,-0.0475 0.25887,-0.0434 0.25815,-0.0391 0.2571,-0.0349 0.25615,-0.0308 0.25479,-0.0266 0.25359,-0.0224 0.25216,-0.0183 0.25072,-0.0141 0.24912,-0.01 0.24743,-0.006 0.24569,-0.002", + "fill": { + "paint": "transparent" + }, + "id": "path8378", + "name": "path8378", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 112.5105,143.06944 -0.12303,0.35323 -0.13936,0.35502 -0.15571,0.35643 -0.1725,0.35734 -0.18879,0.35766 -0.0919,0.16339 -0.21301,0.35701 -0.22898,0.3553 -0.24536,0.35344 -0.26182,0.35128 -0.2782,0.34888 -0.0853,0.10244 -0.29976,0.34529 -0.31481,0.34043 -0.32981,0.33518 -0.34491,0.32965 -0.35953,0.32364 -0.0551,0.0478 -0.3764,0.31617 -0.38911,0.30797 -0.40171,0.2994 -0.41402,0.29044 -0.42586,0.28109 -0.0224,0.0141 -0.438,0.27088 -0.44766,0.25989 -0.45694,0.24852 -0.46539,0.23676 -0.46883,0.22256 v 4.1e-4 l -0.47899,0.21151 -0.48329,0.19776 -0.48737,0.18403 -0.49129,0.17025 -0.4952,0.15644 -0.10634,0.0317 -0.49656,0.13885 -0.49672,0.1242 -0.49584,0.10941 -0.49416,0.0947 -0.49153,0.0798 -0.48825,0.0651 -0.48433,0.0504 -0.4797,0.0359 -0.47459,0.0213 -0.46908,0.007", + "fill": { + "paint": "transparent" + }, + "id": "path8379", + "name": "path8379", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 96.90257,153.02917 -0.0599,-1.2e-4 -0.25336,-0.003 -0.25095,-0.008 -0.24831,-0.0114 -0.24577,-0.0154 -0.24304,-0.0195 -0.24033,-0.0234 -0.23746,-0.0275 -0.23482,-0.0314 -0.23202,-0.0352 -0.22906,-0.039 -0.22627,-0.0428 -0.22346,-0.0467 -0.15637,-0.0352 -0.21836,-0.0528 -0.21516,-0.0564 -0.21188,-0.0599 -0.20862,-0.0633 -0.20508,-0.0667 -0.20167,-0.07 -0.19798,-0.0732 -0.19423,-0.0763 -0.19072,-0.0795 -0.18687,-0.0824 -0.18321,-0.0855 -0.17937,-0.0883", + "fill": { + "paint": "transparent" + }, + "id": "path8380", + "name": "path8380", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 91.42844,151.83733 -0.14942,-0.0773 -0.15859,-0.0859 -0.15556,-0.0884 -0.15244,-0.0906 -0.14925,-0.093 -0.14598,-0.0952 -0.14261,-0.0972 -0.008,-0.003 -0.13949,-0.0996 -0.13647,-0.10184 -0.13318,-0.10398 -0.12999,-0.10603 -0.12672,-0.10803 -0.12336,-0.10993 -0.12001,-0.11178 -0.0128,-0.0125 -0.11657,-0.11408 -0.11339,-0.11615 -0.11017,-0.11806 -0.10691,-0.11988 -0.10353,-0.12163 -0.10011,-0.12327 -0.0966,-0.12482 -0.0137,-0.0181 -0.0932,-0.12716 -0.09,-0.12913 -0.0867,-0.13092 -0.0834,-0.13261 -0.0799,-0.13409 -0.0767,-0.13547 -0.0727,-0.13675", + "fill": { + "paint": "transparent" + }, + "id": "path8381", + "name": "path8381", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 112.19739,137.4681 0.0775,0.15528 0.0735,0.15778 0.0695,0.16012 0.0655,0.16227 0.0607,0.16421 0.0568,0.16593 0.052,0.16745 0.0439,0.15441 0.0431,0.16982 0.0391,0.17182 0.0343,0.17382 0.0303,0.17562 0.0256,0.17737 0.0208,0.1789 0.0168,0.18035 0.0103,0.1558 0.008,0.18258 v 0.18422 0.18575 l -0.008,0.18723 -0.0112,0.18858 -0.016,0.1898 -0.0208,0.19093 -0.0184,0.13959 -0.0296,0.19257 -0.0343,0.19376 -0.0391,0.19488 -0.0439,0.19591 -0.0496,0.19684 -0.0544,0.19766 -0.0599,0.19831 -0.0351,0.11178", + "fill": { + "paint": "transparent" + }, + "id": "path8382", + "name": "path8382", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 114.48579,140.7906 0.0821,0.16401 0.0775,0.16671 0.0735,0.16925 0.0687,0.17153 0.0639,0.17368 0.0592,0.17554 0.0544,0.17717 0.0496,0.1786 v 0.008 l 0.0448,0.1798 0.04,0.18202 0.0351,0.18411 0.0303,0.18608 0.0256,0.18793 0.0208,0.1896 0.0152,0.19113 0.0103,0.18875 0.008,0.19365 4.9e-4,0.19538 -0.008,0.19702 -0.01,0.19856 -0.0144,0.20001 -0.02,0.20133 -0.0256,0.20249 -0.0255,0.17096 -0.0351,0.20429 -0.04,0.20554 -0.0455,0.20669 -0.0511,0.20776 -0.0568,0.20865 -0.0624,0.20952 -0.0679,0.21018 -0.0479,0.13958", + "fill": { + "paint": "transparent" + }, + "id": "path8383", + "name": "path8383", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 114.6932,146.94297 -0.13198,0.34084 -0.14654,0.34194 -0.16131,0.34282 -0.17609,0.3433 -0.19088,0.34343 -0.20572,0.34316 -0.22045,0.34235 -0.23514,0.34098 -0.24966,0.33896 -0.18881,0.24289 -0.27389,0.33386 -0.28722,0.32974 -0.30098,0.3257 -0.31495,0.32174 -0.22906,0.22309 -0.3394,0.31503 -0.35162,0.30874 -0.3637,0.30213 -0.37527,0.29505 -0.23003,0.17294 -0.39333,0.28291 -0.40364,0.2745 -0.41362,0.26572 -0.42331,0.25664 -0.23504,0.13621 -0.43737,0.24196 -0.44421,0.23108 -0.45086,0.22009 -0.45733,0.20896 -0.2377,0.10318 -0.0463,0.0198 -0.46556,0.19011 -0.46922,0.17788 -0.47212,0.16541 -0.47434,0.15277 -0.47579,0.13998 -0.47666,0.12705 -0.47675,0.1141 -0.47634,0.10098 -0.47523,0.088", + "fill": { + "paint": "transparent" + }, + "id": "path8384", + "name": "path8384", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 101.51541,156.68897 -0.14229,0.0238 -0.19775,0.0313 -0.19726,0.0289 -0.19679,0.0266 -0.0575,0.008 -0.19598,0.0236 -0.1955,0.0213 -0.19471,0.019 -0.194,0.0168 -0.19318,0.0145 -0.19248,0.0122 -0.19151,0.01 -0.1907,0.008 -0.18969,0.005 -0.18871,0.003 -0.18776,5.7e-4", + "fill": { + "paint": "transparent" + }, + "id": "path8385", + "name": "path8385", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 90.5093,149.55586 -0.0319,-0.12676 -0.0287,-0.12825 -0.0256,-0.1296 -0.0232,-0.13082 -0.02,-0.13199 -0.0168,-0.13298 -0.0113,-0.10478 -0.0112,-0.13448 -0.008,-0.13548 -0.008,-0.13644 v -0.13738 l 5e-4,-0.13828 v -0.13913 l 0.008,-0.0997 0.01,-0.14047 0.0128,-0.14152 0.016,-0.14255 0.0192,-0.14351 0.0224,-0.14441 0.0256,-0.14524 0.0287,-0.146 0.0319,-0.14659 0.0359,-0.1472 0.0391,-0.14762 0.0424,-0.14796 0.0455,-0.14817 0.0487,-0.14828 0.008,-0.0129", + "fill": { + "paint": "transparent" + }, + "id": "path8386", + "name": "path8386", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 103.21322,133.16175 0.27101,0.002 0.37064,0.0115 0.36521,0.0207 0.35962,0.03 0.3537,0.0389 0.34796,0.0478 0.30248,0.0495 0.33493,0.0637 0.32774,0.0719 0.32054,0.08 0.31328,0.088 0.30601,0.0957 0.0176,0.006 0.29784,0.10363 0.28996,0.11089 0.28188,0.11794 0.27372,0.12477 0.26517,0.13137 0.25679,0.13781 0.0535,0.0302 0.24712,0.14582 0.23905,0.15211 0.23042,0.15805 0.22164,0.16366 0.21277,0.16902 0.20349,0.17411 0.0623,0.0563 0.19312,0.18206 0.1848,0.18753 0.17609,0.19268 0.16689,0.19732 0.15781,0.20159 0.14829,0.20542 0.13982,0.2107 0.13158,0.21614 0.1228,0.22107 0.04,0.0764 0.11059,0.22676 0.10122,0.2303 0.0915,0.2333 0.0821,0.23644 0.0727,0.24108 0.0639,0.24544 0.0544,0.24928 0.0448,0.25275 0.0351,0.25565 0.009,0.0817 0.0224,0.2587 0.012,0.26258 v 0.26606 l -0.008,0.26916 -0.0176,0.27179 -0.0279,0.27382 -0.008,0.0593", + "fill": { + "paint": "transparent" + }, + "id": "path8387", + "name": "path8387", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 112.44123,141.34784 -0.0144,0.10351 -0.0152,0.10387 -0.0168,0.10422 -0.012,0.0668 -0.0192,0.10478 -0.0208,0.1051 -0.0224,0.10549 -0.024,0.10574 -0.0256,0.10603 -0.0272,0.10631 -0.0287,0.10651 -0.0303,0.10672 -0.0312,0.1069 -0.0328,0.10703 -0.0263,0.0825", + "fill": { + "paint": "transparent" + }, + "id": "path8388", + "name": "path8388", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 89.84265,148.55679 -0.0663,-0.13186 -0.0623,-0.13402 -0.0592,-0.1361 -0.0551,-0.13795 -0.052,-0.1397 -0.0479,-0.14121 -0.0439,-0.14262 -0.04,-0.14376 -9e-5,-3.1e-4 -0.036,-0.14475 -0.0327,-0.14651 -0.0287,-0.14821 -0.0247,-0.14979 -0.0208,-0.15124 -0.0168,-0.15261 -0.0127,-0.15385 -0.009,-0.14498 -0.008,-0.15585 v -0.15724 -0.15861 l 0.008,-0.15984 0.0112,-0.161 0.0152,-0.16213 0.0192,-0.16305 0.0192,-0.13163 0.0272,-0.16452 0.0311,-0.16561 0.0359,-0.1666 0.04,-0.1675 0.0448,-0.16837 0.0487,-0.16913 0.0535,-0.16977 0.0359,-0.10682", + "fill": { + "paint": "transparent" + }, + "id": "path8389", + "name": "path8389", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 103.16017,42.225945 0.0256,0.04786 0.0272,0.04764 0.0288,0.04734 0.0303,0.04689 0.0311,0.04637 0.0327,0.04599 0.0343,0.04547 0.0351,0.0448 0.0367,0.04405 0.0383,0.04337 0.0391,0.04277 0.04,0.04179 0.0415,0.04097 0.0424,0.04007 0.0439,0.03909 0.0128,0.01132 0.0448,0.03774 0.0463,0.03706 0.0479,0.03639 0.0487,0.03556 0.0503,0.03474 0.052,0.03391 0.0527,0.03316 0.0544,0.03226 0.0551,0.03151 0.0568,0.03053 0.0575,0.02963 0.0592,0.02867 0.0599,0.02775 0.0616,0.02671 0.0592,0.02424", + "fill": { + "paint": "transparent" + }, + "id": "path8394", + "name": "path8394", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 104.50668,43.381625 0.13007,0.04914 0.13438,0.04487 0.13894,0.04014 0.14317,0.03541 0.14749,0.03068 0.15172,0.02581 0.1558,0.02071 0.1598,0.01553 0.16347,0.0102 0.16683,0.0052 0.17002,-5.7e-4 0.17274,-0.0067 0.0496,-0.003 0.17546,-0.01381 0.17616,-0.01951 0.17673,-0.02536 0.1773,-0.03113 0.1776,-0.03706 0.17802,-0.04299 0.17809,-0.04884 0.17817,-0.05477 0.17792,-0.0607 0.17746,-0.06662 0.17706,-0.0724 0.11096,-0.04869 0.103,-0.04734 0.17185,-0.08391 0.16754,-0.08812 0.16331,-0.09233 0.15867,-0.09634 0.15404,-0.100164 0.14934,-0.103922 0.14445,-0.107583 0.13966,-0.111087 0.13463,-0.114472 0.12959,-0.11781 0.12455,-0.121035 0.0264,-0.02664 0.11721,-0.12361 0.1109,-0.125267 0.10442,-0.126657 0.098,-0.12766 0.0912,-0.128419 0.0845,-0.128884 0.0775,-0.129192 0.0711,-0.12932 0.0647,-0.129236 0.0575,-0.129087 0.0511,-0.128824 0.0448,-0.128509", + "fill": { + "paint": "transparent" + }, + "id": "path8395", + "name": "path8395", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 111.76818,38.388076 -0.0679,-0.122087 -0.0759,-0.120331 -0.0837,-0.11808 -0.0914,-0.115229 -0.0986,-0.111733 -0.10556,-0.107643 -0.11185,-0.102902 -0.11761,-0.09754 v -0.0023 l -0.12273,-0.09143 -0.12966,-0.08702 -0.13655,-0.08232 -0.1435,-0.07751 -0.1502,-0.07248 -0.15684,-0.06722 -0.16323,-0.06168 -0.1327,-0.04434 -0.17371,-0.05094 -0.17896,-0.04456 -0.18416,-0.03796 -0.18943,-0.03136 -0.1944,-0.02447 -0.19933,-0.0174 -0.20391,-0.0102 -0.0719,-0.0023 -0.20981,-2.63e-4 -0.21236,0.008 -0.21476,0.015 -0.21684,0.02273 -0.21899,0.03053 -0.2206,0.03857 -0.22204,0.04666 v 5.71e-4 l -0.22307,0.0547 -0.22268,0.0625 -0.22186,0.07023 -0.22068,0.07781 -0.21908,0.08542 -0.21692,0.09273 -0.17137,0.07931 -0.18552,0.09214 -0.20439,0.109504 -0.19861,0.115018 -0.1928,0.120518 -0.18703,0.126004 -0.18153,0.131511 -0.17594,0.137046 -0.0679,0.0556 -0.16681,0.143598 -0.15971,0.147513 -0.15205,0.150868 -0.14381,0.153643 -0.13542,0.15588 -0.12673,0.157635 -0.11801,0.158971 -0.10914,0.159938 -0.10026,0.160583 -0.0913,0.160967 -0.0825,0.161086 -0.0735,0.16105 -0.0655,0.160853 -0.0568,0.160486", + "fill": { + "paint": "transparent" + }, + "id": "path8397", + "name": "path8397", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 90.21232,59.365505 0.0472,0.07821 0.0496,0.07761 0.052,0.07691 0.0544,0.07621 0.0568,0.07542 0.0592,0.07451 0.0616,0.0736 0.0631,0.07262 0.0655,0.07143 0.0679,0.07023 0.0695,0.06888 0.0719,0.06752 0.0735,0.0661 0.0751,0.06452 0.0775,0.06287 0.008,0.006 0.0791,0.061 0.0811,0.0598 0.0833,0.05852 0.0854,0.05717 0.0877,0.0559 0.0898,0.05447 0.0919,0.05297 0.0941,0.05169 0.0962,0.05019 0.0982,0.04869 0.1002,0.04704 0.1021,0.04525 0.10411,0.04367 0.10578,0.04187 0.0759,0.02851", + "fill": { + "paint": "transparent" + }, + "id": "path8412", + "name": "path8412", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 92.66621,61.249179 0.11335,0.03751 0.11531,0.03579 0.11711,0.03377 0.11914,0.03173 0.12089,0.02986 0.1228,0.02783 0.0112,0.0022 0.1248,0.02566 0.12647,0.02357 0.12816,0.02146 0.12982,0.01921 0.13137,0.0171 0.13286,0.01493 0.13447,0.01267 0.1359,0.01043 0.13734,0.008 0.13863,0.006 0.13998,0.0037 0.14125,0.0022 0.14237,-0.0022 0.1435,-0.0037 0.1443,-0.006 0.14533,-0.008 0.14614,-0.0108 0.0853,-0.008", + "fill": { + "paint": "transparent" + }, + "id": "path8413", + "name": "path8413", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 95.7936,61.574054 0.17865,-0.01815 0.17929,-0.02176 0.18008,-0.02522 0.18073,-0.02882 0.18144,-0.03248 0.18217,-0.03616 0.0343,-0.008 0.18289,-0.04059 0.18297,-0.04405 0.18271,-0.04779 0.18273,-0.05124 0.18216,-0.05477 0.18185,-0.0583 0.18104,-0.06168 0.18033,-0.0652 0.17937,-0.06857 0.17842,-0.07188 0.17712,-0.07521 0.1757,-0.0784 0.17426,-0.08161 0.1725,-0.08472 0.0376,-0.01884 0.17033,-0.08842 0.16827,-0.09133 0.1661,-0.09413 0.16387,-0.09684", + "fill": { + "paint": "transparent" + }, + "id": "path8414", + "name": "path8414", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 100.31984,60.013287 0.0987,-0.0634 0.1014,-0.06692 0.10026,-0.06789 0.0991,-0.06887 0.0966,-0.06887 0.0968,-0.07083 0.0954,-0.0718 0.0942,-0.07263 0.0928,-0.07337 0.0915,-0.07427 0.0901,-0.07512 0.0888,-0.07591 0.0872,-0.07661 0.086,-0.07731 0.0845,-0.07801 0.083,-0.0787", + "fill": { + "paint": "transparent" + }, + "id": "path8415", + "name": "path8415", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 101.97657,58.684291 0.0615,-0.06288 0.0954,-0.100644 0.0927,-0.101168 0.0902,-0.101791 0.0876,-0.102482 0.0853,-0.103149 0.0335,-0.04194 0.0817,-0.104087 0.0791,-0.104665 0.0767,-0.10516 0.0743,-0.105558 0.0711,-0.105895 0.0687,-0.106166 0.0663,-0.106368 0.0639,-0.10651 0.0607,-0.106555 0.0583,-0.106623 0.0559,-0.106572 0.0527,-0.106517 0.0503,-0.106413 0.0479,-0.106241 0.0448,-0.106075 0.0424,-0.10585 0.04,-0.105641", + "fill": { + "paint": "transparent" + }, + "id": "path8416", + "name": "path8416", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 95.14676,46.879592 0.01,0.01824 0.0152,0.02611 0.0168,0.02536 0.0176,0.02454 0.0192,0.02387 0.02,0.02334 0.0216,0.02297 0.0232,0.02236 0.0248,0.02176 0.0256,0.02093 0.0272,0.02026 0.0279,0.01936 0.0287,0.01831 0.0296,0.01725 0.024,0.01267", + "fill": { + "paint": "transparent" + }, + "id": "path8417", + "name": "path8417", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 95.64826,47.253347 0.0256,0.0037 0.0256,0.0037 0.0256,0.003 0.0256,0.003 0.0256,0.0022 0.0263,0.0022 0.0263,0.0022 0.0264,5.55e-4 0.0256,5.7e-4 0.0264,1.81e-4", + "fill": { + "paint": "transparent" + }, + "id": "path8418", + "name": "path8418", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 148.51755,34.797725 0.0108,-0.03354 0.008,-0.03414 0.008,-0.03384 0.008,-0.03353 0.008,-0.03323 v -0.03271 -0.03226 l 3.2e-4,-0.03181 v -0.03136 l -4.1e-4,-0.006 v -0.03121 l -0.008,-0.03091 -0.008,-0.03068 -0.008,-0.03016 -0.008,-0.02964 -0.01,-0.02903 -0.0108,-0.02837 -0.012,-0.02746 -0.0127,-0.02655", + "fill": { + "paint": "transparent" + }, + "id": "path8427", + "name": "path8427", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 142.45585,49.183398 0.0424,0.0171 0.0934,0.03887 0.0922,0.03977 0.0909,0.04067 0.0424,0.01951 0.0895,0.04239 0.0884,0.04314 0.0873,0.0442 0.0861,0.0451 0.085,0.04599 0.0836,0.04696 0.0826,0.04778 0.0812,0.04869 0.0801,0.04937 0.079,0.05019", + "fill": { + "paint": "transparent" + }, + "id": "path8452", + "name": "path8452", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 103.71505,55.747679 5e-4,-0.003 0.0232,-0.09884 0.0208,-0.09854 0.0184,-0.09814 0.016,-0.09764 0.0136,-0.09724 0.0112,-0.09664 0.01,-0.09603 0.008,-0.09534 0.008,-0.09464 v -0.09393 l 4.9e-4,-0.09313 v -0.09233 -0.09143 l -0.008,-0.09063 v -0.03196 l -0.009,-0.09033 -0.0112,-0.08993 -0.0127,-0.08952 -0.0152,-0.08892 -0.0176,-0.08832 -0.0192,-0.08762 -0.0216,-0.08682 -0.0232,-0.08602 -0.0256,-0.08502 -0.0272,-0.08402 -0.0296,-0.08291 -0.0311,-0.08172 -0.0327,-0.08052 -0.0351,-0.07922", + "fill": { + "paint": "transparent" + }, + "id": "path8460", + "name": "path8460", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 143.05076,47.273725 0.0496,-5.7e-4 0.0496,-0.0022 0.0503,-0.0037 0.0503,-0.0052 0.0512,-0.006 0.0512,-0.008 0.0512,-0.009 0.0512,-0.01042 0.052,-0.01177 0.052,-0.01321 0.052,-0.01463 0.0512,-0.01605 0.051,-0.0174 0.0512,-0.01876 0.0503,-0.02003 0.0503,-0.02131 0.0496,-0.02266 0.0488,-0.02394 0.0199,-0.0102 0.0479,-0.02544 0.0472,-0.02663 0.0464,-0.02761 0.0455,-0.02873 0.0439,-0.02964 0.0431,-0.03053 0.0424,-0.03151 0.0407,-0.03226 v -5.7e-4 l 0.0391,-0.03286 0.0376,-0.03332 0.0367,-0.03399 0.0352,-0.03451 0.0335,-0.03496 0.0319,-0.03549 0.0304,-0.03601 0.0295,-0.03654 0.028,-0.03699", + "fill": { + "paint": "transparent" + }, + "id": "path8474", + "name": "path8474", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 55.391582,155.36693 -0.01386,0.0618 -0.01513,0.065 -5e-4,0.003 -0.01559,0.0649 -0.01585,0.0648 -0.01606,0.0648 -0.01632,0.0647 -0.01659,0.0647 -0.01686,0.0646 -0.01685,0.0646 -0.01713,0.0645", + "fill": { + "paint": "transparent" + }, + "id": "path8475", + "name": "path8475", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 61.445776,178.94556 h 5e-4 l 0.03912,-2.7e-4 0.03911,-5.7e-4 0.03912,-5.7e-4 0.03911,-5.7e-4 0.03911,-5.7e-4 0.03858,-2.5e-4 0.03912,4e-5 0.03911,2.1e-4 0.03911,2.7e-4 0.03911,9e-5", + "fill": { + "paint": "transparent" + }, + "id": "path8477", + "name": "path8477", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 61.837407,178.94244 0.01206,2.2e-4 0.01632,5.9e-4 0.01632,0.002 0.0072,0.002 0.01626,0.004 0.01606,0.005 0.01559,0.005 0.01506,0.007 0.01392,0.008 0.01266,0.008 0.01129,0.009", + "fill": { + "paint": "transparent" + }, + "id": "path8478", + "name": "path8478", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 62.151072,179.13466 0.01253,0.0102 0.0138,0.009 0.01009,0.006 0.01559,0.008 0.01679,0.007 0.01799,0.006 0.01899,0.005 0.01799,0.004 0.01979,0.003 0.01993,0.002 0.01965,5.1e-4", + "fill": { + "paint": "transparent" + }, + "id": "path8479", + "name": "path8479", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 115.34412,179.19476 0.0232,-5.7e-4 2.4e-4,-3e-5 0.0232,-0.002 0.0232,-0.003 0.0232,-0.005 0.0232,-0.005 0.0224,-0.007 0.0224,-0.008 0.0216,-0.009 0.0208,-0.01 0.02,-0.0107", + "fill": { + "paint": "transparent" + }, + "id": "path8480", + "name": "path8480", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 115.82015,178.99253 0.0168,-0.009 0.0176,-0.008 0.0184,-0.008 0.0184,-0.007 0.0184,-0.005 0.0192,-0.005 0.0192,-0.004 0.0192,-0.003 0.0192,-0.002 0.0192,-5.6e-4", + "fill": { + "paint": "transparent" + }, + "id": "path8481", + "name": "path8481", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 116.39972,178.94244 0.0296,-5.7e-4 0.0304,-0.002 0.0303,-0.004 0.0312,-0.005 0.016,-0.003 0.032,-0.008 0.0319,-0.009 0.0319,-0.0101 0.0318,-0.0114 v -4.6e-4 l 0.0312,-0.0128 0.0303,-0.0139 0.0296,-0.0151 0.0288,-0.0161 0.028,-0.0172 0.0271,-0.0181 0.0256,-0.019 0.0248,-0.0197 0.0232,-0.0204", + "fill": { + "paint": "transparent" + }, + "id": "path8482", + "name": "path8482", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 121.69048,174.23096 0.01,-0.009 0.0144,-0.0147 0.0136,-0.0152 0.008,-0.005 0.0128,-0.016 0.012,-0.0166 0.0112,-0.0171 0.0103,-0.0176 0.009,-0.0181 0.008,-0.0184 0.008,-0.0188", + "fill": { + "paint": "transparent" + }, + "id": "path8483", + "name": "path8483", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 173.2763,16.232518 0.008,-0.01613 v -0.01074 -0.01676 -0.0061 -0.01704 l 5e-4,-0.01709 -4e-4,-0.0171 v -0.01704 -0.01687 -0.01664 l -0.008,-0.0163", + "fill": { + "paint": "transparent" + }, + "id": "path8484", + "name": "path8484", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 147.85168,48.574008 v -0.009 -0.01403 -0.01425 l 5e-4,-0.0052 v -0.01456 l -9e-5,-0.01471 v -0.01463 -0.01441 -0.01411 l -0.008,-0.01381 -0.008,-0.01313", + "fill": { + "paint": "transparent" + }, + "id": "path8485", + "name": "path8485", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 133.04951,93.96017 v -0.009 -0.014 -0.0143 l 5e-4,-0.005 v -0.0146 l -8e-5,-0.0147 v -0.0146 -0.0144 -0.0141 l -0.008,-0.0138 -0.008,-0.013", + "fill": { + "paint": "transparent" + }, + "id": "path8493", + "name": "path8493", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 147.28753,50.002837 -0.008,-5.2e-5 -0.008,-1.8e-4 -0.008,-3.15e-4 -0.008,-3.98e-4 -0.008,-5.1e-4 -0.008,-5.7e-4 -0.008,-5.63e-4 -0.008,-5.7e-4 -0.008,-5.7e-4 -0.008,-5.71e-4", + "fill": { + "paint": "transparent" + }, + "id": "path8499", + "name": "path8499", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 147.18118,49.990143 -0.0108,-0.0022 -0.0108,-0.003 -0.0108,-0.003 -0.0108,-0.003 -0.0108,-0.0037 -0.0108,-0.0037 -0.0108,-0.0037 -0.0108,-0.0052 -0.0108,-0.0052 -0.01,-0.0052", + "fill": { + "paint": "transparent" + }, + "id": "path8500", + "name": "path8500", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 146.88508,49.86134 -0.012,-0.0052 -0.012,-0.0052 -0.012,-0.0052 -0.012,-0.0052 -0.012,-0.0052 -0.0127,-0.0052 -0.0127,-0.0037 -0.0127,-0.0037 -0.0127,-0.003 -0.0127,-0.003", + "fill": { + "paint": "transparent" + }, + "id": "path8501", + "name": "path8501", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 146.76101,49.817982 -0.0127,-0.003 -0.0129,-0.0022 -0.0127,-0.0022 -0.0127,-0.0022 -0.0127,-0.0022 -0.0127,-0.0022 -0.0129,-5.7e-4 -0.0127,-5.63e-4 -0.0127,-4.87e-4 -0.0127,-1.58e-4", + "fill": { + "paint": "transparent" + }, + "id": "path8502", + "name": "path8502", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 83.648227,168.57841 0.03279,0.0584 0.03672,0.0577 0.03997,0.0566 0.04391,0.0552 0.0479,0.0536 0.0511,0.0516 0.05437,0.0493 0.05351,0.0441 0.05917,0.044 0.06317,0.0419 0.0663,0.0395 0.06951,0.0372 0.07271,0.0348 0.0767,0.0323 0.0799,0.0296 0.06149,0.0202 0.08486,0.0245 0.08733,0.0214 0.09003,0.0181 0.09252,0.0149 0.09492,0.0116 0.09746,0.008 0.09971,0.005 0.03424,5.7e-4 0.102668,-2.4e-4 0.103953,-0.004 0.105539,-0.008 0.10674,-0.0115 0.108097,-0.0154 0.109466,-0.0193 0.10985,-0.0231 0.11153,-0.0273 0.0783,-0.0216 0.10978,-0.0336 0.10842,-0.037 0.10705,-0.0406 0.1054,-0.0439 0.10363,-0.0473 0.10172,-0.0505 0.0997,-0.0537 0.0975,-0.0568 0.0952,-0.0599 0.0928,-0.0628 0.0902,-0.0657 0.0876,-0.0684 0.0327,-0.0267 0.0826,-0.0711 0.0791,-0.0727 0.0743,-0.0742 0.0703,-0.0752 0.0663,-0.0762 0.0623,-0.0769 0.0575,-0.0774 0.0535,-0.0779 0.0487,-0.0782 0.0448,-0.0785 0.04,-0.0786 0.0359,-0.0787 0.0319,-0.0787 0.0279,-0.0786", + "fill": { + "paint": "transparent" + }, + "id": "path8504", + "name": "path8504", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 61.072963,178.75986 0.009,0.0166 0.01045,0.0163 0.01189,0.016 0.01339,0.0156 0.01466,0.015 0.01586,0.0143 0.017,0.0134 0.01799,0.0125 0.01292,0.008 0.01918,0.0105 0.01965,0.009 0.02079,0.008 0.02192,0.008 0.02319,0.006 0.02445,0.005 0.02579,0.005 0.02732,0.003 0.02885,0.002 0.03037,5.6e-4 0.0084,2e-5", + "fill": { + "paint": "transparent" + }, + "id": "path8526", + "name": "path8526", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 139.8087,3.542982 -0.18823,0.196375 -0.19711,0.192311 -0.20565,0.18801 -0.2142,0.183483 -0.22252,0.178631 -0.23066,0.17353 -0.23857,0.168099 -0.24609,0.162362 -0.25335,0.156344 -0.26023,0.149984 -0.26677,0.143307 -0.27269,0.136328 -0.0239,0.01136 -0.0224,0.01075 -0.2778,0.12713 -0.28004,0.118408 -0.28204,0.109551 -0.28346,0.100588 -0.28452,0.09157 -0.28532,0.08245 -0.28547,0.07328 -0.28539,0.0642 -0.28492,0.05503 -0.28427,0.04588 -0.28315,0.03678 -0.28203,0.02778 -0.0719,0.0053 -0.27572,0.01619 -0.27078,0.0075 -0.26557,-0.0015 -0.26039,-0.01014 -0.25519,-0.01862 -0.25007,-0.02695 -0.11881,-0.01597 -0.24025,-0.03875 -0.2333,-0.04633 -0.22635,-0.05376 -0.21924,-0.06102 -0.21212,-0.06799 -0.20502,-0.07488 -0.14094,-0.05708 -0.19134,-0.08559 -0.18313,-0.0914 -0.17483,-0.09696 L 129.60672,5.7063 129.449,5.59896 129.29959,5.48673 129.18559,5.393 129.04863,5.270019 128.91961,5.14198 128.79888,5.009604 128.68702,4.873482 128.5842,4.734285 128.4909,4.592545", + "fill": { + "paint": "transparent" + }, + "id": "path8536", + "name": "path8536", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 142.37523,49.128109 0.008,0.0067 0.008,0.0067 0.008,0.0067 0.008,0.006 0.008,0.006 0.008,0.0052 0.008,0.0052 0.008,0.0052 0.008,0.0052 0.008,0.0037", + "fill": { + "paint": "transparent" + }, + "id": "path8538", + "name": "path8538", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 54.647467,163.20765 -0.0066,-0.031 -0.0142,-0.0703 -0.01366,-0.0703 -0.0072,-0.0394 -0.01285,-0.0705 -0.01246,-0.0706 -0.01189,-0.0706 -0.01141,-0.0707 -0.01105,-0.0708 -0.01057,-0.0709 -0.01009,-0.0709", + "fill": { + "paint": "transparent" + }, + "id": "path8539", + "name": "path8539", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 54.503265,162.33169 -0.02639,-0.23117 -0.02232,-0.23333 -0.01826,-0.23546 -0.01399,-0.2376 -0.0097,-0.23971 -0.0053,-0.24179 -0.002,-0.24383 0.0026,-0.24588 0.0072,-0.24785 0.01189,-0.2498 0.01632,-0.25168 v -2.8e-4 l 0.01081,-0.13753 0.02226,-0.24202 0.02586,-0.23519 0.02919,-0.22882 0.03272,-0.22284 0.03618,-0.21725 0.03965,-0.21186 0.04291,-0.20686 0.04624,-0.20199 0.04957,-0.19746 0.05278,-0.19303 0.05604,-0.18877", + "fill": { + "paint": "transparent" + }, + "id": "path8540", + "name": "path8540", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 111.19213,40.38175 0.008,-0.02176 0.02,-0.06542 0.0184,-0.0652 0.0168,-0.06497 0.0152,-0.06467 0.0136,-0.06437 0.012,-0.06401 0.0103,-0.06354 0.009,-0.06332 0.008,-0.06273 0.008,-0.06228 V 39.6578 39.59657 l 4.8e-4,-0.0607 v -0.0601 -0.0595 -0.04457 l -0.008,-0.05928 -0.008,-0.05904 -0.009,-0.05883 -0.0103,-0.05837 -0.0112,-0.05799 -0.0128,-0.05747 -0.0144,-0.05687 -0.016,-0.05627 -0.0176,-0.05545 -0.0184,-0.05477 -0.02,-0.05387 -0.0216,-0.05319 -0.0224,-0.05214 -0.024,-0.05117 -0.0247,-0.05027", + "fill": { + "paint": "transparent" + }, + "id": "path8561", + "name": "path8561", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 88.59082,166.27836 v -0.006 l 0.0145,-0.0467 0.0128,-0.0464 0.0112,-0.0463 0.01,-0.046 0.008,-0.0457 0.008,-0.0453 0.008,-0.0448 v -0.0446 -0.0441 -0.0435 l -3.2e-4,-0.0429 v -0.0424 -0.0187 -0.0423 l -0.008,-0.0422 -0.008,-0.0419 -0.008,-0.0414 -0.01,-0.041 -0.0105,-0.0405 -0.0121,-0.0398 -0.0127,-0.0392 -0.0144,-0.0386 -0.0152,-0.0377 -0.0168,-0.0368 -0.0176,-0.036", + "fill": { + "paint": "transparent" + }, + "id": "path8603", + "name": "path8603", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 124.97784,118.06941 -0.0103,-0.002 -0.0103,-0.003 -0.0103,-0.003 -0.0103,-0.003 -0.0103,-0.004 -0.0103,-0.004 -0.0103,-0.004 -0.0103,-0.004 -0.0103,-0.005 -0.01,-0.005", + "fill": { + "paint": "transparent" + }, + "id": "path8630", + "name": "path8630", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 125.08419,118.08209 -0.008,-7e-5 -0.008,-1.7e-4 -0.008,-2.9e-4 -0.008,-4.2e-4 -0.008,-5.3e-4 -0.008,-5.6e-4 -0.008,-5.7e-4 -0.008,-5.7e-4 -0.008,-5.6e-4 -0.008,-5.7e-4", + "fill": { + "paint": "transparent" + }, + "id": "path8631", + "name": "path8631", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 158.28693,28.163216 0.24616,-0.758283 0.24529,-0.761954 0.24353,-0.762447 0.24224,-0.762831 0.2412,-0.763146 v -0.003 l 0.2405,-0.763341 0.24049,-0.763319 0.24168,-0.762996 0.24353,-0.762441 0.2464,-0.761622", + "fill": { + "paint": "transparent" + }, + "id": "path8632", + "name": "path8632", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 164.72781,8.2775 0.0108,-0.03013 0.0431,-0.124776 0.0448,-0.119838 0.0464,-0.115281 0.0472,-0.111082 0.0488,-0.107128 0.0503,-0.103456 0.0343,-0.06699 0.0503,-0.09379 0.0512,-0.08889 0.052,-0.0844 0.0527,-0.08031 0.0536,-0.07649 0.0544,-0.0729 0.0161,-0.02066 0.0536,-0.06601 0.0536,-0.0614 0.0536,-0.05716 0.0536,-0.05321 0.0536,-0.04959 0.0544,-0.04618 0.0544,-0.04292 0.0544,-0.03892 0.0536,-0.0355 0.0536,-0.03203 0.0527,-0.02861 0.0527,-0.02529 0.052,-0.02203 0.052,-0.01892 0.0512,-0.0159 0.052,-0.01325 0.0536,-0.01051 0.0544,-0.0078 0.008,-7.37e-4 0.0544,-0.0045 0.0544,-0.0015 0.0544,7.38e-4 0.0536,0.0038 0.0527,0.0068 0.052,0.0092 0.0527,0.01219 0.0536,0.01521 0.0544,0.01832 0.0544,0.0215 0.0551,0.02468 0.0551,0.02793 0.0558,0.03119 v 6.82e-4 l 0.0558,0.03452 0.0558,0.03777 0.0559,0.04111 0.0558,0.04473 0.0558,0.04861 0.0558,0.05268 0.0568,0.05716 0.0256,0.02687 0.0583,0.06458 0.0575,0.06821 0.0575,0.07215 0.0575,0.07645 0.0575,0.08109 0.0575,0.08621 0.04,0.06321", + "fill": { + "paint": "transparent" + }, + "id": "path8633", + "name": "path8633", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 116.54474,164.56205 0.008,-0.009 0.012,-0.0134 0.0112,-0.0139 v -0.005 l 0.0103,-0.0145 0.01,-0.0149 0.01,-0.0154 0.009,-0.0156 0.008,-0.016 0.008,-0.0163 0.008,-0.0166", + "fill": { + "paint": "transparent" + }, + "id": "path8634", + "name": "path8634", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 112.17565,157.58268 -0.13622,0.31888 -0.13056,0.32944 -0.12447,0.34051 -0.11882,0.35214 -0.11272,0.36452 -0.10699,0.37764 -0.10099,0.39166 -0.0759,0.32058 -0.0407,0.18298 -0.0859,0.41953 -0.0759,0.42035 -0.0663,0.42104 -0.0568,0.42155 -0.0472,0.42199 -0.0376,0.42218 -0.028,0.42232 v 0.0223 l -0.0168,0.40987 -0.008,0.39891 v 0.38855 l 0.0112,0.37879 0.0208,0.3695 0.0296,0.36067 0.0384,0.35226 0.0472,0.3442 0.0176,0.11378 0.0568,0.32331 0.0631,0.3098 0.0703,0.29774 0.0775,0.28672 0.0568,0.18954 0.0849,0.25828 0.0899,0.24417 0.0948,0.23133 0.0999,0.21969", + "fill": { + "paint": "transparent" + }, + "id": "path8635", + "name": "path8635", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 111.66599,169.00944 -0.0367,-3.9e-4 -0.0367,-2.8e-4 -0.0367,-1.9e-4 -0.0367,-1.1e-4 -0.0367,-9e-5 -0.0367,-10e-5 -0.0367,-1.1e-4 -0.0367,-1.6e-4 -0.0367,-2.8e-4 -0.0367,-4.3e-4", + "fill": { + "paint": "transparent" + }, + "id": "path8636", + "name": "path8636", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 111.29814,169.0073 -0.0995,-0.22067 -0.0941,-0.232 -0.0889,-0.24425 -0.0838,-0.25763 -0.0543,-0.184 -0.0751,-0.28373 -0.0687,-0.29488 -0.0615,-0.30726 -0.0551,-0.32112 -0.0184,-0.11969 -0.0455,-0.34313 -0.0367,-0.35132 -0.028,-0.35998 -0.0192,-0.36907 -0.01,-0.37874 -5e-4,-0.38895 0.009,-0.39987 0.0184,-0.41155 5e-4,-0.012 0.0287,-0.4246 0.0391,-0.4249 0.0487,-0.42508 0.0583,-0.42507 0.0679,-0.42497 0.0775,-0.42468 0.0875,-0.42425 0.0343,-0.15393 0.0511,-0.21956 0.101,-0.40334 0.1073,-0.39026 0.11353,-0.37786 0.1197,-0.36608 0.12584,-0.35485 0.13181,-0.34415 0.13791,-0.33383", + "fill": { + "paint": "transparent" + }, + "id": "path8638", + "name": "path8638", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 111.81859,157.61 v -0.002 -0.002 -0.002 -0.002 -0.002 -0.002 -0.003 -0.002 -0.003 -0.003", + "fill": { + "paint": "transparent" + }, + "id": "path8639", + "name": "path8639", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 111.83058,157.58361 0.0343,-4e-5 0.0343,-8e-5 0.0343,-9e-5 0.0343,-1.3e-4 0.0343,-1.2e-4 0.0343,-1.5e-4 0.0343,-1.2e-4 0.0343,-10e-5 0.0343,-8e-5 0.0343,-2e-5", + "fill": { + "paint": "transparent" + }, + "id": "path8640", + "name": "path8640", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 112.21552,168.78515 -0.0208,0.0205 -0.0224,0.0199 -0.024,0.0194 -0.0247,0.0187 -0.0263,0.0179 -0.0272,0.0171 -0.0279,0.0161 -0.0296,0.015 -0.0112,0.005 -0.0303,0.0134 -0.0303,0.0122 -0.031,0.0109 -0.0312,0.01 -0.0311,0.008 -0.0311,0.007 -0.0312,0.005 -0.0303,0.004 -0.0303,0.002 -0.0296,0.002 -0.0287,-9e-5", + "fill": { + "paint": "transparent" + }, + "id": "path8641", + "name": "path8641", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 112.73261,157.8132 -0.0247,-0.0202 -0.0263,-0.0198 -0.028,-0.0195 -0.0296,-0.0193 -0.0105,-0.007 -0.0208,-0.012 -0.0336,-0.0183 -0.0343,-0.0171 -0.0343,-0.0158 -0.0352,-0.0146 -0.0351,-0.0132 -0.0351,-0.0118 -0.0352,-0.0105 -0.0352,-0.009 -0.0351,-0.008 -0.0352,-0.006 -0.0351,-0.005 -0.0343,-0.004", + "fill": { + "paint": "transparent" + }, + "id": "path8642", + "name": "path8642", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 112.29135,157.31855 0.0327,0.003 0.0336,0.004 0.0343,0.005 0.0359,0.007 0.0112,0.002 0.0224,0.005 0.0367,0.01 0.0367,0.0113 0.036,0.0124 0.0351,0.0136 0.0343,0.0147 0.0327,0.0156 0.0319,0.0165 0.0311,0.0175 0.0296,0.0183 0.0287,0.0191 0.0272,0.0199 0.0256,0.0206", + "fill": { + "paint": "transparent" + }, + "id": "path8643", + "name": "path8643", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 147.84968,48.073222 0.0175,-0.155684 0.0127,-0.162159 0.008,-0.169639 V 47.407209 47.21801 l -0.008,-0.202646 -0.0151,-0.220298 -0.0223,-0.245389 -0.0208,-0.191128 -0.0407,-0.338049 -0.0144,-0.113713 -0.0479,-0.389803 v -0.01006 l -0.0352,-0.313679 -0.0263,-0.275497 -0.0184,-0.250882 -0.008,-0.128478 -0.01,-0.24325 v -0.23847 -0.23376 l 0.008,-0.229196 0.0127,-0.224779 0.0184,-0.220442 0.0239,-0.216254 0.0296,-0.215603 0.0359,-0.218663 0.0424,-0.221732 0.0488,-0.224913 0.0551,-0.228147 0.0623,-0.23141 0.0687,-0.234772 0.0592,-0.186995", + "fill": { + "paint": "transparent" + }, + "id": "path8644", + "name": "path8644", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 153.01629,26.041476 0.0909,-0.266915 0.0984,-0.266374 0.10594,-0.265593 0.11326,-0.264468 0.12064,-0.263051 0.12775,-0.261287 0.13495,-0.259223 0.0496,-0.09091 0.14406,-0.25593 0.15563,-0.261857 0.16826,-0.269098 0.1821,-0.278017 0.19798,-0.289281 0.21635,-0.303761 0.16468,-0.224207 0.25774,-0.341411 0.33788,-0.437695 0.2957,-0.381339 0.28724,-0.375811 0.23402,-0.31497 0.0311,-0.04247 0.18113,-0.254197 0.15524,-0.228117 0.13647,-0.211745 0.12159,-0.200582 0.0775,-0.135682 0.0954,-0.178057 0.0833,-0.169461 0.0727,-0.162735 0.0631,-0.15728 0.0536,-0.152878", + "fill": { + "paint": "transparent" + }, + "id": "path8645", + "name": "path8645", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 157.90558,18.477116 -0.0582,0.166615 -0.0671,0.171444 -0.0768,0.177278 -0.0879,0.184387 -0.0999,0.193327 -0.0392,0.07255 -0.1195,0.210162 -0.13279,0.219458 -0.14869,0.232229 -0.16849,0.250595 -0.0199,0.02933 -0.19975,0.283594 -0.24129,0.331251 -0.22931,0.308841 -0.397,0.533302 -0.28444,0.388596 -0.11639,0.162436 -0.2301,0.328311 -0.20557,0.304474 -0.1864,0.287337 -0.17011,0.274462 -0.15604,0.264408 -0.14341,0.256448 -0.044,0.08181 -0.13463,0.259696 -0.12767,0.261858 -0.12041,0.263665 -0.11338,0.265151 -0.10606,0.266337 -0.0986,0.267214 -0.091,0.267785", + "fill": { + "paint": "transparent" + }, + "id": "path8647", + "name": "path8647", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 148.55645,41.170196 -3.1e-4,5.7e-4 -0.0775,0.246784 -0.0703,0.242762 -0.0623,0.238838 -0.0551,0.234982 -0.0488,0.231254 -0.0416,0.227621 -0.0342,0.224081 -0.0279,0.220628 -0.0223,0.221163 -0.0168,0.228341 -0.0108,0.236265 -0.008,0.245111 1.7e-4,0.255194 0.008,0.266825 0.0127,0.280411 0.008,0.08603 0.0208,0.302644 0.0311,0.364705 0.0208,0.22297 0.028,0.299432 0.0271,0.322615 0.0184,0.266892 0.008,0.07481 0.008,0.230751 v 0.212736 0.199118 l -0.008,0.188315 -0.008,0.08082 -0.0168,0.179761 -0.0215,0.174037 -0.0273,0.168521 -0.032,0.163105 -0.0376,0.157913", + "fill": { + "paint": "transparent" + }, + "id": "path8648", + "name": "path8648", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 156.91525,18.277019 -0.0512,0.144117 -0.0599,0.1486 -0.0695,0.154213 -0.0808,0.161398 -0.0933,0.170865 -0.10678,0.181364 -0.12808,0.203882 -0.14437,0.216795 -0.16563,0.236528 -0.19742,0.27023 -0.008,0.0075 -0.26167,0.346955 -0.34331,0.445009 -0.2587,0.333968 -0.3021,0.394485 -0.24328,0.326232 -0.16155,0.223112 -0.21005,0.299919 -0.19439,0.289071 -0.18016,0.280231 -0.16747,0.272984 -0.15563,0.266982 -0.14478,0.26194 -0.024,0.04472 -0.13664,0.264633 -0.1295,0.266599 -0.12233,0.268294 -0.11494,0.269638 -0.1075,0.270703 -0.10005,0.271453 -0.0925,0.271942", + "fill": { + "paint": "transparent" + }, + "id": "path8650", + "name": "path8650", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 147.42806,40.970101 -0.0512,0.159946 -0.0711,0.239762 -0.0647,0.236676 -0.0575,0.23364 -0.0512,0.230691 -0.0448,0.227749 -0.0383,0.224883 -0.032,0.2221 -0.0263,0.222782 -0.0208,0.226039 -0.0151,0.229182 -0.01,0.232229 -0.008,0.235116 v 0.237901 l 0.008,0.240445 0.008,0.114396 0.016,0.243932 0.0232,0.268317 0.0318,0.306965 0.0448,0.383148 0.0599,0.489171 0.0208,0.179274 0.028,0.265863 0.0192,0.227165 0.012,0.203643 0.008,0.187142 5e-4,0.174773 -0.008,0.164987 -0.0108,0.15693 -0.0151,0.150238", + "fill": { + "paint": "transparent" + }, + "id": "path8651", + "name": "path8651", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 147.42806,40.970101 0.0127,1.73e-4 0.0127,5.03e-4 0.0127,5.69e-4 0.0127,5.56e-4 0.0127,0.0022 0.0127,0.0023 0.0127,0.0022 0.0127,0.0023 0.0127,0.0022 0.0127,0.003", + "fill": { + "paint": "transparent" + }, + "id": "path8652", + "name": "path8652", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 147.55567,40.985513 0.0127,0.003 0.0129,0.003 0.0127,0.0038 0.0127,0.0037 0.0127,0.0052 0.012,0.0052 0.012,0.0052 0.012,0.0052 0.012,0.0052 0.012,0.0052", + "fill": { + "paint": "transparent" + }, + "id": "path8653", + "name": "path8653", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 152.48969,25.856778 -0.0127,-0.003 -0.0127,-0.0023 -0.0127,-0.0023 -0.0129,-0.0023 -0.0127,-0.0023 -0.0127,-0.0023 -0.0127,-5.7e-4 -0.0127,-5.7e-4 -0.0127,-4.81e-4 -0.0127,-1.94e-4", + "fill": { + "paint": "transparent" + }, + "id": "path8654", + "name": "path8654", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 156.91518,18.277019 0.0127,1.58e-4 0.0127,5.11e-4 0.0127,5.71e-4 0.0127,0.0017 0.0127,0.0017 0.0127,0.0017 0.0127,0.0023 0.0127,0.0023 0.0129,0.0023 0.0127,0.0028", + "fill": { + "paint": "transparent" + }, + "id": "path8655", + "name": "path8655", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 157.04286,18.292425 0.0127,0.0028 0.0128,0.0028 0.0127,0.004 0.0127,0.004 0.0127,0.0045 0.012,0.0045 0.012,0.0045 0.012,0.0051 0.012,0.0051 0.012,0.0051", + "fill": { + "paint": "transparent" + }, + "id": "path8656", + "name": "path8656", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 152.61378,25.899987 -0.012,-0.0052 -0.012,-0.0052 -0.012,-0.0052 -0.012,-0.0052 -0.012,-0.0052 -0.0127,-0.0052 -0.0127,-0.0038 -0.0127,-0.0037 -0.0127,-0.003 -0.0127,-0.003", + "fill": { + "paint": "transparent" + }, + "id": "path8657", + "name": "path8657", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 161.57828,3.688993 -0.0239,-0.0095 -0.0247,-0.0085 -0.0256,-0.0075 -0.0256,-0.006 -0.0256,-0.0053 -0.0263,-0.0038 -0.0263,-0.003 -0.0264,-0.0015 -0.0263,-1.82e-4 -0.0263,7.39e-4", + "fill": { + "paint": "transparent" + }, + "id": "path8665", + "name": "path8665", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 161.59442,3.616891 -0.0151,-0.0068 -0.0239,-0.0097 -0.0247,-0.0088 -0.0256,-0.0078 -0.0256,-0.0068 -0.0255,-0.0053 -0.0247,-0.0038 -0.024,-0.0023 -0.0223,-7.39e-4 -0.0223,2.28e-4 -0.0216,0.0015", + "fill": { + "paint": "transparent" + }, + "id": "path8666", + "name": "path8666", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 141.80827,1.3606749 v -0.00531 l 0.0464,-0.062979 0.0455,-0.059734 0.0448,-0.05686 0.0448,-0.054427 0.0448,-0.052384 0.0448,-0.050491 0.0455,-0.048909 0.0168,-0.017865 0.0455,-0.046255 0.0448,-0.044292 0.0455,-0.04232 0.0448,-0.040427 0.0448,-0.038464 0.0448,-0.036562 0.0448,-0.034749 0.044,-0.032856 0.044,-0.031044 0.044,-0.029221 0.0431,-0.027479 0.0431,-0.025816 0.0431,-0.024074 0.0424,-0.022412 0.0424,-0.020819 0.0424,-0.019227 0.0424,-0.017715 0.0416,-0.016123 0.0416,-0.014691 0.0416,-0.013168 0.0416,-0.011737 0.0407,-0.010294 0.0408,-0.00891", + "fill": { + "paint": "transparent" + }, + "id": "path8667", + "name": "path8667", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 129.61922,0.3178774 -0.052,7.38e-4 -0.052,0.003 -0.0527,0.00451 -0.0527,0.00601 -0.0527,0.00751 -0.0527,0.00911 -0.0527,0.010825 -0.0527,0.012417 -0.0527,0.01401 v 5.308e-4 l -0.052,0.015592 -0.052,0.017334 -0.052,0.018997 -0.0527,0.020829 -0.0527,0.022562 -0.0527,0.024374 -0.0527,0.026187 -0.0527,0.027999 -0.0431,0.024454 -0.0527,0.031414 -0.0527,0.033237 -0.0527,0.035049 -0.0527,0.036942 -0.0527,0.038845 -0.0527,0.040808 -0.0527,0.04277 -0.0527,0.044813 -0.052,0.046866 -0.052,0.048989 -0.052,0.051172 -0.052,0.053295 -0.052,0.055568 -0.052,0.057841 -0.052,0.060185 -0.052,0.062528 -0.0287,0.03565", + "fill": { + "paint": "transparent" + }, + "id": "path8669", + "name": "path8669", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 140.06182,3.563151 0.1386,-0.157307 0.13896,-0.160727 0.13942,-0.164307 0.0392,-0.04717 0.14005,-0.169091 0.14093,-0.173181 0.14183,-0.177503 0.14285,-0.182067 0.14406,-0.186883 0.14564,-0.1920068 0.14718,-0.1974891 0.0996,-0.1355639", + "fill": { + "paint": "transparent" + }, + "id": "path8670", + "name": "path8670", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 141.48015,1.4889175 0.016,-0.015442 0.0175,-0.014611 0.0184,-0.013789 0.0144,-0.00971 0.0199,-0.012107 0.0215,-0.011276 0.0223,-0.010294 0.0232,-0.00931 0.024,-0.00821 0.0249,-0.00681 0.0255,-0.00601 0.0264,-0.00451 0.0263,-0.003 0.0208,-0.0015 0.0263,-7.38e-4", + "fill": { + "paint": "transparent" + }, + "id": "path8673", + "name": "path8673", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 140.06182,3.563151 -0.008,-0.0023 -0.0239,-0.01029 -0.024,-0.0095 -0.0223,-0.0079 -0.0215,-0.006 -0.0199,-0.0045 -0.0199,-0.003 -0.0199,-0.0015 -0.008,-2.6e-4 -0.0168,-2.57e-4 -0.0151,7.39e-4 -0.0137,0.0023 -0.012,0.003 -0.0108,0.0038 -0.008,0.0045 -0.008,0.0053 -0.008,0.006", + "fill": { + "paint": "transparent" + }, + "id": "path8674", + "name": "path8674", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 127.81314,1.3606298 0.028,7.371e-4 0.028,0.0023 0.0287,0.0038 0.0287,0.00531 0.0287,0.00601 0.0287,0.00771 0.0287,0.00911 0.0287,0.010515 0.028,0.011807 0.0279,0.013179 0.0272,0.01446 0.0272,0.015672 0.0232,0.014831 0.0256,0.017865 0.0224,0.017184 0.024,0.019758 0.0224,0.020659 0.0216,0.0215 0.02,0.022261 0.0192,0.022872 0.0176,0.023393 0.016,0.023844 0.0152,0.024234 0.0136,0.024535 0.012,0.024684 0.0103,0.024835 0.01,0.024975 0.008,0.024985", + "fill": { + "paint": "transparent" + }, + "id": "path8675", + "name": "path8675", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 163.34272,0.3156593 -0.0503,0.0023 -0.0512,0.00601 -0.052,0.00871 -0.052,0.011807 -0.052,0.014841 -0.0488,0.016804 -0.0503,0.020509 -0.0503,0.023844 -0.0511,0.027248 -0.0512,0.030813 -0.052,0.034599 -0.04,0.029221 -0.0527,0.041639 -0.052,0.045344 -0.052,0.04936 -0.0527,0.053676 -0.0527,0.058372 -0.0184,0.021811 -0.0544,0.065783 -0.0536,0.070329 -0.0536,0.075476 -0.0544,0.081415 -0.0496,0.078851 -0.0568,0.096225 -0.0558,0.1004515 -0.0551,0.1050679 -0.0544,0.110157 -0.0536,0.1158112 -0.0527,0.1222161 -0.0527,0.1296044 -0.0527,0.1383966 -0.0392,0.107355 -0.0551,0.15897 -0.0536,0.163935 -0.052,0.169465 -0.0503,0.175511 -0.0496,0.182356 -0.0488,0.190114 -0.0472,0.199056 -0.0263,0.117341", + "fill": { + "paint": "transparent" + }, + "id": "path8676", + "name": "path8676", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 128.09934,3.696267 -0.0103,-0.01559 -0.012,-0.01514 -0.0128,-0.01469 -0.0144,-0.01424 -0.016,-0.01379 -0.0176,-0.01325 -0.0192,-0.01264 -0.0208,-0.01204 -0.0224,-0.01136 -0.0232,-0.0106 -0.0247,-0.0097 -0.0264,-0.0088 -0.0272,-0.0079 -0.0288,-0.0068 -0.008,-7.37e-4 -0.0287,-0.0053 -0.0296,-0.0038 -0.0296,-0.003 -0.0303,-0.0015 -0.0312,-1.82e-4 -0.0311,0.0015 -0.0319,0.0023 -0.0319,0.0038 -0.0328,0.0053 -0.0327,0.0068 -0.0335,0.0081 -0.0336,0.0095 -0.0335,0.01098 -4.9e-4,2.5e-4", + "fill": { + "paint": "transparent" + }, + "id": "path8677", + "name": "path8677", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 127.81314,1.3606298 -0.0376,0.048599 -0.036,0.050191 -0.0351,0.051703 -0.0336,0.053145 -0.0327,0.054577 -0.0311,0.056029 -0.0295,0.057381 -0.028,0.058743 -0.0272,0.060034 -0.0256,0.061247 -0.024,0.062378 -0.0224,0.063509 -0.0208,0.0645 -0.0192,0.06541 -0.0168,0.06624 -0.0152,0.06692 -0.012,0.05988 -0.012,0.06799 -0.0103,0.06882 -0.008,0.06957 -0.008,0.0704 -0.008,0.07108 v 0.07185 0.07253 0.07321 0.07381 l 0.008,0.07441 0.008,0.07495 0.009,0.07541 0.0103,0.07585 0.0128,0.07617 0.0144,0.07647 0.0168,0.07664 0.008,0.03286", + "fill": { + "paint": "transparent" + }, + "id": "path8678", + "name": "path8678", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 106.12858,3.562755 0.0247,-0.05746 0.0551,-0.123532 0.0559,-0.120899 0.0568,-0.118446 0.0575,-0.116114 0.0176,-0.03573 0.0575,-0.111838 0.0583,-0.108769 0.0583,-0.105812 0.0592,-0.102943 0.0592,-0.100199 0.0599,-0.09757 0.0607,-0.09497 0.0607,-0.09248 0.0615,-0.09006 0.0623,-0.087693 0.0623,-0.08541 0.0631,-0.083168 0.0639,-0.081004 0.0639,-0.078841", + "fill": { + "paint": "transparent" + }, + "id": "path8679", + "name": "path8679", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 107.36722,1.5305251 0.0103,-0.011426 0.0568,-0.062909 0.0568,-0.060936 0.0575,-0.059123 0.0575,-0.057381 0.0575,-0.055719 0.0224,-0.02105 0.0575,-0.053145 0.0575,-0.051332 0.0575,-0.04944 0.0575,-0.047697 0.0575,-0.045875 0.0575,-0.044062 0.0575,-0.04232 0.0575,-0.040657 0.0568,-0.038915 0.0568,-0.037242 0.0568,-0.03558 0.0568,-0.033908 0.0568,-0.032325 0.0568,-0.030733 0.0568,-0.029221 0.0568,-0.027629", + "fill": { + "paint": "transparent" + }, + "id": "path8680", + "name": "path8680", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 108.68895,0.5209073 0.0319,-0.013559 0.0318,-0.013179 0.032,-0.012788 0.0327,-0.012428 0.0327,-0.011957 0.0327,-0.011576 0.0328,-0.011126 0.0327,-0.010675 0.0335,-0.010214 0.0335,-0.00971", + "fill": { + "paint": "transparent" + }, + "id": "path8681", + "name": "path8681", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 109.01541,0.4036342 0.0439,-0.012107 0.0544,-0.013789 0.0544,-0.012337 0.0263,-0.00531 0.0544,-0.010375 0.0544,-0.00901 0.0544,-0.00761 0.0544,-0.00601 0.0544,-0.00451 0.0535,-0.0038 0.0535,-0.0023 0.0527,-7.381e-4", + "fill": { + "paint": "transparent" + }, + "id": "path8682", + "name": "path8682", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 111.76818,38.388091 0.0288,0.058 0.0279,0.0592 0.0263,0.06018 0.0248,0.0613 0.0232,0.06228 0.0216,0.06318 0.02,0.06408 0.0184,0.0649 0.0168,0.06573 0.0152,0.06632 0.0136,0.06692 0.0112,0.06737 0.01,0.06782 0.008,0.0682 0.008,0.06842 v 0.05094 0.06849 0.06933 l -4.8e-4,0.06993 v 0.0706 l -0.008,0.0712 -0.008,0.0718 -0.008,0.0724 -0.01,0.07293 -0.0112,0.07337 -0.0136,0.07382 -0.0152,0.07427 -0.0176,0.07473 -0.0192,0.07488 -0.0208,0.07521 -0.0232,0.07531 -0.008,0.02491", + "fill": { + "paint": "transparent" + }, + "id": "path8683", + "name": "path8683", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 63.662442,161.77469 -0.01165,0.035 -0.01632,0.0464 -0.01559,0.0409 -0.01579,0.0375 -0.01626,0.0354 -0.01713,0.034 -0.01826,0.0333 -0.01959,0.033 -0.0026,0.005 -0.01732,0.0267 -0.01639,0.023 -0.01579,0.02 -0.01519,0.0174 -0.01473,0.015 -0.01446,0.0129 -0.01412,0.0109 -0.01386,0.009 -0.01379,0.008 -0.01366,0.006 -0.01345,0.005 -0.01352,0.003 -0.0136,0.002 -0.01366,5.8e-4", + "fill": { + "paint": "transparent" + }, + "id": "path8684", + "name": "path8684", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 63.750321,161.28981 5e-4,-0.003 0.0026,-0.003 0.004,-0.003 0.0053,-0.002 0.01045,-0.004 0.01117,-0.003 0.0096,-0.002 0.004,-5.7e-4 0.01739,-0.002 0.01779,-0.002 0.01799,-0.002 0.01826,-5.9e-4 0.01832,-5.7e-4 0.01826,-3.7e-4 0.01805,-9e-5", + "fill": { + "paint": "transparent" + }, + "id": "path8685", + "name": "path8685", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 63.489328,157.2125 -0.05351,-0.0991 -0.0575,-0.0982 -0.06143,-0.0969 -0.0653,-0.0957 -0.06903,-0.0941 -0.07263,-0.0924 -0.07606,-0.0905 -0.07941,-0.0883 -0.08261,-0.0859 -0.08271,-0.0808 -0.08833,-0.0808 -0.09195,-0.0789 -0.09563,-0.0769 -0.09923,-0.075 -0.102848,-0.0727 -0.106403,-0.0705 -0.109863,-0.0681 -0.113226,-0.0658 -0.116564,-0.0633 -0.09436,-0.0481 -0.122154,-0.0584 -0.125327,-0.0557 -0.128544,-0.053 -0.131722,-0.0502 -0.134828,-0.0473 -0.137953,-0.0444 -0.141085,-0.0413 -0.144056,-0.0382 -0.14702,-0.0351 -0.06377,-0.014 -0.151052,-0.0305 -0.153618,-0.0271 -0.156201,-0.0236 -0.15863,-0.0202 -0.161126,-0.0166 -0.163459,-0.0131 -0.165745,-0.01 -0.168002,-0.006 -0.170089,-0.002 h -0.01165", + "fill": { + "paint": "transparent" + }, + "id": "path8686", + "name": "path8686", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 63.669605,157.63271 -0.0034,-0.0116 -0.0026,-0.0123 -4.99e-4,-0.0129 4.99e-4,-0.0136 0.0026,-0.0142 0.0034,-0.0147 0.0047,-0.0151 0.0066,-0.0152 0.008,-0.0152 0.008,-0.0127 0.01045,-0.0141 0.01165,-0.0136 0.013,-0.0131 0.0144,-0.0125 0.01585,-0.012 0.01739,-0.0115 0.01899,-0.0109 0.02059,-0.0104 0.02226,-0.01 0.01069,-0.005", + "fill": { + "paint": "transparent" + }, + "id": "path8687", + "name": "path8687", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 89.89529,157.38275 -0.0376,-0.12784 -0.0424,-0.12727 -0.0479,-0.12638 -0.0527,-0.12521 -0.0575,-0.12371 -0.0559,-0.11044 -0.0663,-0.11989 -0.0703,-0.11739 -0.0743,-0.11468 -0.0783,-0.11164 -0.0819,-0.10844 -0.0859,-0.10548 -0.0907,-0.10361 -0.0955,-0.10163 -0.10004,-0.0994 -0.10467,-0.0972 -0.10929,-0.0949 -0.11369,-0.0924 -0.11801,-0.0896 -0.12216,-0.0866 -0.12616,-0.0837 -0.10242,-0.0638 -0.13279,-0.0777 -0.13702,-0.0745 -0.14118,-0.0714 -0.14526,-0.0681 -0.14941,-0.0648 -0.15355,-0.0614 -0.15756,-0.0579 -0.16156,-0.0543 -0.16546,-0.0506 -0.16921,-0.0467 -0.0679,-0.0174 -0.17426,-0.0412 -0.17753,-0.0372 -0.180806,-0.033 -0.184001,-0.0289 -0.187206,-0.0245 -0.190312,-0.0201 -0.193263,-0.0156 -0.196155,-0.0112 -0.19902,-0.007 -0.188232,-0.002", + "fill": { + "paint": "transparent" + }, + "id": "path8688", + "name": "path8688", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 84.610278,154.18654 -0.234181,0.003 -0.236014,0.009 -0.237694,0.0154 -0.239211,0.0216 -0.240644,0.028 -0.24185,0.0343 -0.24297,0.0406 -0.243683,0.0469 -0.244408,0.0534 -0.244722,0.0597 -0.244883,0.0661 -0.244889,0.0725 -0.244401,0.0787 -0.243764,0.0849 -0.242808,0.0911 -0.241525,0.0973 -0.148214,0.063 -0.125519,0.0554 -0.236493,0.10945 -0.232816,0.11454 -0.228984,0.11954 -0.224746,0.12432 -0.220354,0.12896 -0.215819,0.13344 -0.210993,0.13776 -0.206064,0.1419 -0.200858,0.14589 -0.195502,0.14974 -0.190158,0.15341 -0.184641,0.15689 -0.178891,0.16026 -0.173213,0.16346 -0.167311,0.16652 -0.161307,0.16945", + "fill": { + "paint": "transparent" + }, + "id": "path8689", + "name": "path8689", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 148.48582,34.230515 -0.0136,-0.02521 -0.0151,-0.02506 -0.0168,-0.02477 -0.0184,-0.02446 -0.0199,-0.02402 -0.0208,-0.02364 -0.0223,-0.02312 -0.0239,-0.02243 -0.0256,-0.02183 -0.0263,-0.02116 -0.0273,-0.02026 -0.0287,-0.01943 -0.0297,-0.01846 -0.0303,-0.01733 -0.0247,-0.0129 -0.0319,-0.01523 -0.0328,-0.01433 -0.0335,-0.01336 -0.0352,-0.01222 -0.036,-0.01132 -0.0368,-0.0102 -0.0384,-0.009 -0.0392,-0.008 -0.0407,-0.0067 -0.0416,-0.006 -0.0424,-0.0052 -0.044,-0.003 -0.0448,-0.0022 -0.0455,-5.69e-4 h -0.008", + "fill": { + "paint": "transparent" + }, + "id": "path8690", + "name": "path8690", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 63.738367,157.09547 -0.05077,-0.10737 -0.05503,-0.10648 -0.05924,-0.10536 -0.06337,-0.10405 -0.06744,-0.10247 -0.07126,-0.10068 -0.07503,-0.0986 -0.07862,-0.0965 -0.08206,-0.0939 -0.01805,-0.0198 -0.08593,-0.0907 -0.08899,-0.0877 -0.09299,-0.0858 -0.09695,-0.0839 -0.10089,-0.0817 -0.104746,-0.0795 -0.10859,-0.0773 -0.112372,-0.0748 -0.116,-0.0723 -0.11958,-0.0697 -0.122988,-0.0669 -0.0072,-0.004 -0.126439,-0.0638 -0.129911,-0.061 -0.133361,-0.058 -0.136794,-0.055 -0.140252,-0.0521 -0.143615,-0.0489 -0.146975,-0.0458 -0.150246,-0.0426 -0.153464,-0.0392 -0.106115,-0.0247 -0.158628,-0.0334 -0.161407,-0.0299 -0.164152,-0.0262 -0.166824,-0.0224 -0.169449,-0.0188 -0.172101,-0.0149 -0.174526,-0.011 -0.176978,-0.007 -0.179251,-0.003 -0.05336,-1.6e-4", + "fill": { + "paint": "transparent" + }, + "id": "path8692", + "name": "path8692", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 111.08882,38.537592 -0.0551,-0.09964 -0.0615,-0.09814 -0.0679,-0.09624 -0.0735,-0.09393 -0.0799,-0.09103 -0.0848,-0.08772 -0.0897,-0.08381 -0.0383,-0.03323 -0.0959,-0.07761 -0.10147,-0.07443 -0.10714,-0.07098 -0.11282,-0.0673 -0.11825,-0.06355 -0.12368,-0.0595 -0.12887,-0.05545 -0.0343,-0.01381 -0.13494,-0.04967 -0.13966,-0.04487 -0.1443,-0.04007 -0.14868,-0.03504 -0.15333,-0.02993 -0.15764,-0.02461 -0.1506,-0.01816 -0.16547,-0.01411 -0.16865,-0.008 -0.1718,-0.0023 -0.17472,0.0038 -0.17778,0.01005 -0.18064,0.01568 -0.11465,0.01306 -0.18496,0.02596 -0.18538,0.03203 -0.18519,0.03827 -0.18481,0.04435 -0.18439,0.05049 -0.18361,0.0565 -0.18248,0.06258 -0.18121,0.06849 -0.17952,0.07443 -0.1777,0.08022 -0.17553,0.08592 -0.17306,0.09153 -0.13247,0.07488 v 0.0023 l -0.16642,0.100299 -0.16147,0.10444 -0.1562,0.108213 -0.15061,0.111747 -0.14485,0.115005 -0.13886,0.11802 -0.13271,0.120796 -0.12639,0.123325 -0.12017,0.125671 -0.11378,0.127804 -0.10722,0.129777 -0.10091,0.131593 -0.0944,0.133274", + "fill": { + "paint": "transparent" + }, + "id": "path8705", + "name": "path8705", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 103.50621,39.482367 -0.0216,0.03241 -0.0407,0.0628 -0.04,0.06303 -0.0376,0.06316 -0.0287,0.04929 -0.0351,0.06339 -0.0335,0.06332 -0.0319,0.06332 -0.0304,0.06332 -0.0288,0.06309 -0.0272,0.06302 -0.0256,0.0628 -0.024,0.06258 -0.0224,0.06243 -0.0208,0.06213", + "fill": { + "paint": "transparent" + }, + "id": "path8706", + "name": "path8706", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 88.53305,165.23904 -0.0327,-0.0585 -0.0359,-0.0577 -0.04,-0.0566 -0.0439,-0.0552 -0.0479,-0.0536 -0.0511,-0.0515 -0.0544,-0.0493 -0.0535,-0.0441 -0.0592,-0.0439 -0.0631,-0.0419 -0.0663,-0.0395 -0.0695,-0.0372 -0.0727,-0.0348 -0.0767,-0.0323 -0.0799,-0.0296 -0.0615,-0.0202 -0.0848,-0.0246 -0.0874,-0.0214 -0.09,-0.0181 -0.0925,-0.0149 -0.095,-0.0116 -0.0974,-0.008 -0.0998,-0.005 -0.0342,-5.7e-4 -0.1026,2.5e-4 -0.10402,0.004 -0.10547,0.008 -0.10675,0.0115 -0.10818,0.0154 -0.10937,0.0193 -0.10988,0.0231 -0.11153,0.0274 -0.0783,0.0216 -0.109694,0.0336 -0.108506,0.037 -0.107064,0.0405 -0.105382,0.0439 -0.103629,0.0473 -0.101708,0.0505 -0.0997,0.0537 -0.09749,0.0568 -0.09515,0.0599 -0.09276,0.0628 -0.09027,0.0657 -0.08758,0.0685 -0.03272,0.0268 -0.08261,0.0711 -0.0791,0.0728 -0.0751,0.074 -0.07031,0.0753 -0.0663,0.0761 -0.0615,0.0769 -0.0575,0.0774 -0.0535,0.0778 -0.0487,0.0782 -0.04478,0.0785 -0.03997,0.0786 -0.03598,0.0787 -0.03185,0.0787 -0.02799,0.0786", + "fill": { + "paint": "transparent" + }, + "id": "path8707", + "name": "path8707", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 90.79213,170.28755 v 0.005 0.005 0.005 0.005 0.005 0.005 0.005 l -0.008,0.005 -0.008,0.005 -0.008,0.005", + "fill": { + "paint": "transparent" + }, + "id": "path8711", + "name": "path8711", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 111.88707,40.515158 -0.0224,0.0667 -0.024,0.06685 -0.0256,0.06722 -0.0272,0.06752 -0.0184,0.04398 -0.0303,0.06789 -0.0311,0.06789 -0.0328,0.06789 -0.0343,0.06797 -0.0359,0.06797 -0.0376,0.06789 -0.0391,0.06789 -0.0407,0.06782 -0.0424,0.06767 -0.0439,0.06752 -0.0455,0.0673 -0.0472,0.06707 -0.0479,0.06677 -0.0287,0.03804", + "fill": { + "paint": "transparent" + }, + "id": "path8724", + "name": "path8724", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 111.23112,41.744794 -0.11026,0.141227 -0.11681,0.139522 -0.12336,0.137641 -0.12983,0.135568 -0.13632,0.133251 -0.14253,0.130753 -0.14868,0.127939 -0.15452,0.1249 -0.16027,0.121538 -0.16571,0.117915 -0.17067,0.113984 v 0.0022 l -0.17545,0.109662 -0.1792,0.104702 -0.18281,0.09964 -0.18632,0.09464 -0.18968,0.08942 -0.0735,0.03294 -0.0687,0.02971 -0.19471,0.08012 -0.19695,0.07443 -0.19877,0.06857 -0.20038,0.0628 -0.20191,0.0568 -0.0312,0.008 -0.20038,0.04929 -0.19894,0.04277 -0.19734,0.03639 -0.19543,0.02993 -0.1936,0.02364 -0.19142,0.0174 -0.18936,0.01132 -0.18711,0.0052 -0.18497,-5.7e-4 -0.18257,-0.0067 -0.18032,-0.01267 -0.14374,-0.01456 -0.17434,-0.02297 -0.17017,-0.02836 -0.16571,-0.03354 -0.16107,-0.03872 -0.15619,-0.0436 -0.15094,-0.04823 -0.14572,-0.05297 -0.14046,-0.05725 -0.13495,-0.06138 -0.12967,-0.0655 -0.12424,-0.06948", + "fill": { + "paint": "transparent" + }, + "id": "path8725", + "name": "path8725", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 103.69149,43.741154 -0.0287,-0.01703 -0.0568,-0.03474 -0.0559,-0.03564 -0.0544,-0.03669 -0.0527,-0.03744 -0.0519,-0.0382 -0.0511,-0.03917 -0.0496,-0.03977 -0.0479,-0.04059 -0.0472,-0.04112 -0.0455,-0.04187 -0.0439,-0.04254 -0.0431,-0.04314 -0.0287,-0.02993 -0.0415,-0.04465 -0.04,-0.04547 -0.0391,-0.04636 -0.0376,-0.04704 -0.0367,-0.04786 -0.0351,-0.04838 -0.0343,-0.04899 -0.0327,-0.04967 -0.0319,-0.05004 -0.0304,-0.05057 -0.0287,-0.05109 -0.0272,-0.05139", + "fill": { + "paint": "transparent" + }, + "id": "path8726", + "name": "path8726", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 103.05679,40.38175 -0.0128,0.04014 -0.0184,0.06175 -0.0168,0.06168 -0.0152,0.06138 v 0.009 l -0.0136,0.06138 -0.0121,0.06115 -0.0112,0.061 -0.01,0.0607 -0.008,0.0604 -0.008,0.05995 -0.008,0.05958 v 0.05904 0.05859 l -5e-4,0.05799 5e-4,0.05747", + "fill": { + "paint": "transparent" + }, + "id": "path8727", + "name": "path8727", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 102.92104,41.321865 5e-4,0.01471 v 0.0568 l 0.008,0.05605 0.008,0.05537 0.008,0.055 0.008,0.0442 0.0103,0.05455 0.0112,0.0544 0.0128,0.0541 0.0144,0.05357 0.016,0.05304 0.0168,0.05259 0.0184,0.05199 0.0192,0.05124 0.0208,0.05057 0.0216,0.04967 0.0232,0.04884 0.0239,0.04794", + "fill": { + "paint": "transparent" + }, + "id": "path8728", + "name": "path8728", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 111.60942,40.38175 -0.0503,0.144468 -0.0575,0.144775 -0.0656,0.145014 -0.0727,0.145136 -0.0805,0.145121 -0.0881,0.144977 -0.0958,0.144626 -0.10347,0.144046 -0.11105,0.143193 -0.11874,0.142014 -0.12615,0.140513 -0.13335,0.138571 -0.0809,0.07962 -0.14438,0.134668 -0.14981,0.13073 -0.15531,0.126678 -0.16076,0.122463 -0.16595,0.118138 -0.17113,0.113632 -0.1761,0.109024 -0.1808,0.104214 -0.18552,0.09924 -0.19,0.09413 -0.19407,0.08893 -0.18992,0.08022 -0.1808,0.0703 -0.20159,0.0718 -0.20261,0.06527 -0.20309,0.05868 -0.20358,0.05199 -0.20342,0.04516 -0.0287,0.006 -0.20047,0.03706 -0.1979,0.03016 -0.19559,0.02334 -0.19367,0.01673 -0.19159,0.01012 -0.19008,0.0037 -0.16162,-0.0022 -0.18561,-0.008 -0.18232,-0.01456 -0.17832,-0.02063 -0.17402,-0.02641 -0.16914,-0.03211 -0.16412,-0.03766 -0.15891,-0.04299 -0.15341,-0.04809 -0.14772,-0.05296 -0.14222,-0.05777 -0.13654,-0.06242 -0.13095,-0.06692", + "fill": { + "paint": "transparent" + }, + "id": "path8729", + "name": "path8729", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 103.88268,43.523271 -0.0424,-0.02312 -0.0568,-0.03263 -0.0559,-0.03347 -0.0544,-0.03422 -0.0168,-0.0108 -0.0535,-0.03564 -0.052,-0.03646 -0.0511,-0.03721 -0.0496,-0.03827 -0.0487,-0.03895 -0.0479,-0.03977 -0.0463,-0.04044 -0.0448,-0.04104 -0.0439,-0.04164 -0.0424,-0.04224 -0.0407,-0.04277", + "fill": { + "paint": "transparent" + }, + "id": "path8730", + "name": "path8730", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 102.63956,40.38175 0.0544,-0.153396 0.0623,-0.153674 0.0703,-0.153884 0.0791,-0.153957 0.0876,-0.153877 0.0961,-0.153538 0.10474,-0.153014 0.11337,-0.152158 0.12192,-0.150995 0.13039,-0.14942 0.13855,-0.147385 0.14653,-0.144903 0.1542,-0.141872 0.16123,-0.138278 0.10283,-0.0833 0.17169,-0.131165 0.17673,-0.125703 0.18202,-0.120248 0.18735,-0.114869 0.19271,-0.109444 0.19822,-0.10405 0.20366,-0.09854 0.19351,-0.08622 0.21044,-0.08612 0.21229,-0.07881 0.21349,-0.0715 0.21436,-0.06408 0.21484,-0.05657 0.21485,-0.04914 0.0343,-0.0067 0.21324,-0.03999 0.2114,-0.03241 0.20951,-0.02484 0.20709,-0.01725 0.20469,-0.01005 0.20198,-0.0023 0.19934,0.0052 0.0976,0.0052 0.19223,0.01523 0.18737,0.02191 0.18207,0.02851 0.17698,0.03481 0.17154,0.04104 0.16626,0.04734 0.16092,0.05319 0.14269,0.05388 0.14957,0.06377 0.14317,0.06887 0.13639,0.07367 0.12966,0.07821 0.12273,0.08252 0.11593,0.08652 0.10897,0.09053 0.10387,0.09604 0.009,0.008 0.098,0.101708 0.0917,0.106105 0.0852,0.109887 0.0783,0.112941 0.0703,0.115401 0.0631,0.117224 0.0551,0.118478", + "fill": { + "paint": "transparent" + }, + "id": "path8732", + "name": "path8732", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 111.59217,38.560288 0.0208,0.05357 0.0192,0.0541 0.0176,0.05447 0.0144,0.04838 0.0152,0.0553 0.0144,0.05597 0.0128,0.05657 0.0112,0.0574 0.0103,0.05785 0.009,0.05837 0.008,0.0589 0.008,0.0592 0.008,0.0595 v 0.05988 0.05995 l 4.9e-4,0.03136", + "fill": { + "paint": "transparent" + }, + "id": "path8733", + "name": "path8733", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 111.76163,39.440644 v 0.04149 l -5e-4,0.04149 v 0.04149 0.04149 0.04149 0.04134 0.04134 l -0.008,0.04149 -0.008,0.04127 -0.008,0.04127", + "fill": { + "paint": "transparent" + }, + "id": "path8734", + "name": "path8734", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 111.73326,39.854637 v 0.02454 l -0.009,0.05334 -0.01,0.05335 -0.008,0.02866 -0.0112,0.05304 -0.012,0.05289 -0.0128,0.05267 -0.0136,0.05244 -0.0144,0.05229 -0.0152,0.05207 -0.0168,0.05177", + "fill": { + "paint": "transparent" + }, + "id": "path8735", + "name": "path8735", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 89.94931,56.10639 -0.028,0.08892 -0.0327,0.112144 -0.0303,0.111861 -0.0272,0.111455 -0.024,0.110929 -0.0216,0.110345 -0.0184,0.109693 -0.0152,0.108956 -0.0128,0.108153 -0.01,0.107261 -0.008,0.10636 -0.008,0.105424 v 0.104402 0.103404 l 0.008,0.102354 0.008,0.101251 0.01,0.101146 v 0.01966 l 0.0128,0.100891 0.0152,0.1005 0.0184,0.09994 0.0208,0.09924 0.0232,0.09854 0.0264,0.09754 0.0287,0.09654 0.0312,0.09534 0.0335,0.09403 0.0359,0.09263 0.0383,0.09123 0.0407,0.08962 0.0431,0.08791 0.0448,0.08622 0.0472,0.08441", + "fill": { + "paint": "transparent" + }, + "id": "path8740", + "name": "path8740", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 102.89572,43.17664 0.0663,0.119542 0.0743,0.117878 0.0826,0.115619 0.0903,0.112843 0.0975,0.109414 0.10451,0.105348 0.1109,0.100644 0.1093,0.08962 0.12136,0.08973 0.12832,0.08532 0.13526,0.08082 0.14245,0.07601 0.14925,0.07098 0.15613,0.0658 0.16266,0.0604 0.12559,0.04134 0.17354,0.05004 0.17874,0.04367 0.18416,0.03706 0.18935,0.03046 0.19463,0.02357 0.19966,0.01665 0.20438,0.009 0.0687,0.0022 0.21061,-4.51e-4 0.21308,-0.008 0.21557,-0.01568 0.21772,-0.02356 0.21995,-0.03136 0.22163,-0.03947 0.22316,-0.04719 0.008,-5.7e-4 0.22425,-0.05545 0.22396,-0.06331 0.22316,-0.07098 0.22186,-0.07871 0.2202,-0.08622 0.21812,-0.09363 0.17425,-0.08092 0.18792,-0.09363 0.20566,-0.11045 0.1995,-0.115889 0.1939,-0.121433 0.18809,-0.126911 0.18255,-0.132425 0.17699,-0.137993 0.0679,-0.05545 0.16778,-0.144265 0.16035,-0.148084 0.15244,-0.151212 0.14421,-0.153817 0.13567,-0.155909 0.12687,-0.157537 0.11801,-0.158769 0.10907,-0.159653 0.1002,-0.160186 0.0911,-0.160493 0.0823,-0.160569 0.0735,-0.160479 0.0648,-0.160261 0.0568,-0.159931", + "fill": { + "paint": "transparent" + }, + "id": "path8741", + "name": "path8741", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 103.51188,53.158029 -0.0455,-0.09524 -0.0487,-0.09443 -0.052,-0.09343 -0.0551,-0.09233 -0.0575,-0.09103 -0.0607,-0.08962 -0.0631,-0.08812 -0.0503,-0.0667 -0.0679,-0.08492 -0.0703,-0.08301 -0.0735,-0.08161 -0.0759,-0.08012 -0.0791,-0.07851 -0.0817,-0.07691 -0.0845,-0.0752 -0.0872,-0.07338 -0.0897,-0.07158 -0.0663,-0.05064 -0.0942,-0.0682 -0.0971,-0.0667 -0.1002,-0.0649 -0.10298,-0.06318 -0.10602,-0.06138 -0.10883,-0.0595 -0.1116,-0.05747 -0.11441,-0.05537 -0.11697,-0.05334 -0.1196,-0.05124 -0.12208,-0.04899 -0.12448,-0.04659 -0.12671,-0.04405 -0.12863,-0.04164 -0.13064,-0.03909 -0.13239,-0.03639 -0.10283,-0.02611", + "fill": { + "paint": "transparent" + }, + "id": "path8746", + "name": "path8746", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 100.36186,50.807601 -0.18831,-0.04337 -0.19184,-0.03835 -0.19526,-0.03331 -0.19863,-0.02836 -0.20222,-0.02327 -0.20541,-0.01801 -0.20861,-0.01267 -0.21173,-0.008 -0.21485,-0.0022 -0.21755,0.0037 -0.22044,0.009 -0.22283,0.01493 -0.22523,0.02063 -0.22738,0.02634 -0.22898,0.03226 -0.23059,0.03811 -0.19359,0.03624 -0.2325,0.04876 -0.23178,0.0544 -0.2313,0.05995 -0.23027,0.0655 -0.2293,0.07098 -0.2281,0.07652 -0.22676,0.08191 -0.22523,0.08731 -0.22338,0.09274 -0.22148,0.09794 -0.2194,0.103216 -0.21708,0.108312 -0.21444,0.113398 -0.21188,0.118327 -0.20893,0.123182 -0.20574,0.127962 -0.0256,0.01613", + "fill": { + "paint": "transparent" + }, + "id": "path8747", + "name": "path8747", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 93.19559,52.229221 -0.0559,0.03594 -0.16731,0.111275 -0.16355,0.113668 -0.15995,0.115926 -0.15612,0.118125 -0.15228,0.120249 -0.14837,0.122281 -0.14461,0.12424 -0.14054,0.126116 -0.13662,0.127931 -0.13256,0.129664 -0.12855,0.131375 -0.12456,0.132974 -0.12048,0.134593 -0.11649,0.136102 -0.008,0.0052 -0.11185,0.137152 -0.10739,0.138046 -0.10282,0.138705 -0.0981,0.139268 -0.0935,0.139695 -0.0889,0.139989 -0.0842,0.140161 -0.0799,0.140266 -0.0751,0.140235 -0.0703,0.140162 -0.0655,0.140011 -0.0607,0.139778 -0.0568,0.13953 -0.052,0.139216 -0.0472,0.138856", + "fill": { + "paint": "transparent" + }, + "id": "path8748", + "name": "path8748", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 147.87253,41.121359 0.01,0.0052 0.0108,0.0052 0.0108,0.0037 0.0108,0.0038 0.0108,0.0037 0.0108,0.0038 0.0108,0.003 0.0108,0.003 0.0108,0.003 0.0108,0.0022", + "fill": { + "paint": "transparent" + }, + "id": "path8749", + "name": "path8749", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 147.97584,41.157357 0.0108,0.0023 0.0108,0.0022 0.0108,0.0023 0.0108,0.0022 0.0108,0.0023 0.0108,0.0022 0.0108,5.78e-4 0.0108,5.56e-4 0.0108,4.13e-4 0.0108,1.5e-4", + "fill": { + "paint": "transparent" + }, + "id": "path8750", + "name": "path8750", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 147.449,47.898361 0.0144,-0.152196 0.01,-0.158978 0.008,-0.167043 -5.1e-4,-0.176873 -0.008,-0.189327 -0.0127,-0.205773 -0.0192,-0.22931 -0.028,-0.267688 -0.0223,-0.189042 -0.0599,-0.492854 -0.044,-0.376704 -0.0318,-0.303175 -0.0232,-0.265452 -0.016,-0.241547 -0.008,-0.103343 -0.008,-0.238067 v -0.235463 l 0.008,-0.232678 0.01,-0.22973 0.0151,-0.226691 0.0208,-0.223495 0.0263,-0.220261 0.0318,-0.219564 0.0383,-0.222355 0.0448,-0.225228 0.0512,-0.228162 0.0575,-0.231125 0.064,-0.234202 0.0711,-0.237287 0.0464,-0.146072", + "fill": { + "paint": "transparent" + }, + "id": "path8751", + "name": "path8751", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 147.87221,41.121224 -0.0559,0.176107 -0.0695,0.234615 -0.0623,0.231238 -0.0558,0.227936 -0.0496,0.224696 -0.0431,0.221537 -0.0368,0.218483 -0.0304,0.215437 -0.0247,0.216112 -0.0199,0.219999 -0.0144,0.223999 -0.008,0.228071 v 0.232228 0.236386 l 0.008,0.240624 0.008,0.123999 0.0168,0.247189 0.0239,0.268228 0.0319,0.298786 v 0.02536 l 0.0431,0.355854 0.0108,0.08522 0.0472,0.384086 0.008,0.03421 0.0304,0.279248 0.0215,0.239484 0.0144,0.215085 0.008,0.197978 v 0.184998 0.174726 l -0.008,0.16624 -0.0127,0.159098", + "fill": { + "paint": "transparent" + }, + "id": "path8752", + "name": "path8752", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 152.61386,25.900032 0.092,-0.27035 0.0994,-0.269653 0.1069,-0.26867 0.11422,-0.267402 0.12144,-0.265767 0.12856,-0.26389 0.1355,-0.261618 0.0168,-0.03083 0.1432,-0.258781 0.15435,-0.264409 0.16659,-0.271176 0.18007,-0.279436 0.19496,-0.28961 0.21204,-0.302523 0.14686,-0.203027 0.24775,-0.333187 0.30097,-0.393953 0.15045,-0.194436 0.11638,-0.149848 0.33878,-0.438332 0.2535,-0.335152 0.0175,-0.02372 0.19495,-0.267026 0.1657,-0.236941 0.14533,-0.2187 0.12952,-0.206516 0.0108,-0.01778 0.10882,-0.18604 0.0942,-0.173665 0.0817,-0.164564 0.0711,-0.157581 0.0607,-0.152117 0.052,-0.147672", + "fill": { + "paint": "transparent" + }, + "id": "path8753", + "name": "path8753", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 157.36348,18.430122 -0.0527,0.149919 -0.0615,0.154446 -0.0719,0.160023 -0.0826,0.167058 -0.0949,0.17612 -0.0679,0.118748 -0.12064,0.198945 -0.13553,0.209938 -0.15395,0.226053 -0.17968,0.251729 -0.0256,0.03474 -0.2301,0.309252 -0.28485,0.372329 -0.18734,0.24169 -0.10942,0.140896 -0.33852,0.43903 -0.26151,0.34691 -0.17113,0.233323 -0.21805,0.306755 -0.19951,0.291673 -0.1832,0.280037 -0.16923,0.270786 -0.15657,0.263283 -0.14479,0.257183 -0.0568,0.104635 -0.13528,0.260694 -0.12822,0.262841 -0.12114,0.26467 -0.11386,0.266187 -0.10629,0.267379 -0.0991,0.268249 -0.0915,0.268858", + "fill": { + "paint": "transparent" + }, + "id": "path8754", + "name": "path8754", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 89.38395,157.4589 -0.0487,-0.10893 -0.0527,-0.1081 -0.0568,-0.10707 -0.0615,-0.10574 -0.0655,-0.10421 -0.0695,-0.10245 -0.0727,-0.10047 -0.0767,-0.0981 -0.0256,-0.0312 -0.0812,-0.0948 -0.0844,-0.0921 -0.0875,-0.0891 -0.0916,-0.0873 -0.0956,-0.0853 -0.0996,-0.0832 -0.10354,-0.0811 -0.10738,-0.0788 -0.11121,-0.0763 -0.11496,-0.0738 -0.11849,-0.0712 -0.12201,-0.0684 -0.0208,-0.0113 -0.12584,-0.065 -0.12936,-0.0621 -0.13286,-0.0592 -0.13646,-0.0562 -0.13982,-0.0532 -0.14334,-0.0501 -0.14677,-0.0469 -0.15005,-0.0437 -0.15323,-0.0403 -0.1232,-0.0293 -0.15892,-0.0341 -0.161717,-0.0305 -0.164432,-0.0267 -0.167297,-0.0231 -0.169868,-0.0193 -0.172575,-0.0154 -0.175133,-0.0116 -0.177444,-0.008 -0.17993,-0.004 -0.0711,-3e-4", + "fill": { + "paint": "transparent" + }, + "id": "path8755", + "name": "path8755", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 147.85048,34.282833 0.0192,1.14e-4 0.0448,0.0022 0.0431,0.0022 0.0424,0.0037 0.0416,0.0052 0.0344,0.0052 0.0407,0.008 0.04,0.008 0.0391,0.01005 0.0383,0.01073 0.0367,0.01177 0.0359,0.01267 0.0342,0.01381 0.0336,0.01471 0.0319,0.0156 0.0311,0.01643 0.0296,0.01725 0.028,0.018 0.0273,0.01884", + "fill": { + "paint": "transparent" + }, + "id": "path8756", + "name": "path8756", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 167.85418,7.376526 v -0.0097 -0.01537 -0.01551 l 5e-4,-0.0053 v -0.01574 -0.01589 l -8e-5,-0.01589 v -0.01582 -0.01574 -0.01551 l -0.008,-0.01529", + "fill": { + "paint": "transparent" + }, + "id": "path8757", + "name": "path8757", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 115.18097,150.48685 0.0176,0.006 0.0288,0.0108 0.0279,0.0116 0.0103,0.005 0.028,0.0129 0.0272,0.0138 0.0272,0.0147 0.0263,0.0156 0.0256,0.0166 0.0248,0.0176 0.0239,0.0185", + "fill": { + "paint": "transparent" + }, + "id": "path8758", + "name": "path8758", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 114.86954,150.43316 0.0128,1.2e-4 0.0319,5.7e-4 0.0319,0.002 0.0184,0.002 0.0319,0.004 0.0311,0.005 0.0312,0.006 0.0311,0.007 0.0312,0.008 0.0303,0.009 0.0303,0.01", + "fill": { + "paint": "transparent" + }, + "id": "path8759", + "name": "path8759", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 115.44767,150.63044 0.21493,0.17631 0.215,0.17604 0.21515,0.17591 0.21517,0.17588 0.21516,0.17591 0.21492,0.1761 0.21493,0.17629 0.21444,0.17663 0.21412,0.17705 0.21364,0.17754", + "fill": { + "paint": "transparent" + }, + "id": "path8760", + "name": "path8760", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 157.46304,18.464266 0.0108,0.0023 0.0108,0.0023 0.0108,0.0023 0.0108,0.0017 0.0108,0.0017 0.0108,0.0017 0.0108,5.69e-4 0.0108,5.66e-4 0.0108,4.16e-4 0.0108,1.36e-4", + "fill": { + "paint": "transparent" + }, + "id": "path8761", + "name": "path8761", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 153.01629,26.041476 -0.0108,-1.5e-4 -0.0108,-4.05e-4 -0.0108,-5.7e-4 -0.0108,-5.71e-4 -0.0108,-0.0023 -0.0108,-0.0023 -0.0108,-0.0023 -0.0108,-0.0023 -0.0108,-0.0023 -0.0108,-0.0023", + "fill": { + "paint": "transparent" + }, + "id": "path8762", + "name": "path8762", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 152.90995,26.028624 -0.0108,-0.0023 -0.0108,-0.003 -0.0108,-0.003 -0.0108,-0.003 -0.0108,-0.0038 -0.0108,-0.0038 -0.0108,-0.0038 -0.0108,-0.0038 -0.0108,-0.0052 -0.01,-0.0052", + "fill": { + "paint": "transparent" + }, + "id": "path8763", + "name": "path8763", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 157.35973,18.428277 0.01,0.0045 0.0108,0.0045 0.0108,0.004 0.0108,0.004 0.0108,0.004 0.0108,0.004 0.0108,0.0028 0.0108,0.0028 0.0108,0.0028 0.0108,0.0023", + "fill": { + "paint": "transparent" + }, + "id": "path8764", + "name": "path8764", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 112.21552,168.78509 -0.0948,-0.21085 -0.09,-0.22197 -0.085,-0.23413 -0.0803,-0.24752 -0.052,-0.17801 -0.0727,-0.27415 -0.0655,-0.2847 -0.0592,-0.29628 -0.0527,-0.30916 -0.016,-0.10678 -0.0431,-0.32908 -0.0352,-0.33693 -0.0264,-0.34519 -0.0184,-0.35387 -0.01,-0.36301 -4e-4,-0.37277 0.009,-0.3831 0.0184,-0.39413 5e-4,-0.0127 0.0287,-0.40646 0.0376,-0.40743 0.0472,-0.40833 0.0568,-0.40899 0.0663,-0.40966 0.0759,-0.41012 0.085,-0.41049 0.032,-0.1434 0.0463,-0.19972 0.0983,-0.39281 0.10433,-0.38066 0.1106,-0.36907 0.11649,-0.35803 0.12264,-0.34747 0.12856,-0.3373 0.13422,-0.32753", + "fill": { + "paint": "transparent" + }, + "id": "path8765", + "name": "path8765", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 116.03883,157.09398 -0.0623,0.22029 -0.0575,0.22641 -0.0527,0.23279 -0.0479,0.23946 -0.0431,0.24654 -0.0384,0.25394 -0.0327,0.26178 -0.0176,0.16333 -0.024,0.27557 -0.0184,0.27683 -0.012,0.27795 -0.008,0.27893 4.9e-4,0.27975 0.008,0.28042 0.0136,0.28093 0.008,0.0975 0.01,0.13372 0.0247,0.27481 0.0303,0.27025 0.0359,0.26582 0.0415,0.26148 0.0472,0.25723 0.0527,0.25309 0.0583,0.24904 0.0176,0.0691 0.0616,0.22901 0.0639,0.21622 0.0671,0.20495 0.0703,0.19495 0.0727,0.18586 0.0759,0.17754 0.0791,0.16989 0.0826,0.16276", + "fill": { + "paint": "transparent" + }, + "id": "path8766", + "name": "path8766", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 116.03883,157.09396 0.01,0.007 0.0136,0.0102 0.0128,0.0106 v 0.003 l 0.0128,0.0112 0.012,0.0116 0.0112,0.0121 0.0113,0.0125 0.0103,0.013 0.01,0.0134 0.009,0.0139", + "fill": { + "paint": "transparent" + }, + "id": "path8767", + "name": "path8767", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 117.64595,152.44283 0.008,0.005 0.008,0.005 v 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005", + "fill": { + "paint": "transparent" + }, + "id": "path8768", + "name": "path8768", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 117.59513,152.3941 0.008,0.005 0.008,0.005 0.008,0.005 0.008,0.005 0.008,0.005 0.008,0.005 0.008,0.005 0.008,0.005 0.008,0.005 0.008,0.005", + "fill": { + "paint": "transparent" + }, + "id": "path8769", + "name": "path8769", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 150.851,50.795454 v -0.0052 -0.0052 -0.0052 -0.0052 -0.0052 -0.0052 -0.0052 -0.0052 l -0.008,-0.0052 -0.008,-0.0052", + "fill": { + "paint": "transparent" + }, + "id": "path8770", + "name": "path8770", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 153.26005,43.188562 0.008,0.006 0.0108,0.009 0.0108,0.009 v 0.003 l 0.0108,0.01006 0.01,0.01012 0.01,0.01051 0.008,0.0108 0.008,0.0111 0.008,0.01155 0.008,0.01177", + "fill": { + "paint": "transparent" + }, + "id": "path8771", + "name": "path8771", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 153.11704,43.102901 0.0151,0.0067 0.0151,0.008 0.0151,0.008 0.0144,0.008 0.0144,0.008 0.0144,0.009 0.0144,0.009 0.0137,0.009 0.0136,0.01002 0.0127,0.01012", + "fill": { + "paint": "transparent" + }, + "id": "path8772", + "name": "path8772", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 150.81385,50.74418 -0.008,-0.0052 -0.008,-0.0052 -0.008,-0.0052 -0.008,-0.0052 -0.008,-0.0052 -0.008,-0.0052 -0.008,-0.0052 -0.008,-0.0052 -0.008,-0.0052 -0.008,-0.0052", + "fill": { + "paint": "transparent" + }, + "id": "path8773", + "name": "path8773", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 160.63118,20.438048 0.008,0.0045 0.008,0.0045 0.008,0.0045 0.008,0.0045 0.008,0.0045 0.008,0.0052 0.008,0.0052 0.008,0.0052 0.008,0.0052 0.008,0.0052", + "fill": { + "paint": "transparent" + }, + "id": "path8774", + "name": "path8774", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 158.19409,28.059835 -0.0127,-0.01013 -0.0136,-0.01001 -0.0137,-0.009 -0.0144,-0.009 -0.0144,-0.009 -0.0144,-0.008 -0.0144,-0.008 -0.0151,-0.008 -0.0151,-0.008 -0.0151,-0.0067", + "fill": { + "paint": "transparent" + }, + "id": "path8775", + "name": "path8775", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 158.28693,28.163216 v -0.0038 l -0.008,-0.01162 -0.008,-0.01132 -0.008,-0.008 -0.008,-0.0108 -0.01,-0.0105 -0.01,-0.01013 -0.0108,-0.01001 -0.0108,-0.01006 -0.0108,-0.009 -0.0108,-0.009", + "fill": { + "paint": "transparent" + }, + "id": "path8776", + "name": "path8776", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 160.68199,20.486741 0.008,0.0045 0.008,0.0045 v 0.0052 0.0052 0.0052 0.0052 0.0052 0.0052 0.0052 0.0052", + "fill": { + "paint": "transparent" + }, + "id": "path8777", + "name": "path8777", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 160.63118,20.438048 -0.21773,0.657641 -0.25094,0.738145 -0.0384,0.111845 -0.26151,0.75256 -0.26382,0.751854 -0.26406,0.75178 -4.9e-4,0.0023 -0.26263,0.752252 -0.26022,0.752957 -0.25719,0.753872 -0.25351,0.754976 -0.24927,0.75625", + "fill": { + "paint": "transparent" + }, + "id": "path8778", + "name": "path8778", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 153.88358,26.127038 0.0865,-0.253687 0.0939,-0.252725 0.10113,-0.251376 0.1081,-0.249778 0.11518,-0.247752 0.12209,-0.245403 0.12886,-0.242749 0.0735,-0.132814 0.13879,-0.237932 0.15053,-0.24388 0.16322,-0.251271 0.17761,-0.260552 0.19422,-0.27257 0.21406,-0.288508 0.19135,-0.249627 0.26597,-0.337127 0.34708,-0.430514 0.0987,-0.121726 0.2762,-0.342025 0.23931,-0.302951 0.19917,-0.260941 0.0735,-0.0986 0.16539,-0.2306 0.14804,-0.217306 0.13375,-0.207739 0.1212,-0.200679 0.0965,-0.170494 0.0959,-0.18193 0.0848,-0.175012 0.0743,-0.169298 0.0647,-0.164541 0.0559,-0.160541", + "fill": { + "paint": "transparent" + }, + "id": "path8779", + "name": "path8779", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 153.11704,43.102901 -0.24161,0.7485 -0.23976,0.758029 -0.23625,0.759042 -0.23323,0.759905 -0.23073,0.760572 -0.036,0.119378 -0.22931,0.760999 -0.22978,0.760844 -0.2325,0.760083 -0.23266,0.744674 -0.21221,0.660552", + "fill": { + "paint": "transparent" + }, + "id": "path8780", + "name": "path8780", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 148.61565,48.931827 0.0464,-0.153276 0.0416,-0.157928 0.0359,-0.162384 0.0304,-0.166788 0.0247,-0.170983 0.0184,-0.175004 0.008,-0.05019 0.0108,-0.179724 0.008,-0.187954 V 47.32976 l -0.008,-0.209884 -0.0144,-0.225229 -7e-5,-5.69e-4 -0.0216,-0.246019 -0.0304,-0.280481 -0.044,-0.346773 -0.0108,-0.08252 -0.0296,-0.223878 -0.0503,-0.395206 -0.036,-0.311345 -0.0168,-0.165949 -0.0232,-0.278123 -0.0161,-0.262631 -0.008,-0.249852 v -0.23903 -0.22964 l 0.01,-0.221402 0.0151,-0.214056 0.0223,-0.213652 0.0288,-0.217125 0.036,-0.220651 0.0424,-0.224291 0.0496,-0.227906 0.0575,-0.231607 0.0646,-0.235319 0.0727,-0.239079 0.0263,-0.08161", + "fill": { + "paint": "transparent" + }, + "id": "path8781", + "name": "path8781", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 148.55645,41.170196 0.0199,2.32e-4 0.0199,5.69e-4 0.0199,0.0023 0.0199,0.0022 0.0199,0.0023 0.0199,0.0022 0.0199,0.003 0.0199,0.003 0.0192,0.0038 0.0192,0.0037", + "fill": { + "paint": "transparent" + }, + "id": "path8782", + "name": "path8782", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 148.34888,48.788223 -0.0175,-0.006 -0.0303,-0.009 -0.0304,-0.008 -0.0311,-0.008 -0.0311,-0.006 -0.0312,-0.0052 -0.0311,-0.0052 -0.0318,-0.003 -0.0127,-5.71e-4 -0.032,-0.0022 -0.0318,-5.56e-4", + "fill": { + "paint": "transparent" + }, + "id": "path8783", + "name": "path8783", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 148.61565,48.931827 -0.0232,-0.01794 -0.01,-0.0067 -0.0247,-0.01725 -0.016,-0.0105 -0.0264,-0.0156 -0.0263,-0.01471 -0.0273,-0.01381 -0.028,-0.01298 -0.028,-0.01215 -0.0287,-0.01117 -0.0287,-0.01044", + "fill": { + "paint": "transparent" + }, + "id": "path8784", + "name": "path8784", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 158.21701,18.530781 0.0175,0.0061 0.0288,0.01084 0.028,0.01175 0.0108,0.0045 0.028,0.01294 0.0271,0.01387 0.0273,0.01477 0.0263,0.01574 0.0255,0.01664 0.0248,0.01766 0.0232,0.01858", + "fill": { + "paint": "transparent" + }, + "id": "path8785", + "name": "path8785", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 157.90558,18.477116 0.0127,1.14e-4 0.0319,5.7e-4 0.0319,0.0023 0.0184,0.0017 0.0311,0.004 0.0311,0.0051 0.0311,0.0061 0.0311,0.0068 0.0304,0.0079 0.0304,0.0088 0.0303,0.0097", + "fill": { + "paint": "transparent" + }, + "id": "path8786", + "name": "path8786", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 153.68879,26.063601 -0.0199,-0.0038 -0.0191,-0.0038 -0.0199,-0.003 -0.0199,-0.003 -0.0199,-0.0023 -0.0199,-0.0023 -0.0199,-0.0022 -0.0199,-0.0023 -0.0199,-5.71e-4 -0.0199,-2.18e-4", + "fill": { + "paint": "transparent" + }, + "id": "path8787", + "name": "path8787", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 148.58426,34.624446 5e-4,-0.0022 0.0108,-0.03624 0.01,-0.03586 0.008,-0.03579 v -0.01418 l 0.008,-0.03556 0.008,-0.03556 v -0.03511 -0.03474 l 2.4e-4,-0.03436 v -0.03377 -0.03316 -0.03248 l -0.008,-0.03173", + "fill": { + "paint": "transparent" + }, + "id": "path8791", + "name": "path8791", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 148.61926,34.19337 -0.008,-0.03121 -0.008,-0.03113 -0.01,-0.03106 -0.008,-0.02071 -0.0108,-0.03046 -0.0129,-0.02986 -0.0144,-0.02926 -0.0151,-0.0285 -0.0168,-0.02777 -0.0175,-0.02671 -0.0192,-0.02604 -0.0199,-0.02544 -0.0215,-0.02491 -0.0223,-0.02432 -0.0239,-0.02372 -0.0247,-0.02297 -0.0263,-0.02221 -0.0271,-0.02153 -0.0287,-0.02063 -0.0192,-0.0126 -0.0304,-0.01906 -0.032,-0.01824 -0.0328,-0.01733 -0.0342,-0.0165 -0.0352,-0.0156 -0.0367,-0.01471 -0.0376,-0.01366 -0.0391,-0.01267 -0.04,-0.01162 -0.0407,-0.01065 -0.0424,-0.009 -0.0431,-0.008 -0.044,-0.0067 -0.0448,-0.006 -0.0455,-0.0052 -0.0464,-0.0037 -0.0464,-0.0022 -0.0472,-5.56e-4 h -0.008", + "fill": { + "paint": "transparent" + }, + "id": "path8792", + "name": "path8792", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 100.40237,33.489796 -0.0551,5.63e-4 -0.0551,0.0022 -0.0551,0.0037 -0.0559,0.006 -0.0559,0.008 -0.0559,0.009 -0.0559,0.01057 -0.0559,0.0123 -0.0559,0.01403 -0.0559,0.0156 -0.0559,0.01725 -0.0551,0.01884 -0.0551,0.02056 -0.0544,0.02206 -0.0544,0.02364 -0.0535,0.02521 -0.0527,0.0267 -0.052,0.0282 -0.0112,0.006 -0.0511,0.02993 -0.0503,0.03136 -0.0439,0.02904 -0.0479,0.03346 -0.0463,0.03444 -0.0448,0.03534 -0.0431,0.03601 -0.0415,0.03676 -0.04,0.03744 -0.0384,0.03796 -0.0359,0.03849 -0.0343,0.03887 -0.0327,0.03924 -0.0304,0.03954 -0.0287,0.03992 -0.0272,0.04014 -0.0247,0.04044 -0.0232,0.04044 -0.0216,0.04067 -0.02,0.04082 -0.0176,0.04097 -0.016,0.04097 -0.0144,0.04104", + "fill": { + "paint": "transparent" + }, + "id": "path8793", + "name": "path8793", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 94.86887,46.139068 v 0.0067 l -0.0103,0.03586 -0.01,0.03594 -0.008,0.03601 -0.008,0.03594 -0.008,0.03564 v 0.03549 0.03496 l -5e-4,0.03459 5e-4,0.03399 v 0.03332 0.03263 l 0.008,0.03203 0.008,0.03136 0.008,0.03061 0.009,0.02971 0.0103,0.02956 0.0112,0.02941 0.0128,0.02926 0.0145,0.02904 0.016,0.02866 0.0168,0.02837 0.0184,0.02783 0.02,0.02723 0.0208,0.02656 0.0224,0.02581 0.0232,0.02491 0.008,0.008 0.0248,0.02364 0.0248,0.02243 0.0263,0.02131 0.0264,0.02011", + "fill": { + "paint": "transparent" + }, + "id": "path8796", + "name": "path8796", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 95.14947,47.056721 0.0287,0.02026 0.0128,0.008 0.0303,0.01891 0.0185,0.0105 0.0319,0.01725 0.0319,0.01613 0.0327,0.01516 0.0336,0.0141 0.0335,0.01305 0.0342,0.012 0.0342,0.01087", + "fill": { + "paint": "transparent" + }, + "id": "path8797", + "name": "path8797", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 112.16343,41.048716 0.008,-0.02521 0.0232,-0.07531 0.0208,-0.07521 0.0192,-0.07503 0.0176,-0.07458 0.0152,-0.07428 0.0136,-0.0739 0.0112,-0.07352 0.01,-0.07293 0.008,-0.07233 0.008,-0.0718 0.008,-0.0712 v -0.0706 l 4.8e-4,-0.06993 v -0.06933 -0.06857 -0.05124 l -0.008,-0.06842 -0.008,-0.0682 -0.01,-0.06782 -0.0112,-0.06737 -0.0136,-0.06692 -0.0152,-0.0664 -0.0168,-0.06572 -0.0184,-0.0649 -0.02,-0.06406 -0.0216,-0.06332 -0.0232,-0.06228 -0.0247,-0.0613 -0.0263,-0.06018 -0.028,-0.0592 -0.0287,-0.058", + "fill": { + "paint": "transparent" + }, + "id": "path8801", + "name": "path8801", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 107.05562,1.7411547 -0.0639,0.07806 -0.0631,0.080574 -0.0631,0.083128 -0.0631,0.085821 -0.0535,0.0751 -0.0631,0.09117 -0.0623,0.09324 -0.0615,0.09538 -0.0607,0.09757 -0.0599,0.09978 -0.0592,0.102071 -0.0583,0.104404 -0.0575,0.10678 -0.0575,0.109233 -0.0568,0.111769 -0.0559,0.114343 -0.0551,0.116993 -0.0544,0.119741 -0.0487,0.111034", + "fill": { + "paint": "transparent" + }, + "id": "path8802", + "name": "path8802", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 107.62369,1.132095 -0.0176,0.012187 -0.0407,0.028841 -0.04,0.029371 -0.0224,0.017104 -0.0391,0.030213 -0.0391,0.030663 -0.0384,0.031194 -0.0384,0.031645 -0.0376,0.032105 -0.0367,0.032476 -0.0367,0.032936", + "fill": { + "paint": "transparent" + }, + "id": "path8807", + "name": "path8807", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 107.09557,1.5759471 -0.0695,0.07078 -0.0695,0.073213 -0.0687,0.075807 -0.0687,0.07843 -0.0679,0.081185 -0.0679,0.083978 -0.0671,0.08691 -0.0671,0.08992 -0.0671,0.09306 -0.0663,0.09636 -0.0663,0.09976 -0.0112,0.0168 -0.0663,0.103988 -0.0655,0.106295 -0.0647,0.108673 -0.0632,0.111103 -0.0623,0.113602 -0.0615,0.116182 -0.0607,0.118863 -0.0599,0.121595 -0.0583,0.124435 -0.0575,0.127364 -0.027,0.06185", + "fill": { + "paint": "transparent" + }, + "id": "path8808", + "name": "path8808", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 59.034576,155.00568 -0.0079,-0.016 -0.002,-0.003 -0.0066,-0.0174 -0.0047,-0.0152 -0.0047,-0.0179 -0.004,-0.018 -0.0034,-0.0182 -0.0026,-0.0183 -0.0026,-0.0184 -0.002,-0.0183 -4.94e-4,-0.0184", + "fill": { + "paint": "transparent" + }, + "id": "path8809", + "name": "path8809", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 58.993558,154.82624 -4.8e-4,-0.0127 -1.93e-4,-0.0199 3.33e-4,-0.0199 2.46e-4,-0.007 5e-4,-0.0199 0.002,-0.0199 0.0026,-0.0198 0.0034,-0.0197 0.004,-0.0196 0.0047,-0.0193 0.0053,-0.0191", + "fill": { + "paint": "transparent" + }, + "id": "path8810", + "name": "path8810", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 64.007503,160.37084 h -2.46e-4 l -0.01832,7e-5 -0.01799,3.2e-4 -0.01779,5.8e-4 -0.01805,0.002 -0.01846,0.002 -0.01918,0.004 -0.02019,0.005 -5e-4,2e-4 -0.01352,0.004 -0.01009,0.004 -0.0072,0.004 -0.0053,0.005 -0.004,0.005 -0.0026,0.005 -0.002,0.005", + "fill": { + "paint": "transparent" + }, + "id": "path8811", + "name": "path8811", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 99.66253,19.195297 -0.0303,0.16402 -0.0256,0.168544 -0.02,0.173091 -0.0144,0.177706 -0.01,0.182348 v 0.06318 0.188642 0.198864 l 0.01,0.211596 0.016,0.228268 v 0.04495 l 0.0247,0.256973 0.036,0.326172 0.0296,0.25707 0.0255,0.230293 0.032,0.3217 0.0232,0.281395 0.01,0.13698 0.0128,0.248562 0.008,0.233428 v 0.221289 l -0.008,0.213008 -0.0103,0.21687 -0.016,0.214461 -0.0216,0.212016 -0.0272,0.211461 -0.0336,0.214379 -0.04,0.217267 -0.0463,0.220232 -0.0527,0.22315 -0.0592,0.226053 -0.0663,0.22895 -0.0687,0.218814", + "fill": { + "paint": "transparent" + }, + "id": "path8812", + "name": "path8812", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 64.007503,160.37084 0.0047,-0.0467 0.02105,-0.21656 0.01659,-0.19162 0.01326,-0.17504 0.01009,-0.16289 0.0072,-0.15349 0.0047,-0.1459 0.0026,-0.13961 9.9e-5,-0.13422 -0.0026,-0.12958 -0.004,-0.11333 -0.0066,-0.12054 -0.0082,-0.11653 -0.01021,-0.1129 -0.01226,-0.10959 -0.01418,-0.10658 -0.01653,-0.10629 -0.01925,-0.10893 -0.02218,-0.1119 -0.02505,-0.11514 -0.02832,-0.11888 -0.0144,-0.0568", + "fill": { + "paint": "transparent" + }, + "id": "path8813", + "name": "path8813", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 77.240748,157.38258 -0.07591,0.0877 -0.07431,0.0899 -0.07269,0.0919 -0.07113,0.094 -0.0687,0.096 -0.06712,0.0979 -0.06476,0.0998 -0.06309,0.10164 -0.0607,0.10332 -0.0583,0.10495 -0.05591,0.10652 -0.05351,0.10793 -0.0511,0.10932 -0.0487,0.11051 v 0.009 l -0.0463,0.11174 -0.04391,0.11317 -0.04151,0.11449 -0.03911,0.11579 -0.03671,0.117 -0.03424,0.11813 -0.03112,0.11915 -0.02872,0.12012 -0.02632,0.12101 -0.02319,0.1218 -0.02079,0.12246 -0.01839,0.12308 -0.01519,0.12358 -0.01045,0.0985", + "fill": { + "paint": "transparent" + }, + "id": "path8814", + "name": "path8814", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 75.933229,160.43289 -0.03032,0.35779 -0.02318,0.36254 -0.01606,0.36729 -0.0088,0.37205 v 0.37681 l 0.008,0.38153 0.008,0.18874 0.008,0.17462 0.02079,0.38206 0.02799,0.37739 0.03511,0.37274 0.04237,0.36807 0.04872,0.36339 0.0559,0.35874 0.04478,0.25691 0.0663,0.34286 0.07192,0.33442 0.07749,0.32635 0.08326,0.31869 0.08884,0.31135 0.09451,0.30433 0.02719,0.0838 0.09755,0.28386 0.100278,0.27005 0.10322,0.25759 0.10626,0.24626 0.109634,0.23577 0.112961,0.22607 0.116421,0.21695", + "fill": { + "paint": "transparent" + }, + "id": "path8815", + "name": "path8815", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 99.80498,18.652207 0.008,-0.01437 0.008,-0.01404 0.008,-0.0068 0.009,-0.01319 0.0103,-0.01295 0.008,-0.0091 0.012,-0.01186 0.0136,-0.01107 0.0136,-0.01023 0.0144,-0.0093 0.0152,-0.0084", + "fill": { + "paint": "transparent" + }, + "id": "path8816", + "name": "path8816", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 57.453517,169.25183 -0.108601,-0.22793 -0.106848,-0.23766 -0.105287,-0.24837 -0.104109,-0.26041 -0.103281,-0.274 -0.06104,-0.16953 -0.103281,-0.30059 -0.100098,-0.3092 -0.09695,-0.31857 -0.09397,-0.32877 -0.09104,-0.33997 -0.01979,-0.0764 -0.08773,-0.35532 -0.08221,-0.35794 -0.07679,-0.36039 -0.07119,-0.36268 -0.06549,-0.3648 -0.05991,-0.36681 -0.05417,-0.3686 -0.04838,-0.37021 -0.04245,-0.37167 -0.03672,-0.37294 -0.01033,-0.11787", + "fill": { + "paint": "transparent" + }, + "id": "path8817", + "name": "path8817", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 104.98614,3.886202 0.008,-0.01196 0.008,-0.01174 0.009,-0.01143 0.0103,-0.0112 0.0121,-0.01082 0.0136,-0.01044 0.0152,-0.0099 0.0168,-0.0093 0.0184,-0.0085 0.0144,-0.006 0.02,-0.0068 0.0208,-0.006 0.0216,-0.0045 0.0232,-0.0038 0.024,-0.0023 0.0264,-0.0015 0.028,-1.67e-4 0.0303,7.39e-4 0.0303,0.0023", + "fill": { + "paint": "transparent" + }, + "id": "path8818", + "name": "path8818", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 63.924167,161.26226 -0.0026,0.036 -0.0026,0.0359 -0.004,0.0359 -0.004,0.0357 -0.004,0.0358 -0.0047,0.0357 -0.0047,0.0357 -0.0053,0.0356 -0.0066,0.0355 -0.0066,0.0354", + "fill": { + "paint": "transparent" + }, + "id": "path8819", + "name": "path8819", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 63.876812,161.61889 -0.0047,0.0219 -0.01105,0.0505 -0.01165,0.0465 -0.01246,0.0445 -0.01366,0.0436 -0.01506,0.0436 -0.01559,0.0412 -0.01726,0.0419 -0.01805,0.0404 -0.01872,0.0386 -0.01918,0.0366 -0.01953,0.0345 -0.01985,0.0323 -0.01999,0.0301 -0.02013,0.0279 -0.02019,0.0256 -0.02019,0.0237 -0.02019,0.0215 -0.02013,0.0196 -0.02013,0.0177 -0.01993,0.0159 -0.01991,0.0142 -0.01985,0.0125 -0.01972,0.0109 -0.01979,0.009 -0.01965,0.008 -0.01979,0.007 -0.01972,0.005 -0.01985,0.004 -0.01999,0.002 -0.02013,0.002 -0.02032,-7e-5", + "fill": { + "paint": "transparent" + }, + "id": "path8820", + "name": "path8820", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 63.301921,162.39115 1.94e-4,-0.008 2.99e-4,-0.008 3.94e-4,-0.008 4.86e-4,-0.008 5e-4,-0.008 5e-4,-0.008 4.93e-4,-0.008 4.99e-4,-0.008 4.99e-4,-0.008 5e-4,-0.008", + "fill": { + "paint": "transparent" + }, + "id": "path8821", + "name": "path8821", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 63.308705,162.30825 0.002,-0.008 0.002,-0.008 0.002,-0.008 0.002,-0.008 0.002,-0.008 0.002,-0.008 0.002,-0.008 0.002,-0.008 0.0026,-0.008 0.0026,-0.008", + "fill": { + "paint": "transparent" + }, + "id": "path8822", + "name": "path8822", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 55.747658,162.23463 -0.004,-2.5e-4 -0.004,-5.8e-4 -0.004,-0.002 -0.0026,-0.002 -0.0034,-0.002 -0.0026,-0.002 -0.0034,-0.002 -0.0026,-0.003 -0.0026,-0.003 -0.0026,-0.003", + "fill": { + "paint": "transparent" + }, + "id": "path8823", + "name": "path8823", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 54.942504,161.79088 -0.01446,-5.7e-4 -0.01459,-0.002 -0.01466,-0.003 -0.01446,-0.005 -0.0072,-0.003 -0.01345,-0.007 -0.01259,-0.008 -0.01165,-0.009 -0.01129,-0.01 -0.01081,-0.0112 -0.01021,-0.0126 -0.0096,-0.0141 -0.0026,-0.005 -0.0089,-0.0161 -0.008,-0.0172 -0.0072,-0.0184 -0.0066,-0.0197 -0.0047,-0.0211 -0.004,-0.0226 -0.0034,-0.0241 -5e-4,-0.0156", + "fill": { + "paint": "transparent" + }, + "id": "path8824", + "name": "path8824", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 54.752119,161.54745 -0.0085,-0.14971 -0.01081,-0.21359 -0.0084,-0.20374 -0.0053,-0.16862 -0.0047,-0.19122 -0.0026,-0.18552 -4.99e-4,-0.18044 0.002,-0.17579 0.0026,-0.17157 0.0047,-0.16764 0.0066,-0.16407 0.0084,-0.16068 0.01009,-0.15757", + "fill": { + "paint": "transparent" + }, + "id": "path8825", + "name": "path8825", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 92.11108,43.174269 v -0.008 -0.008 -0.008 l 0.008,-0.008 0.008,-0.008 0.008,-0.0067 0.008,-0.0067 0.008,-0.0067 0.008,-0.006 0.008,-0.006", + "fill": { + "paint": "transparent" + }, + "id": "path8827", + "name": "path8827", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 55.747658,162.23463 -0.0026,0.008 -0.0026,0.008 -0.0026,0.008 -0.002,0.008 -0.002,0.008 -0.002,0.008 -0.002,0.008 -0.002,0.008 -0.002,0.008 -5e-4,0.008", + "fill": { + "paint": "transparent" + }, + "id": "path8828", + "name": "path8828", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 90.72007,47.371683 0.0727,-0.213773 0.1431,-0.418539 0.14309,-0.418494 0.0703,-0.204782 0.14294,-0.418593 0.14253,-0.418697 0.14206,-0.418846 0.14125,-0.419073 0.14039,-0.41935 0.13934,-0.419657 0.13798,-0.420039", + "fill": { + "paint": "transparent" + }, + "id": "path8829", + "name": "path8829", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 55.716155,162.21564 -0.02039,0.0108 -0.01979,0.012 -0.01846,0.0127 -0.0047,0.004 -0.01799,0.0143 -0.01666,0.0149 -0.01513,0.0152 -0.01352,0.0156 -0.01189,0.0157 -0.01021,0.0158 -0.0086,0.0158 -0.0072,0.0157 -0.0053,0.0157", + "fill": { + "paint": "transparent" + }, + "id": "path8830", + "name": "path8830", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 55.262205,161.8574 5e-4,-0.005 5e-4,-0.005 4.99e-4,-0.005 4.94e-4,-0.005 5e-4,-0.005 4.92e-4,-0.005 5e-4,-0.005 4.99e-4,-0.005 5e-4,-0.005 0.002,-0.005", + "fill": { + "paint": "transparent" + }, + "id": "path8831", + "name": "path8831", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 55.48252,162.07099 -0.0026,0.003 -0.0026,0.003 -0.0026,0.003 -0.0026,0.003 -0.0026,0.003 -0.0026,0.003 -0.0026,0.003 -0.0026,0.003 -0.0026,0.003 -0.0026,0.003", + "fill": { + "paint": "transparent" + }, + "id": "path8832", + "name": "path8832", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 55.45628,162.10123 -0.0047,0.006 -0.004,0.006 -0.004,0.006 -0.004,0.006 -0.004,0.007 -0.0026,0.007 -0.0026,0.007 -0.0034,0.007 -0.0026,0.007 -0.0026,0.007", + "fill": { + "paint": "transparent" + }, + "id": "path8833", + "name": "path8833", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 54.942504,161.79088 -0.0026,0.007 -0.002,0.007 -0.002,0.007 -0.002,0.007 -0.002,0.007 -0.002,0.007 -0.002,0.007 -0.002,0.007 -0.002,0.007 -5e-4,0.007", + "fill": { + "paint": "transparent" + }, + "id": "path8834", + "name": "path8834", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 54.926598,161.85738 -4.93e-4,0.008 -4.99e-4,0.008 -5.01e-4,0.008 -4.99e-4,0.008 -4.99e-4,0.008 -5e-4,0.008 -5.01e-4,0.008 -4.79e-4,0.008 -4.39e-4,0.008 -3.4e-4,0.008", + "fill": { + "paint": "transparent" + }, + "id": "path8835", + "name": "path8835", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 54.752119,161.54745 -0.004,5.6e-4 -0.02318,0.006 -0.02132,0.007 -0.01953,0.008 -0.01805,0.008 -0.01659,0.009 -0.01519,0.01 -0.01399,0.0105 -0.01272,0.0113 -0.0091,0.009 -0.01057,0.0125 -0.0091,0.0129 -0.008,0.0129 -0.0066,0.0129 -0.0047,0.0126 -0.0026,0.0123 -0.002,0.012 -1.4e-4,0.0116", + "fill": { + "paint": "transparent" + }, + "id": "path8836", + "name": "path8836", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 54.927525,157.29428 -0.0026,0.002 -0.0026,0.002 -0.0026,0.002 -0.0026,0.002 -0.002,0.002 -0.0026,0.002 -0.002,0.002 -0.002,0.002 -0.002,0.002 -0.002,0.002", + "fill": { + "paint": "transparent" + }, + "id": "path8837", + "name": "path8837", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 54.907389,157.309 -0.0053,0.005 -0.004,0.005 -0.004,0.005 -0.004,0.005 -0.004,0.005 -0.0034,0.005 -0.0026,0.005 -0.0026,0.005 -0.0026,0.005 -0.002,0.006", + "fill": { + "paint": "transparent" + }, + "id": "path8838", + "name": "path8838", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 55.299212,156.10123 -0.0034,5.7e-4 -0.0026,5.7e-4 -0.0026,5.6e-4 -0.0034,5.7e-4 -0.0026,5.7e-4 -0.0034,5.7e-4 -0.0026,5.8e-4 -0.0026,5.6e-4 -0.0026,0.002 -0.0026,0.002", + "fill": { + "paint": "transparent" + }, + "id": "path8839", + "name": "path8839", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 55.267523,156.11123 -0.0053,0.002 -0.0053,0.002 -0.0053,0.002 -0.0053,0.003 -0.0053,0.003 -0.0053,0.003 -0.0047,0.003 -0.0047,0.004 -0.0047,0.004 -0.0047,0.004", + "fill": { + "paint": "transparent" + }, + "id": "path8840", + "name": "path8840", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 55.215337,156.14202 -0.0047,0.005 -0.004,0.005 -0.004,0.005 -0.004,0.005 -0.0026,0.005 -0.0034,0.005 -0.0026,0.005 -0.0026,0.005 -0.0026,0.006 -0.002,0.006", + "fill": { + "paint": "transparent" + }, + "id": "path8841", + "name": "path8841", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 55.462478,155.85465 0.0094,-0.0181 0.01201,-0.0224 0.01232,-0.0222 0.0026,-0.005 0.01279,-0.022 0.01326,-0.0218 0.01358,-0.0215 0.0142,-0.0213 0.01473,-0.0208 0.0154,-0.0205 0.01606,-0.0199", + "fill": { + "paint": "transparent" + }, + "id": "path8842", + "name": "path8842", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 57.729382,150.29167 0.002,-0.002 0.0066,-0.006 0.0072,-0.005 0.0072,-0.005 0.008,-0.005 0.008,-0.005 0.0082,-0.004 0.0084,-0.004 0.0066,-0.002 0.0086,-0.003 0.0086,-0.003", + "fill": { + "paint": "transparent" + }, + "id": "path8843", + "name": "path8843", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 57.80842,150.24832 0.01081,-0.003 0.01093,-0.003 0.01105,-0.002 0.01129,-0.002 0.01117,-0.002 0.01141,-0.002 0.01141,-5.5e-4 0.01141,-5.7e-4 0.01141,-4.1e-4 0.01141,-1.2e-4", + "fill": { + "paint": "transparent" + }, + "id": "path8844", + "name": "path8844", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 56.627527,154.62883 -0.002,0.005 -0.0053,0.0192 -0.0047,0.0194 -0.0026,0.014 -0.0034,0.0197 -0.0026,0.0198 -0.002,0.0199 -5.01e-4,0.0199 -4.99e-4,0.0199 5.4e-5,0.0199 4.99e-4,0.0199", + "fill": { + "paint": "transparent" + }, + "id": "path8845", + "name": "path8845", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 56.604365,154.82624 5e-4,0.0149 0.002,0.0184 0.0026,0.0184 4.39e-4,0.004 0.0026,0.0184 0.0026,0.0184 0.004,0.0182 0.0047,0.018 0.0053,0.0177 0.0072,0.0173 0.008,0.0168", + "fill": { + "paint": "transparent" + }, + "id": "path8846", + "name": "path8846", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 56.61514,155.01625 -0.01952,-0.01 -0.01467,-0.009 -0.01839,-0.0121 -0.01745,-0.0131 -0.01659,-0.0141 -0.01559,-0.015 -0.01446,-0.0159 -0.01326,-0.0165 -0.01206,-0.0172 -0.01081,-0.0177 -0.0026,-0.004 -0.009,-0.0184 -0.0079,-0.0187 -0.0066,-0.0186 -0.0047,-0.0186 -0.0026,-0.0183 -0.002,-0.0179 -4.34e-4,-0.0173 5e-4,-0.0168 0.0026,-0.0161 0.0034,-0.0155", + "fill": { + "paint": "transparent" + }, + "id": "path8847", + "name": "path8847", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 56.43433,154.69508 0.01057,-0.009 0.01206,-0.009 0.01245,-0.008 0.01519,-0.008 0.01653,-0.008 0.01779,-0.007 0.01919,-0.005 0.02066,-0.005 0.0066,-5.6e-4 0.02092,-0.003 0.02113,-0.002 0.02099,-5.5e-4", + "fill": { + "paint": "transparent" + }, + "id": "path8848", + "name": "path8848", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 56.516399,155.10811 -0.01946,-0.01 -0.01399,-0.008 -0.01832,-0.0122 -0.01745,-0.0132 -0.01653,-0.0142 -0.01559,-0.0151 -0.0144,-0.0159 -0.01326,-0.0166 -0.01189,-0.0173 -0.01057,-0.0179 -0.002,-0.003 -0.009,-0.0184 -0.008,-0.0186 -0.0066,-0.0188 -0.0047,-0.0185 -0.0026,-0.0182 -0.002,-0.0179 -3.93e-4,-0.0173 5e-4,-0.0167 0.0026,-0.0161 0.0026,-0.0153", + "fill": { + "paint": "transparent" + }, + "id": "path8849", + "name": "path8849", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 56.19771,155.20578 -0.0072,-0.0157 -0.002,-0.004 -0.0066,-0.0174 -0.0047,-0.0151 -0.0047,-0.0179 -0.004,-0.0181 -0.0026,-0.0181 -0.0026,-0.0183 -0.0026,-0.0184 -0.002,-0.0184 -5e-4,-0.0184", + "fill": { + "paint": "transparent" + }, + "id": "path8850", + "name": "path8850", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 56.156799,155.02631 -4.86e-4,-0.0126 -1.94e-4,-0.0199 3.87e-4,-0.0199 2.93e-4,-0.008 5e-4,-0.0199 0.002,-0.0199 0.0026,-0.0198 0.0034,-0.0197 0.004,-0.0196 0.0047,-0.0193 0.0053,-0.0191", + "fill": { + "paint": "transparent" + }, + "id": "path8851", + "name": "path8851", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 55.815782,155.02631 5e-4,0.0145 0.002,0.0183 0.0026,0.0183 4.87e-4,0.004 0.0026,0.0183 0.0026,0.0183 0.004,0.0181 0.0047,0.0179 0.0053,0.0176 0.0072,0.0172 0.0079,0.0168", + "fill": { + "paint": "transparent" + }, + "id": "path8852", + "name": "path8852", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 55.66988,155.30244 -0.0047,-0.002 -0.02119,-0.006 -0.02046,-0.008 -0.01959,-0.009 -0.01846,-0.01 -0.01732,-0.0104 -0.01619,-0.0112 -0.01486,-0.012 -0.01366,-0.0126 -0.01226,-0.0132 -0.01105,-0.0138 -0.01,-0.0147 -0.0047,-0.008 -0.0082,-0.0159 -0.0066,-0.0163 -0.0053,-0.0164 -0.004,-0.0163 -0.0026,-0.0161 -4.94e-4,-0.0157 3.34e-4,-0.0152 0.002,-0.0147 0.0034,-0.014", + "fill": { + "paint": "transparent" + }, + "id": "path8853", + "name": "path8853", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 55.838903,154.82889 -0.002,0.005 -0.0053,0.0192 -0.0047,0.0194 -0.0026,0.0138 -0.0026,0.0197 -0.0026,0.0198 -0.002,0.0199 -5e-4,0.0199 -4.99e-4,0.0199 5.3e-5,0.0199 5e-4,0.0199", + "fill": { + "paint": "transparent" + }, + "id": "path8854", + "name": "path8854", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 55.838903,154.82889 -0.02733,5.8e-4 -0.03185,0.002 -0.02945,0.003 -0.02732,0.004 -0.02564,0.005 -0.02412,0.006 -0.02278,0.007 -0.02166,0.008 -0.02059,0.009 -0.01959,0.01 -0.01189,0.007 -0.01799,0.0115 -0.01666,0.0122 -0.01512,0.0127 -0.01366,0.0131 -0.01206,0.0134 -0.01033,0.0135 -0.0088,0.0137 -0.0072,0.0138 -0.0053,0.0138 -0.004,0.0138", + "fill": { + "paint": "transparent" + }, + "id": "path8855", + "name": "path8855", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 56.881357,150.48685 0.0072,-0.004 0.0072,-0.004 0.0072,-0.003 0.0072,-0.003 0.0072,-0.003 0.0072,-0.003 0.0072,-0.003 0.0072,-0.002 0.0072,-0.002 0.0072,-0.002", + "fill": { + "paint": "transparent" + }, + "id": "path8856", + "name": "path8856", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 56.954065,150.45757 0.0084,-0.002 0.0085,-0.002 0.0086,-0.002 0.0086,-0.002 0.0086,-0.002 0.0086,-0.002 0.0086,-0.002 0.0088,-0.002 0.0088,-0.002 0.0088,-0.002", + "fill": { + "paint": "transparent" + }, + "id": "path8857", + "name": "path8857", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 57.040858,150.43934 0.0096,-0.002 0.0096,-5.7e-4 0.0096,-5.6e-4 0.0096,-5.8e-4 0.0096,-5.7e-4 0.0096,-5.5e-4 0.0096,-4.1e-4 0.0096,-3.1e-4 0.0096,-1.5e-4 0.0096,-8e-5", + "fill": { + "paint": "transparent" + }, + "id": "path8858", + "name": "path8858", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 55.66988,155.30244 0.002,-0.006 0.002,-0.006 0.0026,-0.005 0.0026,-0.005 0.0026,-0.005 0.0026,-0.005 0.004,-0.005 0.004,-0.005 0.004,-0.005 0.0047,-0.004", + "fill": { + "paint": "transparent" + }, + "id": "path8859", + "name": "path8859", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 55.701043,155.25134 0.0053,-0.005 0.0053,-0.005 0.0066,-0.004 0.0066,-0.004 0.0066,-0.004 0.0066,-0.003 0.0072,-0.003 0.0072,-0.003 0.0072,-0.002 0.0072,-0.002", + "fill": { + "paint": "transparent" + }, + "id": "path8860", + "name": "path8860", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 55.766141,155.21766 0.0088,-0.002 0.0089,-0.002 0.0089,-0.002 0.009,-0.002 0.009,-0.002 0.009,-5.7e-4 0.0091,-5.7e-4 0.0091,-5.4e-4 0.0091,-3.1e-4 0.009,-1e-4", + "fill": { + "paint": "transparent" + }, + "id": "path8861", + "name": "path8861", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 128.09934,3.696222 v -0.0053 l -0.0168,-0.06465 -0.0152,-0.06435 -0.0136,-0.06405 -0.0112,-0.06367 -0.01,-0.06321 -0.008,-0.06268 -0.008,-0.06215 -0.008,-0.06162 v -0.06101 -0.0604 -0.05972 -0.05905 -0.05837 l 0.008,-0.05761 0.008,-0.05693 0.008,-0.05625 0.01,-0.05549 0.008,-0.03362 0.012,-0.05489 0.0136,-0.05443 0.0152,-0.05383 0.016,-0.05307 0.0176,-0.0523 0.0192,-0.05148 0.0208,-0.05057 0.0216,-0.04951 0.0232,-0.04845 0.0247,-0.04732 0.0255,-0.04618 0.0272,-0.04496 0.0279,-0.043762 0.0288,-0.04247 0.0296,-0.041108 0.0303,-0.039896 0.0319,-0.038464", + "fill": { + "paint": "transparent" + }, + "id": "path8862", + "name": "path8862", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 56.19771,155.20578 0.0072,-6e-5 0.03119,-5.6e-4 0.03031,-0.002 0.02985,-0.004 0.01905,-0.003 0.02732,-0.005 0.02566,-0.006 0.02393,-0.007 0.02239,-0.008 0.02072,-0.009 0.01925,-0.009 0.01773,-0.01 0.01626,-0.0106 0.01486,-0.0113 0.01352,-0.012", + "fill": { + "paint": "transparent" + }, + "id": "path8863", + "name": "path8863", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 56.616899,155.01461 4.99e-4,-5.5e-4 0.002,-0.002 0.0026,-0.002 0.0026,-0.002 0.0026,-5.7e-4 0.0026,-5.7e-4 0.0026,-1.6e-4 0.002,10e-5 0.0026,5e-4 0.0026,5.7e-4 0.0026,5.6e-4", + "fill": { + "paint": "transparent" + }, + "id": "path8864", + "name": "path8864", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 163.94412,0.5888059 -0.0239,-0.00451 -0.0239,-0.0038 -0.0239,-0.003 -0.024,-0.003 -0.0239,-0.0023 -0.0239,-0.0015 -0.0239,-7.39e-4 -0.0248,-1.813e-4 -0.0239,4.617e-4 -0.0239,0.0015", + "fill": { + "paint": "transparent" + }, + "id": "path8865", + "name": "path8865", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 163.70241,0.5709017 -0.0488,0.00451 -0.0496,0.00751 -0.0496,0.010375 -0.0503,0.013329 -0.0503,0.016273 -0.0431,0.016423 -0.0488,0.02158 -0.0488,0.024755 -0.0496,0.02816 -0.0496,0.031645 -0.0503,0.03527 -0.0335,0.025586 -0.0512,0.041859 -0.0503,0.045494 -0.0511,0.049359 -0.0512,0.053525 -0.0511,0.058142 -0.0136,0.015672 -0.052,0.064811 -0.052,0.069268 -0.052,0.074265 -0.0527,0.080013 -0.044,0.070549 -0.0551,0.093702 -0.0544,0.097778 -0.0527,0.1022531 -0.052,0.1071729 -0.052,0.1126556 -0.0512,0.1188407 -0.0512,0.125978 -0.0512,0.134511 -0.0319,0.08755 -0.0527,0.152778 -0.052,0.157585 -0.0503,0.162876 -0.0488,0.168744 -0.0479,0.175307 -0.0472,0.182764 -0.0455,0.191387 -0.0223,0.09813", + "fill": { + "paint": "transparent" + }, + "id": "path8866", + "name": "path8866", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 133.07707,3.563264 0.008,-0.01619 0.008,-0.02196 v -0.02166 l 4e-4,-0.003 v -0.02181 l 4e-4,-0.02173 v -0.02143 -0.02096 -0.02036 l -0.008,-0.0196 -0.008,-0.01877 -0.008,-0.01787", + "fill": { + "paint": "transparent" + }, + "id": "path8867", + "name": "path8867", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 133.07707,3.56324 0.008,0.0083 0.008,0.0081 0.008,0.0079 0.008,0.0078 0.008,0.0075 0.008,0.0075 0.008,0.0075 0.008,0.0068 0.008,0.0068 0.008,0.0068", + "fill": { + "paint": "transparent" + }, + "id": "path8868", + "name": "path8868", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 128.43044,1.8136789 0.0144,-0.017635 0.0695,-0.083908 0.0695,-0.079352 0.0695,-0.075026 0.0703,-0.07093 0.0703,-0.066994 0.0711,-0.063279 0.0424,-0.035951 0.0703,-0.05655 0.0703,-0.052534 0.0703,-0.048679 0.0695,-0.044963 0.0695,-0.041408 0.0695,-0.037853 0.0623,-0.031124 0.0703,-0.031725 0.0703,-0.02838 0.0703,-0.025135 0.0695,-0.021881 0.0695,-0.018616 0.0695,-0.015442 0.0695,-0.012488 4e-4,-4.61e-5 0.0703,-0.00941 0.0711,-0.00601 0.0711,-0.003 0.0703,-2.724e-4 0.0703,0.003 0.0695,0.00601 0.0695,0.00881 0.0703,0.011957 0.0711,0.015141 0.0719,0.018396 0.0719,0.021731 0.0727,0.025135 0.0735,0.02854 0.0743,0.032025 0.0743,0.03558 0.0751,0.039065 0.0751,0.04254 0.0751,0.046095 0.0743,0.04944 0.0336,0.023323 0.0735,0.054196 0.0735,0.057841 0.0735,0.061777 0.0735,0.066013 0.0743,0.07071 0.0751,0.076037 0.0263,0.027779 0.0783,0.084529 0.0775,0.088575 0.0767,0.09278 0.0767,0.097137 0.0759,0.101634 0.0599,0.0837", + "fill": { + "paint": "transparent" + }, + "id": "path8869", + "name": "path8869", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 132.30542,2.145716 0.0103,0.01688 0.009,0.01756 v 0.0053 l 0.008,0.01832 0.008,0.0187 0.008,0.01961 v 0.02036 0.02105 l 5e-4,0.02158 v 0.02203 0.02226 0.02226 l -0.008,0.02211 v 0.01279", + "fill": { + "paint": "transparent" + }, + "id": "path8870", + "name": "path8870", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 162.34234,3.763241 -0.0342,-2.2e-5 -0.0342,-6.8e-5 -0.0342,-1.14e-4 -0.0344,-1.13e-4 -0.0343,-1.44e-4 -0.0342,-1.35e-4 -0.0342,-1.15e-4 -0.0342,-1.13e-4 -0.0344,-7.5e-5 -0.0342,-2.3e-5", + "fill": { + "paint": "transparent" + }, + "id": "path8871", + "name": "path8871", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 161.99775,3.762319 4.8e-4,-0.0023 4.9e-4,-0.0023 4.8e-4,-0.0023 4.8e-4,-0.0023 4.8e-4,-0.003 4.8e-4,-0.0023 4.9e-4,-0.0023 5.1e-4,-0.0023 5e-4,-0.0023 4.9e-4,-0.0023", + "fill": { + "paint": "transparent" + }, + "id": "path8872", + "name": "path8872", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 162.00293,3.736026 0.0263,-0.114267 0.0455,-0.189812 0.0464,-0.181242 0.0472,-0.173824 0.0488,-0.167313 0.0496,-0.161491 0.0511,-0.156268 0.0527,-0.151484 0.0383,-0.104985 0.0503,-0.131635 0.0503,-0.123283 0.0503,-0.1162512 0.051,-0.110134 0.052,-0.1047736 0.0527,-0.099911 0.0536,-0.095505 0.0544,-0.091509 0.0479,-0.075807 0.052,-0.077319 0.0512,-0.071691 0.0512,-0.066844 0.0512,-0.062448 0.0184,-0.02136 0.0503,-0.055418 0.0503,-0.050872 0.0496,-0.046786 0.0496,-0.043 0.0503,-0.039446 0.0384,-0.027929 0.0496,-0.032706 0.0488,-0.029141 0.0488,-0.025736 0.0479,-0.022492 0.0479,-0.019377 0.0464,-0.015902 0.0496,-0.01393 0.0496,-0.011056 0.0496,-0.00811 0.0488,-0.00531 0.0479,-0.0023", + "fill": { + "paint": "transparent" + }, + "id": "path8873", + "name": "path8873", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 62.609692,156.52064 0.01473,0.01 0.06183,0.0428 0.0605,0.0436 0.05917,0.0441 0.04525,0.035 0.0573,0.0458 0.0561,0.0467 0.05497,0.0475 0.05377,0.0483 0.05257,0.0491 0.05137,0.0497 0.05004,0.0503 0.04864,0.051 0.04737,0.0515", + "fill": { + "paint": "transparent" + }, + "id": "path8874", + "name": "path8874", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 161.99775,3.762319 -0.0215,7.39e-4 -0.0216,-2.96e-4 -0.0216,-0.0015 -0.0215,-0.0023 -0.0215,-0.0038 -0.0216,-0.0045 -0.0216,-0.0053 -0.0208,-0.006 -0.0208,-0.0075 -0.0199,-0.008", + "fill": { + "paint": "transparent" + }, + "id": "path8875", + "name": "path8875", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 162.00293,3.736026 -0.0215,7.39e-4 -0.0216,-2.04e-4 -0.0215,-0.0015 -0.0215,-0.0023 -0.0215,-0.003 -0.0216,-0.0045 -0.0215,-0.0053 -0.0208,-0.006 -0.0208,-0.0068 -0.0199,-0.0079", + "fill": { + "paint": "transparent" + }, + "id": "path8876", + "name": "path8876", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 162.54664,1.0826073 0.0287,-0.040958 0.0352,-0.048378 0.0344,-0.045194 0.0343,-0.04262 0.0342,-0.040507 0.0342,-0.038685 v -0.00381 l 0.0343,-0.036792 0.0352,-0.035049 0.0352,-0.033317 0.0352,-0.031494 0.0352,-0.029752 0.0352,-0.027929 0.0352,-0.026187 0.0352,-0.024454 0.0342,-0.022712 0.0344,-0.02105 0.0342,-0.019377 0.0343,-0.017785 0.0335,-0.016123 0.0335,-0.014611 0.0335,-0.013108 0.0335,-0.011656 0.0328,-0.010144 0.0328,-0.00871 0.0328,-0.00751", + "fill": { + "paint": "transparent" + }, + "id": "path8877", + "name": "path8877", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 163.40273,0.4147027 0.0328,-0.00601 0.0328,-0.00451 0.0335,-0.003 0.0342,-0.0023 0.0342,-7.38e-4 0.0352,5.297e-4 0.0352,0.0015 0.036,0.003 0.0352,0.00451 0.0359,0.00601 0.0352,0.00751 0.016,0.0038 0.0352,0.00911 0.0352,0.010595 0.036,0.012037 0.0359,0.013629 0.0368,0.015221 0.0368,0.016874 0.0376,0.018546 0.0384,0.020359 0.0392,0.022261 0.0392,0.024154 0.0392,0.025656", + "fill": { + "paint": "transparent" + }, + "id": "path8878", + "name": "path8878", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 161.59442,3.616891 0.0344,-0.154148 0.04,-0.168191 0.0407,-0.161211 0.0407,-0.155132 0.0424,-0.149781 0.0431,-0.144972 0.044,-0.14065 0.0448,-0.136699 0.0464,-0.133072 0.0472,-0.129749 0.0273,-0.072 0.0448,-0.1147736 0.0448,-0.1077108 0.044,-0.1017172 0.0448,-0.096546 0.0448,-0.091929 0.0448,-0.087804 0.0455,-0.084078 0.0464,-0.080593 0.0464,-0.077399 0.0472,-0.074415 0.0479,-0.071621", + "fill": { + "paint": "transparent" + }, + "id": "path8879", + "name": "path8879", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 161.77387,3.772001 0.0199,0.0079 0.0208,0.0068 0.0208,0.006 0.0216,0.0053 0.0215,0.0045 0.0215,0.003 0.0215,0.0023 0.0216,0.0015 0.0215,1.89e-4 0.0215,-7.39e-4", + "fill": { + "paint": "transparent" + }, + "id": "path8880", + "name": "path8880", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 160.03635,10.912765 -0.0108,-1.66e-4 -0.0108,-4.17e-4 -0.0108,-6.83e-4 -0.0108,-7.39e-4 -0.0108,-0.0015 -0.0108,-0.0015 -0.0108,-0.0015 -0.0108,-0.0023 -0.0108,-0.0023 -0.0108,-0.0023", + "fill": { + "paint": "transparent" + }, + "id": "path8881", + "name": "path8881", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 105.93842,3.617376 0.0103,-0.0086 0.012,-0.0082 0.0121,-0.0068 0.0152,-0.0075 0.0168,-0.0068 0.0176,-0.0053 0.0192,-0.0045 0.02,-0.0038 0.008,-7.39e-4 0.02,-0.0023 0.0208,-7.37e-4 0.02,2.57e-4", + "fill": { + "paint": "transparent" + }, + "id": "path8883", + "name": "path8883", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 106.0931,3.645234 -0.0192,-7.37e-4 -0.0192,-1.37e-4 -0.0192,7.39e-4 -0.008,6.25e-4 -0.02,0.0023 -0.0192,0.003 -0.0176,0.0045 -0.016,0.0053 -0.0144,0.006 -0.0128,0.0068 -0.0113,0.0075 -0.0103,0.0082", + "fill": { + "paint": "transparent" + }, + "id": "path8884", + "name": "path8884", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 103.42336,10.712665 -0.0112,1.2e-4 -0.0112,4.09e-4 -0.0112,6.82e-4 -0.0113,7.4e-4 -0.0112,0.0015 -0.0112,0.0015 -0.0113,0.0023 -0.0112,0.0023 -0.0112,0.003 -0.0112,0.003", + "fill": { + "paint": "transparent" + }, + "id": "path8885", + "name": "path8885", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 103.31149,10.727888 -0.008,0.0015 -0.009,0.003 -0.009,0.0038 v 7.38e-4 l -0.008,0.0038 -0.008,0.0038 -0.008,0.0045 -0.008,0.0045 -0.008,0.0053 -0.008,0.0053 -0.008,0.006", + "fill": { + "paint": "transparent" + }, + "id": "path8886", + "name": "path8886", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 55.598338,155.63932 -0.0047,-0.002 -0.02132,-0.007 -0.02045,-0.008 -0.01952,-0.009 -0.01845,-0.01 -0.01732,-0.0105 -0.01606,-0.0113 -0.01486,-0.012 -0.01358,-0.0127 -0.01226,-0.0133 -0.01105,-0.0139 -0.0098,-0.0147 -0.0047,-0.009 -0.008,-0.0159 -0.0066,-0.0162 -0.0053,-0.0165 -0.004,-0.0164 -0.0026,-0.0161 -5e-4,-0.0157 4.47e-4,-0.0153 0.002,-0.0147 0.0026,-0.014", + "fill": { + "paint": "transparent" + }, + "id": "path8887", + "name": "path8887", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 100.84476,18.292425 0.0103,-0.0028 0.0112,-0.0028 0.0112,-0.0023 0.0112,-0.0023 0.0113,-0.0017 0.0112,-0.0017 0.0112,-5.68e-4 0.0112,-5.69e-4 0.0113,-4.18e-4 0.0112,-1.38e-4", + "fill": { + "paint": "transparent" + }, + "id": "path8889", + "name": "path8889", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 100.57527,25.841367 -0.0112,1.43e-4 -0.0113,4.2e-4 -0.0112,5.7e-4 -0.0112,5.7e-4 -0.0112,0.0023 -0.0113,0.0023 -0.0112,0.0023 -0.0112,0.0023 -0.0113,0.003 -0.0112,0.003", + "fill": { + "paint": "transparent" + }, + "id": "path8890", + "name": "path8890", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 100.46373,25.856778 -0.009,0.003 -0.009,0.003 -0.009,0.0038 -0.008,0.0038 -0.008,0.0038 -0.008,0.0052 -0.008,0.0052 -0.008,0.0052 -0.008,0.0052 -0.008,0.006", + "fill": { + "paint": "transparent" + }, + "id": "path8891", + "name": "path8891", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 100.76551,18.33563 0.008,-0.0061 0.008,-0.0051 0.008,-0.0051 0.008,-0.0045 0.008,-0.0045 0.008,-0.004 0.009,-0.004 0.009,-0.004 0.009,-0.0028 0.009,-0.0028", + "fill": { + "paint": "transparent" + }, + "id": "path8892", + "name": "path8892", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 95.45036,41.028728 0.008,-0.006 0.008,-0.0052 0.008,-0.0052 0.008,-0.0052 0.008,-0.0052 0.008,-0.0037 0.009,-0.0038 0.009,-0.0037 0.009,-0.003 0.009,-0.003", + "fill": { + "paint": "transparent" + }, + "id": "path8893", + "name": "path8893", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 95.5297,40.985513 0.0103,-0.003 0.0112,-0.003 0.0112,-0.0022 0.0112,-0.0023 0.0113,-0.0022 0.0112,-0.0023 0.0112,-5.71e-4 0.0113,-5.61e-4 0.0112,-4.21e-4 0.0112,-1.5e-4", + "fill": { + "paint": "transparent" + }, + "id": "path8894", + "name": "path8894", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 54.873973,157.35955 -0.0463,0.18676 -0.04338,0.18982 -0.04025,0.19288 -0.03724,0.19599 -0.03392,0.19913 -0.03085,0.20231 -0.02752,0.2055 -0.02438,0.20876 -0.02105,0.21204 -0.01779,0.21531 -0.01379,0.20869 -0.01093,0.22183 -0.0079,0.22843 -0.004,0.23581 -5.01e-4,0.24423 0.0034,0.25394 0.0066,0.2653 0.01057,0.27901 0.01473,0.29586 0.0072,0.12656", + "fill": { + "paint": "transparent" + }, + "id": "path8895", + "name": "path8895", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 54.555736,161.72771 0.002,0.0129 0.0026,0.0162 0.004,0.0154 0.0047,0.0144 0.0066,0.0134 0.0072,0.0129 0.0089,0.0126 0.01021,0.0123 0.01177,0.0119 0.01319,0.0114 0.0047,0.004 0.01486,0.0104 0.01626,0.01 0.01745,0.009 0.01899,0.008 0.02039,0.008 0.02019,0.006 0.02325,0.005 0.02438,0.005 0.02551,0.004 0.02686,0.002 0.02812,5.7e-4 0.02958,-1.4e-4 0.02179,-5.7e-4", + "fill": { + "paint": "transparent" + }, + "id": "path8896", + "name": "path8896", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 55.042956,163.26992 0.01273,0.10368 0.04324,0.32597 0.04784,0.32465 0.05244,0.32337 0.05704,0.32191 0.06164,0.32043 0.06617,0.3189 0.07062,0.31732 0.07519,0.31566 0.07958,0.31392 0.06982,0.26048 0.08124,0.2869 0.0825,0.27501 0.08409,0.26446 0.08577,0.25492 0.08763,0.2462 0.08964,0.23822 0.09174,0.2308 0.09385,0.22389 0.09617,0.21743", + "fill": { + "paint": "transparent" + }, + "id": "path8897", + "name": "path8897", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 56.590566,169.00198 -0.02778,-5.6e-4 -0.02925,-0.002 -0.02791,-0.003 -0.02659,-0.005 -0.02545,-0.005 -0.02412,-0.007 -0.02305,-0.008 -0.02199,-0.008 -0.02092,-0.009 -0.0094,-0.005 -0.01965,-0.011 -0.01865,-0.012 -0.01745,-0.0127 -0.01606,-0.0134 -0.01467,-0.0139 -0.01319,-0.0143 -0.01177,-0.0147 -0.01033,-0.015 -0.0088,-0.0152", + "fill": { + "paint": "transparent" + }, + "id": "path8898", + "name": "path8898", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 55.254689,161.93213 0.02686,0.36778 0.03285,0.36781 0.03905,0.36761 0.04524,0.36724 0.03238,0.23713 0.05531,0.3661 0.0613,0.3651 0.06727,0.36396 0.07319,0.36256 0.07917,0.361 0.08495,0.35922 0.02911,0.11744 0.08916,0.34284 0.0923,0.33192 0.09568,0.32197 0.09904,0.31278 0.102608,0.30429 0.07471,0.21041 0.102596,0.27436 0.103521,0.2605 0.104794,0.24827 0.106451,0.23738 0.108409,0.22752", + "fill": { + "paint": "transparent" + }, + "id": "path8899", + "name": "path8899", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 56.960648,169.00732 -0.03692,3e-5 -0.03692,7e-5 -0.03692,1.2e-4 -0.03692,1.5e-4 -0.03692,1.3e-4 -0.03692,1.7e-4 -0.03692,1.3e-4 -0.03692,1.2e-4 -0.03692,6e-5 -0.03692,3e-5", + "fill": { + "paint": "transparent" + }, + "id": "path8900", + "name": "path8900", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 55.254689,161.93213 0.0098,0.002 0.01021,0.003 0.01057,0.005 0.01117,0.006 1.01e-4,7e-5 0.01165,0.008 0.01129,0.009 0.01081,0.0107 0.01057,0.0123 0.01021,0.014 0.01009,0.0161 0.01009,0.0187 0.0026,0.007 0.0089,0.0191 0.0082,0.0191", + "fill": { + "paint": "transparent" + }, + "id": "path8901", + "name": "path8901", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 55.391489,162.08195 0.0026,0.008 0.0034,0.008 0.0026,0.008 0.0026,0.008 0.0026,0.008 0.0026,0.008 0.0026,0.008 0.0026,0.008 0.0026,0.009 0.0026,0.009", + "fill": { + "paint": "transparent" + }, + "id": "path8902", + "name": "path8902", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 55.545134,162.39391 0.01021,0.11289 0.03711,0.36965 0.04298,0.36851 0.04871,0.3672 0.05443,0.36572 0.06017,0.36406 0.06583,0.36222 0.07143,0.36024 0.07694,0.35804 0.08251,0.35574 0.08793,0.35326 0.01799,0.0693 0.09115,0.33824 0.09401,0.3271 0.09695,0.31696 0.100014,0.30762 0.103197,0.29908 0.05823,0.16124 0.1031,0.27292 0.103822,0.2593 0.104938,0.24728 0.106451,0.2366 0.108205,0.2269", + "fill": { + "paint": "transparent" + }, + "id": "path8903", + "name": "path8903", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 57.112593,169.05617 -0.106884,-0.22437 -0.105047,-0.23403 -0.103436,-0.2447 -0.1022,-0.25664 -0.101395,-0.27021 -0.06838,-0.19171 -0.101347,-0.29836 -0.09797,-0.30678 -0.09475,-0.31596 -0.09158,-0.3259 -0.08862,-0.33679 -0.02492,-0.0987 -0.08484,-0.35262 -0.07926,-0.3549 -0.07366,-0.35696 -0.06792,-0.35891 -0.06223,-0.36064 -0.0565,-0.36226 -0.05064,-0.36361 -0.04478,-0.36484 -0.03884,-0.36582 -0.03298,-0.36666 -0.01392,-0.1786", + "fill": { + "paint": "transparent" + }, + "id": "path8904", + "name": "path8904", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 55.545134,162.39391 0.01659,0.002 0.01105,5.7e-4 0.008,3.9e-4 0.01799,5e-4 0.01792,7e-5 0.01799,-3.7e-4 0.01799,-5.7e-4 0.01792,-5.6e-4 0.01786,-0.002 0.01779,-0.002 0.01786,-0.002", + "fill": { + "paint": "transparent" + }, + "id": "path8905", + "name": "path8905", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 57.453517,169.25181 -0.01473,-2.3e-4 -0.01938,-0.002 -0.01946,-0.002 -0.01653,-0.003 -0.01919,-0.005 -0.01859,-0.005 -0.01752,-0.007 -0.01626,-0.008 -0.01486,-0.008 -0.01366,-0.009 -0.01219,-0.01", + "fill": { + "paint": "transparent" + }, + "id": "path8906", + "name": "path8906", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 56.768944,150.60829 0.0053,-0.0143 0.0072,-0.014 0.004,-0.007 0.0088,-0.0131 0.01021,-0.0129 0.0083,-0.009 0.01226,-0.0119 0.01326,-0.0111 0.01392,-0.0102 0.01445,-0.009 0.01486,-0.008", + "fill": { + "paint": "transparent" + }, + "id": "path8907", + "name": "path8907", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 90.67389,47.881525 0.0592,-0.109992 0.0632,-0.113106 0.0679,-0.116775 0.0727,-0.121201 0.0607,-0.09794 0.0839,-0.131848 0.0896,-0.136709 0.096,-0.142802 0.10371,-0.15056 0.1133,-0.160809 0.12607,-0.175236 0.14446,-0.197513 0.0856,-0.115649 0.15892,-0.213441 0.15906,-0.213209", + "fill": { + "paint": "transparent" + }, + "id": "path8908", + "name": "path8908", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 92.4007,45.358786 0.20822,-0.284208 0.1979,-0.275176 0.17577,-0.250046 0.15923,-0.232769 0.1463,-0.219999 0.13549,-0.210178 0.12601,-0.202353 0.11761,-0.195989 0.11016,-0.190722 0.0927,-0.166586 0.10306,-0.192974 0.0992,-0.194002 0.0952,-0.194894 0.0913,-0.19566 0.0872,-0.196274 0.0831,-0.196807 0.0791,-0.197168 0.0751,-0.19749 0.0711,-0.197625 0.0663,-0.19767", + "fill": { + "paint": "transparent" + }, + "id": "path8909", + "name": "path8909", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 99.65422,26.041476 0.0487,-0.153043 0.0695,-0.23415 0.0631,-0.231875 0.0568,-0.229513 0.0503,-0.227082 0.0439,-0.224598 0.0376,-0.222115 0.0319,-0.219571 0.0263,-0.22017 0.0208,-0.221718 0.0144,-0.22318 0.008,-0.191106 0.008,-0.225393 v -0.237713 l -0.008,-0.252989 -0.008,-0.126153 -0.0152,-0.284553 -0.0224,-0.312353 -0.02,-0.235716 -0.0376,-0.402229 -0.01,-0.106067 -0.0288,-0.32032 -0.008,-0.06917 -0.0176,-0.26092 -0.0113,-0.234247 -0.008,-0.215481 4e-4,-0.201174 0.008,-0.1898 0.0103,-0.180309 0.0152,-0.172311 0.02,-0.165363", + "fill": { + "paint": "transparent" + }, + "id": "path8910", + "name": "path8910", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 99.99633,19.251088 0.008,-0.05477 0.009,-0.0547 0.01,-0.05465 0.01,-0.05454 0.0103,-0.05442 0.0112,-0.05431 0.0121,-0.0542 0.0128,-0.05402 0.0136,-0.05386 0.0136,-0.05379", + "fill": { + "paint": "transparent" + }, + "id": "path8911", + "name": "path8911", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 100.50944,18.477116 -0.0424,0.140136 -0.0376,0.145186 -0.0319,0.150213 -0.0272,0.155304 -0.0216,0.160355 -0.0152,0.165415 v 0.0445 l -0.008,0.171658 v 0.181606 0.194249 l 0.01,0.211064 0.0128,0.18198 0.024,0.264807 0.0336,0.309193 0.0496,0.409731 0.0296,0.238928 0.04,0.342072 0.028,0.281716 0.0144,0.17703 0.0168,0.266314 0.0103,0.258128 v 0.250625 0.243686 l -0.009,0.237241 -0.0144,0.231237 -0.0208,0.225604 -0.0264,0.225079 -0.0335,0.228176 -0.04,0.231314 -0.0472,0.234495 -0.0544,0.237637 -0.0615,0.240768 -0.0687,0.243932 -0.0759,0.246986 -0.012,0.03804", + "fill": { + "paint": "transparent" + }, + "id": "path8912", + "name": "path8912", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 95.19197,41.170173 -0.0568,0.168402 -0.0751,0.211977 -0.0791,0.209922 -0.0833,0.207762 -0.0872,0.205474 -0.0911,0.203043 -0.0952,0.201308 -0.10066,0.202502 -0.10626,0.203802 -0.1121,0.205097 -0.11792,0.206486 -0.10291,0.173541 -0.12887,0.20924 -0.13775,0.215167 -0.1475,0.222369 -0.15866,0.231276 -0.17163,0.242605 -0.18759,0.257453 -0.20765,0.277958 -0.2357,0.308518 -0.27188,0.349476", + "fill": { + "paint": "transparent" + }, + "id": "path8913", + "name": "path8913", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 92.43729,45.883551 -0.0847,0.108101 -0.15171,0.194129 -0.15125,0.194714 -0.12496,0.162692 -0.12208,0.161281 -0.10834,0.145923 -0.0983,0.135382 -0.0904,0.127639 -0.084,0.121658 -0.0783,0.11691 -0.0735,0.112986 -0.0695,0.109744 -0.0655,0.107005 -0.0616,0.104688 -0.0583,0.102691", + "fill": { + "paint": "transparent" + }, + "id": "path8914", + "name": "path8914", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 95.19437,41.170196 0.01,-1.14e-4 0.01,-3.37e-4 0.01,-5.7e-4 0.01,-5.63e-4 0.01,-5.71e-4 0.01,-0.0022 0.01,-0.0023 0.01,-0.0022 0.009,-0.0023 0.009,-0.0022", + "fill": { + "paint": "transparent" + }, + "id": "path8915", + "name": "path8915", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 95.28737,41.157357 0.008,-0.0022 0.008,-0.0023 0.008,-0.003 0.008,-0.003 0.008,-0.0037 0.008,-0.0037 0.008,-0.0038 0.008,-0.0052 0.008,-0.0052 0.008,-0.0052", + "fill": { + "paint": "transparent" + }, + "id": "path8916", + "name": "path8916", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 100.22149,26.028624 -0.009,0.0023 -0.009,0.0023 -0.01,0.0023 -0.01,0.0023 -0.01,0.0023 -0.01,5.71e-4 -0.01,5.62e-4 -0.01,5.7e-4 -0.01,3.45e-4 -0.01,1.2e-4", + "fill": { + "paint": "transparent" + }, + "id": "path8917", + "name": "path8917", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 100.50944,18.477116 0.01,-1.12e-4 0.01,-3.52e-4 0.01,-5.68e-4 0.01,-5.69e-4 0.01,-5.67e-4 0.01,-0.0017 0.01,-0.0017 0.01,-0.0023 0.01,-0.0023 0.009,-0.0023", + "fill": { + "paint": "transparent" + }, + "id": "path8918", + "name": "path8918", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 100.60251,18.464266 0.008,-0.0023 0.008,-0.0023 0.008,-0.0028 0.008,-0.0028 0.008,-0.004 0.008,-0.004 0.008,-0.004 0.008,-0.0045 0.008,-0.0045 0.008,-0.0051", + "fill": { + "paint": "transparent" + }, + "id": "path8919", + "name": "path8919", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 100.28756,25.992632 -0.008,0.0052 -0.008,0.0052 -0.008,0.0052 -0.008,0.0038 -0.008,0.0038 -0.008,0.0038 -0.008,0.003 -0.008,0.003 -0.008,0.0023 -0.008,0.0023", + "fill": { + "paint": "transparent" + }, + "id": "path8920", + "name": "path8920", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 100.76694,18.334223 -0.0415,0.136213 -0.0359,0.141299 -0.0312,0.146454 -0.0256,0.151718 -0.02,0.157025 -0.0144,0.162323 -0.008,0.09713 -0.008,0.170728 4.9e-4,0.181614 0.008,0.195915 0.0136,0.216014 0.016,0.187459 0.0296,0.290121 0.0424,0.359215 0.0343,0.280831 0.04,0.327237 0.0343,0.316989 0.0247,0.272526 0.0103,0.147334 0.0144,0.262345 0.008,0.256283 v 0.250445 l -0.008,0.244863 -0.0112,0.239507 -0.0168,0.234382 -0.0224,0.22946 -0.0287,0.228829 -0.0359,0.231906 -0.0424,0.235011 -0.0496,0.238142 -0.0568,0.241269 -0.0639,0.244376 -0.0711,0.24752 -0.0759,0.241869", + "fill": { + "paint": "transparent" + }, + "id": "path8924", + "name": "path8924", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 100.28748,25.992669 0.0168,-0.05139 0.0767,-0.24839 0.0687,-0.24541 0.0615,-0.242305 0.0544,-0.23923 0.0472,-0.236092 0.0407,-0.232971 0.0335,-0.229873 0.0272,-0.226803 0.0208,-0.227307 0.0144,-0.232859 0.009,-0.238748 v -0.244976 -0.251707 l -0.0103,-0.258915 -0.0168,-0.26675 -0.0152,-0.189957 -0.0279,-0.281808 -0.04,-0.342588 -0.0296,-0.242882 -0.0496,-0.406385 -0.0335,-0.307835 -0.024,-0.263921 -0.0121,-0.170749 -0.0103,-0.210214 v -0.193035 -0.180218 l 0.008,-0.170225 v -0.02867 l 0.0152,-0.163779 0.0208,-0.158346 0.0263,-0.15294 0.0311,-0.147611 0.0367,-0.142333 0.0415,-0.137158", + "fill": { + "paint": "transparent" + }, + "id": "path8925", + "name": "path8925", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 91.1559,47.891316 0.10195,-0.17736 0.11426,-0.186312 0.12927,-0.198705 0.1486,-0.217148 0.0479,-0.0682 0.18848,-0.260987 0.22043,-0.294975 0.20861,-0.272781 0.39893,-0.514967 0.11897,-0.15377 0.29098,-0.380095 0.23675,-0.317139 0.20493,-0.283487 0.11041,-0.157207 0.18424,-0.270727 0.17234,-0.264273 0.16132,-0.258804 0.15108,-0.254084 0.14134,-0.250017 0.13215,-0.246514 0.116,-0.228538 0.11977,-0.249784 0.11314,-0.251136 0.10657,-0.252216 0.0998,-0.253072 0.0931,-0.253641 0.0861,-0.254002", + "fill": { + "paint": "transparent" + }, + "id": "path8926", + "name": "path8926", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 95.45028,41.028833 -0.0875,0.257514 -0.0944,0.257055 -0.10123,0.25641 -0.10801,0.25551 -0.11474,0.25434 -0.12143,0.252913 -0.10181,0.201174 -0.13309,0.249673 -0.14247,0.253206 -0.15212,0.257244 -0.16252,0.261887 -0.17338,0.267289 -0.18542,0.273644 -0.10267,0.147019 -0.2055,0.285731 -0.2361,0.317867 -0.28673,0.376096 -0.4122,0.532575 -0.13279,0.171928 -0.23521,0.307722 -0.21485,0.288237 -0.18336,0.25503 -0.0799,0.114546 -0.14277,0.21197 -0.1252,0.196275 -0.11129,0.185344 -0.0994,0.177277", + "fill": { + "paint": "transparent" + }, + "id": "path8927", + "name": "path8927", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 80.725053,166.51597 -0.03272,-5.6e-4 -0.03431,-0.002 -0.03424,-0.003 -0.03584,-0.005 -0.03597,-0.006 -0.03591,-0.008 -0.03597,-0.009 -0.03518,-0.0102 -0.03511,-0.0115 -0.02318,-0.008 -0.03431,-0.0135 -0.03351,-0.0147", + "fill": { + "paint": "transparent" + }, + "id": "path8929", + "name": "path8929", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 80.040727,166.19946 0.06551,-0.18657 0.0751,-0.18706 0.08405,-0.1875 0.09341,-0.18778 0.102837,-0.18785 0.112409,-0.18777 0.121914,-0.18739 0.131517,-0.18669 0.141103,-0.18568 0.15044,-0.18425 0.159627,-0.18232 0.151332,-0.16202 0.176419,-0.17733 0.183835,-0.17298 0.191191,-0.16851 0.19846,-0.16388 0.205743,-0.15912 0.21292,-0.15419 0.219875,-0.14905 0.226752,-0.14379 0.233535,-0.13831 0.240011,-0.13261 0.246321,-0.12671 0.07431,-0.0365 0.0639,-0.0307 0.252956,-0.1159 0.254785,-0.10779 0.256149,-0.0995 0.257428,-0.0914 0.258301,-0.0832 0.258868,-0.0748 0.259275,-0.0665 0.259494,-0.0583 0.259426,-0.0501 0.25919,-0.0418 0.25879,-0.0335 0.20932,-0.0211 0.25384,-0.0183 0.25031,-0.01 0.24625,-0.002 0.24176,0.006 0.2369,0.0138 0.23186,0.0214 0.22659,0.0289 0.22099,0.0362 0.21556,0.0434 0.20981,0.0503 0.20413,0.0572", + "fill": { + "paint": "transparent" + }, + "id": "path8930", + "name": "path8930", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 80.318778,166.42406 -0.02958,-0.0143 -0.03031,-0.0161 -0.02951,-0.0171 -0.01839,-0.0117 -0.02639,-0.0176 -0.02398,-0.0179 -0.02239,-0.0181 -0.01999,-0.0182 -0.01839,-0.0184 -0.01679,-0.0185 -0.01519,-0.0186 -0.01366,-0.0188 -0.01206,-0.0189", + "fill": { + "paint": "transparent" + }, + "id": "path8931", + "name": "path8931", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 83.590392,167.53909 v 0.006 l -0.0144,0.0466 -0.01279,0.0465 -0.01117,0.0462 -0.0096,0.046 -0.008,0.0456 -0.008,0.0453 -0.008,0.0449 v 0.0446 0.0439 0.0435 l 3.19e-4,0.043 v 0.0425 0.0186 0.0424 l 0.0079,0.0421 0.008,0.0419 0.008,0.0414 0.0096,0.0411 0.01033,0.0404 0.01201,0.0398 0.01279,0.0393 0.01439,0.0385 0.01519,0.0377 0.01679,0.037 0.01758,0.0359", + "fill": { + "paint": "transparent" + }, + "id": "path8932", + "name": "path8932", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 87.66074,162.0943 0.0955,5.6e-4 0.0952,0.002 0.0944,0.003 0.0938,0.005 0.0932,0.006 0.0367,0.003 0.0922,0.008 0.0913,0.009 0.0904,0.0104 0.0897,0.0117 0.0886,0.0129 0.0876,0.0141 0.0866,0.0154 0.0857,0.0165 0.0845,0.0177 0.0835,0.0189 0.0824,0.0201 0.0814,0.0211 0.0802,0.0223 0.0791,0.0234 0.0783,0.0246", + "fill": { + "paint": "transparent" + }, + "id": "path8933", + "name": "path8933", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 80.723374,166.52134 0.05511,-0.15792 0.0623,-0.15845 0.06951,-0.15886 0.0767,-0.15915 0.08428,-0.15929 0.09173,-0.15923 0.09908,-0.1589 0.1065,-0.15843 0.11385,-0.15761 0.121035,-0.15646 0.09006,-0.10997 0.133021,-0.15372 0.139426,-0.15112 0.145735,-0.14843 0.152118,-0.14568 0.158435,-0.14274 0.164672,-0.13969 0.170976,-0.13653 0.177058,-0.13317 0.183035,-0.12966 0.189038,-0.126 0.04551,-0.0293 0.196141,-0.12116 0.199986,-0.116 0.203738,-0.11073 0.207096,-0.1053 0.205176,-0.0974 3.93e-4,-2.1e-4 0.212693,-0.094 0.214758,-0.088 0.216597,-0.0819 0.218443,-0.0757 0.220035,-0.0696 0.0479,-0.0141 0.220662,-0.0617 0.220842,-0.0552 0.220347,-0.0488 0.21964,-0.0421 0.21852,-0.0355 0.21692,-0.0289 0.21532,-0.0224 0.21324,-0.0159 0.21094,-0.009 0.20845,-0.003", + "fill": { + "paint": "transparent" + }, + "id": "path8934", + "name": "path8934", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 90.75482,170.33383 -0.0144,0.0122 -0.0152,0.0117 -0.008,0.005 -0.0176,0.0108 -0.0137,0.008 -0.0192,0.009 -0.02,0.008 -0.02,0.007 -0.02,0.006 -0.0208,0.005 -0.0208,0.005", + "fill": { + "paint": "transparent" + }, + "id": "path8935", + "name": "path8935", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 90.56603,170.42167 -0.012,0.002 -0.0121,0.002 -0.0128,0.002 -0.0128,0.002 -0.0128,0.002 -0.0128,5.7e-4 -0.0128,5.7e-4 -0.0127,5.4e-4 -0.0128,3.1e-4 -0.0128,1e-4", + "fill": { + "paint": "transparent" + }, + "id": "path8936", + "name": "path8936", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 76.657501,160.55871 v -0.0216 l 0.01033,-0.10648 0.01285,-0.10611 0.01519,-0.10562 0.0176,-0.10503 0.01999,-0.10437 0.02239,-0.10362 0.02472,-0.10278 0.02632,-0.10188 0.02872,-0.10089 0.03119,-0.0998 0.03358,-0.0988 0.03511,-0.0975 0.03758,-0.0962 0.03997,-0.0951 0.01999,-0.0449 0.04312,-0.0936 0.04551,-0.0926 0.04717,-0.0915 0.04958,-0.0902 0.05111,-0.0889 0.0535,-0.0876 0.0551,-0.0862 0.05676,-0.0847 0.05917,-0.0831 0.0607,-0.0814 0.0623,-0.0796 0.0639,-0.0778 0.06551,-0.076 0.06713,-0.074", + "fill": { + "paint": "transparent" + }, + "id": "path8937", + "name": "path8937", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 78.057931,168.8268 -0.111857,-0.2078 -0.108433,-0.21601 -0.10507,-0.22467 -0.101779,-0.23381 -0.09843,-0.24357 -0.09515,-0.25408 -0.09213,-0.26537 -0.01918,-0.059 -0.08836,-0.28062 -0.08343,-0.2879 -0.0783,-0.29567 -0.07351,-0.30396 -0.06871,-0.31293 -0.06309,-0.32257 -0.04551,-0.25468 -0.05437,-0.34189 -0.0479,-0.34408 -0.04071,-0.3461 -0.03352,-0.34778 -0.02719,-0.34926 -0.01999,-0.3505 -0.01279,-0.35142 -0.008,-0.35211 v -0.35253 l 0.0088,-0.35263 0.01519,-0.35246 0.01999,-0.31336 0.02872,-0.35131", + "fill": { + "paint": "transparent" + }, + "id": "path8938", + "name": "path8938", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 79.037778,170.33384 v -5.7e-4 l -0.03032,-0.0161 -0.02872,-0.0169 -0.02799,-0.0179 -0.02318,-0.0165 -0.02478,-0.0186 -0.02319,-0.019 -0.02079,-0.0193 -0.01919,-0.0194 -0.0176,-0.0196 -0.01599,-0.0197 -0.01439,-0.0198 -0.01279,-0.0199 -0.01117,-0.02", + "fill": { + "paint": "transparent" + }, + "id": "path8939", + "name": "path8939", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 79.441749,170.4331 -0.03191,-5.6e-4 -0.03272,-0.002 -0.03351,-0.003 v -4.6e-4 l -0.03424,-0.005 -0.03424,-0.006 -0.03431,-0.008 -0.03424,-0.009 -0.03351,-0.0104 -0.03351,-0.0116 v -5.7e-4 l -0.03272,-0.0129 -0.03185,-0.0141 -0.03112,-0.0152", + "fill": { + "paint": "transparent" + }, + "id": "path8940", + "name": "path8940", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 78.111621,170.51508 0.02872,-0.002 0.02958,-0.003 0.03032,-0.005 0.01366,-0.002 0.03192,-0.007 0.03191,-0.008 0.03185,-0.009 0.03191,-0.0107 0.03119,-0.012 0.03112,-0.0133 0.03032,-0.0145 0.02239,-0.0116 0.02958,-0.0165 0.02799,-0.0176", + "fill": { + "paint": "transparent" + }, + "id": "path8941", + "name": "path8941", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 79.395007,170.81863 v 0.028 0.0364 0.0364 l 5e-4,0.005 0.0079,0.0364 0.0079,0.0363 0.008,0.0343 0.008,0.0321 0.0088,0.0302 0.0096,0.0285 0.01033,0.0269 0.01129,0.0255", + "fill": { + "paint": "transparent" + }, + "id": "path8942", + "name": "path8942", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 79.441749,170.4331 -0.0088,0.0301 -0.0088,0.0324 -0.008,0.024 -0.008,0.0382 -0.0079,0.0276 -0.008,0.0387 v 0.0389 0.0389 0.039 l -1.61e-4,0.039 v 0.0389", + "fill": { + "paint": "transparent" + }, + "id": "path8943", + "name": "path8943", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 78.514779,170.38302 0.008,-0.005 0.02632,-0.0185 0.02559,-0.0195 0.02472,-0.0207 0.0096,-0.008 0.02319,-0.0214 0.02158,-0.0217 0.01999,-0.022 0.01839,-0.0222 0.01679,-0.0223 0.01519,-0.0222 0.01279,-0.0223 0.01201,-0.0222 0.01045,-0.0222 0.0088,-0.022", + "fill": { + "paint": "transparent" + }, + "id": "path8944", + "name": "path8944", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 90.47048,171.17494 -0.0103,-0.0233 -0.0103,-0.0257 -0.009,-0.0249 -0.01,-0.0325 -0.009,-0.0337 -0.008,-0.0351 -0.008,-0.0355 -0.008,-0.0363 -0.008,-0.0364 v -0.0365 -0.0365", + "fill": { + "paint": "transparent" + }, + "id": "path8945", + "name": "path8945", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 90.86165,170.38302 0.008,0.008 0.008,0.008 0.008,0.008 0.008,0.007 0.009,0.007 0.009,0.007 0.009,0.006 0.01,0.006 0.01,0.006 0.01,0.005", + "fill": { + "paint": "transparent" + }, + "id": "path8946", + "name": "path8946", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 90.94793,170.45066 0.0208,0.0111 0.0224,0.0102 0.0113,0.005 0.0152,0.006 0.024,0.008 0.0247,0.007 0.0256,0.006 0.0256,0.005 0.0256,0.004 0.0256,0.002 0.0256,0.002", + "fill": { + "paint": "transparent" + }, + "id": "path8947", + "name": "path8947", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 90.39401,170.81863 -5e-4,-0.0248 -1.7e-4,-0.0389 v -0.0389 -0.0305 -0.0389 l 0.008,-0.0389 0.008,-0.038 0.008,-0.0364 0.008,-0.0348 0.009,-0.0335 0.01,-0.0321", + "fill": { + "paint": "transparent" + }, + "id": "path8948", + "name": "path8948", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 110.85648,169.19398 -0.0851,-0.18727 -0.0811,-0.19459 -0.0775,-0.20236 -0.0735,-0.21063 -0.0695,-0.21951 -0.0655,-0.22904 -0.0615,-0.23942 -0.0367,-0.15548 -0.0552,-0.25873 -0.0503,-0.26566 -0.0448,-0.27315 -0.0391,-0.28135 -0.0343,-0.29028 -0.028,-0.3002 -0.0216,-0.2916 -0.0176,-0.32292 -0.0112,-0.32669 -0.008,-0.33043 v -0.33409 l 0.009,-0.33773 0.016,-0.34132 0.0232,-0.34483 0.0296,-0.34826 0.0367,-0.35155 0.0439,-0.35474 0.0511,-0.35783 0.0583,-0.36074 0.0407,-0.2318", + "fill": { + "paint": "transparent" + }, + "id": "path8949", + "name": "path8949", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 111.6135,157.54922 -0.13822,0.33591 -0.13214,0.34635 -0.12601,0.35714 -0.11984,0.3685 -0.11362,0.38036 -0.10731,0.39292 -0.10098,0.40616 -0.052,0.22472 -0.0343,0.15458 -0.0873,0.42771 -0.0775,0.42834 -0.0679,0.42882 -0.0575,0.42911 -0.0479,0.42928 -0.0384,0.42931 -0.0288,0.42917 -5e-4,0.01 -0.0176,0.41612 -0.008,0.40433 v 0.39331 l 0.0113,0.38299 0.02,0.37325 0.0288,0.36408 0.0376,0.35533 0.0463,0.347 0.0184,0.11912 0.0559,0.32502 0.0631,0.31107 0.0695,0.29866 0.0767,0.28736 0.0544,0.18434 0.0851,0.26096 0.0903,0.24737 0.0955,0.23496 0.10075,0.2235", + "fill": { + "paint": "transparent" + }, + "id": "path8950", + "name": "path8950", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 110.3095,161.25178 v -0.0143 l 0.0479,-0.2537 0.0503,-0.25285 0.0544,-0.25201 0.0575,-0.25119 0.0351,-0.14898 0.0607,-0.2432 0.0631,-0.23845 0.0647,-0.23388 0.0671,-0.22937 0.0695,-0.22504 0.0711,-0.22087 0.0735,-0.21675 0.0759,-0.21277 0.0775,-0.20884 0.0799,-0.20506 0.0817,-0.20135 0.0837,-0.19773", + "fill": { + "paint": "transparent" + }, + "id": "path8951", + "name": "path8951", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 111.62461,157.52333 v 0.002 0.002 0.002 0.002 0.002 0.002 0.002 0.002 0.002 0.002", + "fill": { + "paint": "transparent" + }, + "id": "path8952", + "name": "path8952", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 91.36763,47.893094 0.0959,-0.173196 0.1077,-0.181179 0.12169,-0.192059 0.13918,-0.207746 0.0783,-0.112858 0.18033,-0.251676 0.21093,-0.283736 0.23736,-0.311121 0.41587,-0.537534 0.12903,-0.167044 0.29259,-0.383337 0.23977,-0.322202 0.20797,-0.288845 0.11177,-0.159789 0.18745,-0.276599 0.1756,-0.270306 0.16451,-0.264993 0.15412,-0.26035 0.1443,-0.256372 0.13495,-0.252868 0.11026,-0.217652 0.12271,-0.256042 0.11601,-0.257423 0.1093,-0.258497 0.10226,-0.259358 0.0954,-0.259914 0.0884,-0.260297", + "fill": { + "paint": "transparent" + }, + "id": "path8956", + "name": "path8956", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 100.57527,25.841367 v -0.006 l 0.0791,-0.252396 0.0711,-0.249305 0.0639,-0.246191 0.0568,-0.243092 0.0496,-0.239949 0.0431,-0.236851 0.036,-0.233751 0.0287,-0.230713 0.0232,-0.231276 0.0168,-0.236183 0.0112,-0.241246 0.008,-0.246507 v -0.251962 l -0.008,-0.25767 -0.0144,-0.263597 -0.0121,-0.161124 -0.0247,-0.273772 -0.0343,-0.318106 -0.04,-0.330043 -0.0351,-0.280728 -0.0424,-0.357202 -0.0295,-0.288411 -0.0152,-0.175282 -0.0136,-0.21495 -0.008,-0.194526 -4.8e-4,-0.180106 0.008,-0.16919 0.008,-0.07655 0.0136,-0.160354 0.0192,-0.154537 0.0247,-0.148811 0.0296,-0.14323 0.0351,-0.137812 0.04,-0.132567", + "fill": { + "paint": "transparent" + }, + "id": "path8957", + "name": "path8957", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 114.00673,150.2485 0.0128,0.003 0.0128,0.003 0.0128,0.004 0.012,0.004 0.012,0.004 0.0121,0.005 0.012,0.005 0.012,0.005 0.012,0.005 0.012,0.005", + "fill": { + "paint": "transparent" + }, + "id": "path8963", + "name": "path8963", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 113.87913,150.23306 0.0128,2.1e-4 0.0128,5e-4 0.0128,5.7e-4 0.0128,0.002 0.0128,0.002 0.0127,0.002 0.0128,0.002 0.0128,0.002 0.0128,0.002 0.0128,0.003", + "fill": { + "paint": "transparent" + }, + "id": "path8964", + "name": "path8964", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 111.4537,157.37295 -0.0136,-0.007 -0.0232,-0.0111 -0.0232,-0.0101 -0.024,-0.009 -0.0247,-0.008 -0.0248,-0.008 -0.0247,-0.006 -0.0256,-0.005 -0.0103,-0.002 -0.0256,-0.004 -0.0256,-0.002", + "fill": { + "paint": "transparent" + }, + "id": "path8965", + "name": "path8965", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 111.42501,157.44536 -0.0136,-0.007 -0.024,-0.0102 -0.024,-0.009 -0.0247,-0.008 -0.0256,-0.007 -0.0256,-0.006 -0.0256,-0.005 -0.0256,-0.004 -0.0103,-0.002 -0.0256,-0.003 -0.0263,-0.002", + "fill": { + "paint": "transparent" + }, + "id": "path8966", + "name": "path8966", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 90.57777,168.9788 -0.0862,-0.24429 -0.0822,-0.25381 -0.0783,-0.26423 -0.0743,-0.27579 -0.0703,-0.28866 -0.0671,-0.30337 -0.0311,-0.15463 -0.0615,-0.32992 -0.0559,-0.3376 -0.0503,-0.34576 -0.0448,-0.35449 -0.0383,-0.36389 -0.0329,-0.3725 -0.0263,-0.38507 -0.0192,-0.39008 -0.0128,-0.39518 -0.008,-0.4004 v -0.4057 l 0.008,-0.29873 0.01,-0.30343 0.0184,-0.4061 0.0256,-0.40089 0.0319,-0.39573 0.0383,-0.39056 0.0455,-0.38545", + "fill": { + "paint": "transparent" + }, + "id": "path8967", + "name": "path8967", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 111.17415,157.38296 -0.14333,0.34596 -0.13703,0.35673 -0.13063,0.368 -0.12448,0.37976 -0.11808,0.39216 -0.11162,0.40523 -0.10522,0.41913 -0.0544,0.23349 -0.0359,0.16214 -0.0911,0.44144 -0.0809,0.44192 -0.0711,0.44218 -0.0607,0.44229 -0.0503,0.44228 -0.0407,0.4421 -0.0303,0.44178 -5e-4,0.0121 -0.0192,0.42849 -0.009,0.41648 5e-4,0.4053 0.0103,0.39474 0.02,0.38482 0.0288,0.37544 0.0383,0.36652 0.0472,0.35797 0.0192,0.1256 0.0568,0.33478 0.0639,0.32022 0.0711,0.30724 0.0783,0.29554 0.0568,0.19311 0.0873,0.26827 0.0925,0.25431 0.0981,0.24155 0.10356,0.22979", + "fill": { + "paint": "transparent" + }, + "id": "path8968", + "name": "path8968", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 89.92845,160.4328 0.01,-0.0751 0.0232,-0.19378 0.02,-0.18735 0.0168,-0.18178 0.0144,-0.17683 0.0112,-0.17236 0.009,-0.16834 0.008,-0.1647 v -0.16138 l 4.9e-4,-0.15834 -3.9e-4,-0.0559 v -0.1472 l -0.008,-0.14058 -0.008,-0.1348 -0.01,-0.12979 -0.0112,-0.12523 -0.0137,-0.12118 -0.0152,-0.11745 -0.0176,-0.11399 -0.0193,-0.11089 -0.0216,-0.10789 -0.024,-0.10519", + "fill": { + "paint": "transparent" + }, + "id": "path8969", + "name": "path8969", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 128.09846,4.90908 0.0783,0.09414 0.0821,0.09269 0.0858,0.09112 0.0896,0.08939 0.0932,0.08754 0.0968,0.0855 0.10003,0.08332 0.10331,0.08097 0.10531,0.07781 0.10913,0.07585 0.11266,0.07358 0.11617,0.07131 0.11953,0.06889 0.12295,0.06646 0.12625,0.06397 0.12967,0.0614 0.13286,0.05874 0.10682,0.04428 0.13855,0.05375 0.14141,0.05087 0.14454,0.04793 0.14757,0.04489 0.15053,0.04194 0.15355,0.03876 0.15637,0.03565 0.15923,0.03241 0.0799,0.01484 0.1634,0.02748 0.16595,0.02415 0.16818,0.02066 0.17066,0.0171 0.17297,0.01356 0.17514,0.01003 0.17728,0.006 0.17938,0.003 0.0391,9.2e-5", + "fill": { + "paint": "transparent" + }, + "id": "path8970", + "name": "path8970", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 56.337236,154.78773 -0.009,0.008 -0.01057,0.007 -0.0088,0.005 -0.01386,0.006 -0.01506,0.005 -3e-4,9e-5 -0.01619,0.005 -0.01653,0.003 -0.01679,0.002 -0.01685,0.002 -0.01686,3.6e-4 -0.01679,-3.9e-4", + "fill": { + "paint": "transparent" + }, + "id": "path8971", + "name": "path8971", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 57.473406,150.43316 0.0094,-9e-5 0.0094,-3.4e-4 0.0094,-5.5e-4 0.0094,-5.7e-4 0.0094,-5.8e-4 0.0094,-0.002 0.0094,-0.002 0.0091,-0.002 0.009,-0.002 0.009,-0.002", + "fill": { + "paint": "transparent" + }, + "id": "path8972", + "name": "path8972", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 57.566602,150.42047 0.0072,-0.002 0.0072,-0.002 0.0072,-0.003 0.0072,-0.003 0.0072,-0.004 0.0066,-0.004 0.0066,-0.004 0.0066,-0.005 0.0053,-0.005 0.0053,-0.005", + "fill": { + "paint": "transparent" + }, + "id": "path8973", + "name": "path8973", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 90.68356,169.25188 -0.0176,-5.7e-4 -0.0279,-0.002 -0.0272,-0.004 -0.0272,-0.005 -0.008,-5.6e-4 -0.0263,-0.006 -0.0256,-0.008 -0.0248,-0.009 -0.0232,-0.01 -0.0224,-0.0104 -0.0208,-0.0112 -0.0192,-0.012 -0.0184,-0.0126 -0.0168,-0.0132 -0.0152,-0.0138 -0.0137,-0.0143", + "fill": { + "paint": "transparent" + }, + "id": "path8974", + "name": "path8974", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 94.54489,41.192329 0.008,-0.0022 0.0168,-0.0052 0.0176,-0.0038 0.0112,-0.0022 0.0176,-0.003 0.0176,-0.0023 0.0176,-0.0022 0.0176,-0.0023 0.0176,-5.7e-4 0.0176,-5.62e-4 0.0176,-1.8e-4", + "fill": { + "paint": "transparent" + }, + "id": "path8975", + "name": "path8975", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 94.41577,41.255743 v -0.003 l 0.0113,-0.009 0.012,-0.008 0.009,-0.0052 0.0128,-0.0067 0.0128,-0.0067 0.0137,-0.006 0.0137,-0.0052 0.0137,-0.0052 0.0137,-0.0052 0.0137,-0.0037", + "fill": { + "paint": "transparent" + }, + "id": "path8978", + "name": "path8978", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 94.41577,41.255743 -0.0631,0.188066 -0.0671,0.188075 -0.0711,0.188014 -0.0751,0.187804 -0.0791,0.187549 -0.0831,0.187099 -0.0869,0.186634 -0.0909,0.186002 -0.0946,0.185246 -0.0984,0.184368 -0.0775,0.139763 -0.10491,0.18253 -0.11194,0.187533 -0.11976,0.193567 -0.12863,0.200918 -0.13886,0.21017 -0.15117,0.222175 -0.16643,0.238254 -0.18695,0.261467 -0.20318,0.27888", + "fill": { + "paint": "transparent" + }, + "id": "path8979", + "name": "path8979", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 89.92845,160.4328 -0.0327,-3.4e-4 -0.0376,3.9e-4 -0.0376,0.002 -0.0376,0.002 -0.0367,0.004 -0.0342,0.005 -0.0327,0.005 -0.0168,0.004 -0.0168,0.005 -0.0144,0.005 -0.0128,0.005 -0.0112,0.007 -0.008,0.003 -0.008,0.006 -0.008,0.006 -0.008,0.006 v 0.006 0.006", + "fill": { + "paint": "transparent" + }, + "id": "path8980", + "name": "path8980", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 84.637123,154.92227 -0.216851,0.003 -0.218502,0.009 -0.220123,0.0142 -0.221561,0.02 -0.222747,0.0258 -0.224034,0.0317 -0.224824,0.0376 -0.225713,0.0435 -0.226266,0.0495 -0.226665,0.0553 -0.226746,0.0611 -0.22667,0.067 -0.226267,0.0728 -0.225791,0.0787 -0.224753,0.0845 -0.223626,0.09 -0.137267,0.0583 -0.11624,0.0513 -0.218923,0.10135 -0.215638,0.10604 -0.211972,0.11066 -0.208042,0.1151 -0.204144,0.11943 -0.199739,0.12356 -0.195349,0.12754 -0.190798,0.13142 -0.186001,0.13508 -0.181043,0.13864 -0.176092,0.14203 -0.170901,0.14529 -0.165705,0.14837 -0.160354,0.15135 -0.154917,0.15422 -0.149399,0.15689", + "fill": { + "paint": "transparent" + }, + "id": "path8981", + "name": "path8981", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 89.89529,157.38275 -0.0303,0.0114 -0.0312,0.0129 -0.0295,0.0139 -0.0287,0.0148 -0.028,0.0158 -0.0264,0.0166 -0.01,0.006 -0.024,0.0173 -0.0224,0.0177 -0.0208,0.0181 -0.0192,0.0185 -0.0176,0.0189 -0.0168,0.0192 -0.0128,0.0172 -0.0137,0.0194 -0.012,0.0194 -0.0103,0.0194 -0.009,0.0193 -0.008,0.0193 -0.008,0.0192 -4.8e-4,0.002 -0.008,0.0195 v 0.0196 0.0194 0.0191 0.0186 0.0181 l 0.008,0.0174", + "fill": { + "paint": "transparent" + }, + "id": "path8982", + "name": "path8982", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 76.657501,160.55874 -0.01919,-0.0104 -0.02079,-0.01 -0.02319,-0.01 -0.02639,-0.01 -0.03032,-0.01 -0.0079,-0.002 -0.03997,-0.0113 -0.04237,-0.0106 -0.04478,-0.01 -0.0479,-0.009 -0.0079,-5.7e-4 -0.0527,-0.009 -0.0527,-0.008 -0.05351,-0.006 -0.05351,-0.005 -0.05437,-0.003 -0.05437,-0.002 -0.04391,-5.7e-4 -0.05437,3.7e-4", + "fill": { + "paint": "transparent" + }, + "id": "path8983", + "name": "path8983", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 77.240748,157.38258 0.03352,0.0157 0.03351,0.0172 0.03424,0.0189 0.03424,0.0206 0.03424,0.0224 0.03511,0.0242 0.03591,0.0265 0.03672,0.0286 0.03758,0.0311 0.01445,0.0122 0.02639,0.0233 0.03351,0.0312 0.03038,0.0301 0.02791,0.0293 0.02558,0.0287 0.02319,0.0283 0.02158,0.028 0.02,0.0278 0.01839,0.0275 0.01606,0.0275", + "fill": { + "paint": "transparent" + }, + "id": "path8984", + "name": "path8984", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 77.806412,169.11981 -0.02792,0.0172 -0.02872,0.0163 -0.03032,0.0154 -0.0088,0.004 -0.02958,0.0132 -0.03111,0.0129 -0.03193,0.0115 -0.03185,0.0101 -0.03112,0.009 -0.03118,0.008 -0.03112,0.006 -0.03032,0.005 -0.03031,0.003 -0.02958,0.002", + "fill": { + "paint": "transparent" + }, + "id": "path8985", + "name": "path8985", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 78.05785,168.82659 -0.0079,0.0214 -0.0096,0.0219 -0.01117,0.0222 -0.008,0.0144 -0.0144,0.023 -0.01606,0.0228 -0.0176,0.0224 -0.01919,0.0222 -0.02079,0.0217 -0.02239,0.0213 -0.02318,0.0207 -0.02472,0.02 -0.02631,0.0193 -0.02719,0.0185 v 5.6e-4", + "fill": { + "paint": "transparent" + }, + "id": "path8986", + "name": "path8986", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 97.09559,27.974197 -0.008,0.006 -0.008,0.006 -0.008,0.0067 -0.008,0.0067 -0.008,0.0067 -0.008,0.008 -0.008,0.008 -0.008,0.008 v 0.008 0.008", + "fill": { + "paint": "transparent" + }, + "id": "path8987", + "name": "path8987", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 90.47048,171.17494 0.0342,-5.6e-4 0.0503,-0.002 0.0463,-0.004 0.0439,-0.005 0.0415,-0.005 0.0391,-0.007 0.0376,-0.008 0.0359,-0.009 0.0342,-0.01 0.008,-0.002 0.032,-0.0106 0.0303,-0.0114 0.0296,-0.0122 0.0279,-0.0129 0.0264,-0.0136 0.0248,-0.0143 0.0232,-0.015 0.0216,-0.0156 0.0208,-0.0163 0.0192,-0.017 0.0112,-0.0111 0.0176,-0.0184 0.016,-0.0192 0.0152,-0.0198 0.0136,-0.0202 0.0121,-0.0206 0.0112,-0.0207 0.01,-0.0209 0.008,-0.0208 0.008,-0.0208 0.008,-0.0207 v -0.0209 -0.0218 -0.0226 l -3.2e-4,-0.0236 v -0.0246 -0.0257 l -0.008,-0.0268 -0.008,-0.028 -0.008,-0.0292 -0.01,-0.0305 -5e-4,-0.002", + "fill": { + "paint": "transparent" + }, + "id": "path8988", + "name": "path8988", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 78.111621,170.51508 0.02079,0.0322 0.02239,0.0318 0.02319,0.0312 0.02472,0.0307 0.02558,0.03 0.02719,0.0292 0.02799,0.0283 0.016,0.0152 0.02958,0.0267 0.03032,0.0258 0.03192,0.0252 0.03352,0.0249 0.03511,0.0243 0.03758,0.0239 0.03911,0.0236 0.0407,0.0231 0.04312,0.0228 0.03997,0.0198 0.01999,0.01 0.04718,0.0212 0.04717,0.0199 0.04718,0.0185 0.04717,0.0172 0.04791,0.0158 0.0479,0.0143 0.04791,0.013 0.04791,0.0116 0.04791,0.0104 0.04872,0.009 0.0503,0.008 0.0511,0.007 0.05197,0.006 0.05351,0.005 0.05437,0.003 0.05197,0.002", + "fill": { + "paint": "transparent" + }, + "id": "path8989", + "name": "path8989", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 110.63308,169.25181 0.0232,-5.7e-4 0.0232,-0.002 0.0232,-0.003 0.0232,-0.005 0.0232,-0.005 0.0224,-0.007 0.0224,-0.008 0.0216,-0.009 0.0208,-0.009 0.0208,-0.0104", + "fill": { + "paint": "transparent" + }, + "id": "path8990", + "name": "path8990", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 111.29814,169.0073 -0.0192,5.4e-4 -0.0192,0.002 -0.0192,0.003 -0.0192,0.004 -0.0192,0.005 -0.0184,0.005 -0.0184,0.006 -0.0184,0.008 -0.0176,0.008 -0.0168,0.009", + "fill": { + "paint": "transparent" + }, + "id": "path8991", + "name": "path8991", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 111.81859,157.61 -0.009,-5.7e-4 -0.0216,-0.002 -0.0216,-0.004 -0.0127,-0.002 -0.0208,-0.005 -0.0208,-0.006 -0.0208,-0.007 -0.02,-0.008 -0.02,-0.008 -0.0192,-0.009 -0.0192,-0.01", + "fill": { + "paint": "transparent" + }, + "id": "path8992", + "name": "path8992", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 111.83058,157.58361 -0.009,-5.8e-4 -0.0216,-0.002 -0.0216,-0.003 -0.0128,-0.002 -0.0208,-0.005 -0.0208,-0.006 -0.0208,-0.007 -0.02,-0.008 -0.02,-0.008 -0.0192,-0.009 -0.0192,-0.01", + "fill": { + "paint": "transparent" + }, + "id": "path8993", + "name": "path8993", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 105.21839,4.02738 v -6.8e-5 l -0.0311,-0.0015 -0.0304,-6.8e-5 -0.0295,0.0015 v 1.81e-4 l -0.028,0.0023 -0.0263,0.0038 -0.024,0.0045 -0.0224,0.0053 -0.0208,0.006 -0.0192,0.0075 -0.0184,0.0081 -0.0168,0.0088 -0.0152,0.0096 -0.0144,0.01037", + "fill": { + "paint": "transparent" + }, + "id": "path8994", + "name": "path8994", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 104.9187,4.094083 -0.008,0.0053 -0.008,0.006 -0.008,0.006 -0.008,0.0068 -0.008,0.0068 -0.008,0.0068 -0.008,0.0068 -0.008,0.0075 v 0.0075 0.0077", + "fill": { + "paint": "transparent" + }, + "id": "path8995", + "name": "path8995", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 102.6402,10.912765 -0.02,2.48e-4 -0.0263,0.0015 -0.0264,0.0023 -0.0176,0.0023 -0.0264,0.0038 -0.0263,0.0053 -0.0256,0.006 -0.0239,0.0068 -0.0224,0.0079 -0.0208,0.0088 -0.02,0.0096", + "fill": { + "paint": "transparent" + }, + "id": "path8996", + "name": "path8996", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 102.38446,10.966431 -0.0112,0.006 -0.0144,0.0088 -0.0136,0.0097 -0.008,0.0053 -0.0128,0.01127 -0.012,0.01218 -0.0112,0.01303 -0.01,0.01348 -0.008,0.01371 -0.008,0.01379 -0.008,0.01379", + "fill": { + "paint": "transparent" + }, + "id": "path8997", + "name": "path8997", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 111.64481,157.47625 0.0112,0.006 0.0192,0.009 0.02,0.009 0.02,0.008 0.02,0.007 0.0208,0.006 0.0208,0.005 0.0208,0.005 0.009,0.002 0.0216,0.003 0.0216,0.002", + "fill": { + "paint": "transparent" + }, + "id": "path8998", + "name": "path8998", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 99.47893,26.063601 -0.01,0.003 -0.0136,0.0052 -0.0136,0.0052 -0.008,0.0023 -0.0136,0.0052 -0.0136,0.006 -0.0127,0.0067 -0.0128,0.0067 -0.012,0.008 -0.0121,0.008 -0.0112,0.009", + "fill": { + "paint": "transparent" + }, + "id": "path8999", + "name": "path8999", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 114.42699,150.42032 0.0103,0.002 0.0103,0.002 0.0103,0.002 0.0103,0.002 0.0103,0.002 0.0103,0.002 0.0103,5.7e-4 0.0113,5.7e-4 0.0103,4e-4 0.0103,1.4e-4", + "fill": { + "paint": "transparent" + }, + "id": "path9000", + "name": "path9000", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 99.91748,18.530781 0.008,-0.004 0.008,-0.004 0.008,-0.0028 0.008,-0.0028 0.008,-0.0028 0.008,-0.0028 0.008,-0.0028 0.008,-0.0023 0.008,-0.0023 0.008,-0.0023", + "fill": { + "paint": "transparent" + }, + "id": "path9001", + "name": "path9001", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 99.9901,18.501489 0.009,-0.0023 0.009,-0.0023 0.009,-0.0023 0.009,-0.0023 0.009,-0.0023 0.009,-0.0017 0.009,-0.0017 0.009,-0.0017 0.009,-0.0017 0.009,-0.0017", + "fill": { + "paint": "transparent" + }, + "id": "path9002", + "name": "path9002", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 100.07695,18.483258 0.01,-0.0017 0.01,-5.68e-4 0.01,-5.68e-4 0.01,-5.68e-4 0.01,-5.68e-4 0.01,-5.22e-4 0.01,-4.22e-4 0.01,-2.94e-4 0.01,-1.88e-4 0.01,-4.5e-5", + "fill": { + "paint": "transparent" + }, + "id": "path9003", + "name": "path9003", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 99.65422,26.041476 -0.0112,9e-5 -0.0176,4.35e-4 -0.0176,5.7e-4 -0.008,3.91e-4 -0.0176,0.0023 -0.0176,0.0023 -0.0176,0.0023 -0.0176,0.003 -0.0176,0.003 -0.0176,0.0038 -0.0168,0.0052", + "fill": { + "paint": "transparent" + }, + "id": "path9004", + "name": "path9004", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 114.32359,150.38432 0.01,0.005 0.0103,0.005 0.0103,0.004 0.0103,0.004 0.0103,0.004 0.0103,0.004 0.0103,0.003 0.0103,0.003 0.0103,0.003 0.0112,0.002", + "fill": { + "paint": "transparent" + }, + "id": "path9005", + "name": "path9005", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 97.09559,27.974197 0.096,-0.295463 0.18633,-0.579685 0.18423,-0.580293 0.0895,-0.284464 0.18185,-0.580969 0.18073,-0.581277 0.18033,-0.581397 0.18032,-0.58138 0.18088,-0.581225 0.1821,-0.580901 0.1836,-0.580459", + "fill": { + "paint": "transparent" + }, + "id": "path9006", + "name": "path9006", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 105.33409,3.763241 0.0113,-0.02522 0.0631,-0.137924 0.0639,-0.134299 0.0647,-0.130876 0.0655,-0.127554 0.0663,-0.124412 0.0679,-0.121338 0.0687,-0.118402 0.0695,-0.115539 0.0703,-0.112805 0.0719,-0.110135 0.0727,-0.107545 0.0711,-0.100913 0.0727,-0.09942 0.0727,-0.09562 0.0727,-0.09197 0.0727,-0.088525 0.0727,-0.085181 0.0735,-0.081975 0.0735,-0.078851 0.0735,-0.075867 0.0743,-0.072983 0.0743,-0.070099 0.0751,-0.067375", + "fill": { + "paint": "transparent" + }, + "id": "path9007", + "name": "path9007", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 107.11698,1.2647278 0.008,-0.00451 0.0568,-0.044062 0.0559,-0.041869 0.0551,-0.039896 0.0551,-0.037923 0.0544,-0.036181 v -0.0015 l 0.0551,-0.034669 0.0551,-0.033157 0.0551,-0.031644 0.0551,-0.030132 0.0551,-0.02854 0.0551,-0.027018 0.0551,-0.025506 0.0551,-0.023924 0.0544,-0.022412 0.0544,-0.020889 0.0543,-0.019307 0.0535,-0.017865 0.0535,-0.016353 0.0527,-0.014841 0.0527,-0.013409 0.0527,-0.011957", + "fill": { + "paint": "transparent" + }, + "id": "path9008", + "name": "path9008", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 105.69122,3.736026 v 0.0023 0.0023 0.0023 0.0023 0.0023 0.0023 0.0023 0.003 0.0023 0.003", + "fill": { + "paint": "transparent" + }, + "id": "path9009", + "name": "path9009", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 105.67916,3.762319 -0.0343,2.3e-5 -0.0343,7.5e-5 -0.0343,1.13e-4 -0.0343,1.15e-4 -0.0343,1.35e-4 -0.0343,1.44e-4 -0.0343,1.13e-4 -0.0343,1.14e-4 -0.0343,6.8e-5 -0.0343,2.2e-5", + "fill": { + "paint": "transparent" + }, + "id": "path9010", + "name": "path9010", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 105.69122,3.736026 0.0152,7.39e-4 0.016,4.5e-5 0.016,-7.37e-4 0.0136,-0.0015 0.0168,-0.0023 0.016,-0.0038 0.0152,-0.0045 0.0136,-0.0053 0.012,-0.006 0.0103,-0.0068 0.01,-0.0075", + "fill": { + "paint": "transparent" + }, + "id": "path9012", + "name": "path9012", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 105.67916,3.762319 0.0152,7.39e-4 0.016,9e-5 0.016,-7.39e-4 0.0136,-0.0015 0.0168,-0.0023 0.0168,-0.0038 0.0152,-0.0045 0.0136,-0.0053 0.012,-0.006 0.0103,-0.0068 0.01,-0.0075", + "fill": { + "paint": "transparent" + }, + "id": "path9013", + "name": "path9013", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 103.06973,10.900054 -0.009,0.0023 -0.009,0.0023 -0.01,0.0023 -0.01,0.0015 -0.01,0.0015 -0.01,7.39e-4 -0.01,7.37e-4 -0.01,5.68e-4 -0.01,3.19e-4 -0.01,1.2e-4", + "fill": { + "paint": "transparent" + }, + "id": "path9014", + "name": "path9014", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 105.66006,3.808484 0.016,7.36e-4 0.016,1.23e-4 0.016,-6.82e-4 0.0136,-0.0015 0.0168,-0.0023 0.016,-0.0038 0.0152,-0.0045 0.0136,-0.0053 0.0121,-0.006 0.0103,-0.0068 0.01,-0.0075", + "fill": { + "paint": "transparent" + }, + "id": "path9015", + "name": "path9015", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 103.13556,10.86392 -0.008,0.0053 -0.008,0.0045 -0.008,0.0045 -0.008,0.0038 -0.008,0.0038 -0.008,0.0038 -0.008,0.003 -0.008,0.003 -0.008,0.0023 -0.008,0.0023", + "fill": { + "paint": "transparent" + }, + "id": "path9016", + "name": "path9016", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 105.83463,3.724944 v -0.0023 -0.0023 -0.0023 -0.0023 -0.0023 -0.0023 -0.0023 -0.0023 -0.0023 -0.0023", + "fill": { + "paint": "transparent" + }, + "id": "path9017", + "name": "path9017", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 105.84574,3.699136 0.0519,-0.117825 0.0568,-0.123716 0.0575,-0.121845 0.0592,-0.120112 0.0607,-0.118453 0.0431,-0.08183 0.0615,-0.112489 0.0615,-0.109233 0.0623,-0.106061 0.0631,-0.103017 0.0631,-0.100061 0.0639,-0.09722 0.0639,-0.09442 0.0648,-0.09174 0.0655,-0.08911 0.0655,-0.08654 0.0663,-0.084068 0.0671,-0.081625 0.0671,-0.079232 0.0679,-0.076918 0.0687,-0.074645", + "fill": { + "paint": "transparent" + }, + "id": "path9018", + "name": "path9018", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 56.960648,169.00732 0.01226,2e-4 0.01626,5.7e-4 0.01626,0.002 0.0072,0.002 0.01619,0.003 0.01606,0.005 0.01559,0.005 0.01499,0.007 0.01399,0.008 0.01266,0.008 0.01141,0.009", + "fill": { + "paint": "transparent" + }, + "id": "path9019", + "name": "path9019", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 162.34234,3.763241 v -0.01491 l 0.0391,-0.181681 0.0408,-0.174846 0.0416,-0.168767 0.0431,-0.163239 0.0448,-0.158236 0.0464,-0.153612 0.0479,-0.149316 0.0318,-0.09352 0.0479,-0.135312 0.0488,-0.128523 0.0496,-0.122564 0.0503,-0.117295 0.0512,-0.1124895 0.052,-0.1081433 0.0527,-0.1041226 0.0496,-0.09216 0.0496,-0.086121 0.0488,-0.079772 0.0488,-0.074415 0.0488,-0.069798 0.0496,-0.065713 0.0496,-0.061997 0.0503,-0.058592 0.0512,-0.055488 0.008,-0.00601 0.0511,-0.050421 0.0503,-0.046265 0.0496,-0.04225 0.0496,-0.038384 0.0488,-0.034749 0.0488,-0.031274 0.0488,-0.027929 0.0479,-0.024685 0.0479,-0.02158 0.0479,-0.018616", + "fill": { + "paint": "transparent" + }, + "id": "path9020", + "name": "path9020", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 163.97551,0.6908476 0.0279,-0.00941 0.028,-0.00861 0.0287,-0.00771 0.0287,-0.00681 0.0288,-0.00601 0.0296,-0.00531 0.0295,-0.0038 0.0296,-0.003 0.0297,-0.0023 0.0297,-7.39e-4", + "fill": { + "paint": "transparent" + }, + "id": "path9021", + "name": "path9021", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 132.69221,6.759191 0.23186,-0.003 0.23369,-0.009 0.23546,-0.01515 0.2369,-0.0212 0.23833,-0.0274 0.23953,-0.03362 0.24065,-0.03983 0.24145,-0.04603 0.24209,-0.05231 0.24257,-0.05859 0.24272,-0.0648 0.24257,-0.07101 0.24232,-0.07723 0.2417,-0.08338 0.2408,-0.08948 0.23961,-0.09549 0.10387,-0.04345 0.0751,-0.03226 0.23586,-0.105419 0.2325,-0.110541 0.22875,-0.115518 0.2249,-0.120345 0.22075,-0.125033 0.21653,-0.129537 0.21181,-0.133926 0.20725,-0.138138 0.2023,-0.142195 0.19727,-0.146078 0.19206,-0.149847 0.18681,-0.15343 0.18127,-0.156865 0.17577,-0.160175 0.17019,-0.163314 0.16442,-0.166346", + "fill": { + "paint": "transparent" + }, + "id": "path9022", + "name": "path9022", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 162.86007,4.185707 -0.0239,-0.01673 -0.0256,-0.01612 -0.0273,-0.01552 -0.0286,-0.01491 -0.0184,-0.0088 -0.0311,-0.01409 -0.0327,-0.01294 -0.0335,-0.01181 -0.0344,-0.0106 -0.0342,-0.0094 -0.0352,-0.0082 -0.008,-0.0015 -0.0352,-0.0068 -0.0352,-0.0053 -0.0352,-0.0038 -0.0352,-0.0023 -0.0352,-0.0015 -0.0342,1.15e-4 -0.0343,0.0015", + "fill": { + "paint": "transparent" + }, + "id": "path9023", + "name": "path9023", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 162.34234,3.763241 0.0328,-0.0023 0.0335,-6.82e-4 0.0342,6.25e-4 0.0352,0.0023 0.0192,0.0015 0.024,0.0023 0.0368,0.0053 0.0359,0.006 0.0352,0.0075 0.0342,0.0086 0.0335,0.0097 0.0328,0.01082 0.0311,0.01181 0.0304,0.0128 0.0287,0.01379 0.028,0.01461 0.0263,0.01544 0.0256,0.01627 0.0239,0.01703", + "fill": { + "paint": "transparent" + }, + "id": "path9024", + "name": "path9024", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 160.95085,11.110041 -0.0223,-0.01786 -0.01,-0.0068 -0.0247,-0.01718 -0.0161,-0.01051 -0.0263,-0.01567 -0.0263,-0.01477 -0.0273,-0.01386 -0.028,-0.01293 -0.028,-0.01211 -0.0287,-0.01119 -0.0288,-0.01037", + "fill": { + "paint": "transparent" + }, + "id": "path9025", + "name": "path9025", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 160.684,10.966431 -0.0175,-0.006 -0.0304,-0.0092 -0.0303,-0.0083 -0.0311,-0.0075 -0.0311,-0.006 -0.0311,-0.0053 -0.0311,-0.0045 -0.0319,-0.003 -0.0127,-7.37e-4 -0.0319,-0.0015 -0.0318,-6.26e-4", + "fill": { + "paint": "transparent" + }, + "id": "path9026", + "name": "path9026", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 163.09825,12.873675 -0.2159,-0.175171 -0.21532,-0.17567 -0.21499,-0.176095 -0.21461,-0.176436 -0.21452,-0.176647 -0.21438,-0.176807 -0.21427,-0.176851 -0.21436,-0.176828 -0.21444,-0.176671 -0.21461,-0.176458", + "fill": { + "paint": "transparent" + }, + "id": "path9027", + "name": "path9027", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 162.92431,3.917042 4.9e-4,-0.0023 0.0424,-0.181355 0.0431,-0.173778 0.044,-0.167177 0.0448,-0.16128 0.0464,-0.155942 0.0479,-0.151097 0.0496,-0.146684 0.0448,-0.126183 0.0479,-0.12707 0.0479,-0.119649 0.0479,-0.113275 0.0488,-0.107772 0.0488,-0.102905 0.0496,-0.098459 0.0512,-0.094493 0.016,-0.02816 0.0496,-0.085881 0.0496,-0.080373 0.0496,-0.075476 0.0496,-0.07101 0.0416,-0.055869 0.0472,-0.058903 0.0464,-0.054206 0.0464,-0.050271 0.0464,-0.046946 0.0279,-0.026337 0.0472,-0.041488 0.0472,-0.038084 0.0472,-0.034679 0.0464,-0.031274 0.0464,-0.02808 0.0464,-0.024835 0.0455,-0.021811 0.0455,-0.018776 0.0448,-0.015892 0.0448,-0.013018", + "fill": { + "paint": "transparent" + }, + "id": "path9028", + "name": "path9028", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 164.74946,0.9591194 0.0368,-6.81e-5 0.0376,0.0015 0.0376,0.003 0.0384,0.00531 0.0392,0.00681 0.04,0.00881 0.04,0.010675 0.0407,0.012638 0.0407,0.01447 0.0416,0.016353 0.016,0.00681 0.0407,0.018927 0.0416,0.020829 0.0416,0.022942 0.0416,0.025065 0.0424,0.027319 0.0431,0.029752 0.044,0.032406 0.0448,0.0352 0.0455,0.038454 0.0344,0.029912 0.0496,0.045194 0.0496,0.047547 0.0496,0.04997 0.0496,0.052694 0.0496,0.055568 0.0503,0.058673 0.0503,0.062228 0.052,0.066163 0.0223,0.029301 0.0536,0.072902 0.0536,0.075797 0.0536,0.078871 0.0534,0.08223 0.0544,0.08594 0.0551,0.09004 0.0558,0.09462 0.0352,0.06215", + "fill": { + "paint": "transparent" + }, + "id": "path9029", + "name": "path9029", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 167.85738,7.223376 -0.0431,-0.06904 -0.0575,-0.08748 -0.0583,-0.0825 -0.0582,-0.07795 -0.0592,-0.07366 -0.0592,-0.0698 -0.0599,-0.06609 -0.0263,-0.02732 -0.0582,-0.05859 -0.0582,-0.05406 -0.0575,-0.04981 -0.0575,-0.04588 -0.0575,-0.04225 -0.0575,-0.03876 -0.0575,-0.03543 -5e-4,-4.17e-4 -0.0575,-0.03195 -0.0575,-0.02861 -0.0568,-0.0252 -0.0568,-0.02196 -0.0559,-0.0187 -0.0551,-0.01544 -0.0544,-0.01243 -0.0544,-0.0093 -0.0544,-0.0068 -0.0551,-0.0038 -0.0559,-7.39e-4 -0.0568,0.0023 -0.0568,0.0053 -0.0568,0.008 -0.008,7.38e-4 -0.0551,0.01113 -0.0543,0.01393 -0.0536,0.01665 -0.0536,0.01983 -0.0544,0.02309 -0.0544,0.02642 -0.0551,0.02983 -0.0551,0.03339 -0.0558,0.03694 -0.0544,0.03913 -0.0568,0.04444 -0.0559,0.04785 -0.0558,0.05148 -0.0558,0.05535 -0.0551,0.0595 -0.0559,0.06405 -0.0558,0.06912 -0.0151,0.019 -0.0575,0.07652 -0.0568,0.08037 -0.0558,0.08453 -0.0551,0.08902 -0.0551,0.09397 -0.0544,0.09951 -0.0295,0.05663 -0.0551,0.109597 -0.0536,0.113388 -0.052,0.117388 -0.0503,0.121641 -0.0496,0.126213 -0.0479,0.131127 v 0.0096", + "fill": { + "paint": "transparent" + }, + "id": "path9031", + "name": "path9031", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 164.61309,8.156668 0.01,0.0075 0.0136,0.01037 0.0127,0.01083 v 0.003 l 0.012,0.01136 0.012,0.01188 0.0108,0.01226 0.0108,0.01272 0.0108,0.01325 0.01,0.01363 0.008,0.01409", + "fill": { + "paint": "transparent" + }, + "id": "path9032", + "name": "path9032", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 163.18636,12.974028 v -0.0053 -0.0053 -0.0053 -0.0053 -0.0053 -0.0053 -0.0053 l -0.008,-0.0053 -0.008,-0.0053 -0.008,-0.0045", + "fill": { + "paint": "transparent" + }, + "id": "path9033", + "name": "path9033", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 163.14905,12.922397 -0.008,-0.0053 -0.008,-0.0053 -0.008,-0.0053 -0.008,-0.0053 -0.008,-0.0045 -0.008,-0.0045 -0.008,-0.0045 -0.008,-0.0045 -0.008,-0.0045 -0.008,-0.0045", + "fill": { + "paint": "transparent" + }, + "id": "path9034", + "name": "path9034", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 116.63813,164.41416 -0.0812,-0.15841 -0.0783,-0.16516 -0.0751,-0.17231 -0.0719,-0.18001 -0.0687,-0.18835 -0.0655,-0.19741 -0.0623,-0.20743 -0.0599,-0.21856 -0.0152,-0.0608 -0.0559,-0.23517 -0.0511,-0.23957 -0.0455,-0.24413 -0.0407,-0.24881 -0.0351,-0.2537 -0.0296,-0.25875 -0.024,-0.26398 -0.0112,-0.15593 -0.008,-0.11091 -0.0128,-0.27092 -0.008,-0.26979 -4e-4,-0.26852 0.008,-0.26717 0.0112,-0.26568 0.0176,-0.26414 0.024,-0.26244 0.0272,-0.24197 0.0327,-0.24237 0.0376,-0.23351 0.0424,-0.22532 0.0472,-0.21774 0.0511,-0.21067 0.0559,-0.20402 0.0599,-0.19776", + "fill": { + "paint": "transparent" + }, + "id": "path9035", + "name": "path9035", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 150.85085,50.795125 0.24584,-0.748081 0.24992,-0.750405 0.25175,-0.749858 0.2528,-0.749514 0.25303,-0.74949 v -0.003 l 0.25231,-0.74973 0.2512,-0.750023 0.24976,-0.750436 0.24807,-0.750939 0.24633,-0.751494", + "fill": { + "paint": "transparent" + }, + "id": "path9036", + "name": "path9036", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "id": "layer-MC0", + "name": "layer-MC0", + "type": "group" + }, + { + "cx": "99.682587", + "cy": "50.851746", + "fill": { + "opacity": "1", + "paint": "#000000" + }, + "id": "path1", + "name": "path1", + "rx": "8.2048903", + "ry": "5.8707266", + "stroke": { + "dasharray": "none", + "opacity": "1", + "paint": "#000000", + "width": "0" + }, + "transform": "matrix(0.92338464,-0.38387604,0.43191919,0.90191231,0,0)", + "type": "ellipse" + }, + { + "cx": "133.71349", + "cy": "65.070709", + "fill": { + "opacity": "1", + "paint": "#000000" + }, + "id": "ellipse3", + "name": "ellipse3", + "rx": "8.2048903", + "ry": "5.8707266", + "stroke": { + "dasharray": "none", + "opacity": "1", + "paint": "#000000", + "width": "0" + }, + "transform": "matrix(0.92338464,-0.38387604,0.43191919,0.90191231,0,0)", + "type": "ellipse" + }, + { + "d": "m 114.15222,-83.565643 a 1.6345446,2.0924664 0 0 1 -1.63451,2.092466 1.6345446,2.0924664 0 0 1 -1.63458,-2.092387 1.6345446,2.0924664 0 0 1 1.63445,-2.092546 1.6345446,2.0924664 0 0 1 1.63464,2.092308 l -1.63454,1.59e-4 z", + "fill": { + "opacity": "1", + "paint": "#000000" + }, + "id": "path3", + "name": "path3", + "stroke": { + "dasharray": "none", + "opacity": "1", + "paint": "#000000", + "width": "0" + }, + "transform": "matrix(0.7069913,0.70722224,-0.56643224,0.82410832,0,0)", + "type": "path" + }, + { + "d": "m 113.13218,-83.539375 a 0.60642809,0.91052932 0 0 1 -0.60642,0.910529 0.60642809,0.91052932 0 0 1 -0.60644,-0.910502 0.60642809,0.91052932 0 0 1 0.6064,-0.910557 0.60642809,0.91052932 0 0 1 0.60646,0.910475 l -0.60643,5.5e-5 z", + "fill": { + "opacity": "1", + "paint": "#ffffff" + }, + "id": "path4", + "name": "path4", + "stroke": { + "dasharray": "none", + "opacity": "1", + "paint": "#000000", + "width": "0" + }, + "transform": "matrix(0.7069913,0.70722224,-0.56643224,0.82410832,0,0)", + "type": "path" + }, + { + "d": "m 121.81092,-90.08223 a 1.6345446,2.0924664 0 0 1 -1.63451,2.092467 1.6345446,2.0924664 0 0 1 -1.63458,-2.092387 1.6345446,2.0924664 0 0 1 1.63445,-2.092546 1.6345446,2.0924664 0 0 1 1.63464,2.092308 l -1.63454,1.58e-4 z", + "fill": { + "opacity": "1", + "paint": "#000000" + }, + "id": "path5", + "name": "path5", + "stroke": { + "dasharray": "none", + "opacity": "1", + "paint": "#000000", + "width": "0" + }, + "transform": "matrix(0.7069913,0.70722224,-0.56643224,0.82410832,0,0)", + "type": "path" + }, + { + "d": "m 120.79088,-90.055962 a 0.60642809,0.91052932 0 0 1 -0.60642,0.91053 0.60642809,0.91052932 0 0 1 -0.60644,-0.910502 0.60642809,0.91052932 0 0 1 0.6064,-0.910557 0.60642809,0.91052932 0 0 1 0.60646,0.910475 l -0.60643,5.4e-5 z", + "fill": { + "opacity": "1", + "paint": "#ffffff" + }, + "id": "path6", + "name": "path6", + "stroke": { + "dasharray": "none", + "opacity": "1", + "paint": "#000000", + "width": "0" + }, + "transform": "matrix(0.7069913,0.70722224,-0.56643224,0.82410832,0,0)", + "type": "path" + }, + { + "cx": "42.618259", + "cy": "-113.96245", + "fill": { + "opacity": "1", + "paint": "#000000" + }, + "id": "path8", + "name": "path8", + "rx": "4.7549229", + "ry": "5.4888902", + "stroke": { + "dasharray": "none", + "opacity": "1", + "paint": "#000000", + "width": "0" + }, + "transform": "matrix(-0.15614549,0.98773407,-0.99992942,0.01188119,0,0)", + "type": "ellipse" + }, + { + "cx": "-40.589439", + "cy": "-97.693718", + "fill": { + "opacity": "1", + "paint": "#ffffff" + }, + "id": "ellipse9", + "name": "ellipse9", + "rx": "2.7946639", + "ry": "2.0805318", + "stroke": { + "dasharray": "none", + "opacity": "1", + "paint": "#000000", + "width": "0" + }, + "transform": "matrix(-0.82175913,0.56983501,-0.7564353,-0.65406853,0,0)", + "type": "ellipse" + }, + { + "cx": "42.739552", + "cy": "-128.6954", + "fill": { + "opacity": "1", + "paint": "#000000" + }, + "id": "ellipse10", + "name": "ellipse10", + "rx": "4.7549229", + "ry": "5.4888902", + "stroke": { + "dasharray": "none", + "opacity": "1", + "paint": "#000000", + "width": "0" + }, + "transform": "matrix(-0.15614549,0.98773407,-0.99992942,0.01188119,0,0)", + "type": "ellipse" + }, + { + "cx": "-50.568565", + "cy": "-106.30323", + "fill": { + "opacity": "1", + "paint": "#ffffff" + }, + "id": "ellipse11", + "name": "ellipse11", + "rx": "2.7946639", + "ry": "2.0805318", + "stroke": { + "dasharray": "none", + "opacity": "1", + "paint": "#000000", + "width": "0" + }, + "transform": "matrix(-0.82175913,0.56983501,-0.7564353,-0.65406853,0,0)", + "type": "ellipse" + }, + { + "cx": "42.766342", + "cy": "-143.32153", + "fill": { + "opacity": "1", + "paint": "#000000" + }, + "id": "ellipse12", + "name": "ellipse12", + "rx": "4.7549229", + "ry": "5.4888902", + "stroke": { + "dasharray": "none", + "opacity": "1", + "paint": "#000000", + "width": "0" + }, + "transform": "matrix(-0.15614549,0.98773407,-0.99992942,0.01188119,0,0)", + "type": "ellipse" + }, + { + "cx": "-60.557423", + "cy": "-114.78046", + "fill": { + "opacity": "1", + "paint": "#ffffff" + }, + "id": "ellipse13", + "name": "ellipse13", + "rx": "2.7946639", + "ry": "2.0805318", + "stroke": { + "dasharray": "none", + "opacity": "1", + "paint": "#000000", + "width": "0" + }, + "transform": "matrix(-0.82175913,0.56983501,-0.7564353,-0.65406853,0,0)", + "type": "ellipse" + }, + { + "d": "m 150.64698,34.558582 a 1.6345446,2.0924664 0 0 1 -1.63451,2.092467 1.6345446,2.0924664 0 0 1 -1.63458,-2.092387 1.6345446,2.0924664 0 0 1 1.63445,-2.092546 1.6345446,2.0924664 0 0 1 1.63464,2.092307 l -1.63454,1.59e-4 z", + "fill": { + "opacity": "1", + "paint": "#000000" + }, + "id": "path13", + "name": "path13", + "stroke": { + "dasharray": "none", + "opacity": "1", + "paint": "#000000", + "width": "0" + }, + "transform": "matrix(0.7069913,0.70722224,-0.56643224,0.82410832,0,0)", + "type": "path" + }, + { + "d": "m 149.62694,34.58485 a 0.60642809,0.91052932 0 0 1 -0.60642,0.91053 0.60642809,0.91052932 0 0 1 -0.60644,-0.910502 0.60642809,0.91052932 0 0 1 0.6064,-0.910557 0.60642809,0.91052932 0 0 1 0.60646,0.910475 l -0.60643,5.4e-5 z", + "fill": { + "opacity": "1", + "paint": "#ffffff" + }, + "id": "path14", + "name": "path14", + "stroke": { + "dasharray": "none", + "opacity": "1", + "paint": "#000000", + "width": "0" + }, + "transform": "matrix(0.7069913,0.70722224,-0.56643224,0.82410832,0,0)", + "type": "path" + }, + { + "d": "m 158.44134,27.885534 a 1.6345446,2.0924664 0 0 1 -1.63452,2.092467 1.6345446,2.0924664 0 0 1 -1.63457,-2.092387 1.6345446,2.0924664 0 0 1 1.63445,-2.092546 1.6345446,2.0924664 0 0 1 1.63464,2.092307 l -1.63455,1.59e-4 z", + "fill": { + "opacity": "1", + "paint": "#000000" + }, + "id": "path15", + "name": "path15", + "stroke": { + "dasharray": "none", + "opacity": "1", + "paint": "#000000", + "width": "0" + }, + "transform": "matrix(0.7069913,0.70722224,-0.56643224,0.82410832,0,0)", + "type": "path" + }, + { + "d": "m 157.42129,27.911802 a 0.60642809,0.91052932 0 0 1 -0.60642,0.91053 0.60642809,0.91052932 0 0 1 -0.60643,-0.910502 0.60642809,0.91052932 0 0 1 0.6064,-0.910557 0.60642809,0.91052932 0 0 1 0.60645,0.910475 l -0.60642,5.4e-5 z", + "fill": { + "opacity": "1", + "paint": "#ffffff" + }, + "id": "path16", + "name": "path16", + "stroke": { + "dasharray": "none", + "opacity": "1", + "paint": "#000000", + "width": "0" + }, + "transform": "matrix(0.7069913,0.70722224,-0.56643224,0.82410832,0,0)", + "type": "path" + }, + { + "cx": "82.662498", + "cy": "76.789497", + "fill": { + "opacity": "1", + "paint": "transparent" + }, + "id": "path17", + "name": "path17", + "rx": "4.6207089", + "ry": "3.5301664", + "stroke": { + "dasharray": "none", + "opacity": "1", + "paint": "#000000", + "width": "1.10038" + }, + "transform": "matrix(0.9696729,-0.24440635,0.20828824,0.97806749,0,0)", + "type": "ellipse" + }, + { + "d": "m 143.615,55.623216 v -0.008", + "fill": { + "paint": "transparent" + }, + "id": "path395", + "name": "path395", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 143.61469,55.624972 v -0.01005", + "fill": { + "paint": "transparent" + }, + "id": "path396", + "name": "path396", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 143.61444,55.624972 5e-4,-0.0022", + "fill": { + "paint": "transparent" + }, + "id": "path397", + "name": "path397", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 132.67537,61.102127 -0.008,-0.0022", + "fill": { + "paint": "transparent" + }, + "id": "path398", + "name": "path398", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 135.87746,61.284543 0.0129,-4.58e-4", + "fill": { + "paint": "transparent" + }, + "id": "path399", + "name": "path399", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 135.85422,61.285347 0.008,-1.43e-4", + "fill": { + "paint": "transparent" + }, + "id": "path400", + "name": "path400", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 135.85438,61.285069 0.008,1.35e-4", + "fill": { + "paint": "transparent" + }, + "id": "path401", + "name": "path401", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 135.78128,61.296496 0.008,-5.63e-4", + "fill": { + "paint": "transparent" + }, + "id": "path402", + "name": "path402", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 135.78128,61.296496 0.008,-4.12e-4", + "fill": { + "paint": "transparent" + }, + "id": "path403", + "name": "path403", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 135.87755,61.284205 0.0127,-5.69e-4", + "fill": { + "paint": "transparent" + }, + "id": "path404", + "name": "path404", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 141.93637,58.748592 c 0.0575,-0.05545 0.11449,-0.111567 0.17041,-0.168468", + "fill": { + "paint": "transparent" + }, + "id": "path405", + "name": "path405", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 142.08633,58.600891 c 0.0263,-0.02685 0.0527,-0.05395 0.0791,-0.08111", + "fill": { + "paint": "transparent" + }, + "id": "path406", + "name": "path406", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 132.66952,61.099995 c 0.0424,0.01546 0.0843,0.03046 0.1269,0.04509", + "fill": { + "paint": "transparent" + }, + "id": "path407", + "name": "path407", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 130.33055,59.240697 c 0,0.0067 0.008,0.01381 0.012,0.02063", + "fill": { + "paint": "transparent" + }, + "id": "path408", + "name": "path408", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 135.63043,52.768454 c -0.008,-0.003 -0.0128,-0.006 -0.02,-0.008", + "fill": { + "paint": "transparent" + }, + "id": "path409", + "name": "path409", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 133.36983,52.096888 c -0.008,0.0052 -0.0128,0.008 -0.02,0.01252", + "fill": { + "paint": "transparent" + }, + "id": "path410", + "name": "path410", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 143.03791,57.438346 c 0.036,-0.0544 0.0711,-0.109092 0.10547,-0.164343", + "fill": { + "paint": "transparent" + }, + "id": "path411", + "name": "path411", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 143.70408,56.11671 c 0.0136,-0.03954 0.0272,-0.07931 0.04,-0.119138", + "fill": { + "paint": "transparent" + }, + "id": "path412", + "name": "path412", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 143.68675,56.165223 c 0.0192,-0.0541 0.0384,-0.108386 0.0559,-0.163", + "fill": { + "paint": "transparent" + }, + "id": "path413", + "name": "path413", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 143.74443,55.997572 c 0.0121,-0.03669 0.0232,-0.07352 0.0343,-0.110353", + "fill": { + "paint": "transparent" + }, + "id": "path414", + "name": "path414", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 143.74291,56.002223 c 0.0383,-0.118357 0.0727,-0.238005 0.10236,-0.358711", + "fill": { + "paint": "transparent" + }, + "id": "path415", + "name": "path415", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 143.97469,54.570484 c 4.8e-4,0.05447 -1.6e-4,0.108971 0,0.163456", + "fill": { + "paint": "transparent" + }, + "id": "path416", + "name": "path416", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 143.81514,53.508664 c -0.012,-0.0391 -0.0248,-0.07801 -0.0376,-0.116611", + "fill": { + "paint": "transparent" + }, + "id": "path417", + "name": "path417", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 143.77751,53.392053 c -0.008,-0.02281 -0.016,-0.04577 -0.024,-0.06849", + "fill": { + "paint": "transparent" + }, + "id": "path418", + "name": "path418", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 143.7533,53.323636 c -0.0311,-0.08482 -0.0655,-0.168492 -0.10258,-0.250911", + "fill": { + "paint": "transparent" + }, + "id": "path419", + "name": "path419", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 143.65071,53.07292 c 0,-0.006 -0.008,-0.01275 -0.009,-0.01906", + "fill": { + "paint": "transparent" + }, + "id": "path420", + "name": "path420", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 139.36857,60.507233 c 0.37399,-0.178584 0.73609,-0.378865 1.08404,-0.599696", + "fill": { + "paint": "transparent" + }, + "id": "path421", + "name": "path421", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 140.26062,60.026435 c 0.0631,-0.03849 0.12671,-0.07751 0.18943,-0.117315", + "fill": { + "paint": "transparent" + }, + "id": "path422", + "name": "path422", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 140.45261,59.907537 c 0.008,-0.0052 0.0128,-0.008 0.02,-0.01252", + "fill": { + "paint": "transparent" + }, + "id": "path423", + "name": "path423", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 140.47242,59.894954 c 0.0751,-0.04779 0.149,-0.09644 0.22244,-0.146186", + "fill": { + "paint": "transparent" + }, + "id": "path424", + "name": "path424", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 140.69486,59.748768 c 0.0801,-0.0541 0.15929,-0.109369 0.23752,-0.16573", + "fill": { + "paint": "transparent" + }, + "id": "path425", + "name": "path425", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 138.18058,53.932981 0.0103,0.01824 0.0121,0.01794 0.0128,0.01755 0.0144,0.01703 0.016,0.01628 0.0168,0.01553 0.0168,0.01358 0.0184,0.01358 0.02,0.0129 0.0208,0.01207 0.0224,0.01125 0.0232,0.01029 0.0248,0.009 0.0192,0.0067 0.0264,0.008 0.0272,0.0067 0.028,0.0052 0.0296,0.0037 0.0303,0.003 0.0312,0.0022 0.0128,3.08e-4 0.032,-1.5e-4 0.0327,-0.0022 0.0327,-0.003 0.0336,-0.0052 0.0335,-0.0052 0.0343,-0.0067 0.008,-5.62e-4 0.0343,-0.009 0.0343,-0.01006 0.0343,-0.01132 0.0335,-0.0126 0.0336,-0.01396 0.0311,-0.01426 4e-4,-1.95e-4 0.0319,-0.0162 0.0311,-0.01725 0.0303,-0.01809 0.0287,-0.01906 0.028,-0.02003 0.0272,-0.02101 0.0152,-0.01222 0.0256,-0.02221 0.024,-0.02281 0.0224,-0.02334 0.0208,-0.02387 0.02,-0.02402 0.0176,-0.02431 0.0168,-0.02432 0.0152,-0.02454 0.0136,-0.02454 0.0121,-0.02454 0.0103,-0.02454 0.009,-0.02447", + "fill": { + "paint": "transparent" + }, + "id": "path426", + "name": "path426", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 133.52387,56.904562 0.0103,0.01824 0.0112,0.01793 0.0128,0.01755 0.0145,0.01695 0.0161,0.01628 0.0168,0.01553 0.0168,0.01358 0.0184,0.01373 0.02,0.0129 0.0208,0.012 0.0224,0.01117 0.0232,0.01035 0.0247,0.009 0.0192,0.0067 0.0264,0.008 0.0272,0.0067 0.0287,0.0052 0.0296,0.0037 0.0303,0.003 0.0312,0.0022 0.0128,3.31e-4 0.0319,-1.58e-4 0.0328,-0.0022 0.0335,-0.003 0.0336,-0.0052 0.0335,-0.0052 0.0342,-0.0067 0.008,-5.71e-4 0.0342,-0.009 0.0342,-0.01006 0.0343,-0.01132 0.0335,-0.0126 0.0335,-0.01396 0.0311,-0.01418 3.2e-4,-1.57e-4 0.0319,-0.0162 0.0311,-0.01725 0.0303,-0.01816 0.0287,-0.01906 0.028,-0.02004 0.0272,-0.02101 0.0152,-0.01222 0.0256,-0.02221 0.0239,-0.02281 0.0224,-0.02334 0.0208,-0.02372 0.0192,-0.02402 0.0176,-0.02431 0.016,-0.02432 0.0152,-0.02454 0.0137,-0.02454 0.012,-0.02454 0.0103,-0.02447 0.009,-0.02447", + "fill": { + "paint": "transparent" + }, + "id": "path427", + "name": "path427", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 137.21151,56.904562 0.0103,0.01824 0.0121,0.01793 0.0127,0.01755 0.0144,0.01695 0.016,0.01628 0.0168,0.01553 0.0168,0.01358 0.0184,0.01373 0.02,0.0129 0.0208,0.012 0.0224,0.01117 0.0232,0.01035 0.0247,0.009 0.02,0.0067 0.0264,0.008 0.0272,0.0067 0.0279,0.0052 0.0296,0.0037 0.0303,0.003 0.0311,0.0022 0.0128,3.31e-4 0.0319,-1.58e-4 0.0327,-0.0022 0.0327,-0.003 0.0335,-0.0052 0.0336,-0.0052 0.0343,-0.0067 0.008,-5.71e-4 0.0343,-0.009 0.0343,-0.01006 0.0343,-0.01132 0.0336,-0.0126 0.0335,-0.01396 0.0311,-0.01418 3.1e-4,-1.57e-4 0.0319,-0.0162 0.0311,-0.01725 0.0304,-0.01816 0.0287,-0.01906 0.028,-0.02004 0.0272,-0.02101 0.0144,-0.01222 0.0256,-0.02221 0.024,-0.02281 0.0224,-0.02334 0.0208,-0.02372 0.0192,-0.02402 0.0184,-0.02431 0.0168,-0.02432 0.0152,-0.02454 0.0136,-0.02454 0.0121,-0.02454 0.0103,-0.02447 0.009,-0.02447", + "fill": { + "paint": "transparent" + }, + "id": "path428", + "name": "path428", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 135.85222,55.418779 0.0105,0.01824 0.0112,0.01794 0.0128,0.01755 0.0144,0.01695 0.016,0.01628 0.0168,0.01553 0.0168,0.01358 0.0184,0.01373 0.02,0.01291 0.0208,0.01207 0.0224,0.01125 0.0232,0.01028 0.0248,0.009 0.0192,0.0067 0.0263,0.008 0.0272,0.0067 0.0287,0.0052 0.0295,0.0037 0.0303,0.003 0.0311,0.0022 0.0128,3.01e-4 0.0319,-1.35e-4 0.0327,-0.0022 0.0328,-0.003 0.0335,-0.0052 0.0335,-0.0052 0.0342,-0.0067 0.008,-5.71e-4 0.0343,-0.009 0.0342,-0.01006 0.0342,-0.01132 0.0335,-0.01261 0.0336,-0.01396 0.0311,-0.01418 4e-4,-1.79e-4 0.0319,-0.0162 0.0312,-0.0171 0.0303,-0.01816 0.0287,-0.01906 0.0279,-0.02003 0.0272,-0.02101 0.0152,-0.01222 0.0256,-0.02221 0.024,-0.02281 0.0224,-0.02334 0.0208,-0.02386 0.0192,-0.02402 0.0176,-0.02424 0.0168,-0.02431 0.0152,-0.02454 0.0136,-0.02454 0.0121,-0.02454 0.0103,-0.02447 0.009,-0.02446", + "fill": { + "paint": "transparent" + }, + "id": "path429", + "name": "path429", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 134.49301,53.932981 0.0105,0.01824 0.0112,0.01794 0.0128,0.01755 0.0145,0.01703 0.016,0.01628 0.0168,0.01553 0.0168,0.01358 0.0184,0.01358 0.02,0.0129 0.0208,0.01207 0.0224,0.01125 0.0232,0.01029 0.0247,0.009 0.0192,0.0067 0.0263,0.008 0.0272,0.0067 0.0287,0.0052 0.0296,0.0037 0.0303,0.003 0.0312,0.0022 0.0128,3.08e-4 0.0318,-1.5e-4 0.0327,-0.0022 0.0327,-0.003 0.0335,-0.0052 0.0336,-0.0052 0.0342,-0.0067 0.008,-5.62e-4 0.0343,-0.009 0.0342,-0.01006 0.0342,-0.01132 0.0335,-0.0126 0.0335,-0.01396 0.0312,-0.01426 3.2e-4,-1.95e-4 0.0319,-0.0162 0.0311,-0.01725 0.0304,-0.01809 0.0287,-0.01906 0.0279,-0.02003 0.0272,-0.02101 0.0152,-0.01222 0.0256,-0.02221 0.024,-0.02281 0.0224,-0.02334 0.0208,-0.02387 0.0192,-0.02402 0.0176,-0.02431 0.0161,-0.02432 0.0152,-0.02454 0.0137,-0.02454 0.012,-0.02454 0.0105,-0.02454 0.009,-0.02447", + "fill": { + "paint": "transparent" + }, + "id": "path430", + "name": "path430", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 134.83634,54.144117 0.0152,-0.02454 0.0168,-0.02431 0.0184,-0.02417 0.02,-0.02386 0.0216,-0.02342 0.0232,-0.02312 0.024,-0.02251 0.0112,-0.01001 0.0263,-0.02176 0.0272,-0.02086 0.0287,-0.01996 0.0296,-0.01906 0.0303,-0.01816 0.032,-0.0171 0.0327,-0.01605 0.008,-0.003 0.008,-0.003 0.0336,-0.01433 0.0335,-0.01313 0.0335,-0.0117 0.0342,-0.01042 0.0342,-0.009 0.0343,-0.008 0.0343,-0.006 0.0152,-0.0022 0.0335,-0.0052 0.0335,-0.003 0.0327,-0.0022 0.0318,-2.77e-4 0.0312,5.71e-4 0.0303,0.0022 0.0296,0.0037", + "fill": { + "paint": "transparent" + }, + "id": "path431", + "name": "path431", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 135.7287,53.649387 v -0.009 l 0.008,-0.02402 0.008,-0.02386 v -0.02357 -0.02312 l 5e-4,-0.02266 -5e-4,-0.02206 -5e-4,-0.0114 v -0.02191 l -0.008,-0.02153 -0.008,-0.02116 -0.008,-0.02056 -0.008,-0.01974 -0.009,-0.01891", + "fill": { + "paint": "transparent" + }, + "id": "path432", + "name": "path432", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 136.19553,55.629894 0.0152,-0.02454 0.0168,-0.02431 0.0184,-0.02417 0.02,-0.02386 0.0217,-0.02342 0.0232,-0.02312 0.024,-0.02266 0.0112,-0.01005 0.0263,-0.02176 0.0272,-0.02093 0.0279,-0.01996 0.0294,-0.01906 0.0303,-0.01816 0.0311,-0.01703 0.0327,-0.01605 0.008,-0.003 0.008,-0.003 0.0335,-0.01433 0.0335,-0.01313 0.0336,-0.01177 0.0342,-0.01042 0.0343,-0.009 0.0343,-0.008 0.0343,-0.006 0.0152,-0.0022 0.0336,-0.0052 0.0335,-0.003 0.0327,-0.0022 0.0319,-2.55e-4 0.0311,5.69e-4 0.0303,0.0022 0.0296,0.0037", + "fill": { + "paint": "transparent" + }, + "id": "path433", + "name": "path433", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 137.08799,55.135155 v -0.009 l 0.008,-0.02402 0.008,-0.02387 v -0.02342 -0.02312 -0.02266 l -5e-4,-0.02206 v -0.01132 -0.02191 -0.02161 l -0.008,-0.02116 -0.008,-0.02041 -0.008,-0.01973 -0.009,-0.01891", + "fill": { + "paint": "transparent" + }, + "id": "path434", + "name": "path434", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 137.55482,57.115693 0.0152,-0.02454 0.0168,-0.02431 0.0184,-0.02417 0.02,-0.02387 0.0216,-0.02342 0.0232,-0.02312 0.024,-0.02251 0.0112,-0.01006 0.0264,-0.02176 0.0272,-0.02086 0.0288,-0.01996 0.0295,-0.01906 0.0304,-0.01816 0.0312,-0.0171 0.0327,-0.01598 0.008,-0.003 0.008,-0.003 0.0335,-0.01455 0.0336,-0.01313 0.0336,-0.0117 0.0343,-0.01042 0.0343,-0.009 0.0343,-0.008 0.0343,-0.006 0.0152,-0.0022 0.0336,-0.0052 0.0336,-0.003 0.0328,-0.0022 0.0319,-2.55e-4 0.0312,5.77e-4 0.0311,0.0022 0.0295,0.0037", + "fill": { + "paint": "transparent" + }, + "id": "path435", + "name": "path435", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 138.44719,56.62094 v -0.009 l 0.008,-0.02402 0.008,-0.02387 v -0.02357 -0.02312 l 5e-4,-0.02266 -5e-4,-0.02221 -5e-4,-0.01132 v -0.02191 l -0.008,-0.02161 -0.008,-0.02116 -0.008,-0.02056 -0.008,-0.01973 -0.009,-0.01891", + "fill": { + "paint": "transparent" + }, + "id": "path436", + "name": "path436", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 133.86719,57.115693 0.0152,-0.02454 0.0168,-0.02431 0.0184,-0.02417 0.02,-0.02387 0.0216,-0.02342 0.0232,-0.02312 0.024,-0.02251 0.0113,-0.01006 0.0263,-0.02176 0.0272,-0.02086 0.0287,-0.01996 0.0296,-0.01906 0.0303,-0.01816 0.0319,-0.0171 0.0319,-0.01598 0.008,-0.003 0.008,-0.003 0.0335,-0.01455 0.0336,-0.01313 0.0335,-0.0117 0.0342,-0.01042 0.0342,-0.009 0.0342,-0.008 0.0342,-0.006 0.0152,-0.0022 0.0335,-0.0052 0.0335,-0.003 0.0327,-0.0022 0.0319,-2.55e-4 0.0312,5.77e-4 0.0303,0.0022 0.0295,0.0037", + "fill": { + "paint": "transparent" + }, + "id": "path437", + "name": "path437", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 134.75954,56.62094 v -0.009 l 0.008,-0.02402 0.008,-0.02387 v -0.02357 -0.02312 l 5e-4,-0.02266 -4.8e-4,-0.02221 v -0.01132 -0.02191 -0.02161 l -0.008,-0.02116 -0.008,-0.02056 -0.008,-0.01973 -0.009,-0.01891", + "fill": { + "paint": "transparent" + }, + "id": "path438", + "name": "path438", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 138.52381,54.144117 0.0152,-0.02454 0.0168,-0.02431 0.0184,-0.02417 0.02,-0.02386 0.0216,-0.02342 0.0232,-0.02312 0.024,-0.02251 0.0112,-0.01001 0.0264,-0.02176 0.0272,-0.02086 0.0288,-0.01996 0.0295,-0.01906 0.0303,-0.01816 0.0312,-0.0171 0.0327,-0.01605 0.008,-0.003 0.008,-0.003 0.0335,-0.01433 0.0336,-0.01313 0.0336,-0.0117 0.0343,-0.01042 0.0343,-0.009 0.0343,-0.008 0.0343,-0.006 0.0152,-0.0022 0.0335,-0.0052 0.0336,-0.003 0.0327,-0.0022 0.0319,-2.77e-4 0.0312,5.71e-4 0.0303,0.0022 0.0296,0.0037", + "fill": { + "paint": "transparent" + }, + "id": "path439", + "name": "path439", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 139.41634,53.649387 v -0.009 l 0.008,-0.02402 0.008,-0.02386 v -0.02357 -0.02312 l 5e-4,-0.02266 -5e-4,-0.02206 v -0.0114 -0.02191 l -0.008,-0.02153 -0.008,-0.02116 -0.008,-0.02056 -0.008,-0.01974 -0.009,-0.01891", + "fill": { + "paint": "transparent" + }, + "id": "path440", + "name": "path440", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 138.43129,56.337323 -0.0103,-0.01824 -0.012,-0.01794 -0.0128,-0.01755 -0.0144,-0.01703 -0.016,-0.01635 -0.0168,-0.01553 -0.0168,-0.01366 -0.0184,-0.01373 -0.02,-0.0129 -0.0208,-0.012 -0.0224,-0.01117 -0.0232,-0.0102 -0.0247,-0.009 -0.0192,-0.0067 -0.0263,-0.008 -0.0272,-0.0067 -0.0287,-0.0052 -0.0296,-0.0037 -0.0303,-0.003 -0.0311,-0.0022 -0.0128,-3.23e-4 -0.032,1.65e-4 -0.0328,0.0022 -0.0327,0.003 -0.0336,0.0052 -0.0335,0.0052 -0.0343,0.0067 -0.008,5.7e-4 -0.0343,0.009 -0.0343,0.01005 -0.0343,0.01132 -0.0336,0.0126 -0.0335,0.01396 -0.0311,0.01418 -2.5e-4,1.64e-4 -0.032,0.0162 -0.0312,0.01725 -0.0303,0.01809 -0.0287,0.01906 -0.0279,0.02003 -0.0272,0.02101 -0.0152,0.01222 -0.0256,0.02221 -0.024,0.02281 -0.0224,0.02334 -0.0208,0.02372 -0.0192,0.02402 -0.0176,0.02424 -0.016,0.02431 -0.0152,0.02454 -0.0136,0.02454 -0.0121,0.02454 -0.0103,0.02447 -0.009,0.02447", + "fill": { + "paint": "transparent" + }, + "id": "path441", + "name": "path441", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 134.96888,56.420838 0.008,-0.02221 0.009,-0.03181 0.008,-0.03151 0.008,-0.03113 v -0.03076 -0.02484 l 3.1e-4,-0.03016 v -0.02957 -0.02903 l -0.008,-0.02835 -0.008,-0.02431 -0.008,-0.02761 -0.009,-0.02701 -0.0104,-0.02626 -0.012,-0.02551 -0.0137,-0.02484 -0.0152,-0.02424 -0.0168,-0.02364 -0.0176,-0.02281 -0.0168,-0.01914 -0.0208,-0.02101 -0.0217,-0.02026 -0.0232,-0.01951 -0.0248,-0.01861 -0.0216,-0.01455 -0.0272,-0.01673 -0.0287,-0.01568 -0.0303,-0.01471 -0.0311,-0.01366 -0.0224,-0.009 -0.0335,-0.01162 -0.0342,-0.01044 -0.036,-0.009 -0.0367,-0.008 -0.0208,-0.0037 -0.0391,-0.006 -0.04,-0.0052 -0.0407,-0.003 -0.0415,-0.0022 -0.0176,-1.34e-4 -0.0431,5.54e-4 -0.0431,0.0022 -0.0439,0.0037 -0.0448,0.0052 -0.0448,0.0067 -0.0448,0.009 -0.0455,0.01042 -0.0455,0.012 -0.0232,0.0067 -0.0455,0.01455 -0.0448,0.0159 -0.0439,0.0174 -0.0439,0.01891 -0.0431,0.02033 -0.0424,0.02183 -0.0121,0.0067 -0.0415,0.02356 -0.0407,0.02484 -0.02,0.01298 -0.0383,0.02626 -0.0367,0.02716 -0.0352,0.02791 -0.0335,0.02873 -0.0319,0.02956 -0.0303,0.03016 -0.0287,0.03083 -0.0272,0.03151 -0.024,0.02993 -0.024,0.03226 -0.0224,0.03241 -0.0208,0.03256 -0.0184,0.03263 -0.0168,0.03263 -0.0152,0.03248 -0.0128,0.03241 -0.0112,0.03226", + "fill": { + "paint": "transparent" + }, + "id": "path442", + "name": "path442", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 136.77902,56.420838 -0.008,0.02221 -0.008,0.03188 -0.008,0.03151 -0.008,0.03113 v 0.03076 0.02484 l -3.2e-4,0.03016 v 0.02956 0.02903 l 0.008,0.02835 0.008,0.02431 0.008,0.02761 0.009,0.02701 0.0103,0.02634 0.012,0.02544 0.0136,0.02484 0.0152,0.02424 0.0168,0.02364 0.0184,0.02273 0.0168,0.01914 0.02,0.02101 0.0216,0.02026 0.0232,0.01951 0.0247,0.01861 0.0216,0.01455 0.0272,0.0168 0.0287,0.01568 0.0295,0.01471 0.0312,0.01373 0.0232,0.009 0.0335,0.01162 0.0343,0.01042 0.0359,0.009 0.0367,0.008 0.0208,0.0037 0.0391,0.006 0.04,0.0052 0.0407,0.003 0.0415,0.0022 0.0176,1.34e-4 0.0431,-5.55e-4 0.0431,-0.0022 0.0439,-0.0037 0.0439,-0.0052 0.0448,-0.0067 0.0448,-0.009 0.0455,-0.01043 0.0455,-0.012 0.0224,-0.0067 0.0455,-0.01441 0.0448,-0.0159 0.0439,-0.0174 0.0439,-0.01891 0.0431,-0.02033 0.0424,-0.02183 0.012,-0.0067 0.0415,-0.02356 0.0407,-0.02484 0.02,-0.01306 0.0383,-0.02626 0.0367,-0.02701 0.0352,-0.0279 0.0335,-0.02874 0.032,-0.02956 0.0303,-0.03016 0.0287,-0.03083 0.0272,-0.03151 0.024,-0.02993 0.024,-0.03226 0.0224,-0.03248 0.0208,-0.03256 0.0184,-0.03263 0.0168,-0.03256 0.0152,-0.03248 0.0128,-0.03233 0.0112,-0.03226", + "fill": { + "paint": "transparent" + }, + "id": "path443", + "name": "path443", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 138.65653,56.420838 0.008,-0.02221 0.009,-0.03181 0.008,-0.03151 0.008,-0.03113 v -0.03076 -0.02484 l 1.6e-4,-0.03016 v -0.02957 -0.02903 l -0.008,-0.02835 -0.008,-0.02431 -0.008,-0.02761 -0.009,-0.02701 -0.0103,-0.02626 -0.012,-0.02551 -0.0136,-0.02484 -0.0152,-0.02424 -0.0168,-0.02364 -0.0176,-0.02281 -0.0168,-0.01914 -0.02,-0.02101 -0.0216,-0.02026 -0.0232,-0.01951 -0.0247,-0.01861 -0.0216,-0.01455 -0.0272,-0.01673 -0.0288,-0.01568 -0.0295,-0.01471 -0.0311,-0.01366 -0.0224,-0.009 -0.0336,-0.01162 -0.0343,-0.01044 -0.036,-0.009 -0.0367,-0.008 -0.0216,-0.0037 -0.0384,-0.006 -0.04,-0.0052 -0.0407,-0.003 -0.0415,-0.0022 -0.0176,-1.34e-4 -0.0431,5.54e-4 -0.0431,0.0022 -0.0439,0.0037 -0.0448,0.0052 -0.0448,0.0067 -0.0448,0.009 -0.0455,0.01042 -0.0455,0.012 -0.0232,0.0067 -0.0455,0.01455 -0.0448,0.0159 -0.0448,0.0174 -0.0439,0.01891 -0.0431,0.02033 -0.0424,0.02183 -0.012,0.0067 -0.0415,0.02356 -0.0407,0.02484 -0.02,0.01298 -0.0383,0.02626 -0.0367,0.02716 -0.0351,0.02791 -0.0336,0.02873 -0.0319,0.02956 -0.0303,0.03016 -0.0287,0.03083 -0.0272,0.03151 -0.024,0.02993 -0.024,0.03226 -0.0224,0.03241 -0.0208,0.03256 -0.0184,0.03263 -0.0168,0.03263 -0.0152,0.03248 -0.0128,0.03241 -0.0112,0.03226", + "fill": { + "paint": "transparent" + }, + "id": "path444", + "name": "path444", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 137.07209,54.851548 -0.0103,-0.01824 -0.0112,-0.01793 -0.0128,-0.0174 -0.0144,-0.01703 -0.016,-0.01628 -0.0168,-0.01553 -0.0168,-0.01358 -0.0184,-0.01366 -0.02,-0.01291 -0.0208,-0.012 -0.0224,-0.01117 -0.0232,-0.01042 -0.0247,-0.009 -0.02,-0.0067 -0.0264,-0.008 -0.0272,-0.0067 -0.0287,-0.0052 -0.0296,-0.0037 -0.0304,-0.003 -0.0311,-0.0022 -0.0128,-3.31e-4 -0.0319,1.72e-4 -0.0327,0.0022 -0.0327,0.003 -0.0335,0.0052 -0.0335,0.0052 -0.0342,0.0067 -0.008,5.71e-4 -0.0343,0.009 -0.0342,0.01006 -0.0342,0.01132 -0.0336,0.01261 -0.0335,0.01396 -0.0311,0.01425 -4e-4,1.59e-4 -0.0319,0.0162 -0.0311,0.01725 -0.0304,0.01815 -0.0287,0.01906 -0.0279,0.02003 -0.0272,0.02101 -0.0144,0.01222 -0.0256,0.02221 -0.024,0.02281 -0.0224,0.02334 -0.0208,0.02372 -0.0192,0.02402 -0.0184,0.02424 -0.0168,0.02431 -0.0152,0.02454 -0.0137,0.02454 -0.012,0.02454 -0.0103,0.02446 -0.009,0.02447", + "fill": { + "paint": "transparent" + }, + "id": "path445", + "name": "path445", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 135.71297,53.365787 -0.0104,-0.01824 -0.012,-0.01793 -0.0128,-0.01748 -0.0145,-0.01695 -0.0161,-0.01635 -0.0168,-0.01553 -0.0168,-0.01366 -0.0184,-0.01358 -0.02,-0.0129 -0.0208,-0.01207 -0.0224,-0.01117 -0.0232,-0.01035 -0.0247,-0.009 -0.02,-0.0067 -0.0264,-0.008 -0.0272,-0.0067 -0.0279,-0.0052 -0.0296,-0.0037 -0.0303,-0.003 -0.0312,-0.0022 -0.0128,-3e-4 -0.0319,1.35e-4 -0.0327,0.0022 -0.0327,0.003 -0.0335,0.0052 -0.0335,0.0052 -0.0342,0.0067 -0.008,5.7e-4 -0.0342,0.009 -0.0342,0.01006 -0.0342,0.01132 -0.0335,0.01261 -0.0336,0.01396 -0.0312,0.01425 -4e-4,1.95e-4 -0.0319,0.01613 -0.0311,0.01725 -0.0304,0.01816 -0.0287,0.01906 -0.0279,0.02003 -0.0272,0.02101 -0.0144,0.01222 -0.0256,0.02221 -0.024,0.02281 -0.0224,0.02342 -0.0208,0.02372 -0.0193,0.02402 -0.0184,0.02424 -0.0168,0.02431 -0.0152,0.02454 -0.0136,0.02454 -0.0121,0.02454 -0.0103,0.02447 -0.009,0.02447", + "fill": { + "paint": "transparent" + }, + "id": "path446", + "name": "path446", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 134.47712,53.649387 v 0.009 l -0.008,0.02402 -0.008,0.02387 v 0.02357 0.02312 l -5e-4,0.02266 5e-4,0.02206 v 0.01132 0.02191 l 0.008,0.02153 0.008,0.02116 0.008,0.02041 0.008,0.01973 0.009,0.01891", + "fill": { + "paint": "transparent" + }, + "id": "path447", + "name": "path447", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 139.40044,53.365787 -0.0103,-0.01824 -0.0113,-0.01793 -0.0127,-0.01748 -0.0144,-0.01695 -0.016,-0.01635 -0.0168,-0.01553 -0.0168,-0.01366 -0.0184,-0.01358 -0.02,-0.0129 -0.0208,-0.01207 -0.0224,-0.01117 -0.0232,-0.01035 -0.0247,-0.009 -0.0192,-0.0067 -0.0264,-0.008 -0.0272,-0.0067 -0.028,-0.0052 -0.0296,-0.0037 -0.0303,-0.003 -0.0311,-0.0022 -0.0128,-3e-4 -0.032,1.35e-4 -0.0328,0.0022 -0.0327,0.003 -0.0335,0.0052 -0.0336,0.0052 -0.0343,0.0067 -0.008,5.7e-4 -0.0343,0.009 -0.0343,0.01006 -0.0343,0.01132 -0.0335,0.01261 -0.0336,0.01396 -0.0311,0.01425 -4e-4,1.95e-4 -0.0319,0.01613 -0.0312,0.01725 -0.0303,0.01816 -0.0287,0.01906 -0.028,0.02003 -0.0272,0.02101 -0.0152,0.01222 -0.0256,0.02221 -0.024,0.02281 -0.0224,0.02342 -0.0208,0.02372 -0.0192,0.02402 -0.0176,0.02424 -0.016,0.02431 -0.0152,0.02454 -0.0136,0.02454 -0.0121,0.02454 -0.0103,0.02447 -0.009,0.02447", + "fill": { + "paint": "transparent" + }, + "id": "path448", + "name": "path448", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 135.83641,55.135155 v 0.009 l -0.008,0.02402 -0.008,0.02387 v 0.02357 0.02312 l -5e-4,0.02266 4.8e-4,0.02221 v 0.01132 0.02191 0.02153 l 0.008,0.02116 0.008,0.02056 0.008,0.01974 0.009,0.01891", + "fill": { + "paint": "transparent" + }, + "id": "path449", + "name": "path449", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 137.74817,53.449278 -0.008,0.02221 -0.009,0.03181 -0.008,0.03151 -0.008,0.03113 v 0.03061 0.02484 l -3.2e-4,0.03016 v 0.02956 0.02904 l 0.008,0.02835 0.008,0.02431 0.008,0.02761 0.009,0.027 0.0103,0.02626 0.012,0.02551 0.0136,0.02484 0.0152,0.02424 0.0168,0.02364 0.0176,0.02273 0.0168,0.01913 0.02,0.02101 0.0216,0.02026 0.0232,0.01951 0.0247,0.01861 0.0216,0.01455 0.0272,0.0168 0.0287,0.01575 0.0296,0.01471 0.0311,0.01358 0.0232,0.009 0.0335,0.01162 0.0343,0.01042 0.0359,0.009 0.0367,0.008 0.0208,0.0037 0.0391,0.006 0.04,0.0052 0.0407,0.003 0.0415,0.0022 0.0176,1.5e-4 0.0431,-5.7e-4 0.0431,-0.0022 0.0439,-0.0037 0.0448,-0.0052 0.0448,-0.0067 0.0448,-0.009 0.0455,-0.01042 0.0455,-0.012 0.0232,-0.0067 0.0455,-0.01448 0.0448,-0.0159 0.0448,-0.0174 0.0439,-0.01891 0.0431,-0.02034 0.0424,-0.02183 0.012,-0.0067 0.0415,-0.02357 0.0407,-0.02484 0.02,-0.01298 0.0384,-0.02626 0.0367,-0.02716 0.0351,-0.0279 0.0336,-0.02873 0.0319,-0.02956 0.0303,-0.03016 0.0287,-0.03083 0.0272,-0.03151 0.024,-0.02971 0.024,-0.03226 0.0224,-0.03241 0.0208,-0.03256 0.0184,-0.03263 0.0168,-0.03263 0.0152,-0.03248 0.0128,-0.03241 0.0112,-0.03226", + "fill": { + "paint": "transparent" + }, + "id": "path450", + "name": "path450", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 137.1956,56.62094 v 0.009 l -0.008,0.02402 -0.008,0.02387 v 0.02357 0.02312 l -5e-4,0.02266 5e-4,0.02221 5e-4,0.01132 v 0.02191 l 0.008,0.02161 0.008,0.02116 0.008,0.02056 0.008,0.01973 0.009,0.01891", + "fill": { + "paint": "transparent" + }, + "id": "path451", + "name": "path451", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 139.62568,53.449278 0.008,-0.02213 0.008,-0.03188 0.008,-0.03151 0.008,-0.03113 v -0.03076 -0.02484 l 1.6e-4,-0.03016 v -0.02956 -0.02896 l -0.008,-0.02837 -0.008,-0.02431 -0.008,-0.0276 -0.009,-0.02701 -0.0103,-0.02634 -0.012,-0.02544 -0.0136,-0.02484 -0.0152,-0.02424 -0.0168,-0.02364 -0.0184,-0.02273 -0.0168,-0.01914 -0.02,-0.02101 -0.0216,-0.02026 -0.0232,-0.01951 -0.0247,-0.01861 -0.0216,-0.01456 -0.0272,-0.0168 -0.0287,-0.01568 -0.0296,-0.01471 -0.0311,-0.01373 -0.0232,-0.009 -0.0336,-0.01162 -0.0343,-0.01043 -0.0359,-0.009 -0.0367,-0.008 -0.0216,-0.0037 -0.0384,-0.006 -0.04,-0.0052 -0.0407,-0.003 -0.0415,-0.0022 -0.0176,-1.43e-4 -0.0431,5.63e-4 -0.0431,0.0022 -0.0439,0.0037 -0.0448,0.0052 -0.0448,0.0067 -0.0448,0.009 -0.0455,0.01042 -0.0455,0.012 -0.0232,0.0067 -0.0455,0.01441 -0.0448,0.0159 -0.0448,0.0174 -0.0439,0.01891 -0.0431,0.02033 -0.0424,0.02183 -0.012,0.0067 -0.0415,0.02357 -0.0407,0.02484 -0.02,0.01298 -0.0383,0.02625 -0.0367,0.02716 -0.0351,0.02791 -0.0335,0.02874 -0.0319,0.02956 -0.0303,0.03016 -0.0287,0.03083 -0.0272,0.03158 -0.024,0.02993 -0.024,0.03226 -0.0224,0.03248 -0.0208,0.03256 -0.0184,0.03263 -0.0168,0.03256 -0.0152,0.03248 -0.0127,0.03241 -0.0113,0.03226", + "fill": { + "paint": "transparent" + }, + "id": "path452", + "name": "path452", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 135.41982,54.935069 -0.008,0.02221 -0.008,0.03181 -0.008,0.03151 -0.008,0.03113 v 0.03076 0.02484 l -3.2e-4,0.03016 v 0.02956 0.02904 l 0.008,0.02835 0.008,0.02431 0.008,0.02761 0.009,0.027 0.0103,0.02626 0.0121,0.02544 0.0137,0.02484 0.0152,0.02424 0.0168,0.02364 0.0176,0.02274 0.0168,0.01914 0.02,0.02101 0.0216,0.02033 0.0232,0.01951 0.0247,0.01861 0.0216,0.01456 0.0272,0.01673 0.0287,0.01583 0.0295,0.01471 0.0311,0.01373 0.0224,0.009 0.0335,0.01162 0.0343,0.01042 0.036,0.009 0.0367,0.008 0.0208,0.0037 0.0391,0.006 0.04,0.0052 0.0407,0.003 0.0415,0.0022 0.0176,1.43e-4 0.0431,-5.77e-4 0.0431,-0.0022 0.0439,-0.0037 0.0448,-0.0052 0.0448,-0.0067 0.0448,-0.009 0.0455,-0.01042 0.0455,-0.012 0.0232,-0.0067 0.0455,-0.01441 0.0448,-0.0159 0.0439,-0.01755 0.0439,-0.01891 0.0431,-0.02033 0.0424,-0.02183 0.012,-0.0067 0.0415,-0.02356 0.0407,-0.02484 0.02,-0.01298 0.0383,-0.02626 0.0367,-0.02716 0.0352,-0.02792 0.0335,-0.02874 0.0319,-0.02956 0.0303,-0.03016 0.0287,-0.03083 0.027,-0.03151 0.024,-0.02993 0.024,-0.03226 0.0224,-0.03241 0.0208,-0.03256 0.0184,-0.03263 0.0168,-0.03256 0.0152,-0.03256 0.0127,-0.03241 0.0113,-0.03226", + "fill": { + "paint": "transparent" + }, + "id": "path453", + "name": "path453", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 134.74373,56.337323 -0.0103,-0.01824 -0.0112,-0.01794 -0.0128,-0.01755 -0.0145,-0.01703 -0.0152,-0.01635 -0.0168,-0.01553 -0.0168,-0.01366 -0.0185,-0.01373 -0.02,-0.0129 -0.0208,-0.012 -0.0224,-0.01117 -0.0232,-0.0102 -0.0247,-0.009 -0.0193,-0.0067 -0.0264,-0.008 -0.0271,-0.0067 -0.028,-0.0052 -0.0296,-0.0037 -0.0303,-0.003 -0.0311,-0.0022 -0.0128,-3.23e-4 -0.0319,1.65e-4 -0.0328,0.0022 -0.0328,0.003 -0.0335,0.0052 -0.0335,0.0052 -0.0342,0.0067 -0.008,5.7e-4 -0.0342,0.009 -0.0342,0.01005 -0.0342,0.01132 -0.0335,0.0126 -0.0335,0.01396 -0.0311,0.01418 -4e-4,1.64e-4 -0.0318,0.0162 -0.0312,0.01725 -0.0303,0.01809 -0.0287,0.01906 -0.028,0.02003 -0.0272,0.02101 -0.0144,0.01222 -0.0256,0.02221 -0.024,0.02281 -0.0224,0.02334 -0.0208,0.02372 -0.0192,0.02402 -0.0176,0.02424 -0.0168,0.02431 -0.0152,0.02454 -0.0137,0.02454 -0.0121,0.02454 -0.0103,0.02447 -0.009,0.02447", + "fill": { + "paint": "transparent" + }, + "id": "path454", + "name": "path454", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 137.29723,54.935069 0.008,-0.02221 0.009,-0.03188 0.008,-0.03151 0.008,-0.03113 v -0.03076 -0.02484 l 3.1e-4,-0.03016 v -0.02956 -0.02904 l -0.008,-0.02837 -0.008,-0.02431 -0.008,-0.02761 -0.009,-0.02701 -0.0103,-0.02626 -0.0121,-0.02544 -0.0136,-0.02484 -0.0152,-0.02424 -0.0168,-0.02364 -0.0176,-0.02273 -0.0168,-0.01913 -0.02,-0.02101 -0.0216,-0.02033 -0.0232,-0.01951 -0.0247,-0.01861 -0.0216,-0.01456 -0.0272,-0.0168 -0.0287,-0.01583 -0.0296,-0.01471 -0.0312,-0.01373 -0.0232,-0.009 -0.0336,-0.01162 -0.0343,-0.01042 -0.036,-0.009 -0.0367,-0.008 -0.0208,-0.0037 -0.0383,-0.006 -0.04,-0.0052 -0.0407,-0.003 -0.0415,-0.0022 -0.0176,-1.28e-4 -0.0431,5.56e-4 -0.0431,0.0022 -0.0439,0.0037 -0.0448,0.0052 -0.0448,0.0067 -0.0448,0.009 -0.0455,0.01042 -0.0455,0.012 -0.0232,0.0067 -0.0455,0.01441 -0.0448,0.0159 -0.0448,0.0174 -0.0439,0.01891 -0.0431,0.02033 -0.0424,0.02183 -0.012,0.0067 -0.0415,0.02357 -0.0407,0.02484 -0.02,0.01298 -0.0384,0.02626 -0.0367,0.02716 -0.0352,0.0279 -0.0335,0.02873 -0.0319,0.02956 -0.0303,0.03016 -0.0287,0.03083 -0.0272,0.03151 -0.024,0.02993 -0.024,0.03226 -0.0224,0.03248 -0.02,0.03256 -0.0184,0.03263 -0.0168,0.03256 -0.0152,0.03256 -0.0128,0.03248 -0.0112,0.03226", + "fill": { + "paint": "transparent" + }, + "id": "path455", + "name": "path455", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 134.06054,53.449278 -0.008,0.02221 -0.009,0.03181 -0.008,0.03151 -0.008,0.03113 v 0.03061 0.02484 l -1.6e-4,0.03016 v 0.02956 0.02904 l 0.008,0.02835 0.008,0.02431 0.008,0.02761 0.009,0.027 0.0105,0.02626 0.0121,0.02551 0.0137,0.02484 0.0152,0.02424 0.0168,0.02364 0.0176,0.02273 0.0168,0.01913 0.0208,0.02101 0.0216,0.02026 0.0232,0.01951 0.0248,0.01861 0.0216,0.01455 0.0272,0.0168 0.0287,0.01575 0.0296,0.01471 0.0311,0.01358 0.0224,0.009 0.0336,0.01162 0.0342,0.01042 0.036,0.009 0.0367,0.008 0.0216,0.0037 0.0384,0.006 0.04,0.0052 0.0408,0.003 0.0415,0.0022 0.0176,1.5e-4 0.0431,-5.7e-4 0.0431,-0.0022 0.0439,-0.0037 0.0448,-0.0052 0.0448,-0.0067 0.0448,-0.009 0.0455,-0.01042 0.0455,-0.012 0.0232,-0.0067 0.0455,-0.01448 0.0448,-0.0159 0.0448,-0.0174 0.0439,-0.01891 0.0431,-0.02034 0.0424,-0.02183 0.012,-0.0067 0.0415,-0.02357 0.0407,-0.02484 0.02,-0.01298 0.0384,-0.02626 0.0367,-0.02716 0.0351,-0.0279 0.0335,-0.02873 0.032,-0.02956 0.0303,-0.03016 0.0287,-0.03083 0.028,-0.03151 0.024,-0.02971 0.024,-0.03226 0.0224,-0.03241 0.0208,-0.03256 0.0184,-0.03263 0.0168,-0.03263 0.0152,-0.03248 0.0128,-0.03241 0.0112,-0.03226", + "fill": { + "paint": "transparent" + }, + "id": "path456", + "name": "path456", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 135.93803,53.449278 v -0.008 l 0.009,-0.02956 0.008,-0.02941 0.008,-0.02911 0.008,-0.02875 v -0.02835 -0.02792 l -2.4e-4,-0.02745 -5e-4,-0.01305 v -0.02701 -0.02685 l -0.008,-0.02634 -0.008,-0.02581 -0.008,-0.02521 -0.009,-0.02454 -0.0104,-0.02387 -0.0112,-0.02327 -0.0128,-0.02296 -0.0144,-0.02243 -0.0152,-0.02183 -0.0168,-0.02123 -0.0176,-0.02056 -0.0192,-0.01973 -0.01,-0.009 -0.02,-0.01846 -0.0216,-0.01771 -0.0232,-0.01703 -0.0239,-0.01635 -0.0256,-0.01545 -0.0263,-0.01463 -0.028,-0.01366 -0.0103,-0.0052", + "fill": { + "paint": "transparent" + }, + "id": "path457", + "name": "path457", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 135.61069,52.759969 -0.0294,-0.01162 -0.0312,-0.01065 -0.0319,-0.01002 -0.0334,-0.009 -0.0343,-0.008 -0.0351,-0.006 -0.0359,-0.0052 -0.0367,-0.0037 -0.0384,-0.0022 -0.0383,-0.0022 -0.0391,-3e-5 -0.04,0.0022 -0.0103,5.48e-4 -0.0407,0.003 -0.0407,0.0052 -0.0407,0.006 -0.0415,0.0067 -0.0415,0.009 -0.0359,0.008 -0.0424,0.01117 -0.0424,0.01252 -0.0415,0.01381 -0.0415,0.01523 -0.0407,0.0165 -0.028,0.01222 -0.04,0.01854 -0.0272,0.01343 -0.0391,0.02063 -0.0383,0.02176 -0.0376,0.02273 -0.0367,0.02371 -0.0287,0.02026 -0.0342,0.02514 -0.0327,0.02581 -0.0311,0.02656 -0.0303,0.02723 -0.0287,0.02791 -0.008,0.0052 -0.0272,0.02866 -0.0256,0.02905 -0.0247,0.02941 -0.0232,0.02964 -0.0217,0.02993 -0.02,0.03001 -0.0185,0.03016 -0.0168,0.03016 -0.0152,0.03016 -0.0137,0.03001 -0.012,0.02993 -0.0105,0.02993", + "fill": { + "paint": "transparent" + }, + "id": "path458", + "name": "path458", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 133.09154,56.420838 -0.008,0.02221 -0.009,0.03188 -0.008,0.03151 -0.008,0.03113 v 0.03076 0.02484 l -2.3e-4,0.03016 v 0.02956 0.02903 l 0.008,0.02835 0.008,0.02431 0.008,0.02761 0.009,0.02701 0.0103,0.02634 0.0121,0.02544 0.0137,0.02484 0.0152,0.02424 0.0168,0.02364 0.0176,0.02273 0.0168,0.01914 0.02,0.02101 0.0216,0.02026 0.0232,0.01951 0.0248,0.01861 0.0216,0.01455 0.0272,0.0168 0.0287,0.01568 0.0303,0.01471 0.0311,0.01373 0.0224,0.009 0.0335,0.01162 0.0343,0.01042 0.0359,0.009 0.0367,0.008 0.0216,0.0037 0.0383,0.006 0.04,0.0052 0.0408,0.003 0.0415,0.0022 0.0176,1.34e-4 0.0431,-5.55e-4 0.0431,-0.0022 0.0439,-0.0037 0.0448,-0.0052 0.0448,-0.0067 0.0448,-0.009 0.0455,-0.01043 0.0455,-0.012 0.0232,-0.0067 0.0455,-0.01441 0.0448,-0.0159 0.0448,-0.0174 0.0439,-0.01891 0.0431,-0.02033 0.0424,-0.02183 0.012,-0.0067 0.0415,-0.02356 0.0407,-0.02484 0.02,-0.01306 0.0384,-0.02626 0.0367,-0.02701 0.0352,-0.0279 0.0335,-0.02874 0.0319,-0.02956 0.0303,-0.03016 0.0287,-0.03083 0.0272,-0.03151 0.024,-0.02993 0.024,-0.03226 0.0224,-0.03248 0.02,-0.03256 0.0184,-0.03263 0.0168,-0.03256 0.0152,-0.03248 0.0128,-0.03233 0.0112,-0.03226", + "fill": { + "paint": "transparent" + }, + "id": "path459", + "name": "path459", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 133.36983,52.096888 0.20325,-0.125702 0.20701,-0.121397 0.21046,-0.116947 0.21388,-0.112379 0.21692,-0.107658 0.21979,-0.102841 0.22172,-0.09754 0.22483,-0.09282 0.0112,-0.0052 0.22635,-0.08712 0.22738,-0.08161 0.22843,-0.07611 0.2293,-0.07053 0.22987,-0.0649 0.23026,-0.05928 0.23058,-0.05365 0.23074,-0.04809 0.0583,-0.01132 0.22915,-0.04067 0.22747,-0.03481 0.22595,-0.02911 0.22419,-0.02333 0.22236,-0.01764 0.22043,-0.012 0.21859,-0.0067 0.21637,-5.63e-4 0.11744,0.0022 0.21198,0.008 0.20861,0.01276 0.20525,0.01801 0.20174,0.02312 0.19798,0.02813 0.19407,0.03316 0.19031,0.03796 0.18625,0.04277", + "fill": { + "paint": "transparent" + }, + "id": "path460", + "name": "path460", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 140.4884,50.702459 0.0424,0.01042 0.13495,0.03564 0.13279,0.03796 0.13031,0.04044 0.12784,0.04299 0.12535,0.0454 0.12264,0.04756 0.12017,0.04974 0.1176,0.05199 0.0632,0.02926 0.11369,0.05537 0.11114,0.05762 0.10842,0.05958 0.10578,0.0616 0.10306,0.06347 0.10011,0.06542 0.0975,0.06715 0.0946,0.06903 0.0679,0.05207 0.0901,0.0724 0.0875,0.0742 0.0848,0.07591 0.0819,0.07761 0.0791,0.07912 0.0759,0.08062 0.0735,0.08201 0.0703,0.08331 0.0679,0.08522 0.0527,0.07038 0.0631,0.08852 0.0599,0.09003 0.0575,0.09153 0.0544,0.09274 0.0511,0.09393 0.0487,0.09483 0.0448,0.09574", + "fill": { + "paint": "transparent" + }, + "id": "path461", + "name": "path461", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 143.81514,53.508664 0.02,0.06812 0.0184,0.06879 0.0176,0.06933 0.016,0.06993 0.0144,0.07038 0.0136,0.0709 0.0121,0.0712 0.008,0.03173 0.0103,0.0718 0.009,0.0724 0.008,0.07278 0.008,0.07337 0.008,0.07382 v 0.07428 0.07458 l 2.3e-4,0.02837", + "fill": { + "paint": "transparent" + }, + "id": "path462", + "name": "path462", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 143.97278,54.73394 v 0.07611 l -0.008,0.07651 -0.008,0.07681 -0.008,0.05575 -0.009,0.07741 -0.0103,0.07781 -0.0113,0.07821 -0.0128,0.07851 -0.0144,0.07892 -0.016,0.07921 -0.0176,0.07952 -0.0192,0.07973 -0.02,0.07992 -0.0216,0.08012 -0.0232,0.07902", + "fill": { + "paint": "transparent" + }, + "id": "path463", + "name": "path463", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 143.70408,56.11671 -0.0296,0.08122 -0.0311,0.08132 -0.0327,0.08141 -0.02,0.04809 -0.0351,0.08162 -0.0367,0.08172 -0.0383,0.08181 -0.0391,0.08182 -0.0415,0.0819 -0.0424,0.08191 -0.0439,0.08192 -0.0455,0.08182 -0.0472,0.08181 -0.0487,0.08172 -0.0288,0.04749", + "fill": { + "paint": "transparent" + }, + "id": "path464", + "name": "path464", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 143.03791,57.438346 -0.0544,0.08141 -0.0559,0.08112 -0.0575,0.08092 -0.0256,0.03474 -0.0599,0.08062 -0.0615,0.08042 -0.0631,0.08012 -0.0647,0.07982 -0.0663,0.07952 -0.0671,0.07911 -0.0687,0.07871 -0.0703,0.07841 -0.0719,0.07791 -0.0735,0.07741 -0.0103,0.01117", + "fill": { + "paint": "transparent" + }, + "id": "path465", + "name": "path465", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 142.08633,58.600891 -0.0144,0.01493 -0.0152,0.01493 -0.0152,0.01478 -0.0152,0.01485 -0.0152,0.01486 -0.0152,0.01471 -0.0152,0.01471 -0.0152,0.0147 -0.0152,0.01471 -0.0152,0.01463", + "fill": { + "paint": "transparent" + }, + "id": "path466", + "name": "path466", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 139.36857,60.507233 -0.18393,0.08572 -0.2138,0.09434 -0.21565,0.08942 -0.21739,0.08462 -0.21876,0.07962 -0.22004,0.07458 -0.22091,0.0694 -0.22156,0.0643 -0.21652,0.0577 -0.22147,0.0538 -0.22123,0.04839 -0.22093,0.04314 v 5.71e-4 l -0.22011,0.03774 -0.21907,0.03248 -0.21795,0.02701 -0.21693,0.02183 -0.0535,0.0052 -0.21405,0.01523 -0.21173,0.01005 -0.20925,0.0052 -0.20669,-2.17e-4 -0.20406,-0.0052 -0.2015,-0.0102 -0.19878,-0.01516 -0.19607,-0.01996 -0.10746,-0.01313 -0.19087,-0.0273 -0.18735,-0.03181 -0.18353,-0.03639 -0.17978,-0.04067 -0.17584,-0.0451 -0.17161,-0.04907 -0.16772,-0.05319 -0.1633,-0.05732", + "fill": { + "paint": "transparent" + }, + "id": "path467", + "name": "path467", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 132.67017,61.100266 -0.0224,-0.008 -0.10609,-0.04067 -0.10427,-0.04232 -0.10242,-0.04405 -0.10043,-0.04576 -0.0985,-0.04726 -0.0965,-0.04883 -0.0944,-0.05049 -0.0328,-0.01816 -0.0919,-0.05244 -0.0899,-0.05395 -0.088,-0.05545 -0.0858,-0.05687 -0.0839,-0.0583 -0.0817,-0.0595 -0.0799,-0.06093 -0.0367,-0.02911 -0.0767,-0.06295 -0.0751,-0.06423 -0.0727,-0.0655 -0.0703,-0.0667 -0.0687,-0.06789 -0.0663,-0.06903 -0.064,-0.07 -0.0335,-0.03796 -0.0615,-0.07217 -0.0592,-0.07337 -0.0575,-0.07458 -0.0551,-0.07561 -0.0527,-0.07661 -0.0503,-0.07751 -0.0487,-0.07831", + "fill": { + "paint": "transparent" + }, + "id": "path468", + "name": "path468", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 130.34253,59.261564 -0.0743,-0.133358 -0.0687,-0.136963 -0.0631,-0.140244 -0.0568,-0.143034 -0.0472,-0.133379 -0.0448,-0.146973 -0.0383,-0.148549 -0.0327,-0.151438 -0.0264,-0.154079 -0.02,-0.156502 -0.0137,-0.15855 -0.008,-0.140957 v -0.161581 l 0.008,-0.163773 0.0121,-0.165812 0.0184,-0.167593 0.0256,-0.16918 0.024,-0.129673 0.0376,-0.171207 0.0448,-0.172477 0.052,-0.173608 0.0592,-0.174621 0.0664,-0.17547 0.0439,-0.107749 0.0775,-0.176444 0.085,-0.176618 0.0923,-0.176714 0.0996,-0.176671 0.10698,-0.176497 0.0503,-0.07901 0.1177,-0.175927 0.12479,-0.174726 0.13191,-0.173535 0.13902,-0.172205 0.14629,-0.170847 0.0455,-0.05147 0.15571,-0.16889 0.16227,-0.166525 0.16891,-0.163968 0.17522,-0.161169 0.18144,-0.158205 0.18768,-0.154971 0.1935,-0.151558 0.19928,-0.147889 0.20469,-0.14392 0.20988,-0.139749 0.0583,-0.03766", + "fill": { + "paint": "transparent" + }, + "id": "path469", + "name": "path469", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 130.34253,59.261338 0.0472,0.07821 0.0496,0.07761 0.052,0.07691 0.0544,0.07621 0.0568,0.07542 0.0592,0.07451 0.0616,0.0736 0.0631,0.07262 0.0655,0.07143 0.0679,0.07023 0.0695,0.06888 0.0719,0.06752 0.0735,0.0661 0.0751,0.06452 0.0775,0.06287 0.008,0.006 0.0791,0.061 0.0811,0.0598 0.0833,0.05852 0.0854,0.05717 0.0877,0.0559 0.0898,0.05447 0.0919,0.05297 0.0941,0.05169 0.0962,0.05019 0.0982,0.04869 0.1002,0.04704 0.1021,0.04525 0.10411,0.04367 0.10578,0.04187 0.0759,0.02851", + "fill": { + "paint": "transparent" + }, + "id": "path470", + "name": "path470", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 132.79642,61.145012 0.11335,0.03751 0.11531,0.03579 0.11711,0.03377 0.11914,0.03173 0.12089,0.02986 0.1228,0.02783 0.0112,0.0022 0.1248,0.02566 0.12647,0.02357 0.12816,0.02146 0.12982,0.01921 0.13137,0.0171 0.13286,0.01493 0.13447,0.01267 0.1359,0.01043 0.13734,0.008 0.13863,0.006 0.13998,0.0037 0.14125,0.0022 0.14237,-0.0022 0.1435,-0.0037 0.1443,-0.006 0.14533,-0.008 0.14614,-0.0108 0.0853,-0.008", + "fill": { + "paint": "transparent" + }, + "id": "path471", + "name": "path471", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 135.92381,61.469887 0.17865,-0.01815 0.17929,-0.02176 0.18008,-0.02522 0.18073,-0.02882 0.18144,-0.03248 0.18217,-0.03616 0.0343,-0.008 0.18289,-0.04059 0.18297,-0.04405 0.18271,-0.04779 0.18273,-0.05124 0.18216,-0.05477 0.18185,-0.0583 0.18104,-0.06168 0.18033,-0.0652 0.17937,-0.06857 0.17842,-0.07188 0.17712,-0.07521 0.1757,-0.0784 0.17426,-0.08161 0.1725,-0.08472 0.0376,-0.01884 0.17033,-0.08842 0.16827,-0.09133 0.1661,-0.09413 0.16387,-0.09684", + "fill": { + "paint": "transparent" + }, + "id": "path472", + "name": "path472", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 140.45005,59.90912 0.0987,-0.0634 0.1014,-0.06692 0.10026,-0.06789 0.0991,-0.06887 0.0966,-0.06887 0.0968,-0.07083 0.0954,-0.0718 0.0942,-0.07263 0.0928,-0.07337 0.0915,-0.07427 0.0901,-0.07512 0.0888,-0.07591 0.0872,-0.07661 0.086,-0.07731 0.0845,-0.07801 0.083,-0.0787", + "fill": { + "paint": "transparent" + }, + "id": "path473", + "name": "path473", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 142.10678,58.580124 0.0615,-0.06288 0.0954,-0.100644 0.0927,-0.101168 0.0902,-0.101791 0.0876,-0.102482 0.0853,-0.103149 0.0335,-0.04194 0.0817,-0.104087 0.0791,-0.104665 0.0767,-0.10516 0.0743,-0.105558 0.0711,-0.105895 0.0687,-0.106166 0.0663,-0.106368 0.0639,-0.10651 0.0607,-0.106555 0.0583,-0.106623 0.0559,-0.106572 0.0527,-0.106517 0.0503,-0.106413 0.0479,-0.106241 0.0448,-0.106075 0.0424,-0.10585 0.04,-0.105641", + "fill": { + "paint": "transparent" + }, + "id": "path474", + "name": "path474", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 143.84526,55.643512 5e-4,-0.003 0.0232,-0.09884 0.0208,-0.09854 0.0184,-0.09814 0.016,-0.09764 0.0136,-0.09724 0.0112,-0.09664 0.01,-0.09603 0.008,-0.09534 0.008,-0.09464 v -0.09393 l 4.9e-4,-0.09313 v -0.09233 -0.09143 l -0.008,-0.09063 v -0.03196 l -0.009,-0.09033 -0.0112,-0.08993 -0.0127,-0.08952 -0.0152,-0.08892 -0.0176,-0.08832 -0.0192,-0.08762 -0.0216,-0.08682 -0.0232,-0.08602 -0.0256,-0.08502 -0.0272,-0.08402 -0.0296,-0.08291 -0.0311,-0.08172 -0.0327,-0.08052 -0.0351,-0.07922", + "fill": { + "paint": "transparent" + }, + "id": "path475", + "name": "path475", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 130.07952,56.002223 -0.028,0.08892 -0.0327,0.112144 -0.0303,0.111861 -0.0272,0.111455 -0.024,0.110929 -0.0216,0.110345 -0.0184,0.109693 -0.0152,0.108956 -0.0128,0.108153 -0.01,0.107261 -0.008,0.10636 -0.008,0.105424 v 0.104402 0.103404 l 0.008,0.102354 0.008,0.101251 0.01,0.101146 v 0.01966 l 0.0128,0.100891 0.0152,0.1005 0.0184,0.09994 0.0208,0.09924 0.0232,0.09854 0.0264,0.09754 0.0287,0.09654 0.0312,0.09534 0.0335,0.09403 0.0359,0.09263 0.0383,0.09123 0.0407,0.08962 0.0431,0.08791 0.0448,0.08622 0.0472,0.08441", + "fill": { + "paint": "transparent" + }, + "id": "path476", + "name": "path476", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 143.64209,53.053862 -0.0455,-0.09524 -0.0487,-0.09443 -0.052,-0.09343 -0.0551,-0.09233 -0.0575,-0.09103 -0.0607,-0.08962 -0.0631,-0.08812 -0.0503,-0.0667 -0.0679,-0.08492 -0.0703,-0.08301 -0.0735,-0.08161 -0.0759,-0.08012 -0.0791,-0.07851 -0.0817,-0.07691 -0.0845,-0.0752 -0.0872,-0.07338 -0.0897,-0.07158 -0.0663,-0.05064 -0.0942,-0.0682 -0.0971,-0.0667 -0.1002,-0.0649 -0.10298,-0.06318 -0.10602,-0.06138 -0.10883,-0.0595 -0.1116,-0.05747 -0.11441,-0.05537 -0.11697,-0.05334 -0.1196,-0.05124 -0.12208,-0.04899 -0.12448,-0.04659 -0.12671,-0.04405 -0.12863,-0.04164 -0.13064,-0.03909 -0.13239,-0.03639 -0.10283,-0.02611", + "fill": { + "paint": "transparent" + }, + "id": "path477", + "name": "path477", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 140.49207,50.703434 -0.18831,-0.04337 -0.19184,-0.03835 -0.19526,-0.03331 -0.19863,-0.02836 -0.20222,-0.02327 -0.20541,-0.01801 -0.20861,-0.01267 -0.21173,-0.008 -0.21485,-0.0022 -0.21755,0.0037 -0.22044,0.009 -0.22283,0.01493 -0.22523,0.02063 -0.22738,0.02634 -0.22898,0.03226 -0.23059,0.03811 -0.19359,0.03624 -0.2325,0.04876 -0.23178,0.0544 -0.2313,0.05995 -0.23027,0.0655 -0.2293,0.07098 -0.2281,0.07652 -0.22676,0.08191 -0.22523,0.08731 -0.22338,0.09274 -0.22148,0.09794 -0.2194,0.103216 -0.21708,0.108312 -0.21444,0.113398 -0.21188,0.118327 -0.20893,0.123182 -0.20574,0.127962 -0.0256,0.01613", + "fill": { + "paint": "transparent" + }, + "id": "path478", + "name": "path478", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 133.3258,52.125054 -0.0559,0.03594 -0.16731,0.111275 -0.16355,0.113668 -0.15995,0.115926 -0.15612,0.118125 -0.15228,0.120249 -0.14837,0.122281 -0.14461,0.12424 -0.14054,0.126116 -0.13662,0.127931 -0.13256,0.129664 -0.12855,0.131375 -0.12456,0.132974 -0.12048,0.134593 -0.11649,0.136102 -0.008,0.0052 -0.11185,0.137152 -0.10739,0.138046 -0.10282,0.138705 -0.0981,0.139268 -0.0935,0.139695 -0.0889,0.139989 -0.0842,0.140161 -0.0799,0.140266 -0.0751,0.140235 -0.0703,0.140162 -0.0655,0.140011 -0.0607,0.139778 -0.0568,0.13953 -0.052,0.139216 -0.0472,0.138856", + "fill": { + "paint": "transparent" + }, + "id": "path479", + "name": "path479", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "cx": "121.96127", + "cy": "86.503242", + "fill": { + "opacity": "1", + "paint": "transparent" + }, + "id": "ellipse479", + "name": "ellipse479", + "rx": "4.6207089", + "ry": "3.5301664", + "stroke": { + "dasharray": "none", + "opacity": "1", + "paint": "#000000", + "width": "1.10038" + }, + "transform": "matrix(0.9696729,-0.24440635,0.20828824,0.97806749,0,0)", + "type": "ellipse" + }, + { + "d": "m 95.672289,78.800299 v -0.008", + "fill": { + "paint": "transparent" + }, + "id": "path480", + "name": "path480", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 95.671979,78.802055 v -0.01005", + "fill": { + "paint": "transparent" + }, + "id": "path481", + "name": "path481", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 95.671729,78.802055 5e-4,-0.0022", + "fill": { + "paint": "transparent" + }, + "id": "path482", + "name": "path482", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 87.934749,84.461626 0.0129,-4.58e-4", + "fill": { + "paint": "transparent" + }, + "id": "path484", + "name": "path484", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 87.911509,84.46243 0.008,-1.43e-4", + "fill": { + "paint": "transparent" + }, + "id": "path485", + "name": "path485", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 87.911669,84.462152 0.008,1.35e-4", + "fill": { + "paint": "transparent" + }, + "id": "path486", + "name": "path486", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 87.838569,84.473579 0.008,-5.63e-4", + "fill": { + "paint": "transparent" + }, + "id": "path487", + "name": "path487", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 87.838569,84.473579 0.008,-4.12e-4", + "fill": { + "paint": "transparent" + }, + "id": "path488", + "name": "path488", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 87.934839,84.461288 0.0127,-5.69e-4", + "fill": { + "paint": "transparent" + }, + "id": "path489", + "name": "path489", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 93.993659,81.925675 c 0.0575,-0.05545 0.11449,-0.111567 0.17041,-0.168468", + "fill": { + "paint": "transparent" + }, + "id": "path490", + "name": "path490", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 94.143619,81.777974 c 0.0263,-0.02685 0.0527,-0.05395 0.0791,-0.08111", + "fill": { + "paint": "transparent" + }, + "id": "path491", + "name": "path491", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 84.726809,84.277078 c 0.0424,0.01546 0.0843,0.03046 0.1269,0.04509", + "fill": { + "paint": "transparent" + }, + "id": "path492", + "name": "path492", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 82.387839,82.41778 c 0,0.0067 0.008,0.01381 0.012,0.02063", + "fill": { + "paint": "transparent" + }, + "id": "path493", + "name": "path493", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 87.687719,75.945537 c -0.008,-0.003 -0.0128,-0.006 -0.02,-0.008", + "fill": { + "paint": "transparent" + }, + "id": "path494", + "name": "path494", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 85.427119,75.273971 c -0.008,0.0052 -0.0128,0.008 -0.02,0.01252", + "fill": { + "paint": "transparent" + }, + "id": "path495", + "name": "path495", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 95.095199,80.615429 c 0.036,-0.0544 0.0711,-0.109092 0.10547,-0.164343", + "fill": { + "paint": "transparent" + }, + "id": "path496", + "name": "path496", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 95.761369,79.293793 c 0.0136,-0.03954 0.0272,-0.07931 0.04,-0.119138", + "fill": { + "paint": "transparent" + }, + "id": "path497", + "name": "path497", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 95.744039,79.342306 c 0.0192,-0.0541 0.0384,-0.108386 0.0559,-0.163", + "fill": { + "paint": "transparent" + }, + "id": "path498", + "name": "path498", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 95.801719,79.174655 c 0.0121,-0.03669 0.0232,-0.07352 0.0343,-0.110353", + "fill": { + "paint": "transparent" + }, + "id": "path499", + "name": "path499", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 95.800199,79.179306 c 0.0383,-0.118357 0.0727,-0.238005 0.10236,-0.358711", + "fill": { + "paint": "transparent" + }, + "id": "path500", + "name": "path500", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 96.031979,77.747567 c 4.8e-4,0.05447 -1.6e-4,0.108971 0,0.163456", + "fill": { + "paint": "transparent" + }, + "id": "path501", + "name": "path501", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 95.872429,76.685747 c -0.012,-0.0391 -0.0248,-0.07801 -0.0376,-0.116611", + "fill": { + "paint": "transparent" + }, + "id": "path502", + "name": "path502", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 95.834799,76.569136 c -0.008,-0.02281 -0.016,-0.04577 -0.024,-0.06849", + "fill": { + "paint": "transparent" + }, + "id": "path503", + "name": "path503", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 95.810589,76.500719 c -0.0311,-0.08482 -0.0655,-0.168492 -0.10258,-0.250911", + "fill": { + "paint": "transparent" + }, + "id": "path504", + "name": "path504", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 95.707999,76.250003 c 0,-0.006 -0.008,-0.01275 -0.009,-0.01906", + "fill": { + "paint": "transparent" + }, + "id": "path505", + "name": "path505", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 91.425859,83.684316 c 0.37399,-0.178584 0.73609,-0.378865 1.08404,-0.599696", + "fill": { + "paint": "transparent" + }, + "id": "path506", + "name": "path506", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 92.317909,83.203518 c 0.0631,-0.03849 0.12671,-0.07751 0.18943,-0.117315", + "fill": { + "paint": "transparent" + }, + "id": "path507", + "name": "path507", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 92.509899,83.08462 c 0.008,-0.0052 0.0128,-0.008 0.02,-0.01252", + "fill": { + "paint": "transparent" + }, + "id": "path508", + "name": "path508", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 92.529709,83.072037 c 0.0751,-0.04779 0.149,-0.09644 0.22244,-0.146186", + "fill": { + "paint": "transparent" + }, + "id": "path509", + "name": "path509", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 92.752149,82.925851 c 0.0801,-0.0541 0.15929,-0.109369 0.23752,-0.16573", + "fill": { + "paint": "transparent" + }, + "id": "path510", + "name": "path510", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 90.237869,77.110064 0.0103,0.01824 0.0121,0.01794 0.0128,0.01755 0.0144,0.01703 0.016,0.01628 0.0168,0.01553 0.0168,0.01358 0.0184,0.01358 0.02,0.0129 0.0208,0.01207 0.0224,0.01125 0.0232,0.01029 0.0248,0.009 0.0192,0.0067 0.0264,0.008 0.0272,0.0067 0.028,0.0052 0.0296,0.0037 0.0303,0.003 0.0312,0.0022 0.0128,3.08e-4 0.032,-1.5e-4 0.0327,-0.0022 0.0327,-0.003 0.0336,-0.0052 0.0335,-0.0052 0.0343,-0.0067 0.008,-5.62e-4 0.0343,-0.009 0.0343,-0.01006 0.0343,-0.01132 0.0335,-0.0126 0.0336,-0.01396 0.0311,-0.01426 4e-4,-1.95e-4 0.0319,-0.0162 0.0311,-0.01725 0.0303,-0.01809 0.0287,-0.01906 0.028,-0.02003 0.0272,-0.02101 0.0152,-0.01222 0.0256,-0.02221 0.024,-0.02281 0.0224,-0.02334 0.0208,-0.02387 0.02,-0.02402 0.0176,-0.02431 0.0168,-0.02432 0.0152,-0.02454 0.0136,-0.02454 0.0121,-0.02454 0.0103,-0.02454 0.009,-0.02447", + "fill": { + "paint": "transparent" + }, + "id": "path511", + "name": "path511", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 85.581159,80.081645 0.0103,0.01824 0.0112,0.01793 0.0128,0.01755 0.0145,0.01695 0.0161,0.01628 0.0168,0.01553 0.0168,0.01358 0.0184,0.01373 0.02,0.0129 0.0208,0.012 0.0224,0.01117 0.0232,0.01035 0.0247,0.009 0.0192,0.0067 0.0264,0.008 0.0272,0.0067 0.0287,0.0052 0.0296,0.0037 0.0303,0.003 0.0312,0.0022 0.0128,3.31e-4 0.0319,-1.58e-4 0.0328,-0.0022 0.0335,-0.003 0.0336,-0.0052 0.0335,-0.0052 0.0342,-0.0067 0.008,-5.71e-4 0.0342,-0.009 0.0342,-0.01006 0.0343,-0.01132 0.0335,-0.0126 0.0335,-0.01396 0.0311,-0.01418 3.2e-4,-1.57e-4 0.0319,-0.0162 0.0311,-0.01725 0.0303,-0.01816 0.0287,-0.01906 0.028,-0.02004 0.0272,-0.02101 0.0152,-0.01222 0.0256,-0.02221 0.0239,-0.02281 0.0224,-0.02334 0.0208,-0.02372 0.0192,-0.02402 0.0176,-0.02431 0.016,-0.02432 0.0152,-0.02454 0.0137,-0.02454 0.012,-0.02454 0.0103,-0.02447 0.009,-0.02447", + "fill": { + "paint": "transparent" + }, + "id": "path512", + "name": "path512", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 89.268799,80.081645 0.0103,0.01824 0.0121,0.01793 0.0127,0.01755 0.0144,0.01695 0.016,0.01628 0.0168,0.01553 0.0168,0.01358 0.0184,0.01373 0.02,0.0129 0.0208,0.012 0.0224,0.01117 0.0232,0.01035 0.0247,0.009 0.02,0.0067 0.0264,0.008 0.0272,0.0067 0.0279,0.0052 0.0296,0.0037 0.0303,0.003 0.0311,0.0022 0.0128,3.31e-4 0.0319,-1.58e-4 0.0327,-0.0022 0.0327,-0.003 0.0335,-0.0052 0.0336,-0.0052 0.0343,-0.0067 0.008,-5.71e-4 0.0343,-0.009 0.0343,-0.01006 0.0343,-0.01132 0.0336,-0.0126 0.0335,-0.01396 0.0311,-0.01418 3.1e-4,-1.57e-4 0.0319,-0.0162 0.0311,-0.01725 0.0304,-0.01816 0.0287,-0.01906 0.028,-0.02004 0.0272,-0.02101 0.0144,-0.01222 0.0256,-0.02221 0.024,-0.02281 0.0224,-0.02334 0.0208,-0.02372 0.0192,-0.02402 0.0184,-0.02431 0.0168,-0.02432 0.0152,-0.02454 0.0136,-0.02454 0.0121,-0.02454 0.0103,-0.02447 0.009,-0.02447", + "fill": { + "paint": "transparent" + }, + "id": "path513", + "name": "path513", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 87.909509,78.595862 0.0105,0.01824 0.0112,0.01794 0.0128,0.01755 0.0144,0.01695 0.016,0.01628 0.0168,0.01553 0.0168,0.01358 0.0184,0.01373 0.02,0.01291 0.0208,0.01207 0.0224,0.01125 0.0232,0.01028 0.0248,0.009 0.0192,0.0067 0.0263,0.008 0.0272,0.0067 0.0287,0.0052 0.0295,0.0037 0.0303,0.003 0.0311,0.0022 0.0128,3.01e-4 0.0319,-1.35e-4 0.0327,-0.0022 0.0328,-0.003 0.0335,-0.0052 0.0335,-0.0052 0.0342,-0.0067 0.008,-5.71e-4 0.0343,-0.009 0.0342,-0.01006 0.0342,-0.01132 0.0335,-0.01261 0.0336,-0.01396 0.0311,-0.01418 4e-4,-1.79e-4 0.0319,-0.0162 0.0312,-0.0171 0.0303,-0.01816 0.0287,-0.01906 0.0279,-0.02003 0.0272,-0.02101 0.0152,-0.01222 0.0256,-0.02221 0.024,-0.02281 0.0224,-0.02334 0.0208,-0.02386 0.0192,-0.02402 0.0176,-0.02424 0.0168,-0.02431 0.0152,-0.02454 0.0136,-0.02454 0.0121,-0.02454 0.0103,-0.02447 0.009,-0.02446", + "fill": { + "paint": "transparent" + }, + "id": "path514", + "name": "path514", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 86.550299,77.110064 0.0105,0.01824 0.0112,0.01794 0.0128,0.01755 0.0145,0.01703 0.016,0.01628 0.0168,0.01553 0.0168,0.01358 0.0184,0.01358 0.02,0.0129 0.0208,0.01207 0.0224,0.01125 0.0232,0.01029 0.0247,0.009 0.0192,0.0067 0.0263,0.008 0.0272,0.0067 0.0287,0.0052 0.0296,0.0037 0.0303,0.003 0.0312,0.0022 0.0128,3.08e-4 0.0318,-1.5e-4 0.0327,-0.0022 0.0327,-0.003 0.0335,-0.0052 0.0336,-0.0052 0.0342,-0.0067 0.008,-5.62e-4 0.0343,-0.009 0.0342,-0.01006 0.0342,-0.01132 0.0335,-0.0126 0.0335,-0.01396 0.0312,-0.01426 3.2e-4,-1.95e-4 0.0319,-0.0162 0.0311,-0.01725 0.0304,-0.01809 0.0287,-0.01906 0.0279,-0.02003 0.0272,-0.02101 0.0152,-0.01222 0.0256,-0.02221 0.024,-0.02281 0.0224,-0.02334 0.0208,-0.02387 0.0192,-0.02402 0.0176,-0.02431 0.0161,-0.02432 0.0152,-0.02454 0.0137,-0.02454 0.012,-0.02454 0.0105,-0.02454 0.009,-0.02447", + "fill": { + "paint": "transparent" + }, + "id": "path515", + "name": "path515", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 86.893629,77.3212 0.0152,-0.02454 0.0168,-0.02431 0.0184,-0.02417 0.02,-0.02386 0.0216,-0.02342 0.0232,-0.02312 0.024,-0.02251 0.0112,-0.01001 0.0263,-0.02176 0.0272,-0.02086 0.0287,-0.01996 0.0296,-0.01906 0.0303,-0.01816 0.032,-0.0171 0.0327,-0.01605 0.008,-0.003 0.008,-0.003 0.0336,-0.01433 0.0335,-0.01313 0.0335,-0.0117 0.0342,-0.01042 0.0342,-0.009 0.0343,-0.008 0.0343,-0.006 0.0152,-0.0022 0.0335,-0.0052 0.0335,-0.003 0.0327,-0.0022 0.0318,-2.77e-4 0.0312,5.71e-4 0.0303,0.0022 0.0296,0.0037", + "fill": { + "paint": "transparent" + }, + "id": "path516", + "name": "path516", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 87.785989,76.82647 v -0.009 l 0.008,-0.02402 0.008,-0.02386 V 76.74602 76.7229 l 5e-4,-0.02266 -5e-4,-0.02206 -5e-4,-0.0114 v -0.02191 l -0.008,-0.02153 -0.008,-0.02116 -0.008,-0.02056 -0.008,-0.01974 -0.009,-0.01891", + "fill": { + "paint": "transparent" + }, + "id": "path517", + "name": "path517", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 88.252819,78.806977 0.0152,-0.02454 0.0168,-0.02431 0.0184,-0.02417 0.02,-0.02386 0.0217,-0.02342 0.0232,-0.02312 0.024,-0.02266 0.0112,-0.01005 0.0263,-0.02176 0.0272,-0.02093 0.0279,-0.01996 0.0294,-0.01906 0.0303,-0.01816 0.0311,-0.01703 0.0327,-0.01605 0.008,-0.003 0.008,-0.003 0.0335,-0.01433 0.0335,-0.01313 0.0336,-0.01177 0.0342,-0.01042 0.0343,-0.009 0.0343,-0.008 0.0343,-0.006 0.0152,-0.0022 0.0336,-0.0052 0.0335,-0.003 0.0327,-0.0022 0.0319,-2.55e-4 0.0311,5.69e-4 0.0303,0.0022 0.0296,0.0037", + "fill": { + "paint": "transparent" + }, + "id": "path518", + "name": "path518", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 89.145279,78.312238 v -0.009 l 0.008,-0.02402 0.008,-0.02387 v -0.02342 -0.02312 -0.02266 l -5e-4,-0.02206 v -0.01132 -0.02191 -0.02161 l -0.008,-0.02116 -0.008,-0.02041 -0.008,-0.01973 -0.009,-0.01891", + "fill": { + "paint": "transparent" + }, + "id": "path519", + "name": "path519", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 89.612109,80.292776 0.0152,-0.02454 0.0168,-0.02431 0.0184,-0.02417 0.02,-0.02387 0.0216,-0.02342 0.0232,-0.02312 0.024,-0.02251 0.0112,-0.01006 0.0264,-0.02176 0.0272,-0.02086 0.0288,-0.01996 0.0295,-0.01906 0.0304,-0.01816 0.0312,-0.0171 0.0327,-0.01598 0.008,-0.003 0.008,-0.003 0.0335,-0.01455 0.0336,-0.01313 0.0336,-0.0117 0.0343,-0.01042 0.0343,-0.009 0.0343,-0.008 0.0343,-0.006 0.0152,-0.0022 0.0336,-0.0052 0.0336,-0.003 0.0328,-0.0022 0.0319,-2.55e-4 0.0312,5.77e-4 0.0311,0.0022 0.0295,0.0037", + "fill": { + "paint": "transparent" + }, + "id": "path520", + "name": "path520", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 90.504479,79.798023 v -0.009 l 0.008,-0.02402 0.008,-0.02387 v -0.02357 -0.02312 l 5e-4,-0.02266 -5e-4,-0.02221 -5e-4,-0.01132 v -0.02191 l -0.008,-0.02161 -0.008,-0.02116 -0.008,-0.02056 -0.008,-0.01973 -0.009,-0.01891", + "fill": { + "paint": "transparent" + }, + "id": "path521", + "name": "path521", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 85.924479,80.292776 0.0152,-0.02454 0.0168,-0.02431 0.0184,-0.02417 0.02,-0.02387 0.0216,-0.02342 0.0232,-0.02312 0.024,-0.02251 0.0113,-0.01006 0.0263,-0.02176 0.0272,-0.02086 0.0287,-0.01996 0.0296,-0.01906 0.0303,-0.01816 0.0319,-0.0171 0.0319,-0.01598 0.008,-0.003 0.008,-0.003 0.0335,-0.01455 0.0336,-0.01313 0.0335,-0.0117 0.0342,-0.01042 0.0342,-0.009 0.0342,-0.008 0.0342,-0.006 0.0152,-0.0022 0.0335,-0.0052 0.0335,-0.003 0.0327,-0.0022 0.0319,-2.55e-4 0.0312,5.77e-4 0.0303,0.0022 0.0295,0.0037", + "fill": { + "paint": "transparent" + }, + "id": "path522", + "name": "path522", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 86.816829,79.798023 v -0.009 l 0.008,-0.02402 0.008,-0.02387 v -0.02357 -0.02312 l 5e-4,-0.02266 -4.8e-4,-0.02221 v -0.01132 -0.02191 -0.02161 l -0.008,-0.02116 -0.008,-0.02056 -0.008,-0.01973 -0.009,-0.01891", + "fill": { + "paint": "transparent" + }, + "id": "path523", + "name": "path523", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 90.581099,77.3212 0.0152,-0.02454 0.0168,-0.02431 0.0184,-0.02417 0.02,-0.02386 0.0216,-0.02342 0.0232,-0.02312 0.024,-0.02251 0.0112,-0.01001 0.0264,-0.02176 0.0272,-0.02086 0.0288,-0.01996 0.0295,-0.01906 0.0303,-0.01816 0.0312,-0.0171 0.0327,-0.01605 0.008,-0.003 0.008,-0.003 0.0335,-0.01433 0.0336,-0.01313 0.0336,-0.0117 0.0343,-0.01042 0.0343,-0.009 0.0343,-0.008 0.0343,-0.006 0.0152,-0.0022 0.0335,-0.0052 0.0336,-0.003 0.0327,-0.0022 0.0319,-2.77e-4 0.0312,5.71e-4 0.0303,0.0022 0.0296,0.0037", + "fill": { + "paint": "transparent" + }, + "id": "path524", + "name": "path524", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 91.473629,76.82647 v -0.009 l 0.008,-0.02402 0.008,-0.02386 V 76.74602 76.7229 l 5e-4,-0.02266 -5e-4,-0.02206 v -0.0114 -0.02191 l -0.008,-0.02153 -0.008,-0.02116 -0.008,-0.02056 -0.008,-0.01974 -0.009,-0.01891", + "fill": { + "paint": "transparent" + }, + "id": "path525", + "name": "path525", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 90.488579,79.514406 -0.0103,-0.01824 -0.012,-0.01794 -0.0128,-0.01755 -0.0144,-0.01703 -0.016,-0.01635 -0.0168,-0.01553 -0.0168,-0.01366 -0.0184,-0.01373 -0.02,-0.0129 -0.0208,-0.012 -0.0224,-0.01117 -0.0232,-0.0102 -0.0247,-0.009 -0.0192,-0.0067 -0.0263,-0.008 -0.0272,-0.0067 -0.0287,-0.0052 -0.0296,-0.0037 -0.0303,-0.003 -0.0311,-0.0022 -0.0128,-3.23e-4 -0.032,1.65e-4 -0.0328,0.0022 -0.0327,0.003 -0.0336,0.0052 -0.0335,0.0052 -0.0343,0.0067 -0.008,5.7e-4 -0.0343,0.009 -0.0343,0.01005 -0.0343,0.01132 -0.0336,0.0126 -0.0335,0.01396 -0.0311,0.01418 -2.5e-4,1.64e-4 -0.032,0.0162 -0.0312,0.01725 -0.0303,0.01809 -0.0287,0.01906 -0.0279,0.02003 -0.0272,0.02101 -0.0152,0.01222 -0.0256,0.02221 -0.024,0.02281 -0.0224,0.02334 -0.0208,0.02372 -0.0192,0.02402 -0.0176,0.02424 -0.016,0.02431 -0.0152,0.02454 -0.0136,0.02454 -0.0121,0.02454 -0.0103,0.02447 -0.009,0.02447", + "fill": { + "paint": "transparent" + }, + "id": "path526", + "name": "path526", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 87.026169,79.597921 0.008,-0.02221 0.009,-0.03181 0.008,-0.03151 0.008,-0.03113 v -0.03076 -0.02484 l 3.1e-4,-0.03016 v -0.02957 -0.02903 l -0.008,-0.02835 -0.008,-0.02431 -0.008,-0.02761 -0.009,-0.02701 -0.0104,-0.02626 -0.012,-0.02551 -0.0137,-0.02484 -0.0152,-0.02424 -0.0168,-0.02364 -0.0176,-0.02281 -0.0168,-0.01914 -0.0208,-0.02101 -0.0217,-0.02026 -0.0232,-0.01951 -0.0248,-0.01861 -0.0216,-0.01455 -0.0272,-0.01673 -0.0287,-0.01568 -0.0303,-0.01471 -0.0311,-0.01366 -0.0224,-0.009 -0.0335,-0.01162 -0.0342,-0.01044 -0.036,-0.009 -0.0367,-0.008 -0.0208,-0.0037 -0.0391,-0.006 -0.04,-0.0052 -0.0407,-0.003 -0.0415,-0.0022 -0.0176,-1.34e-4 -0.0431,5.54e-4 -0.0431,0.0022 -0.0439,0.0037 -0.0448,0.0052 -0.0448,0.0067 -0.0448,0.009 -0.0455,0.01042 -0.0455,0.012 -0.0232,0.0067 -0.0455,0.01455 -0.0448,0.0159 -0.0439,0.0174 -0.0439,0.01891 -0.0431,0.02033 -0.0424,0.02183 -0.0121,0.0067 -0.0415,0.02356 -0.0407,0.02484 -0.02,0.01298 -0.0383,0.02626 -0.0367,0.02716 -0.0352,0.02791 -0.0335,0.02873 -0.0319,0.02956 -0.0303,0.03016 -0.0287,0.03083 -0.0272,0.03151 -0.024,0.02993 -0.024,0.03226 -0.0224,0.03241 -0.0208,0.03256 -0.0184,0.03263 -0.0168,0.03263 -0.0152,0.03248 -0.0128,0.03241 -0.0112,0.03226", + "fill": { + "paint": "transparent" + }, + "id": "path527", + "name": "path527", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 88.836309,79.597921 -0.008,0.02221 -0.008,0.03188 -0.008,0.03151 -0.008,0.03113 v 0.03076 0.02484 l -3.2e-4,0.03016 v 0.02956 0.02903 l 0.008,0.02835 0.008,0.02431 0.008,0.02761 0.009,0.02701 0.0103,0.02634 0.012,0.02544 0.0136,0.02484 0.0152,0.02424 0.0168,0.02364 0.0184,0.02273 0.0168,0.01914 0.02,0.02101 0.0216,0.02026 0.0232,0.01951 0.0247,0.01861 0.0216,0.01455 0.0272,0.0168 0.0287,0.01568 0.0295,0.01471 0.0312,0.01373 0.0232,0.009 0.0335,0.01162 0.0343,0.01042 0.0359,0.009 0.0367,0.008 0.0208,0.0037 0.0391,0.006 0.04,0.0052 0.0407,0.003 0.0415,0.0022 0.0176,1.34e-4 0.0431,-5.55e-4 0.0431,-0.0022 0.0439,-0.0037 0.0439,-0.0052 0.0448,-0.0067 0.0448,-0.009 0.0455,-0.01043 0.0455,-0.012 0.0224,-0.0067 0.0455,-0.01441 0.0448,-0.0159 0.0439,-0.0174 0.0439,-0.01891 0.0431,-0.02033 0.0424,-0.02183 0.012,-0.0067 0.0415,-0.02356 0.0407,-0.02484 0.02,-0.01306 0.0383,-0.02626 0.0367,-0.02701 0.0352,-0.0279 0.0335,-0.02874 0.032,-0.02956 0.0303,-0.03016 0.0287,-0.03083 0.0272,-0.03151 0.024,-0.02993 0.024,-0.03226 0.0224,-0.03248 0.0208,-0.03256 0.0184,-0.03263 0.0168,-0.03256 0.0152,-0.03248 0.0128,-0.03233 0.0112,-0.03226", + "fill": { + "paint": "transparent" + }, + "id": "path528", + "name": "path528", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 90.713819,79.597921 0.008,-0.02221 0.009,-0.03181 0.008,-0.03151 0.008,-0.03113 v -0.03076 -0.02484 l 1.6e-4,-0.03016 v -0.02957 -0.02903 l -0.008,-0.02835 -0.008,-0.02431 -0.008,-0.02761 -0.009,-0.02701 -0.0103,-0.02626 -0.012,-0.02551 -0.0136,-0.02484 -0.0152,-0.02424 -0.0168,-0.02364 -0.0176,-0.02281 -0.0168,-0.01914 -0.02,-0.02101 -0.0216,-0.02026 -0.0232,-0.01951 -0.0247,-0.01861 -0.0216,-0.01455 -0.0272,-0.01673 -0.0288,-0.01568 -0.0295,-0.01471 -0.0311,-0.01366 -0.0224,-0.009 -0.0336,-0.01162 -0.0343,-0.01044 -0.036,-0.009 -0.0367,-0.008 -0.0216,-0.0037 -0.0384,-0.006 -0.04,-0.0052 -0.0407,-0.003 -0.0415,-0.0022 -0.0176,-1.34e-4 -0.0431,5.54e-4 -0.0431,0.0022 -0.0439,0.0037 -0.0448,0.0052 -0.0448,0.0067 -0.0448,0.009 -0.0455,0.01042 -0.0455,0.012 -0.0232,0.0067 -0.0455,0.01455 -0.0448,0.0159 -0.0448,0.0174 -0.0439,0.01891 -0.0431,0.02033 -0.0424,0.02183 -0.012,0.0067 -0.0415,0.02356 -0.0407,0.02484 -0.02,0.01298 -0.0383,0.02626 -0.0367,0.02716 -0.0351,0.02791 -0.0336,0.02873 -0.0319,0.02956 -0.0303,0.03016 -0.0287,0.03083 -0.0272,0.03151 -0.024,0.02993 -0.024,0.03226 -0.0224,0.03241 -0.0208,0.03256 -0.0184,0.03263 -0.0168,0.03263 -0.0152,0.03248 -0.0128,0.03241 -0.0112,0.03226", + "fill": { + "paint": "transparent" + }, + "id": "path529", + "name": "path529", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 89.129379,78.028631 -0.0103,-0.01824 -0.0112,-0.01793 -0.0128,-0.0174 -0.0144,-0.01703 -0.016,-0.01628 -0.0168,-0.01553 -0.0168,-0.01358 -0.0184,-0.01366 -0.02,-0.01291 -0.0208,-0.012 -0.0224,-0.01117 -0.0232,-0.01042 -0.0247,-0.009 -0.02,-0.0067 -0.0264,-0.008 -0.0272,-0.0067 -0.0287,-0.0052 -0.0296,-0.0037 -0.0304,-0.003 -0.0311,-0.0022 -0.0128,-3.31e-4 -0.0319,1.72e-4 -0.0327,0.0022 -0.0327,0.003 -0.0335,0.0052 -0.0335,0.0052 -0.0342,0.0067 -0.008,5.71e-4 -0.0343,0.009 -0.0342,0.01006 -0.0342,0.01132 -0.0336,0.01261 -0.0335,0.01396 -0.0311,0.01425 -4e-4,1.59e-4 -0.0319,0.0162 -0.0311,0.01725 -0.0304,0.01815 -0.0287,0.01906 -0.0279,0.02003 -0.0272,0.02101 -0.0144,0.01222 -0.0256,0.02221 -0.024,0.02281 -0.0224,0.02334 -0.0208,0.02372 -0.0192,0.02402 -0.0184,0.02424 -0.0168,0.02431 -0.0152,0.02454 -0.0137,0.02454 -0.012,0.02454 -0.0103,0.02446 -0.009,0.02447", + "fill": { + "paint": "transparent" + }, + "id": "path530", + "name": "path530", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 87.770259,76.54287 -0.0104,-0.01824 -0.012,-0.01793 -0.0128,-0.01748 -0.0145,-0.01695 -0.0161,-0.01635 -0.0168,-0.01553 -0.0168,-0.01366 -0.0184,-0.01358 -0.02,-0.0129 -0.0208,-0.01207 -0.0224,-0.01117 -0.0232,-0.01035 -0.0247,-0.009 -0.02,-0.0067 -0.0264,-0.008 -0.0272,-0.0067 -0.0279,-0.0052 -0.0296,-0.0037 -0.0303,-0.003 -0.0312,-0.0022 -0.0128,-3e-4 -0.0319,1.35e-4 -0.0327,0.0022 -0.0327,0.003 -0.0335,0.0052 -0.0335,0.0052 -0.0342,0.0067 -0.008,5.7e-4 -0.0342,0.009 -0.0342,0.01006 -0.0342,0.01132 -0.0335,0.01261 -0.0336,0.01396 -0.0312,0.01425 -4e-4,1.95e-4 -0.0319,0.01613 -0.0311,0.01725 -0.0304,0.01816 -0.0287,0.01906 -0.0279,0.02003 -0.0272,0.02101 -0.0144,0.01222 -0.0256,0.02221 -0.024,0.02281 -0.0224,0.02342 -0.0208,0.02372 -0.0193,0.02402 -0.0184,0.02424 -0.0168,0.02431 -0.0152,0.02454 -0.0136,0.02454 -0.0121,0.02454 -0.0103,0.02447 -0.009,0.02447", + "fill": { + "paint": "transparent" + }, + "id": "path531", + "name": "path531", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 86.534409,76.82647 v 0.009 l -0.008,0.02402 -0.008,0.02387 v 0.02357 0.02312 l -5e-4,0.02266 5e-4,0.02206 v 0.01132 0.02191 l 0.008,0.02153 0.008,0.02116 0.008,0.02041 0.008,0.01973 0.009,0.01891", + "fill": { + "paint": "transparent" + }, + "id": "path532", + "name": "path532", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 91.457729,76.54287 -0.0103,-0.01824 -0.0113,-0.01793 -0.0127,-0.01748 -0.0144,-0.01695 -0.016,-0.01635 -0.0168,-0.01553 -0.0168,-0.01366 -0.0184,-0.01358 -0.02,-0.0129 -0.0208,-0.01207 -0.0224,-0.01117 -0.0232,-0.01035 -0.0247,-0.009 -0.0192,-0.0067 -0.0264,-0.008 -0.0272,-0.0067 -0.028,-0.0052 -0.0296,-0.0037 -0.0303,-0.003 -0.0311,-0.0022 -0.0128,-3e-4 -0.032,1.35e-4 -0.0328,0.0022 -0.0327,0.003 -0.0335,0.0052 -0.0336,0.0052 -0.0343,0.0067 -0.008,5.7e-4 -0.0343,0.009 -0.0343,0.01006 -0.0343,0.01132 -0.0335,0.01261 -0.0336,0.01396 -0.0311,0.01425 -4e-4,1.95e-4 -0.0319,0.01613 -0.0312,0.01725 -0.0303,0.01816 -0.0287,0.01906 -0.028,0.02003 -0.0272,0.02101 -0.0152,0.01222 -0.0256,0.02221 -0.024,0.02281 -0.0224,0.02342 -0.0208,0.02372 -0.0192,0.02402 -0.0176,0.02424 -0.016,0.02431 -0.0152,0.02454 -0.0136,0.02454 -0.0121,0.02454 -0.0103,0.02447 -0.009,0.02447", + "fill": { + "paint": "transparent" + }, + "id": "path533", + "name": "path533", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 87.893699,78.312238 v 0.009 l -0.008,0.02402 -0.008,0.02387 v 0.02357 0.02312 l -5e-4,0.02266 4.8e-4,0.02221 v 0.01132 0.02191 0.02153 l 0.008,0.02116 0.008,0.02056 0.008,0.01974 0.009,0.01891", + "fill": { + "paint": "transparent" + }, + "id": "path534", + "name": "path534", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 89.805459,76.626361 -0.008,0.02221 -0.009,0.03181 -0.008,0.03151 -0.008,0.03113 v 0.03061 0.02484 l -3.2e-4,0.03016 v 0.02956 0.02904 l 0.008,0.02835 0.008,0.02431 0.008,0.02761 0.009,0.027 0.0103,0.02626 0.012,0.02551 0.0136,0.02484 0.0152,0.02424 0.0168,0.02364 0.0176,0.02273 0.0168,0.01913 0.02,0.02101 0.0216,0.02026 0.0232,0.01951 0.0247,0.01861 0.0216,0.01455 0.0272,0.0168 0.0287,0.01575 0.0296,0.01471 0.0311,0.01358 0.0232,0.009 0.0335,0.01162 0.0343,0.01042 0.0359,0.009 0.0367,0.008 0.0208,0.0037 0.0391,0.006 0.04,0.0052 0.0407,0.003 0.0415,0.0022 0.0176,1.5e-4 0.0431,-5.7e-4 0.0431,-0.0022 0.0439,-0.0037 0.0448,-0.0052 0.0448,-0.0067 0.0448,-0.009 0.0455,-0.01042 0.0455,-0.012 0.0232,-0.0067 0.0455,-0.01448 0.0448,-0.0159 0.0448,-0.0174 0.0439,-0.01891 0.0431,-0.02034 0.0424,-0.02183 0.012,-0.0067 0.0415,-0.02357 0.0407,-0.02484 0.02,-0.01298 0.0384,-0.02626 0.0367,-0.02716 0.0351,-0.0279 0.0336,-0.02873 0.0319,-0.02956 0.0303,-0.03016 0.0287,-0.03083 0.0272,-0.03151 0.024,-0.02971 0.024,-0.03226 0.0224,-0.03241 0.0208,-0.03256 0.0184,-0.03263 0.0168,-0.03263 0.0152,-0.03248 0.0128,-0.03241 0.0112,-0.03226", + "fill": { + "paint": "transparent" + }, + "id": "path535", + "name": "path535", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 89.252889,79.798023 v 0.009 l -0.008,0.02402 -0.008,0.02387 v 0.02357 0.02312 l -5e-4,0.02266 5e-4,0.02221 5e-4,0.01132 v 0.02191 l 0.008,0.02161 0.008,0.02116 0.008,0.02056 0.008,0.01973 0.009,0.01891", + "fill": { + "paint": "transparent" + }, + "id": "path536", + "name": "path536", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 91.682969,76.626361 0.008,-0.02213 0.008,-0.03188 0.008,-0.03151 0.008,-0.03113 v -0.03076 -0.02484 l 1.6e-4,-0.03016 v -0.02956 -0.02896 l -0.008,-0.02837 -0.008,-0.02431 -0.008,-0.0276 -0.009,-0.02701 -0.0103,-0.02634 -0.012,-0.02544 -0.0136,-0.02484 -0.0152,-0.02424 -0.0168,-0.02364 -0.0184,-0.02273 -0.0168,-0.01914 -0.02,-0.02101 -0.0216,-0.02026 -0.0232,-0.01951 -0.0247,-0.01861 -0.0216,-0.01456 -0.0272,-0.0168 -0.0287,-0.01568 -0.0296,-0.01471 -0.0311,-0.01373 -0.0232,-0.009 -0.0336,-0.01162 -0.0343,-0.01043 -0.0359,-0.009 -0.0367,-0.008 -0.0216,-0.0037 -0.0384,-0.006 -0.04,-0.0052 -0.0407,-0.003 -0.0415,-0.0022 -0.0176,-1.43e-4 -0.0431,5.63e-4 -0.0431,0.0022 -0.0439,0.0037 -0.0448,0.0052 -0.0448,0.0067 -0.0448,0.009 -0.0455,0.01042 -0.0455,0.012 -0.0232,0.0067 -0.0455,0.01441 -0.0448,0.0159 -0.0448,0.0174 -0.0439,0.01891 -0.0431,0.02033 -0.0424,0.02183 -0.012,0.0067 -0.0415,0.02357 -0.0407,0.02484 -0.02,0.01298 -0.0383,0.02625 -0.0367,0.02716 -0.0351,0.02791 -0.0335,0.02874 -0.0319,0.02956 -0.0303,0.03016 -0.0287,0.03083 -0.0272,0.03158 -0.024,0.02993 -0.024,0.03226 -0.0224,0.03248 -0.0208,0.03256 -0.0184,0.03263 -0.0168,0.03256 -0.0152,0.03248 -0.0127,0.03241 -0.0113,0.03226", + "fill": { + "paint": "transparent" + }, + "id": "path537", + "name": "path537", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 87.477109,78.112152 -0.008,0.02221 -0.008,0.03181 -0.008,0.03151 -0.008,0.03113 v 0.03076 0.02484 l -3.2e-4,0.03016 v 0.02956 0.02904 l 0.008,0.02835 0.008,0.02431 0.008,0.02761 0.009,0.027 0.0103,0.02626 0.0121,0.02544 0.0137,0.02484 0.0152,0.02424 0.0168,0.02364 0.0176,0.02274 0.0168,0.01914 0.02,0.02101 0.0216,0.02033 0.0232,0.01951 0.0247,0.01861 0.0216,0.01456 0.0272,0.01673 0.0287,0.01583 0.0295,0.01471 0.0311,0.01373 0.0224,0.009 0.0335,0.01162 0.0343,0.01042 0.036,0.009 0.0367,0.008 0.0208,0.0037 0.0391,0.006 0.04,0.0052 0.0407,0.003 0.0415,0.0022 0.0176,1.43e-4 0.0431,-5.77e-4 0.0431,-0.0022 0.0439,-0.0037 0.0448,-0.0052 0.0448,-0.0067 0.0448,-0.009 0.0455,-0.01042 0.0455,-0.012 0.0232,-0.0067 0.0455,-0.01441 0.0448,-0.0159 0.0439,-0.01755 0.0439,-0.01891 0.0431,-0.02033 0.0424,-0.02183 0.012,-0.0067 0.0415,-0.02356 0.0407,-0.02484 0.02,-0.01298 0.0383,-0.02626 0.0367,-0.02716 0.0352,-0.02792 0.0335,-0.02874 0.0319,-0.02956 0.0303,-0.03016 0.0287,-0.03083 0.027,-0.03151 0.024,-0.02993 0.024,-0.03226 0.0224,-0.03241 0.0208,-0.03256 0.0184,-0.03263 0.0168,-0.03256 0.0152,-0.03256 0.0127,-0.03241 0.0113,-0.03226", + "fill": { + "paint": "transparent" + }, + "id": "path538", + "name": "path538", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 86.801019,79.514406 -0.0103,-0.01824 -0.0112,-0.01794 -0.0128,-0.01755 -0.0145,-0.01703 -0.0152,-0.01635 -0.0168,-0.01553 -0.0168,-0.01366 -0.0185,-0.01373 -0.02,-0.0129 -0.0208,-0.012 -0.0224,-0.01117 -0.0232,-0.0102 -0.0247,-0.009 -0.0193,-0.0067 -0.0264,-0.008 -0.0271,-0.0067 -0.028,-0.0052 -0.0296,-0.0037 -0.0303,-0.003 -0.0311,-0.0022 -0.0128,-3.23e-4 -0.0319,1.65e-4 -0.0328,0.0022 -0.0328,0.003 -0.0335,0.0052 -0.0335,0.0052 -0.0342,0.0067 -0.008,5.7e-4 -0.0342,0.009 -0.0342,0.01005 -0.0342,0.01132 -0.0335,0.0126 -0.0335,0.01396 -0.0311,0.01418 -4e-4,1.64e-4 -0.0318,0.0162 -0.0312,0.01725 -0.0303,0.01809 -0.0287,0.01906 -0.028,0.02003 -0.0272,0.02101 -0.0144,0.01222 -0.0256,0.02221 -0.024,0.02281 -0.0224,0.02334 -0.0208,0.02372 -0.0192,0.02402 -0.0176,0.02424 -0.0168,0.02431 -0.0152,0.02454 -0.0137,0.02454 -0.0121,0.02454 -0.0103,0.02447 -0.009,0.02447", + "fill": { + "paint": "transparent" + }, + "id": "path539", + "name": "path539", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 89.354519,78.112152 0.008,-0.02221 0.009,-0.03188 0.008,-0.03151 0.008,-0.03113 v -0.03076 -0.02484 l 3.1e-4,-0.03016 v -0.02956 -0.02904 l -0.008,-0.02837 -0.008,-0.02431 -0.008,-0.02761 -0.009,-0.02701 -0.0103,-0.02626 -0.0121,-0.02544 -0.0136,-0.02484 -0.0152,-0.02424 -0.0168,-0.02364 -0.0176,-0.02273 -0.0168,-0.01913 -0.02,-0.02101 -0.0216,-0.02033 -0.0232,-0.01951 -0.0247,-0.01861 -0.0216,-0.01456 -0.0272,-0.0168 -0.0287,-0.01583 -0.0296,-0.01471 -0.0312,-0.01373 -0.0232,-0.009 -0.0336,-0.01162 -0.0343,-0.01042 -0.036,-0.009 -0.0367,-0.008 -0.0208,-0.0037 -0.0383,-0.006 -0.04,-0.0052 -0.0407,-0.003 -0.0415,-0.0022 -0.0176,-1.28e-4 -0.0431,5.56e-4 -0.0431,0.0022 -0.0439,0.0037 -0.0448,0.0052 -0.0448,0.0067 -0.0448,0.009 -0.0455,0.01042 -0.0455,0.012 -0.0232,0.0067 -0.0455,0.01441 -0.0448,0.0159 -0.0448,0.0174 -0.0439,0.01891 -0.0431,0.02033 -0.0424,0.02183 -0.012,0.0067 -0.0415,0.02357 -0.0407,0.02484 -0.02,0.01298 -0.0384,0.02626 -0.0367,0.02716 -0.0352,0.0279 -0.0335,0.02873 -0.0319,0.02956 -0.0303,0.03016 -0.0287,0.03083 -0.0272,0.03151 -0.024,0.02993 -0.024,0.03226 -0.0224,0.03248 -0.02,0.03256 -0.0184,0.03263 -0.0168,0.03256 -0.0152,0.03256 -0.0128,0.03248 -0.0112,0.03226", + "fill": { + "paint": "transparent" + }, + "id": "path540", + "name": "path540", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 86.117829,76.626361 -0.008,0.02221 -0.009,0.03181 -0.008,0.03151 -0.008,0.03113 v 0.03061 0.02484 l -1.6e-4,0.03016 v 0.02956 0.02904 l 0.008,0.02835 0.008,0.02431 0.008,0.02761 0.009,0.027 0.0105,0.02626 0.0121,0.02551 0.0137,0.02484 0.0152,0.02424 0.0168,0.02364 0.0176,0.02273 0.0168,0.01913 0.0208,0.02101 0.0216,0.02026 0.0232,0.01951 0.0248,0.01861 0.0216,0.01455 0.0272,0.0168 0.0287,0.01575 0.0296,0.01471 0.0311,0.01358 0.0224,0.009 0.0336,0.01162 0.0342,0.01042 0.036,0.009 0.0367,0.008 0.0216,0.0037 0.0384,0.006 0.04,0.0052 0.0408,0.003 0.0415,0.0022 0.0176,1.5e-4 0.0431,-5.7e-4 0.0431,-0.0022 0.0439,-0.0037 0.0448,-0.0052 0.0448,-0.0067 0.0448,-0.009 0.0455,-0.01042 0.0455,-0.012 0.0232,-0.0067 0.0455,-0.01448 0.0448,-0.0159 0.0448,-0.0174 0.0439,-0.01891 0.0431,-0.02034 0.0424,-0.02183 0.012,-0.0067 0.0415,-0.02357 0.0407,-0.02484 0.02,-0.01298 0.0384,-0.02626 0.0367,-0.02716 0.0351,-0.0279 0.0335,-0.02873 0.032,-0.02956 0.0303,-0.03016 0.0287,-0.03083 0.028,-0.03151 0.024,-0.02971 0.024,-0.03226 0.0224,-0.03241 0.0208,-0.03256 0.0184,-0.03263 0.0168,-0.03263 0.0152,-0.03248 0.0128,-0.03241 0.0112,-0.03226", + "fill": { + "paint": "transparent" + }, + "id": "path541", + "name": "path541", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 87.995319,76.626361 v -0.008 l 0.009,-0.02956 0.008,-0.02941 0.008,-0.02911 0.008,-0.02875 v -0.02835 -0.02792 l -2.4e-4,-0.02745 -5e-4,-0.01305 v -0.02701 -0.02685 l -0.008,-0.02634 -0.008,-0.02581 -0.008,-0.02521 -0.009,-0.02454 -0.0104,-0.02387 -0.0112,-0.02327 -0.0128,-0.02296 -0.0144,-0.02243 -0.0152,-0.02183 -0.0168,-0.02123 -0.0176,-0.02056 -0.0192,-0.01973 -0.01,-0.009 -0.02,-0.01846 -0.0216,-0.01771 -0.0232,-0.01703 -0.0239,-0.01635 -0.0256,-0.01545 -0.0263,-0.01463 -0.028,-0.01366 -0.0103,-0.0052", + "fill": { + "paint": "transparent" + }, + "id": "path542", + "name": "path542", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 87.667979,75.937052 -0.0294,-0.01162 -0.0312,-0.01065 -0.0319,-0.01002 -0.0334,-0.009 -0.0343,-0.008 -0.0351,-0.006 -0.0359,-0.0052 -0.0367,-0.0037 -0.0384,-0.0022 -0.0383,-0.0022 -0.0391,-3e-5 -0.04,0.0022 -0.0103,5.48e-4 -0.0407,0.003 -0.0407,0.0052 -0.0407,0.006 -0.0415,0.0067 -0.0415,0.009 -0.0359,0.008 -0.0424,0.01117 -0.0424,0.01252 -0.0415,0.01381 -0.0415,0.01523 -0.0407,0.0165 -0.028,0.01222 -0.04,0.01854 -0.0272,0.01343 -0.0391,0.02063 -0.0383,0.02176 -0.0376,0.02273 -0.0367,0.02371 -0.0287,0.02026 -0.0342,0.02514 -0.0327,0.02581 -0.0311,0.02656 -0.0303,0.02723 -0.0287,0.02791 -0.008,0.0052 -0.0272,0.02866 -0.0256,0.02905 -0.0247,0.02941 -0.0232,0.02964 -0.0217,0.02993 -0.02,0.03001 -0.0185,0.03016 -0.0168,0.03016 -0.0152,0.03016 -0.0137,0.03001 -0.012,0.02993 -0.0105,0.02993", + "fill": { + "paint": "transparent" + }, + "id": "path543", + "name": "path543", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 85.148829,79.597921 -0.008,0.02221 -0.009,0.03188 -0.008,0.03151 -0.008,0.03113 v 0.03076 0.02484 l -2.3e-4,0.03016 v 0.02956 0.02903 l 0.008,0.02835 0.008,0.02431 0.008,0.02761 0.009,0.02701 0.0103,0.02634 0.0121,0.02544 0.0137,0.02484 0.0152,0.02424 0.0168,0.02364 0.0176,0.02273 0.0168,0.01914 0.02,0.02101 0.0216,0.02026 0.0232,0.01951 0.0248,0.01861 0.0216,0.01455 0.0272,0.0168 0.0287,0.01568 0.0303,0.01471 0.0311,0.01373 0.0224,0.009 0.0335,0.01162 0.0343,0.01042 0.0359,0.009 0.0367,0.008 0.0216,0.0037 0.0383,0.006 0.04,0.0052 0.0408,0.003 0.0415,0.0022 0.0176,1.34e-4 0.0431,-5.55e-4 0.0431,-0.0022 0.0439,-0.0037 0.0448,-0.0052 0.0448,-0.0067 0.0448,-0.009 0.0455,-0.01043 0.0455,-0.012 0.0232,-0.0067 0.0455,-0.01441 0.0448,-0.0159 0.0448,-0.0174 0.0439,-0.01891 0.0431,-0.02033 0.0424,-0.02183 0.012,-0.0067 0.0415,-0.02356 0.0407,-0.02484 0.02,-0.01306 0.0384,-0.02626 0.0367,-0.02701 0.0352,-0.0279 0.0335,-0.02874 0.0319,-0.02956 0.0303,-0.03016 0.0287,-0.03083 0.0272,-0.03151 0.024,-0.02993 0.024,-0.03226 0.0224,-0.03248 0.02,-0.03256 0.0184,-0.03263 0.0168,-0.03256 0.0152,-0.03248 0.0128,-0.03233 0.0112,-0.03226", + "fill": { + "paint": "transparent" + }, + "id": "path544", + "name": "path544", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 85.427119,75.273971 0.20325,-0.125702 0.20701,-0.121397 0.21046,-0.116947 0.21388,-0.112379 0.21692,-0.107658 0.21979,-0.102841 0.22172,-0.09754 0.22483,-0.09282 0.0112,-0.0052 0.22635,-0.08712 0.22738,-0.08161 0.22843,-0.07611 0.2293,-0.07053 0.22987,-0.0649 0.23026,-0.05928 0.23058,-0.05365 0.23074,-0.04809 0.0583,-0.01132 0.22915,-0.04067 0.22747,-0.03481 0.22595,-0.02911 0.22419,-0.02333 0.22236,-0.01764 0.22043,-0.012 0.21859,-0.0067 0.21637,-5.63e-4 0.11744,0.0022 0.21198,0.008 0.20861,0.01276 0.20525,0.01801 0.20174,0.02312 0.19798,0.02813 0.19407,0.03316 0.19031,0.03796 0.18625,0.04277", + "fill": { + "paint": "transparent" + }, + "id": "path545", + "name": "path545", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 92.545689,73.879542 0.0424,0.01042 0.13495,0.03564 0.13279,0.03796 0.13031,0.04044 0.12784,0.04299 0.12535,0.0454 0.12264,0.04756 0.12017,0.04974 0.1176,0.05199 0.0632,0.02926 0.11369,0.05537 0.11114,0.05762 0.10842,0.05958 0.10578,0.0616 0.10306,0.06347 0.10011,0.06542 0.0975,0.06715 0.0946,0.06903 0.0679,0.05207 0.0901,0.0724 0.0875,0.0742 0.0848,0.07591 0.0819,0.07761 0.0791,0.07912 0.0759,0.08062 0.0735,0.08201 0.0703,0.08331 0.0679,0.08522 0.0527,0.07038 0.0631,0.08852 0.0599,0.09003 0.0575,0.09153 0.0544,0.09274 0.0511,0.09393 0.0487,0.09483 0.0448,0.09574", + "fill": { + "paint": "transparent" + }, + "id": "path546", + "name": "path546", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 95.872429,76.685747 0.02,0.06812 0.0184,0.06879 0.0176,0.06933 0.016,0.06993 0.0144,0.07038 0.0136,0.0709 0.0121,0.0712 0.008,0.03173 0.0103,0.0718 0.009,0.0724 0.008,0.07278 0.008,0.07337 0.008,0.07382 v 0.07428 0.07458 l 2.3e-4,0.02837", + "fill": { + "paint": "transparent" + }, + "id": "path547", + "name": "path547", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 96.030069,77.911023 v 0.07611 l -0.008,0.07651 -0.008,0.07681 -0.008,0.05575 -0.009,0.07741 -0.0103,0.07781 -0.0113,0.07821 -0.0128,0.07851 -0.0144,0.07892 -0.016,0.07921 -0.0176,0.07952 -0.0192,0.07973 -0.02,0.07992 -0.0216,0.08012 -0.0232,0.07902", + "fill": { + "paint": "transparent" + }, + "id": "path548", + "name": "path548", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 95.761369,79.293793 -0.0296,0.08122 -0.0311,0.08132 -0.0327,0.08141 -0.02,0.04809 -0.0351,0.08162 -0.0367,0.08172 -0.0383,0.08181 -0.0391,0.08182 -0.0415,0.0819 -0.0424,0.08191 -0.0439,0.08192 -0.0455,0.08182 -0.0472,0.08181 -0.0487,0.08172 -0.0288,0.04749", + "fill": { + "paint": "transparent" + }, + "id": "path549", + "name": "path549", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 95.095199,80.615429 -0.0544,0.08141 -0.0559,0.08112 -0.0575,0.08092 -0.0256,0.03474 -0.0599,0.08062 -0.0615,0.08042 -0.0631,0.08012 -0.0647,0.07982 -0.0663,0.07952 -0.0671,0.07911 -0.0687,0.07871 -0.0703,0.07841 -0.0719,0.07791 -0.0735,0.07741 -0.0103,0.01117", + "fill": { + "paint": "transparent" + }, + "id": "path550", + "name": "path550", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 94.143619,81.777974 -0.0144,0.01493 -0.0152,0.01493 -0.0152,0.01478 -0.0152,0.01485 -0.0152,0.01486 -0.0152,0.01471 -0.0152,0.01471 -0.0152,0.0147 -0.0152,0.01471 -0.0152,0.01463", + "fill": { + "paint": "transparent" + }, + "id": "path551", + "name": "path551", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 91.425859,83.684316 -0.18393,0.08572 -0.2138,0.09434 -0.21565,0.08942 -0.21739,0.08462 -0.21876,0.07962 -0.22004,0.07458 -0.22091,0.0694 -0.22156,0.0643 -0.21652,0.0577 -0.22147,0.0538 -0.22123,0.04839 -0.22093,0.04314 v 5.71e-4 l -0.22011,0.03774 -0.21907,0.03248 -0.21795,0.02701 -0.21693,0.02183 -0.0535,0.0052 -0.21405,0.01523 -0.21173,0.01005 -0.20925,0.0052 -0.20669,-2.17e-4 -0.20406,-0.0052 -0.2015,-0.0102 -0.19878,-0.01516 -0.19607,-0.01996 -0.10746,-0.01313 -0.19087,-0.0273 -0.18735,-0.03181 -0.18353,-0.03639 -0.17978,-0.04067 -0.17584,-0.0451 -0.17161,-0.04907 -0.16772,-0.05319 -0.1633,-0.05732", + "fill": { + "paint": "transparent" + }, + "id": "path552", + "name": "path552", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 84.727459,84.277349 -0.0224,-0.008 -0.10609,-0.04067 -0.10427,-0.04232 -0.10242,-0.04405 -0.10043,-0.04576 -0.0985,-0.04726 -0.0965,-0.04883 -0.0944,-0.05049 -0.0328,-0.01816 -0.0919,-0.05244 -0.0899,-0.05395 -0.088,-0.05545 -0.0858,-0.05687 -0.0839,-0.0583 -0.0817,-0.0595 -0.0799,-0.06093 -0.0367,-0.02911 -0.0767,-0.06295 -0.0751,-0.06423 -0.0727,-0.0655 -0.0703,-0.0667 -0.0687,-0.06789 -0.0663,-0.06903 -0.064,-0.07 -0.0335,-0.03796 -0.0615,-0.07217 -0.0592,-0.07337 -0.0575,-0.07458 -0.0551,-0.07561 -0.0527,-0.07661 -0.0503,-0.07751 -0.0487,-0.07831", + "fill": { + "paint": "transparent" + }, + "id": "path553", + "name": "path553", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 82.399819,82.438647 -0.0743,-0.133358 -0.0687,-0.136963 -0.0631,-0.140244 -0.0568,-0.143034 -0.0472,-0.133379 -0.0448,-0.146973 -0.0383,-0.148549 -0.0327,-0.151438 -0.0264,-0.154079 -0.02,-0.156502 -0.0137,-0.15855 -0.008,-0.140957 V 80.53304 l 0.008,-0.163773 0.0121,-0.165812 0.0184,-0.167593 0.0256,-0.16918 0.024,-0.129673 0.0376,-0.171207 0.0448,-0.172477 0.052,-0.173608 0.0592,-0.174621 0.0664,-0.17547 0.0439,-0.107749 0.0775,-0.176444 0.085,-0.176618 0.0923,-0.176714 0.0996,-0.176671 0.10698,-0.176497 0.0503,-0.07901 0.1177,-0.175927 0.12479,-0.174726 0.13191,-0.173535 0.13902,-0.172205 0.14629,-0.170847 0.0455,-0.05147 0.15571,-0.16889 0.16227,-0.166525 0.16891,-0.163968 0.17522,-0.161169 0.18144,-0.158205 0.18768,-0.154971 0.1935,-0.151558 0.19928,-0.147889 0.20469,-0.14392 0.20988,-0.139749 0.0583,-0.03766", + "fill": { + "paint": "transparent" + }, + "id": "path554", + "name": "path554", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 82.399819,82.438421 0.0472,0.07821 0.0496,0.07761 0.052,0.07691 0.0544,0.07621 0.0568,0.07542 0.0592,0.07451 0.0616,0.0736 0.0631,0.07262 0.0655,0.07143 0.0679,0.07023 0.0695,0.06888 0.0719,0.06752 0.0735,0.0661 0.0751,0.06452 0.0775,0.06287 0.008,0.006 0.0791,0.061 0.0811,0.0598 0.0833,0.05852 0.0854,0.05717 0.0877,0.0559 0.0898,0.05447 0.0919,0.05297 0.0941,0.05169 0.0962,0.05019 0.0982,0.04869 0.1002,0.04704 0.1021,0.04525 0.10411,0.04367 0.10578,0.04187 0.0759,0.02851", + "fill": { + "paint": "transparent" + }, + "id": "path555", + "name": "path555", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 84.853709,84.322095 0.11335,0.03751 0.11531,0.03579 0.11711,0.03377 0.11914,0.03173 0.12089,0.02986 0.1228,0.02783 0.0112,0.0022 0.1248,0.02566 0.12647,0.02357 0.12816,0.02146 0.12982,0.01921 0.13137,0.0171 0.13286,0.01493 0.13447,0.01267 0.1359,0.01043 0.13734,0.008 0.13863,0.006 0.13998,0.0037 0.14125,0.0022 0.14237,-0.0022 0.1435,-0.0037 0.1443,-0.006 0.14533,-0.008 0.14614,-0.0108 0.0853,-0.008", + "fill": { + "paint": "transparent" + }, + "id": "path556", + "name": "path556", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 87.981099,84.64697 0.17865,-0.01815 0.17929,-0.02176 0.18008,-0.02522 0.18073,-0.02882 0.18144,-0.03248 0.18217,-0.03616 0.0343,-0.008 0.18289,-0.04059 0.18297,-0.04405 0.18271,-0.04779 0.18273,-0.05124 0.18216,-0.05477 0.18185,-0.0583 0.18104,-0.06168 0.18033,-0.0652 0.17937,-0.06857 0.17842,-0.07188 0.17712,-0.07521 0.1757,-0.0784 0.17426,-0.08161 0.1725,-0.08472 0.0376,-0.01884 0.17033,-0.08842 0.16827,-0.09133 0.1661,-0.09413 0.16387,-0.09684", + "fill": { + "paint": "transparent" + }, + "id": "path557", + "name": "path557", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 92.507339,83.086203 0.0987,-0.0634 0.1014,-0.06692 0.10026,-0.06789 0.0991,-0.06887 0.0966,-0.06887 0.0968,-0.07083 0.0954,-0.0718 0.0942,-0.07263 0.0928,-0.07337 0.0915,-0.07427 0.0901,-0.07512 0.0888,-0.07591 0.0872,-0.07661 0.086,-0.07731 0.0845,-0.07801 0.083,-0.0787", + "fill": { + "paint": "transparent" + }, + "id": "path558", + "name": "path558", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 94.164069,81.757207 0.0615,-0.06288 0.0954,-0.100644 0.0927,-0.101168 0.0902,-0.101791 0.0876,-0.102482 0.0853,-0.103149 0.0335,-0.04194 0.0817,-0.104087 0.0791,-0.104665 0.0767,-0.10516 0.0743,-0.105558 0.0711,-0.105895 0.0687,-0.106166 0.0663,-0.106368 0.0639,-0.10651 0.0607,-0.106555 0.0583,-0.106623 0.0559,-0.106572 0.0527,-0.106517 0.0503,-0.106413 0.0479,-0.106241 0.0448,-0.106075 0.0424,-0.10585 0.04,-0.105641", + "fill": { + "paint": "transparent" + }, + "id": "path559", + "name": "path559", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 95.902549,78.820595 5e-4,-0.003 0.0232,-0.09884 0.0208,-0.09854 0.0184,-0.09814 0.016,-0.09764 0.0136,-0.09724 0.0112,-0.09664 0.01,-0.09603 0.008,-0.09534 0.008,-0.09464 v -0.09393 l 4.9e-4,-0.09313 v -0.09233 -0.09143 l -0.008,-0.09063 v -0.03196 l -0.009,-0.09033 -0.0112,-0.08993 -0.0127,-0.08952 -0.0152,-0.08892 -0.0176,-0.08832 -0.0192,-0.08762 -0.0216,-0.08682 -0.0232,-0.08602 -0.0256,-0.08502 -0.0272,-0.08402 -0.0296,-0.08291 -0.0311,-0.08172 -0.0327,-0.08052 -0.0351,-0.07922", + "fill": { + "paint": "transparent" + }, + "id": "path560", + "name": "path560", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 82.136809,79.179306 -0.028,0.08892 -0.0327,0.112144 -0.0303,0.111861 -0.0272,0.111455 -0.024,0.110929 -0.0216,0.110345 -0.0184,0.109693 -0.0152,0.108956 -0.0128,0.108153 -0.01,0.107261 -0.008,0.10636 -0.008,0.105424 v 0.104402 0.103404 l 0.008,0.102354 0.008,0.101251 0.01,0.101146 v 0.01966 l 0.0128,0.100891 0.0152,0.1005 0.0184,0.09994 0.0208,0.09924 0.0232,0.09854 0.0264,0.09754 0.0287,0.09654 0.0312,0.09534 0.0335,0.09403 0.0359,0.09263 0.0383,0.09123 0.0407,0.08962 0.0431,0.08791 0.0448,0.08622 0.0472,0.08441", + "fill": { + "paint": "transparent" + }, + "id": "path561", + "name": "path561", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 95.699379,76.230945 -0.0455,-0.09524 -0.0487,-0.09443 -0.052,-0.09343 -0.0551,-0.09233 -0.0575,-0.09103 -0.0607,-0.08962 -0.0631,-0.08812 -0.0503,-0.0667 -0.0679,-0.08492 -0.0703,-0.08301 -0.0735,-0.08161 -0.0759,-0.08012 -0.0791,-0.07851 -0.0817,-0.07691 -0.0845,-0.0752 -0.0872,-0.07338 -0.0897,-0.07158 -0.0663,-0.05064 -0.0942,-0.0682 -0.0971,-0.0667 -0.1002,-0.0649 -0.10298,-0.06318 -0.10602,-0.06138 -0.10883,-0.0595 -0.1116,-0.05747 -0.11441,-0.05537 -0.11697,-0.05334 -0.1196,-0.05124 -0.12208,-0.04899 -0.12448,-0.04659 -0.12671,-0.04405 -0.12863,-0.04164 -0.13064,-0.03909 -0.13239,-0.03639 -0.10283,-0.02611", + "fill": { + "paint": "transparent" + }, + "id": "path562", + "name": "path562", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 92.549359,73.880517 -0.18831,-0.04337 -0.19184,-0.03835 -0.19526,-0.03331 -0.19863,-0.02836 -0.20222,-0.02327 -0.20541,-0.01801 -0.20861,-0.01267 -0.21173,-0.008 -0.21485,-0.0022 -0.21755,0.0037 -0.22044,0.009 -0.22283,0.01493 -0.22523,0.02063 -0.22738,0.02634 -0.22898,0.03226 -0.23059,0.03811 -0.19359,0.03624 -0.2325,0.04876 -0.23178,0.0544 -0.2313,0.05995 -0.23027,0.0655 -0.2293,0.07098 -0.2281,0.07652 -0.22676,0.08191 -0.22523,0.08731 -0.22338,0.09274 -0.22148,0.09794 -0.2194,0.103216 -0.21708,0.108312 -0.21444,0.113398 -0.21188,0.118327 -0.20893,0.123182 -0.20574,0.127962 -0.0256,0.01613", + "fill": { + "paint": "transparent" + }, + "id": "path563", + "name": "path563", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 85.383089,75.302137 -0.0559,0.03594 -0.16731,0.111275 -0.16355,0.113668 -0.15995,0.115926 -0.15612,0.118125 -0.15228,0.120249 -0.14837,0.122281 -0.14461,0.12424 -0.14054,0.126116 -0.13662,0.127931 -0.13256,0.129664 -0.12855,0.131375 -0.12456,0.132974 -0.12048,0.134593 -0.11649,0.136102 -0.008,0.0052 -0.11185,0.137152 -0.10739,0.138046 -0.10282,0.138705 -0.0981,0.139268 -0.0935,0.139695 -0.0889,0.139989 -0.0842,0.140161 -0.0799,0.140266 -0.0751,0.140235 -0.0703,0.140162 -0.0655,0.140011 -0.0607,0.139778 -0.0568,0.13953 -0.052,0.139216 -0.0472,0.138856", + "fill": { + "paint": "transparent" + }, + "id": "path564", + "name": "path564", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "cx": "70.206963", + "cy": "97.267334", + "fill": { + "opacity": "1", + "paint": "transparent" + }, + "id": "ellipse564", + "name": "ellipse564", + "rx": "4.6207089", + "ry": "3.5301664", + "stroke": { + "dasharray": "none", + "opacity": "1", + "paint": "#000000", + "width": "1.10038" + }, + "transform": "matrix(0.9696729,-0.24440635,0.20828824,0.97806749,0,0)", + "type": "ellipse" + }, + { + "d": "m 135.33374,78.95655 v -0.008", + "fill": { + "paint": "transparent" + }, + "id": "path565", + "name": "path565", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 135.33343,78.958306 v -0.01005", + "fill": { + "paint": "transparent" + }, + "id": "path566", + "name": "path566", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 135.33318,78.958306 5e-4,-0.0022", + "fill": { + "paint": "transparent" + }, + "id": "path567", + "name": "path567", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 124.39411,84.435461 -0.008,-0.0022", + "fill": { + "paint": "transparent" + }, + "id": "path568", + "name": "path568", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 127.5962,84.617877 0.0129,-4.58e-4", + "fill": { + "paint": "transparent" + }, + "id": "path569", + "name": "path569", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 127.57296,84.618681 0.008,-1.43e-4", + "fill": { + "paint": "transparent" + }, + "id": "path570", + "name": "path570", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 127.57312,84.618403 0.008,1.35e-4", + "fill": { + "paint": "transparent" + }, + "id": "path571", + "name": "path571", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 127.50002,84.62983 0.008,-5.63e-4", + "fill": { + "paint": "transparent" + }, + "id": "path572", + "name": "path572", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 127.50002,84.62983 0.008,-4.12e-4", + "fill": { + "paint": "transparent" + }, + "id": "path573", + "name": "path573", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 127.59629,84.617539 0.0127,-5.69e-4", + "fill": { + "paint": "transparent" + }, + "id": "path574", + "name": "path574", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 133.65511,82.081926 c 0.0575,-0.05545 0.11449,-0.111567 0.17041,-0.168468", + "fill": { + "paint": "transparent" + }, + "id": "path575", + "name": "path575", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 133.80507,81.934225 c 0.0263,-0.02685 0.0527,-0.05395 0.0791,-0.08111", + "fill": { + "paint": "transparent" + }, + "id": "path576", + "name": "path576", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 124.38826,84.433329 c 0.0424,0.01546 0.0843,0.03046 0.1269,0.04509", + "fill": { + "paint": "transparent" + }, + "id": "path577", + "name": "path577", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 122.04929,82.574031 c 0,0.0067 0.008,0.01381 0.012,0.02063", + "fill": { + "paint": "transparent" + }, + "id": "path578", + "name": "path578", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 127.34917,76.101788 c -0.008,-0.003 -0.0128,-0.006 -0.02,-0.008", + "fill": { + "paint": "transparent" + }, + "id": "path579", + "name": "path579", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 125.08857,75.430222 c -0.008,0.0052 -0.0128,0.008 -0.02,0.01252", + "fill": { + "paint": "transparent" + }, + "id": "path580", + "name": "path580", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 134.75665,80.77168 c 0.036,-0.0544 0.0711,-0.109092 0.10547,-0.164343", + "fill": { + "paint": "transparent" + }, + "id": "path581", + "name": "path581", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 135.42282,79.450044 c 0.0136,-0.03954 0.0272,-0.07931 0.04,-0.119138", + "fill": { + "paint": "transparent" + }, + "id": "path582", + "name": "path582", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 135.40549,79.498557 c 0.0192,-0.0541 0.0384,-0.108386 0.0559,-0.163", + "fill": { + "paint": "transparent" + }, + "id": "path583", + "name": "path583", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 135.46317,79.330906 c 0.0121,-0.03669 0.0232,-0.07352 0.0343,-0.110353", + "fill": { + "paint": "transparent" + }, + "id": "path584", + "name": "path584", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 135.46165,79.335557 c 0.0383,-0.118357 0.0727,-0.238005 0.10236,-0.358711", + "fill": { + "paint": "transparent" + }, + "id": "path585", + "name": "path585", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 135.69343,77.903818 c 4.8e-4,0.05447 -1.6e-4,0.108971 0,0.163456", + "fill": { + "paint": "transparent" + }, + "id": "path586", + "name": "path586", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 135.53388,76.841998 c -0.012,-0.0391 -0.0248,-0.07801 -0.0376,-0.116611", + "fill": { + "paint": "transparent" + }, + "id": "path587", + "name": "path587", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 135.49625,76.725387 c -0.008,-0.02281 -0.016,-0.04577 -0.024,-0.06849", + "fill": { + "paint": "transparent" + }, + "id": "path588", + "name": "path588", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 135.47204,76.65697 c -0.0311,-0.08482 -0.0655,-0.168492 -0.10258,-0.250911", + "fill": { + "paint": "transparent" + }, + "id": "path589", + "name": "path589", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 135.36945,76.406254 c 0,-0.006 -0.008,-0.01275 -0.009,-0.01906", + "fill": { + "paint": "transparent" + }, + "id": "path590", + "name": "path590", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 131.08731,83.840567 c 0.37399,-0.178584 0.73609,-0.378865 1.08404,-0.599696", + "fill": { + "paint": "transparent" + }, + "id": "path591", + "name": "path591", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 131.97936,83.359769 c 0.0631,-0.03849 0.12671,-0.07751 0.18943,-0.117315", + "fill": { + "paint": "transparent" + }, + "id": "path592", + "name": "path592", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 132.17135,83.240871 c 0.008,-0.0052 0.0128,-0.008 0.02,-0.01252", + "fill": { + "paint": "transparent" + }, + "id": "path593", + "name": "path593", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 132.19116,83.228288 c 0.0751,-0.04779 0.149,-0.09644 0.22244,-0.146186", + "fill": { + "paint": "transparent" + }, + "id": "path594", + "name": "path594", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 132.4136,83.082102 c 0.0801,-0.0541 0.15929,-0.109369 0.23752,-0.16573", + "fill": { + "paint": "transparent" + }, + "id": "path595", + "name": "path595", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 129.89932,77.266315 0.0103,0.01824 0.0121,0.01794 0.0128,0.01755 0.0144,0.01703 0.016,0.01628 0.0168,0.01553 0.0168,0.01358 0.0184,0.01358 0.02,0.0129 0.0208,0.01207 0.0224,0.01125 0.0232,0.01029 0.0248,0.009 0.0192,0.0067 0.0264,0.008 0.0272,0.0067 0.028,0.0052 0.0296,0.0037 0.0303,0.003 0.0312,0.0022 0.0128,3.08e-4 0.032,-1.5e-4 0.0327,-0.0022 0.0327,-0.003 0.0336,-0.0052 0.0335,-0.0052 0.0343,-0.0067 0.008,-5.62e-4 0.0343,-0.009 0.0343,-0.01006 0.0343,-0.01132 0.0335,-0.0126 0.0336,-0.01396 0.0311,-0.01426 4e-4,-1.95e-4 0.0319,-0.0162 0.0311,-0.01725 0.0303,-0.01809 0.0287,-0.01906 0.028,-0.02003 0.0272,-0.02101 0.0152,-0.01222 0.0256,-0.02221 0.024,-0.02281 0.0224,-0.02334 0.0208,-0.02387 0.02,-0.02402 0.0176,-0.02431 0.0168,-0.02432 0.0152,-0.02454 0.0136,-0.02454 0.0121,-0.02454 0.0103,-0.02454 0.009,-0.02447", + "fill": { + "paint": "transparent" + }, + "id": "path596", + "name": "path596", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 125.24261,80.237896 0.0103,0.01824 0.0112,0.01793 0.0128,0.01755 0.0145,0.01695 0.0161,0.01628 0.0168,0.01553 0.0168,0.01358 0.0184,0.01373 0.02,0.0129 0.0208,0.012 0.0224,0.01117 0.0232,0.01035 0.0247,0.009 0.0192,0.0067 0.0264,0.008 0.0272,0.0067 0.0287,0.0052 0.0296,0.0037 0.0303,0.003 0.0312,0.0022 0.0128,3.31e-4 0.0319,-1.58e-4 0.0328,-0.0022 0.0335,-0.003 0.0336,-0.0052 0.0335,-0.0052 0.0342,-0.0067 0.008,-5.71e-4 0.0342,-0.009 0.0342,-0.01006 0.0343,-0.01132 0.0335,-0.0126 0.0335,-0.01396 0.0311,-0.01418 3.2e-4,-1.57e-4 0.0319,-0.0162 0.0311,-0.01725 0.0303,-0.01816 0.0287,-0.01906 0.028,-0.02004 0.0272,-0.02101 0.0152,-0.01222 0.0256,-0.02221 0.0239,-0.02281 0.0224,-0.02334 0.0208,-0.02372 0.0192,-0.02402 0.0176,-0.02431 0.016,-0.02432 0.0152,-0.02454 0.0137,-0.02454 0.012,-0.02454 0.0103,-0.02447 0.009,-0.02447", + "fill": { + "paint": "transparent" + }, + "id": "path597", + "name": "path597", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 128.93025,80.237896 0.0103,0.01824 0.0121,0.01793 0.0127,0.01755 0.0144,0.01695 0.016,0.01628 0.0168,0.01553 0.0168,0.01358 0.0184,0.01373 0.02,0.0129 0.0208,0.012 0.0224,0.01117 0.0232,0.01035 0.0247,0.009 0.02,0.0067 0.0264,0.008 0.0272,0.0067 0.0279,0.0052 0.0296,0.0037 0.0303,0.003 0.0311,0.0022 0.0128,3.31e-4 0.0319,-1.58e-4 0.0327,-0.0022 0.0327,-0.003 0.0335,-0.0052 0.0336,-0.0052 0.0343,-0.0067 0.008,-5.71e-4 0.0343,-0.009 0.0343,-0.01006 0.0343,-0.01132 0.0336,-0.0126 0.0335,-0.01396 0.0311,-0.01418 3.1e-4,-1.57e-4 0.0319,-0.0162 0.0311,-0.01725 0.0304,-0.01816 0.0287,-0.01906 0.028,-0.02004 0.0272,-0.02101 0.0144,-0.01222 0.0256,-0.02221 0.024,-0.02281 0.0224,-0.02334 0.0208,-0.02372 0.0192,-0.02402 0.0184,-0.02431 0.0168,-0.02432 0.0152,-0.02454 0.0136,-0.02454 0.0121,-0.02454 0.0103,-0.02447 0.009,-0.02447", + "fill": { + "paint": "transparent" + }, + "id": "path598", + "name": "path598", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 127.57096,78.752113 0.0105,0.01824 0.0112,0.01794 0.0128,0.01755 0.0144,0.01695 0.016,0.01628 0.0168,0.01553 0.0168,0.01358 0.0184,0.01373 0.02,0.01291 0.0208,0.01207 0.0224,0.01125 0.0232,0.01028 0.0248,0.009 0.0192,0.0067 0.0263,0.008 0.0272,0.0067 0.0287,0.0052 0.0295,0.0037 0.0303,0.003 0.0311,0.0022 0.0128,3.01e-4 0.0319,-1.35e-4 0.0327,-0.0022 0.0328,-0.003 0.0335,-0.0052 0.0335,-0.0052 0.0342,-0.0067 0.008,-5.71e-4 0.0343,-0.009 0.0342,-0.01006 0.0342,-0.01132 0.0335,-0.01261 0.0336,-0.01396 0.0311,-0.01418 4e-4,-1.79e-4 0.0319,-0.0162 0.0312,-0.0171 0.0303,-0.01816 0.0287,-0.01906 0.0279,-0.02003 0.0272,-0.02101 0.0152,-0.01222 0.0256,-0.02221 0.024,-0.02281 0.0224,-0.02334 0.0208,-0.02386 0.0192,-0.02402 0.0176,-0.02424 0.0168,-0.02431 0.0152,-0.02454 0.0136,-0.02454 0.0121,-0.02454 0.0103,-0.02447 0.009,-0.02446", + "fill": { + "paint": "transparent" + }, + "id": "path599", + "name": "path599", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 126.21175,77.266315 0.0105,0.01824 0.0112,0.01794 0.0128,0.01755 0.0145,0.01703 0.016,0.01628 0.0168,0.01553 0.0168,0.01358 0.0184,0.01358 0.02,0.0129 0.0208,0.01207 0.0224,0.01125 0.0232,0.01029 0.0247,0.009 0.0192,0.0067 0.0263,0.008 0.0272,0.0067 0.0287,0.0052 0.0296,0.0037 0.0303,0.003 0.0312,0.0022 0.0128,3.08e-4 0.0318,-1.5e-4 0.0327,-0.0022 0.0327,-0.003 0.0335,-0.0052 0.0336,-0.0052 0.0342,-0.0067 0.008,-5.62e-4 0.0343,-0.009 0.0342,-0.01006 0.0342,-0.01132 0.0335,-0.0126 0.0335,-0.01396 0.0312,-0.01426 3.2e-4,-1.95e-4 0.0319,-0.0162 0.0311,-0.01725 0.0304,-0.01809 0.0287,-0.01906 0.0279,-0.02003 0.0272,-0.02101 0.0152,-0.01222 0.0256,-0.02221 0.024,-0.02281 0.0224,-0.02334 0.0208,-0.02387 0.0192,-0.02402 0.0176,-0.02431 0.0161,-0.02432 0.0152,-0.02454 0.0137,-0.02454 0.012,-0.02454 0.0105,-0.02454 0.009,-0.02447", + "fill": { + "paint": "transparent" + }, + "id": "path600", + "name": "path600", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 126.55508,77.477451 0.0152,-0.02454 0.0168,-0.02431 0.0184,-0.02417 0.02,-0.02386 0.0216,-0.02342 0.0232,-0.02312 0.024,-0.02251 0.0112,-0.01001 0.0263,-0.02176 0.0272,-0.02086 0.0287,-0.01996 0.0296,-0.01906 0.0303,-0.01816 0.032,-0.0171 0.0327,-0.01605 0.008,-0.003 0.008,-0.003 0.0336,-0.01433 0.0335,-0.01313 0.0335,-0.0117 0.0342,-0.01042 0.0342,-0.009 0.0343,-0.008 0.0343,-0.006 0.0152,-0.0022 0.0335,-0.0052 0.0335,-0.003 0.0327,-0.0022 0.0318,-2.77e-4 0.0312,5.71e-4 0.0303,0.0022 0.0296,0.0037", + "fill": { + "paint": "transparent" + }, + "id": "path601", + "name": "path601", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 127.44744,76.982721 v -0.009 l 0.008,-0.02402 0.008,-0.02386 v -0.02357 -0.02312 l 5e-4,-0.02266 -5e-4,-0.02206 -5e-4,-0.0114 v -0.02191 l -0.008,-0.02153 -0.008,-0.02116 -0.008,-0.02056 -0.008,-0.01974 -0.009,-0.01891", + "fill": { + "paint": "transparent" + }, + "id": "path602", + "name": "path602", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 127.91427,78.963228 0.0152,-0.02454 0.0168,-0.02431 0.0184,-0.02417 0.02,-0.02386 0.0217,-0.02342 0.0232,-0.02312 0.024,-0.02266 0.0112,-0.01005 0.0263,-0.02176 0.0272,-0.02093 0.0279,-0.01996 0.0294,-0.01906 0.0303,-0.01816 0.0311,-0.01703 0.0327,-0.01605 0.008,-0.003 0.008,-0.003 0.0335,-0.01433 0.0335,-0.01313 0.0336,-0.01177 0.0342,-0.01042 0.0343,-0.009 0.0343,-0.008 0.0343,-0.006 0.0152,-0.0022 0.0336,-0.0052 0.0335,-0.003 0.0327,-0.0022 0.0319,-2.55e-4 0.0311,5.69e-4 0.0303,0.0022 0.0296,0.0037", + "fill": { + "paint": "transparent" + }, + "id": "path603", + "name": "path603", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 128.80673,78.468489 v -0.009 l 0.008,-0.02402 0.008,-0.02387 v -0.02342 -0.02312 -0.02266 l -5e-4,-0.02206 v -0.01132 -0.02191 -0.02161 l -0.008,-0.02116 -0.008,-0.02041 -0.008,-0.01973 -0.009,-0.01891", + "fill": { + "paint": "transparent" + }, + "id": "path604", + "name": "path604", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 129.27356,80.449027 0.0152,-0.02454 0.0168,-0.02431 0.0184,-0.02417 0.02,-0.02387 0.0216,-0.02342 0.0232,-0.02312 0.024,-0.02251 0.0112,-0.01006 0.0264,-0.02176 0.0272,-0.02086 0.0288,-0.01996 0.0295,-0.01906 0.0304,-0.01816 0.0312,-0.0171 0.0327,-0.01598 0.008,-0.003 0.008,-0.003 0.0335,-0.01455 0.0336,-0.01313 0.0336,-0.0117 0.0343,-0.01042 0.0343,-0.009 0.0343,-0.008 0.0343,-0.006 0.0152,-0.0022 0.0336,-0.0052 0.0336,-0.003 0.0328,-0.0022 0.0319,-2.55e-4 0.0312,5.77e-4 0.0311,0.0022 0.0295,0.0037", + "fill": { + "paint": "transparent" + }, + "id": "path605", + "name": "path605", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 130.16593,79.954274 v -0.009 l 0.008,-0.02402 0.008,-0.02387 v -0.02357 -0.02312 l 5e-4,-0.02266 -5e-4,-0.02221 -5e-4,-0.01132 v -0.02191 l -0.008,-0.02161 -0.008,-0.02116 -0.008,-0.02056 -0.008,-0.01973 -0.009,-0.01891", + "fill": { + "paint": "transparent" + }, + "id": "path606", + "name": "path606", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 125.58593,80.449027 0.0152,-0.02454 0.0168,-0.02431 0.0184,-0.02417 0.02,-0.02387 0.0216,-0.02342 0.0232,-0.02312 0.024,-0.02251 0.0113,-0.01006 0.0263,-0.02176 0.0272,-0.02086 0.0287,-0.01996 0.0296,-0.01906 0.0303,-0.01816 0.0319,-0.0171 0.0319,-0.01598 0.008,-0.003 0.008,-0.003 0.0335,-0.01455 0.0336,-0.01313 0.0335,-0.0117 0.0342,-0.01042 0.0342,-0.009 0.0342,-0.008 0.0342,-0.006 0.0152,-0.0022 0.0335,-0.0052 0.0335,-0.003 0.0327,-0.0022 0.0319,-2.55e-4 0.0312,5.77e-4 0.0303,0.0022 0.0295,0.0037", + "fill": { + "paint": "transparent" + }, + "id": "path607", + "name": "path607", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 126.47828,79.954274 v -0.009 l 0.008,-0.02402 0.008,-0.02387 v -0.02357 -0.02312 l 5e-4,-0.02266 -4.8e-4,-0.02221 v -0.01132 -0.02191 -0.02161 l -0.008,-0.02116 -0.008,-0.02056 -0.008,-0.01973 -0.009,-0.01891", + "fill": { + "paint": "transparent" + }, + "id": "path608", + "name": "path608", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 130.24255,77.477451 0.0152,-0.02454 0.0168,-0.02431 0.0184,-0.02417 0.02,-0.02386 0.0216,-0.02342 0.0232,-0.02312 0.024,-0.02251 0.0112,-0.01001 0.0264,-0.02176 0.0272,-0.02086 0.0288,-0.01996 0.0295,-0.01906 0.0303,-0.01816 0.0312,-0.0171 0.0327,-0.01605 0.008,-0.003 0.008,-0.003 0.0335,-0.01433 0.0336,-0.01313 0.0336,-0.0117 0.0343,-0.01042 0.0343,-0.009 0.0343,-0.008 0.0343,-0.006 0.0152,-0.0022 0.0335,-0.0052 0.0336,-0.003 0.0327,-0.0022 0.0319,-2.77e-4 0.0312,5.71e-4 0.0303,0.0022 0.0296,0.0037", + "fill": { + "paint": "transparent" + }, + "id": "path609", + "name": "path609", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 131.13508,76.982721 v -0.009 l 0.008,-0.02402 0.008,-0.02386 v -0.02357 -0.02312 l 5e-4,-0.02266 -5e-4,-0.02206 v -0.0114 -0.02191 l -0.008,-0.02153 -0.008,-0.02116 -0.008,-0.02056 -0.008,-0.01974 -0.009,-0.01891", + "fill": { + "paint": "transparent" + }, + "id": "path610", + "name": "path610", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 130.15003,79.670657 -0.0103,-0.01824 -0.012,-0.01794 -0.0128,-0.01755 -0.0144,-0.01703 -0.016,-0.01635 -0.0168,-0.01553 -0.0168,-0.01366 -0.0184,-0.01373 -0.02,-0.0129 -0.0208,-0.012 -0.0224,-0.01117 -0.0232,-0.0102 -0.0247,-0.009 -0.0192,-0.0067 -0.0263,-0.008 -0.0272,-0.0067 -0.0287,-0.0052 -0.0296,-0.0037 -0.0303,-0.003 -0.0311,-0.0022 -0.0128,-3.23e-4 -0.032,1.65e-4 -0.0328,0.0022 -0.0327,0.003 -0.0336,0.0052 -0.0335,0.0052 -0.0343,0.0067 -0.008,5.7e-4 -0.0343,0.009 -0.0343,0.01005 -0.0343,0.01132 -0.0336,0.0126 -0.0335,0.01396 -0.0311,0.01418 -2.5e-4,1.64e-4 -0.032,0.0162 -0.0312,0.01725 -0.0303,0.01809 -0.0287,0.01906 -0.0279,0.02003 -0.0272,0.02101 -0.0152,0.01222 -0.0256,0.02221 -0.024,0.02281 -0.0224,0.02334 -0.0208,0.02372 -0.0192,0.02402 -0.0176,0.02424 -0.016,0.02431 -0.0152,0.02454 -0.0136,0.02454 -0.0121,0.02454 -0.0103,0.02447 -0.009,0.02447", + "fill": { + "paint": "transparent" + }, + "id": "path611", + "name": "path611", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 126.68762,79.754172 0.008,-0.02221 0.009,-0.03181 0.008,-0.03151 0.008,-0.03113 v -0.03076 -0.02484 l 3.1e-4,-0.03016 v -0.02957 -0.02903 l -0.008,-0.02835 -0.008,-0.02431 -0.008,-0.02761 -0.009,-0.02701 -0.0104,-0.02626 -0.012,-0.02551 -0.0137,-0.02484 -0.0152,-0.02424 -0.0168,-0.02364 -0.0176,-0.02281 -0.0168,-0.01914 -0.0208,-0.02101 -0.0217,-0.02026 -0.0232,-0.01951 -0.0248,-0.01861 -0.0216,-0.01455 -0.0272,-0.01673 -0.0287,-0.01568 -0.0303,-0.01471 -0.0311,-0.01366 -0.0224,-0.009 -0.0335,-0.01162 -0.0342,-0.01044 -0.036,-0.009 -0.0367,-0.008 -0.0208,-0.0037 -0.0391,-0.006 -0.04,-0.0052 -0.0407,-0.003 -0.0415,-0.0022 -0.0176,-1.34e-4 -0.0431,5.54e-4 -0.0431,0.0022 -0.0439,0.0037 -0.0448,0.0052 -0.0448,0.0067 -0.0448,0.009 -0.0455,0.01042 -0.0455,0.012 -0.0232,0.0067 -0.0455,0.01455 -0.0448,0.0159 -0.0439,0.0174 -0.0439,0.01891 -0.0431,0.02033 -0.0424,0.02183 -0.0121,0.0067 -0.0415,0.02356 -0.0407,0.02484 -0.02,0.01298 -0.0383,0.02626 -0.0367,0.02716 -0.0352,0.02791 -0.0335,0.02873 -0.0319,0.02956 -0.0303,0.03016 -0.0287,0.03083 -0.0272,0.03151 -0.024,0.02993 -0.024,0.03226 -0.0224,0.03241 -0.0208,0.03256 -0.0184,0.03263 -0.0168,0.03263 -0.0152,0.03248 -0.0128,0.03241 -0.0112,0.03226", + "fill": { + "paint": "transparent" + }, + "id": "path612", + "name": "path612", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 128.49776,79.754172 -0.008,0.02221 -0.008,0.03188 -0.008,0.03151 -0.008,0.03113 v 0.03076 0.02484 l -3.2e-4,0.03016 v 0.02956 0.02903 l 0.008,0.02835 0.008,0.02431 0.008,0.02761 0.009,0.02701 0.0103,0.02634 0.012,0.02544 0.0136,0.02484 0.0152,0.02424 0.0168,0.02364 0.0184,0.02273 0.0168,0.01914 0.02,0.02101 0.0216,0.02026 0.0232,0.01951 0.0247,0.01861 0.0216,0.01455 0.0272,0.0168 0.0287,0.01568 0.0295,0.01471 0.0312,0.01373 0.0232,0.009 0.0335,0.01162 0.0343,0.01042 0.0359,0.009 0.0367,0.008 0.0208,0.0037 0.0391,0.006 0.04,0.0052 0.0407,0.003 0.0415,0.0022 0.0176,1.34e-4 0.0431,-5.55e-4 0.0431,-0.0022 0.0439,-0.0037 0.0439,-0.0052 0.0448,-0.0067 0.0448,-0.009 0.0455,-0.01043 0.0455,-0.012 0.0224,-0.0067 0.0455,-0.01441 0.0448,-0.0159 0.0439,-0.0174 0.0439,-0.01891 0.0431,-0.02033 0.0424,-0.02183 0.012,-0.0067 0.0415,-0.02356 0.0407,-0.02484 0.02,-0.01306 0.0383,-0.02626 0.0367,-0.02701 0.0352,-0.0279 0.0335,-0.02874 0.032,-0.02956 0.0303,-0.03016 0.0287,-0.03083 0.0272,-0.03151 0.024,-0.02993 0.024,-0.03226 0.0224,-0.03248 0.0208,-0.03256 0.0184,-0.03263 0.0168,-0.03256 0.0152,-0.03248 0.0128,-0.03233 0.0112,-0.03226", + "fill": { + "paint": "transparent" + }, + "id": "path613", + "name": "path613", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 130.37527,79.754172 0.008,-0.02221 0.009,-0.03181 0.008,-0.03151 0.008,-0.03113 v -0.03076 -0.02484 l 1.6e-4,-0.03016 v -0.02957 -0.02903 l -0.008,-0.02835 -0.008,-0.02431 -0.008,-0.02761 -0.009,-0.02701 -0.0103,-0.02626 -0.012,-0.02551 -0.0136,-0.02484 -0.0152,-0.02424 -0.0168,-0.02364 -0.0176,-0.02281 -0.0168,-0.01914 -0.02,-0.02101 -0.0216,-0.02026 -0.0232,-0.01951 -0.0247,-0.01861 -0.0216,-0.01455 -0.0272,-0.01673 -0.0288,-0.01568 -0.0295,-0.01471 -0.0311,-0.01366 -0.0224,-0.009 -0.0336,-0.01162 -0.0343,-0.01044 -0.036,-0.009 -0.0367,-0.008 -0.0216,-0.0037 -0.0384,-0.006 -0.04,-0.0052 -0.0407,-0.003 -0.0415,-0.0022 -0.0176,-1.34e-4 -0.0431,5.54e-4 -0.0431,0.0022 -0.0439,0.0037 -0.0448,0.0052 -0.0448,0.0067 -0.0448,0.009 -0.0455,0.01042 -0.0455,0.012 -0.0232,0.0067 -0.0455,0.01455 -0.0448,0.0159 -0.0448,0.0174 -0.0439,0.01891 -0.0431,0.02033 -0.0424,0.02183 -0.012,0.0067 -0.0415,0.02356 -0.0407,0.02484 -0.02,0.01298 -0.0383,0.02626 -0.0367,0.02716 -0.0351,0.02791 -0.0336,0.02873 -0.0319,0.02956 -0.0303,0.03016 -0.0287,0.03083 -0.0272,0.03151 -0.024,0.02993 -0.024,0.03226 -0.0224,0.03241 -0.0208,0.03256 -0.0184,0.03263 -0.0168,0.03263 -0.0152,0.03248 -0.0128,0.03241 -0.0112,0.03226", + "fill": { + "paint": "transparent" + }, + "id": "path614", + "name": "path614", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 128.79083,78.184882 -0.0103,-0.01824 -0.0112,-0.01793 -0.0128,-0.0174 -0.0144,-0.01703 -0.016,-0.01628 -0.0168,-0.01553 -0.0168,-0.01358 -0.0184,-0.01366 -0.02,-0.01291 -0.0208,-0.012 -0.0224,-0.01117 -0.0232,-0.01042 -0.0247,-0.009 -0.02,-0.0067 -0.0264,-0.008 -0.0272,-0.0067 -0.0287,-0.0052 -0.0296,-0.0037 -0.0304,-0.003 -0.0311,-0.0022 -0.0128,-3.31e-4 -0.0319,1.72e-4 -0.0327,0.0022 -0.0327,0.003 -0.0335,0.0052 -0.0335,0.0052 -0.0342,0.0067 -0.008,5.71e-4 -0.0343,0.009 -0.0342,0.01006 -0.0342,0.01132 -0.0336,0.01261 -0.0335,0.01396 -0.0311,0.01425 -4e-4,1.59e-4 -0.0319,0.0162 -0.0311,0.01725 -0.0304,0.01815 -0.0287,0.01906 -0.0279,0.02003 -0.0272,0.02101 -0.0144,0.01222 -0.0256,0.02221 -0.024,0.02281 -0.0224,0.02334 -0.0208,0.02372 -0.0192,0.02402 -0.0184,0.02424 -0.0168,0.02431 -0.0152,0.02454 -0.0137,0.02454 -0.012,0.02454 -0.0103,0.02446 -0.009,0.02447", + "fill": { + "paint": "transparent" + }, + "id": "path615", + "name": "path615", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 127.43171,76.699121 -0.0104,-0.01824 -0.012,-0.01793 -0.0128,-0.01748 -0.0145,-0.01695 -0.0161,-0.01635 -0.0168,-0.01553 -0.0168,-0.01366 -0.0184,-0.01358 -0.02,-0.0129 -0.0208,-0.01207 -0.0224,-0.01117 -0.0232,-0.01035 -0.0247,-0.009 -0.02,-0.0067 -0.0264,-0.008 -0.0272,-0.0067 -0.0279,-0.0052 -0.0296,-0.0037 -0.0303,-0.003 -0.0312,-0.0022 -0.0128,-3e-4 -0.0319,1.35e-4 -0.0327,0.0022 -0.0327,0.003 -0.0335,0.0052 -0.0335,0.0052 -0.0342,0.0067 -0.008,5.7e-4 -0.0342,0.009 -0.0342,0.01006 -0.0342,0.01132 -0.0335,0.01261 -0.0336,0.01396 -0.0312,0.01425 -4e-4,1.95e-4 -0.0319,0.01613 -0.0311,0.01725 -0.0304,0.01816 -0.0287,0.01906 -0.0279,0.02003 -0.0272,0.02101 -0.0144,0.01222 -0.0256,0.02221 -0.024,0.02281 -0.0224,0.02342 -0.0208,0.02372 -0.0193,0.02402 -0.0184,0.02424 -0.0168,0.02431 -0.0152,0.02454 -0.0136,0.02454 -0.0121,0.02454 -0.0103,0.02447 -0.009,0.02447", + "fill": { + "paint": "transparent" + }, + "id": "path616", + "name": "path616", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 126.19586,76.982721 v 0.009 l -0.008,0.02402 -0.008,0.02387 v 0.02357 0.02312 l -5e-4,0.02266 5e-4,0.02206 v 0.01132 0.02191 l 0.008,0.02153 0.008,0.02116 0.008,0.02041 0.008,0.01973 0.009,0.01891", + "fill": { + "paint": "transparent" + }, + "id": "path617", + "name": "path617", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 131.11918,76.699121 -0.0103,-0.01824 -0.0113,-0.01793 -0.0127,-0.01748 -0.0144,-0.01695 -0.016,-0.01635 -0.0168,-0.01553 -0.0168,-0.01366 -0.0184,-0.01358 -0.02,-0.0129 -0.0208,-0.01207 -0.0224,-0.01117 -0.0232,-0.01035 -0.0247,-0.009 -0.0192,-0.0067 -0.0264,-0.008 -0.0272,-0.0067 -0.028,-0.0052 -0.0296,-0.0037 -0.0303,-0.003 -0.0311,-0.0022 -0.0128,-3e-4 -0.032,1.35e-4 -0.0328,0.0022 -0.0327,0.003 -0.0335,0.0052 -0.0336,0.0052 -0.0343,0.0067 -0.008,5.7e-4 -0.0343,0.009 -0.0343,0.01006 -0.0343,0.01132 -0.0335,0.01261 -0.0336,0.01396 -0.0311,0.01425 -4e-4,1.95e-4 -0.0319,0.01613 -0.0312,0.01725 -0.0303,0.01816 -0.0287,0.01906 -0.028,0.02003 -0.0272,0.02101 -0.0152,0.01222 -0.0256,0.02221 -0.024,0.02281 -0.0224,0.02342 -0.0208,0.02372 -0.0192,0.02402 -0.0176,0.02424 -0.016,0.02431 -0.0152,0.02454 -0.0136,0.02454 -0.0121,0.02454 -0.0103,0.02447 -0.009,0.02447", + "fill": { + "paint": "transparent" + }, + "id": "path618", + "name": "path618", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 127.55515,78.468489 v 0.009 l -0.008,0.02402 -0.008,0.02387 v 0.02357 0.02312 l -5e-4,0.02266 4.8e-4,0.02221 v 0.01132 0.02191 0.02153 l 0.008,0.02116 0.008,0.02056 0.008,0.01974 0.009,0.01891", + "fill": { + "paint": "transparent" + }, + "id": "path619", + "name": "path619", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 129.46691,76.782612 -0.008,0.02221 -0.009,0.03181 -0.008,0.03151 -0.008,0.03113 v 0.03061 0.02484 l -3.2e-4,0.03016 v 0.02956 0.02904 l 0.008,0.02835 0.008,0.02431 0.008,0.02761 0.009,0.027 0.0103,0.02626 0.012,0.02551 0.0136,0.02484 0.0152,0.02424 0.0168,0.02364 0.0176,0.02273 0.0168,0.01913 0.02,0.02101 0.0216,0.02026 0.0232,0.01951 0.0247,0.01861 0.0216,0.01455 0.0272,0.0168 0.0287,0.01575 0.0296,0.01471 0.0311,0.01358 0.0232,0.009 0.0335,0.01162 0.0343,0.01042 0.0359,0.009 0.0367,0.008 0.0208,0.0037 0.0391,0.006 0.04,0.0052 0.0407,0.003 0.0415,0.0022 0.0176,1.5e-4 0.0431,-5.7e-4 0.0431,-0.0022 0.0439,-0.0037 0.0448,-0.0052 0.0448,-0.0067 0.0448,-0.009 0.0455,-0.01042 0.0455,-0.012 0.0232,-0.0067 0.0455,-0.01448 0.0448,-0.0159 0.0448,-0.0174 0.0439,-0.01891 0.0431,-0.02034 0.0424,-0.02183 0.012,-0.0067 0.0415,-0.02357 0.0407,-0.02484 0.02,-0.01298 0.0384,-0.02626 0.0367,-0.02716 0.0351,-0.0279 0.0336,-0.02873 0.0319,-0.02956 0.0303,-0.03016 0.0287,-0.03083 0.0272,-0.03151 0.024,-0.02971 0.024,-0.03226 0.0224,-0.03241 0.0208,-0.03256 0.0184,-0.03263 0.0168,-0.03263 0.0152,-0.03248 0.0128,-0.03241 0.0112,-0.03226", + "fill": { + "paint": "transparent" + }, + "id": "path620", + "name": "path620", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 128.91434,79.954274 v 0.009 l -0.008,0.02402 -0.008,0.02387 v 0.02357 0.02312 l -5e-4,0.02266 5e-4,0.02221 5e-4,0.01132 v 0.02191 l 0.008,0.02161 0.008,0.02116 0.008,0.02056 0.008,0.01973 0.009,0.01891", + "fill": { + "paint": "transparent" + }, + "id": "path621", + "name": "path621", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 131.34442,76.782612 0.008,-0.02213 0.008,-0.03188 0.008,-0.03151 0.008,-0.03113 v -0.03076 -0.02484 l 1.6e-4,-0.03016 v -0.02956 -0.02896 l -0.008,-0.02837 -0.008,-0.02431 -0.008,-0.0276 -0.009,-0.02701 -0.0103,-0.02634 -0.012,-0.02544 -0.0136,-0.02484 -0.0152,-0.02424 -0.0168,-0.02364 -0.0184,-0.02273 -0.0168,-0.01914 -0.02,-0.02101 -0.0216,-0.02026 -0.0232,-0.01951 -0.0247,-0.01861 -0.0216,-0.01456 -0.0272,-0.0168 -0.0287,-0.01568 -0.0296,-0.01471 -0.0311,-0.01373 -0.0232,-0.009 -0.0336,-0.01162 -0.0343,-0.01043 -0.0359,-0.009 -0.0367,-0.008 -0.0216,-0.0037 -0.0384,-0.006 -0.04,-0.0052 -0.0407,-0.003 -0.0415,-0.0022 -0.0176,-1.43e-4 -0.0431,5.63e-4 -0.0431,0.0022 -0.0439,0.0037 -0.0448,0.0052 -0.0448,0.0067 -0.0448,0.009 -0.0455,0.01042 -0.0455,0.012 -0.0232,0.0067 -0.0455,0.01441 -0.0448,0.0159 -0.0448,0.0174 -0.0439,0.01891 -0.0431,0.02033 -0.0424,0.02183 -0.012,0.0067 -0.0415,0.02357 -0.0407,0.02484 -0.02,0.01298 -0.0383,0.02625 -0.0367,0.02716 -0.0351,0.02791 -0.0335,0.02874 -0.0319,0.02956 -0.0303,0.03016 -0.0287,0.03083 -0.0272,0.03158 -0.024,0.02993 -0.024,0.03226 -0.0224,0.03248 -0.0208,0.03256 -0.0184,0.03263 -0.0168,0.03256 -0.0152,0.03248 -0.0127,0.03241 -0.0113,0.03226", + "fill": { + "paint": "transparent" + }, + "id": "path622", + "name": "path622", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 127.13856,78.268403 -0.008,0.02221 -0.008,0.03181 -0.008,0.03151 -0.008,0.03113 v 0.03076 0.02484 l -3.2e-4,0.03016 v 0.02956 0.02904 l 0.008,0.02835 0.008,0.02431 0.008,0.02761 0.009,0.027 0.0103,0.02626 0.0121,0.02544 0.0137,0.02484 0.0152,0.02424 0.0168,0.02364 0.0176,0.02274 0.0168,0.01914 0.02,0.02101 0.0216,0.02033 0.0232,0.01951 0.0247,0.01861 0.0216,0.01456 0.0272,0.01673 0.0287,0.01583 0.0295,0.01471 0.0311,0.01373 0.0224,0.009 0.0335,0.01162 0.0343,0.01042 0.036,0.009 0.0367,0.008 0.0208,0.0037 0.0391,0.006 0.04,0.0052 0.0407,0.003 0.0415,0.0022 0.0176,1.43e-4 0.0431,-5.77e-4 0.0431,-0.0022 0.0439,-0.0037 0.0448,-0.0052 0.0448,-0.0067 0.0448,-0.009 0.0455,-0.01042 0.0455,-0.012 0.0232,-0.0067 0.0455,-0.01441 0.0448,-0.0159 0.0439,-0.01755 0.0439,-0.01891 0.0431,-0.02033 0.0424,-0.02183 0.012,-0.0067 0.0415,-0.02356 0.0407,-0.02484 0.02,-0.01298 0.0383,-0.02626 0.0367,-0.02716 0.0352,-0.02792 0.0335,-0.02874 0.0319,-0.02956 0.0303,-0.03016 0.0287,-0.03083 0.027,-0.03151 0.024,-0.02993 0.024,-0.03226 0.0224,-0.03241 0.0208,-0.03256 0.0184,-0.03263 0.0168,-0.03256 0.0152,-0.03256 0.0127,-0.03241 0.0113,-0.03226", + "fill": { + "paint": "transparent" + }, + "id": "path623", + "name": "path623", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 126.46247,79.670657 -0.0103,-0.01824 -0.0112,-0.01794 -0.0128,-0.01755 -0.0145,-0.01703 -0.0152,-0.01635 -0.0168,-0.01553 -0.0168,-0.01366 -0.0185,-0.01373 -0.02,-0.0129 -0.0208,-0.012 -0.0224,-0.01117 -0.0232,-0.0102 -0.0247,-0.009 -0.0193,-0.0067 -0.0264,-0.008 -0.0271,-0.0067 -0.028,-0.0052 -0.0296,-0.0037 -0.0303,-0.003 -0.0311,-0.0022 -0.0128,-3.23e-4 -0.0319,1.65e-4 -0.0328,0.0022 -0.0328,0.003 -0.0335,0.0052 -0.0335,0.0052 -0.0342,0.0067 -0.008,5.7e-4 -0.0342,0.009 -0.0342,0.01005 -0.0342,0.01132 -0.0335,0.0126 -0.0335,0.01396 -0.0311,0.01418 -4e-4,1.64e-4 -0.0318,0.0162 -0.0312,0.01725 -0.0303,0.01809 -0.0287,0.01906 -0.028,0.02003 -0.0272,0.02101 -0.0144,0.01222 -0.0256,0.02221 -0.024,0.02281 -0.0224,0.02334 -0.0208,0.02372 -0.0192,0.02402 -0.0176,0.02424 -0.0168,0.02431 -0.0152,0.02454 -0.0137,0.02454 -0.0121,0.02454 -0.0103,0.02447 -0.009,0.02447", + "fill": { + "paint": "transparent" + }, + "id": "path624", + "name": "path624", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 129.01597,78.268403 0.008,-0.02221 0.009,-0.03188 0.008,-0.03151 0.008,-0.03113 v -0.03076 -0.02484 l 3.1e-4,-0.03016 v -0.02956 -0.02904 l -0.008,-0.02837 -0.008,-0.02431 -0.008,-0.02761 -0.009,-0.02701 -0.0103,-0.02626 -0.0121,-0.02544 -0.0136,-0.02484 -0.0152,-0.02424 -0.0168,-0.02364 -0.0176,-0.02273 -0.0168,-0.01913 -0.02,-0.02101 -0.0216,-0.02033 -0.0232,-0.01951 -0.0247,-0.01861 -0.0216,-0.01456 -0.0272,-0.0168 -0.0287,-0.01583 -0.0296,-0.01471 -0.0312,-0.01373 -0.0232,-0.009 -0.0336,-0.01162 -0.0343,-0.01042 -0.036,-0.009 -0.0367,-0.008 -0.0208,-0.0037 -0.0383,-0.006 -0.04,-0.0052 -0.0407,-0.003 -0.0415,-0.0022 -0.0176,-1.28e-4 -0.0431,5.56e-4 -0.0431,0.0022 -0.0439,0.0037 -0.0448,0.0052 -0.0448,0.0067 -0.0448,0.009 -0.0455,0.01042 -0.0455,0.012 -0.0232,0.0067 -0.0455,0.01441 -0.0448,0.0159 -0.0448,0.0174 -0.0439,0.01891 -0.0431,0.02033 -0.0424,0.02183 -0.012,0.0067 -0.0415,0.02357 -0.0407,0.02484 -0.02,0.01298 -0.0384,0.02626 -0.0367,0.02716 -0.0352,0.0279 -0.0335,0.02873 -0.0319,0.02956 -0.0303,0.03016 -0.0287,0.03083 -0.0272,0.03151 -0.024,0.02993 -0.024,0.03226 -0.0224,0.03248 -0.02,0.03256 -0.0184,0.03263 -0.0168,0.03256 -0.0152,0.03256 -0.0128,0.03248 -0.0112,0.03226", + "fill": { + "paint": "transparent" + }, + "id": "path625", + "name": "path625", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 125.77928,76.782612 -0.008,0.02221 -0.009,0.03181 -0.008,0.03151 -0.008,0.03113 v 0.03061 0.02484 l -1.6e-4,0.03016 v 0.02956 0.02904 l 0.008,0.02835 0.008,0.02431 0.008,0.02761 0.009,0.027 0.0105,0.02626 0.0121,0.02551 0.0137,0.02484 0.0152,0.02424 0.0168,0.02364 0.0176,0.02273 0.0168,0.01913 0.0208,0.02101 0.0216,0.02026 0.0232,0.01951 0.0248,0.01861 0.0216,0.01455 0.0272,0.0168 0.0287,0.01575 0.0296,0.01471 0.0311,0.01358 0.0224,0.009 0.0336,0.01162 0.0342,0.01042 0.036,0.009 0.0367,0.008 0.0216,0.0037 0.0384,0.006 0.04,0.0052 0.0408,0.003 0.0415,0.0022 0.0176,1.5e-4 0.0431,-5.7e-4 0.0431,-0.0022 0.0439,-0.0037 0.0448,-0.0052 0.0448,-0.0067 0.0448,-0.009 0.0455,-0.01042 0.0455,-0.012 0.0232,-0.0067 0.0455,-0.01448 0.0448,-0.0159 0.0448,-0.0174 0.0439,-0.01891 0.0431,-0.02034 0.0424,-0.02183 0.012,-0.0067 0.0415,-0.02357 0.0407,-0.02484 0.02,-0.01298 0.0384,-0.02626 0.0367,-0.02716 0.0351,-0.0279 0.0335,-0.02873 0.032,-0.02956 0.0303,-0.03016 0.0287,-0.03083 0.028,-0.03151 0.024,-0.02971 0.024,-0.03226 0.0224,-0.03241 0.0208,-0.03256 0.0184,-0.03263 0.0168,-0.03263 0.0152,-0.03248 0.0128,-0.03241 0.0112,-0.03226", + "fill": { + "paint": "transparent" + }, + "id": "path626", + "name": "path626", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 127.65677,76.782612 v -0.008 l 0.009,-0.02956 0.008,-0.02941 0.008,-0.02911 0.008,-0.02875 v -0.02835 -0.02792 l -2.4e-4,-0.02745 -5e-4,-0.01305 v -0.02701 -0.02685 l -0.008,-0.02634 -0.008,-0.02581 -0.008,-0.02521 -0.009,-0.02454 -0.0104,-0.02387 -0.0112,-0.02327 -0.0128,-0.02296 -0.0144,-0.02243 -0.0152,-0.02183 -0.0168,-0.02123 -0.0176,-0.02056 -0.0192,-0.01973 -0.01,-0.009 -0.02,-0.01846 -0.0216,-0.01771 -0.0232,-0.01703 -0.0239,-0.01635 -0.0256,-0.01545 -0.0263,-0.01463 -0.028,-0.01366 -0.0103,-0.0052", + "fill": { + "paint": "transparent" + }, + "id": "path627", + "name": "path627", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 127.32943,76.093303 -0.0294,-0.01162 -0.0312,-0.01065 -0.0319,-0.01002 -0.0334,-0.009 -0.0343,-0.008 -0.0351,-0.006 -0.0359,-0.0052 -0.0367,-0.0037 -0.0384,-0.0022 -0.0383,-0.0022 -0.0391,-3e-5 -0.04,0.0022 -0.0103,5.48e-4 -0.0407,0.003 -0.0407,0.0052 -0.0407,0.006 -0.0415,0.0067 -0.0415,0.009 -0.0359,0.008 -0.0424,0.01117 -0.0424,0.01252 -0.0415,0.01381 -0.0415,0.01523 -0.0407,0.0165 -0.028,0.01222 -0.04,0.01854 -0.0272,0.01343 -0.0391,0.02063 -0.0383,0.02176 -0.0376,0.02273 -0.0367,0.02371 -0.0287,0.02026 -0.0342,0.02514 -0.0327,0.02581 -0.0311,0.02656 -0.0303,0.02723 -0.0287,0.02791 -0.008,0.0052 -0.0272,0.02866 -0.0256,0.02905 -0.0247,0.02941 -0.0232,0.02964 -0.0217,0.02993 -0.02,0.03001 -0.0185,0.03016 -0.0168,0.03016 -0.0152,0.03016 -0.0137,0.03001 -0.012,0.02993 -0.0105,0.02993", + "fill": { + "paint": "transparent" + }, + "id": "path628", + "name": "path628", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 124.81028,79.754172 -0.008,0.02221 -0.009,0.03188 -0.008,0.03151 -0.008,0.03113 v 0.03076 0.02484 l -2.3e-4,0.03016 v 0.02956 0.02903 l 0.008,0.02835 0.008,0.02431 0.008,0.02761 0.009,0.02701 0.0103,0.02634 0.0121,0.02544 0.0137,0.02484 0.0152,0.02424 0.0168,0.02364 0.0176,0.02273 0.0168,0.01914 0.02,0.02101 0.0216,0.02026 0.0232,0.01951 0.0248,0.01861 0.0216,0.01455 0.0272,0.0168 0.0287,0.01568 0.0303,0.01471 0.0311,0.01373 0.0224,0.009 0.0335,0.01162 0.0343,0.01042 0.0359,0.009 0.0367,0.008 0.0216,0.0037 0.0383,0.006 0.04,0.0052 0.0408,0.003 0.0415,0.0022 0.0176,1.34e-4 0.0431,-5.55e-4 0.0431,-0.0022 0.0439,-0.0037 0.0448,-0.0052 0.0448,-0.0067 0.0448,-0.009 0.0455,-0.01043 0.0455,-0.012 0.0232,-0.0067 0.0455,-0.01441 0.0448,-0.0159 0.0448,-0.0174 0.0439,-0.01891 0.0431,-0.02033 0.0424,-0.02183 0.012,-0.0067 0.0415,-0.02356 0.0407,-0.02484 0.02,-0.01306 0.0384,-0.02626 0.0367,-0.02701 0.0352,-0.0279 0.0335,-0.02874 0.0319,-0.02956 0.0303,-0.03016 0.0287,-0.03083 0.0272,-0.03151 0.024,-0.02993 0.024,-0.03226 0.0224,-0.03248 0.02,-0.03256 0.0184,-0.03263 0.0168,-0.03256 0.0152,-0.03248 0.0128,-0.03233 0.0112,-0.03226", + "fill": { + "paint": "transparent" + }, + "id": "path629", + "name": "path629", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 125.08857,75.430222 0.20325,-0.125702 0.20701,-0.121397 0.21046,-0.116947 0.21388,-0.112379 0.21692,-0.107658 0.21979,-0.102841 0.22172,-0.09754 0.22483,-0.09282 0.0112,-0.0052 0.22635,-0.08712 0.22738,-0.08161 0.22843,-0.07611 0.2293,-0.07053 0.22987,-0.0649 0.23026,-0.05928 0.23058,-0.05365 0.23074,-0.04809 0.0583,-0.01132 0.22915,-0.04067 0.22747,-0.03481 0.22595,-0.02911 0.22419,-0.02333 0.22236,-0.01764 0.22043,-0.012 0.21859,-0.0067 0.21637,-5.63e-4 0.11744,0.0022 0.21198,0.008 0.20861,0.01276 0.20525,0.01801 0.20174,0.02312 0.19798,0.02813 0.19407,0.03316 0.19031,0.03796 0.18625,0.04277", + "fill": { + "paint": "transparent" + }, + "id": "path630", + "name": "path630", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 132.20714,74.035793 0.0424,0.01042 0.13495,0.03564 0.13279,0.03796 0.13031,0.04044 0.12784,0.04299 0.12535,0.0454 0.12264,0.04756 0.12017,0.04974 0.1176,0.05199 0.0632,0.02926 0.11369,0.05537 0.11114,0.05762 0.10842,0.05958 0.10578,0.0616 0.10306,0.06347 0.10011,0.06542 0.0975,0.06715 0.0946,0.06903 0.0679,0.05207 0.0901,0.0724 0.0875,0.0742 0.0848,0.07591 0.0819,0.07761 0.0791,0.07912 0.0759,0.08062 0.0735,0.08201 0.0703,0.08331 0.0679,0.08522 0.0527,0.07038 0.0631,0.08852 0.0599,0.09003 0.0575,0.09153 0.0544,0.09274 0.0511,0.09393 0.0487,0.09483 0.0448,0.09574", + "fill": { + "paint": "transparent" + }, + "id": "path631", + "name": "path631", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 135.53388,76.841998 0.02,0.06812 0.0184,0.06879 0.0176,0.06933 0.016,0.06993 0.0144,0.07038 0.0136,0.0709 0.0121,0.0712 0.008,0.03173 0.0103,0.0718 0.009,0.0724 0.008,0.07278 0.008,0.07337 0.008,0.07382 v 0.07428 0.07458 l 2.3e-4,0.02837", + "fill": { + "paint": "transparent" + }, + "id": "path632", + "name": "path632", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 135.69152,78.067274 v 0.07611 l -0.008,0.07651 -0.008,0.07681 -0.008,0.05575 -0.009,0.07741 -0.0103,0.07781 -0.0113,0.07821 -0.0128,0.07851 -0.0144,0.07892 -0.016,0.07921 -0.0176,0.07952 -0.0192,0.07973 -0.02,0.07992 -0.0216,0.08012 -0.0232,0.07902", + "fill": { + "paint": "transparent" + }, + "id": "path633", + "name": "path633", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 135.42282,79.450044 -0.0296,0.08122 -0.0311,0.08132 -0.0327,0.08141 -0.02,0.04809 -0.0351,0.08162 -0.0367,0.08172 -0.0383,0.08181 -0.0391,0.08182 -0.0415,0.0819 -0.0424,0.08191 -0.0439,0.08192 -0.0455,0.08182 -0.0472,0.08181 -0.0487,0.08172 -0.0288,0.04749", + "fill": { + "paint": "transparent" + }, + "id": "path634", + "name": "path634", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 134.75665,80.77168 -0.0544,0.08141 -0.0559,0.08112 -0.0575,0.08092 -0.0256,0.03474 -0.0599,0.08062 -0.0615,0.08042 -0.0631,0.08012 -0.0647,0.07982 -0.0663,0.07952 -0.0671,0.07911 -0.0687,0.07871 -0.0703,0.07841 -0.0719,0.07791 -0.0735,0.07741 -0.0103,0.01117", + "fill": { + "paint": "transparent" + }, + "id": "path635", + "name": "path635", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 133.80507,81.934225 -0.0144,0.01493 -0.0152,0.01493 -0.0152,0.01478 -0.0152,0.01485 -0.0152,0.01486 -0.0152,0.01471 -0.0152,0.01471 -0.0152,0.0147 -0.0152,0.01471 -0.0152,0.01463", + "fill": { + "paint": "transparent" + }, + "id": "path636", + "name": "path636", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 131.08731,83.840567 -0.18393,0.08572 -0.2138,0.09434 -0.21565,0.08942 -0.21739,0.08462 -0.21876,0.07962 -0.22004,0.07458 -0.22091,0.0694 -0.22156,0.0643 -0.21652,0.0577 -0.22147,0.0538 -0.22123,0.04839 -0.22093,0.04314 v 5.71e-4 l -0.22011,0.03774 -0.21907,0.03248 -0.21795,0.02701 -0.21693,0.02183 -0.0535,0.0052 -0.21405,0.01523 -0.21173,0.01005 -0.20925,0.0052 -0.20669,-2.17e-4 -0.20406,-0.0052 -0.2015,-0.0102 -0.19878,-0.01516 -0.19607,-0.01996 -0.10746,-0.01313 -0.19087,-0.0273 -0.18735,-0.03181 -0.18353,-0.03639 -0.17978,-0.04067 -0.17584,-0.0451 -0.17161,-0.04907 -0.16772,-0.05319 -0.1633,-0.05732", + "fill": { + "paint": "transparent" + }, + "id": "path637", + "name": "path637", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 124.38891,84.4336 -0.0224,-0.008 -0.10609,-0.04067 -0.10427,-0.04232 -0.10242,-0.04405 -0.10043,-0.04576 -0.0985,-0.04726 -0.0965,-0.04883 -0.0944,-0.05049 -0.0328,-0.01816 -0.0919,-0.05244 -0.0899,-0.05395 -0.088,-0.05545 -0.0858,-0.05687 -0.0839,-0.0583 -0.0817,-0.0595 -0.0799,-0.06093 -0.0367,-0.02911 -0.0767,-0.06295 -0.0751,-0.06423 -0.0727,-0.0655 -0.0703,-0.0667 -0.0687,-0.06789 -0.0663,-0.06903 -0.064,-0.07 -0.0335,-0.03796 -0.0615,-0.07217 -0.0592,-0.07337 -0.0575,-0.07458 -0.0551,-0.07561 -0.0527,-0.07661 -0.0503,-0.07751 -0.0487,-0.07831", + "fill": { + "paint": "transparent" + }, + "id": "path638", + "name": "path638", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 122.06127,82.594898 -0.0743,-0.133358 -0.0687,-0.136963 -0.0631,-0.140244 -0.0568,-0.143034 -0.0472,-0.133379 -0.0448,-0.146973 -0.0383,-0.148549 -0.0327,-0.151438 -0.0264,-0.154079 -0.02,-0.156502 -0.0137,-0.15855 -0.008,-0.140957 v -0.161581 l 0.008,-0.163773 0.0121,-0.165812 0.0184,-0.167593 0.0256,-0.16918 0.024,-0.129673 0.0376,-0.171207 0.0448,-0.172477 0.052,-0.173608 0.0592,-0.174621 0.0664,-0.17547 0.0439,-0.107749 0.0775,-0.176444 0.085,-0.176618 0.0923,-0.176714 0.0996,-0.176671 0.10698,-0.176497 0.0503,-0.07901 0.1177,-0.175927 0.12479,-0.174726 0.13191,-0.173535 0.13902,-0.172205 0.14629,-0.170847 0.0455,-0.05147 0.15571,-0.16889 0.16227,-0.166525 0.16891,-0.163968 0.17522,-0.161169 0.18144,-0.158205 0.18768,-0.154971 0.1935,-0.151558 0.19928,-0.147889 0.20469,-0.14392 0.20988,-0.139749 0.0583,-0.03766", + "fill": { + "paint": "transparent" + }, + "id": "path639", + "name": "path639", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 122.06127,82.594672 0.0472,0.07821 0.0496,0.07761 0.052,0.07691 0.0544,0.07621 0.0568,0.07542 0.0592,0.07451 0.0616,0.0736 0.0631,0.07262 0.0655,0.07143 0.0679,0.07023 0.0695,0.06888 0.0719,0.06752 0.0735,0.0661 0.0751,0.06452 0.0775,0.06287 0.008,0.006 0.0791,0.061 0.0811,0.0598 0.0833,0.05852 0.0854,0.05717 0.0877,0.0559 0.0898,0.05447 0.0919,0.05297 0.0941,0.05169 0.0962,0.05019 0.0982,0.04869 0.1002,0.04704 0.1021,0.04525 0.10411,0.04367 0.10578,0.04187 0.0759,0.02851", + "fill": { + "paint": "transparent" + }, + "id": "path640", + "name": "path640", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 124.51516,84.478346 0.11335,0.03751 0.11531,0.03579 0.11711,0.03377 0.11914,0.03173 0.12089,0.02986 0.1228,0.02783 0.0112,0.0022 0.1248,0.02566 0.12647,0.02357 0.12816,0.02146 0.12982,0.01921 0.13137,0.0171 0.13286,0.01493 0.13447,0.01267 0.1359,0.01043 0.13734,0.008 0.13863,0.006 0.13998,0.0037 0.14125,0.0022 0.14237,-0.0022 0.1435,-0.0037 0.1443,-0.006 0.14533,-0.008 0.14614,-0.0108 0.0853,-0.008", + "fill": { + "paint": "transparent" + }, + "id": "path641", + "name": "path641", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 127.64255,84.803221 0.17865,-0.01815 0.17929,-0.02176 0.18008,-0.02522 0.18073,-0.02882 0.18144,-0.03248 0.18217,-0.03616 0.0343,-0.008 0.18289,-0.04059 0.18297,-0.04405 0.18271,-0.04779 0.18273,-0.05124 0.18216,-0.05477 0.18185,-0.0583 0.18104,-0.06168 0.18033,-0.0652 0.17937,-0.06857 0.17842,-0.07188 0.17712,-0.07521 0.1757,-0.0784 0.17426,-0.08161 0.1725,-0.08472 0.0376,-0.01884 0.17033,-0.08842 0.16827,-0.09133 0.1661,-0.09413 0.16387,-0.09684", + "fill": { + "paint": "transparent" + }, + "id": "path642", + "name": "path642", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 132.16879,83.242454 0.0987,-0.0634 0.1014,-0.06692 0.10026,-0.06789 0.0991,-0.06887 0.0966,-0.06887 0.0968,-0.07083 0.0954,-0.0718 0.0942,-0.07263 0.0928,-0.07337 0.0915,-0.07427 0.0901,-0.07512 0.0888,-0.07591 0.0872,-0.07661 0.086,-0.07731 0.0845,-0.07801 0.083,-0.0787", + "fill": { + "paint": "transparent" + }, + "id": "path643", + "name": "path643", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 133.82552,81.913458 0.0615,-0.06288 0.0954,-0.100644 0.0927,-0.101168 0.0902,-0.101791 0.0876,-0.102482 0.0853,-0.103149 0.0335,-0.04194 0.0817,-0.104087 0.0791,-0.104665 0.0767,-0.10516 0.0743,-0.105558 0.0711,-0.105895 0.0687,-0.106166 0.0663,-0.106368 0.0639,-0.10651 0.0607,-0.106555 0.0583,-0.106623 0.0559,-0.106572 0.0527,-0.106517 0.0503,-0.106413 0.0479,-0.106241 0.0448,-0.106075 0.0424,-0.10585 0.04,-0.105641", + "fill": { + "paint": "transparent" + }, + "id": "path644", + "name": "path644", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 135.564,78.976846 5e-4,-0.003 0.0232,-0.09884 0.0208,-0.09854 0.0184,-0.09814 0.016,-0.09764 0.0136,-0.09724 0.0112,-0.09664 0.01,-0.09603 0.008,-0.09534 0.008,-0.09464 v -0.09393 l 4.9e-4,-0.09313 v -0.09233 -0.09143 l -0.008,-0.09063 v -0.03196 l -0.009,-0.09033 -0.0112,-0.08993 -0.0127,-0.08952 -0.0152,-0.08892 -0.0176,-0.08832 -0.0192,-0.08762 -0.0216,-0.08682 -0.0232,-0.08602 -0.0256,-0.08502 -0.0272,-0.08402 -0.0296,-0.08291 -0.0311,-0.08172 -0.0327,-0.08052 -0.0351,-0.07922", + "fill": { + "paint": "transparent" + }, + "id": "path645", + "name": "path645", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 121.79826,79.335557 -0.028,0.08892 -0.0327,0.112144 -0.0303,0.111861 -0.0272,0.111455 -0.024,0.110929 -0.0216,0.110345 -0.0184,0.109693 -0.0152,0.108956 -0.0128,0.108153 -0.01,0.107261 -0.008,0.10636 -0.008,0.105424 v 0.104402 0.103404 l 0.008,0.102354 0.008,0.101251 0.01,0.101146 v 0.01966 l 0.0128,0.100891 0.0152,0.1005 0.0184,0.09994 0.0208,0.09924 0.0232,0.09854 0.0264,0.09754 0.0287,0.09654 0.0312,0.09534 0.0335,0.09403 0.0359,0.09263 0.0383,0.09123 0.0407,0.08962 0.0431,0.08791 0.0448,0.08622 0.0472,0.08441", + "fill": { + "paint": "transparent" + }, + "id": "path646", + "name": "path646", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 135.36083,76.387196 -0.0455,-0.09524 -0.0487,-0.09443 -0.052,-0.09343 -0.0551,-0.09233 -0.0575,-0.09103 -0.0607,-0.08962 -0.0631,-0.08812 -0.0503,-0.0667 -0.0679,-0.08492 -0.0703,-0.08301 -0.0735,-0.08161 -0.0759,-0.08012 -0.0791,-0.07851 -0.0817,-0.07691 -0.0845,-0.0752 -0.0872,-0.07338 -0.0897,-0.07158 -0.0663,-0.05064 -0.0942,-0.0682 -0.0971,-0.0667 -0.1002,-0.0649 -0.10298,-0.06318 -0.10602,-0.06138 -0.10883,-0.0595 -0.1116,-0.05747 -0.11441,-0.05537 -0.11697,-0.05334 -0.1196,-0.05124 -0.12208,-0.04899 -0.12448,-0.04659 -0.12671,-0.04405 -0.12863,-0.04164 -0.13064,-0.03909 -0.13239,-0.03639 -0.10283,-0.02611", + "fill": { + "paint": "transparent" + }, + "id": "path647", + "name": "path647", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 132.21081,74.036768 -0.18831,-0.04337 -0.19184,-0.03835 -0.19526,-0.03331 -0.19863,-0.02836 -0.20222,-0.02327 -0.20541,-0.01801 -0.20861,-0.01267 -0.21173,-0.008 -0.21485,-0.0022 -0.21755,0.0037 -0.22044,0.009 -0.22283,0.01493 -0.22523,0.02063 -0.22738,0.02634 -0.22898,0.03226 -0.23059,0.03811 -0.19359,0.03624 -0.2325,0.04876 -0.23178,0.0544 -0.2313,0.05995 -0.23027,0.0655 -0.2293,0.07098 -0.2281,0.07652 -0.22676,0.08191 -0.22523,0.08731 -0.22338,0.09274 -0.22148,0.09794 -0.2194,0.103216 -0.21708,0.108312 -0.21444,0.113398 -0.21188,0.118327 -0.20893,0.123182 -0.20574,0.127962 -0.0256,0.01613", + "fill": { + "paint": "transparent" + }, + "id": "path648", + "name": "path648", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 125.04454,75.458388 -0.0559,0.03594 -0.16731,0.111275 -0.16355,0.113668 -0.15995,0.115926 -0.15612,0.118125 -0.15228,0.120249 -0.14837,0.122281 -0.14461,0.12424 -0.14054,0.126116 -0.13662,0.127931 -0.13256,0.129664 -0.12855,0.131375 -0.12456,0.132974 -0.12048,0.134593 -0.11649,0.136102 -0.008,0.0052 -0.11185,0.137152 -0.10739,0.138046 -0.10282,0.138705 -0.0981,0.139268 -0.0935,0.139695 -0.0889,0.139989 -0.0842,0.140161 -0.0799,0.140266 -0.0751,0.140235 -0.0703,0.140162 -0.0655,0.140011 -0.0607,0.139778 -0.0568,0.13953 -0.052,0.139216 -0.0472,0.138856", + "fill": { + "paint": "transparent" + }, + "id": "path649", + "name": "path649", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "cx": "108.99267", + "cy": "107.11913", + "fill": { + "opacity": "1", + "paint": "transparent" + }, + "id": "ellipse649", + "name": "ellipse649", + "rx": "4.6207089", + "ry": "3.5301664", + "stroke": { + "dasharray": "none", + "opacity": "1", + "paint": "#000000", + "width": "1.10038" + }, + "transform": "matrix(0.9696729,-0.24440635,0.20828824,0.97806749,0,0)", + "type": "ellipse" + }, + { + "d": "m 88.458748,101.03988 v -0.008", + "fill": { + "paint": "transparent" + }, + "id": "path734", + "name": "path734", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 88.458438,101.04164 v -0.0101", + "fill": { + "paint": "transparent" + }, + "id": "path735", + "name": "path735", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 88.458188,101.04164 5e-4,-0.002", + "fill": { + "paint": "transparent" + }, + "id": "path736", + "name": "path736", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 77.519118,106.51879 -0.008,-0.002", + "fill": { + "paint": "transparent" + }, + "id": "path737", + "name": "path737", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 80.721208,106.70121 0.0129,-4.6e-4", + "fill": { + "paint": "transparent" + }, + "id": "path738", + "name": "path738", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 80.697968,106.70201 0.008,-1.4e-4", + "fill": { + "paint": "transparent" + }, + "id": "path739", + "name": "path739", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 80.698128,106.70173 0.008,1.4e-4", + "fill": { + "paint": "transparent" + }, + "id": "path740", + "name": "path740", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 80.625028,106.71316 0.008,-5.6e-4", + "fill": { + "paint": "transparent" + }, + "id": "path741", + "name": "path741", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 80.625028,106.71316 0.008,-4.1e-4", + "fill": { + "paint": "transparent" + }, + "id": "path742", + "name": "path742", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 80.721298,106.70087 0.0127,-5.7e-4", + "fill": { + "paint": "transparent" + }, + "id": "path743", + "name": "path743", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 86.780118,104.16526 c 0.0575,-0.0555 0.11449,-0.11157 0.17041,-0.16847", + "fill": { + "paint": "transparent" + }, + "id": "path744", + "name": "path744", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 86.930078,104.01756 c 0.0263,-0.0268 0.0527,-0.054 0.0791,-0.0811", + "fill": { + "paint": "transparent" + }, + "id": "path745", + "name": "path745", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 77.513268,106.51666 c 0.0424,0.0155 0.0843,0.0305 0.1269,0.0451", + "fill": { + "paint": "transparent" + }, + "id": "path746", + "name": "path746", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 75.174298,104.65736 c 0,0.007 0.008,0.0138 0.012,0.0206", + "fill": { + "paint": "transparent" + }, + "id": "path747", + "name": "path747", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 80.474178,98.185121 c -0.008,-0.003 -0.0128,-0.006 -0.02,-0.008", + "fill": { + "paint": "transparent" + }, + "id": "path748", + "name": "path748", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 78.213578,97.513555 c -0.008,0.0052 -0.0128,0.008 -0.02,0.01252", + "fill": { + "paint": "transparent" + }, + "id": "path749", + "name": "path749", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 87.881658,102.85501 c 0.036,-0.0544 0.0711,-0.10909 0.10547,-0.16434", + "fill": { + "paint": "transparent" + }, + "id": "path750", + "name": "path750", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 88.547828,101.53338 c 0.0136,-0.0395 0.0272,-0.0793 0.04,-0.11914", + "fill": { + "paint": "transparent" + }, + "id": "path751", + "name": "path751", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 88.530498,101.58189 c 0.0192,-0.0541 0.0384,-0.10839 0.0559,-0.163", + "fill": { + "paint": "transparent" + }, + "id": "path752", + "name": "path752", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 88.588178,101.41424 c 0.0121,-0.0367 0.0232,-0.0735 0.0343,-0.11035", + "fill": { + "paint": "transparent" + }, + "id": "path753", + "name": "path753", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 88.586658,101.41889 c 0.0383,-0.11836 0.0727,-0.23801 0.10236,-0.35871", + "fill": { + "paint": "transparent" + }, + "id": "path754", + "name": "path754", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 88.818438,99.987151 c 4.8e-4,0.05447 -1.6e-4,0.108969 0,0.163459", + "fill": { + "paint": "transparent" + }, + "id": "path755", + "name": "path755", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 88.658888,98.925331 c -0.012,-0.0391 -0.0248,-0.07801 -0.0376,-0.116611", + "fill": { + "paint": "transparent" + }, + "id": "path756", + "name": "path756", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 88.621258,98.80872 c -0.008,-0.02281 -0.016,-0.04577 -0.024,-0.06849", + "fill": { + "paint": "transparent" + }, + "id": "path757", + "name": "path757", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 88.597048,98.740303 c -0.0311,-0.08482 -0.0655,-0.168492 -0.10258,-0.250911", + "fill": { + "paint": "transparent" + }, + "id": "path758", + "name": "path758", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 88.494458,98.489587 c 0,-0.006 -0.008,-0.01275 -0.009,-0.01906", + "fill": { + "paint": "transparent" + }, + "id": "path759", + "name": "path759", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 84.212318,105.9239 c 0.37399,-0.17858 0.73609,-0.37887 1.08404,-0.5997", + "fill": { + "paint": "transparent" + }, + "id": "path760", + "name": "path760", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 85.104368,105.4431 c 0.0631,-0.0385 0.12671,-0.0775 0.18943,-0.11731", + "fill": { + "paint": "transparent" + }, + "id": "path761", + "name": "path761", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 85.296358,105.3242 c 0.008,-0.005 0.0128,-0.008 0.02,-0.0125", + "fill": { + "paint": "transparent" + }, + "id": "path762", + "name": "path762", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 85.316168,105.31162 c 0.0751,-0.0478 0.149,-0.0964 0.22244,-0.14619", + "fill": { + "paint": "transparent" + }, + "id": "path763", + "name": "path763", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 85.538608,105.16543 c 0.0801,-0.0541 0.15929,-0.10936 0.23752,-0.16573", + "fill": { + "paint": "transparent" + }, + "id": "path764", + "name": "path764", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 83.024328,99.349648 0.0103,0.01824 0.0121,0.01794 0.0128,0.01755 0.0144,0.01703 0.016,0.01628 0.0168,0.01553 0.0168,0.01358 0.0184,0.01358 0.02,0.0129 0.0208,0.01207 0.0224,0.01125 0.0232,0.01029 0.0248,0.009 0.0192,0.0067 0.0264,0.008 0.0272,0.0067 0.028,0.0052 0.0296,0.0037 0.0303,0.003 0.0312,0.0022 0.0128,3.08e-4 0.032,-1.5e-4 0.0327,-0.0022 0.0327,-0.003 0.0336,-0.0052 0.0335,-0.0052 0.0343,-0.0067 0.008,-5.62e-4 0.0343,-0.009 0.0343,-0.01006 0.0343,-0.01132 0.0335,-0.0126 0.0336,-0.01396 0.0311,-0.01426 4e-4,-1.95e-4 0.0319,-0.0162 0.0311,-0.01725 0.0303,-0.01809 0.0287,-0.01906 0.028,-0.02003 0.0272,-0.02101 0.0152,-0.01222 0.0256,-0.02221 0.024,-0.02281 0.0224,-0.02334 0.0208,-0.02387 0.02,-0.02402 0.0176,-0.02431 0.0168,-0.02432 0.0152,-0.02454 0.0136,-0.02454 0.0121,-0.02454 0.0103,-0.02454 0.009,-0.02447", + "fill": { + "paint": "transparent" + }, + "id": "path765", + "name": "path765", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 78.367618,102.32123 0.0103,0.0182 0.0112,0.0179 0.0128,0.0175 0.0145,0.017 0.0161,0.0163 0.0168,0.0155 0.0168,0.0136 0.0184,0.0137 0.02,0.0129 0.0208,0.012 0.0224,0.0112 0.0232,0.0104 0.0247,0.009 0.0192,0.007 0.0264,0.008 0.0272,0.007 0.0287,0.005 0.0296,0.004 0.0303,0.003 0.0312,0.002 0.0128,3.3e-4 0.0319,-1.6e-4 0.0328,-0.002 0.0335,-0.003 0.0336,-0.005 0.0335,-0.005 0.0342,-0.007 0.008,-5.7e-4 0.0342,-0.009 0.0342,-0.0101 0.0343,-0.0113 0.0335,-0.0126 0.0335,-0.014 0.0311,-0.0142 3.2e-4,-1.6e-4 0.0319,-0.0162 0.0311,-0.0172 0.0303,-0.0182 0.0287,-0.0191 0.028,-0.02 0.0272,-0.021 0.0152,-0.0122 0.0256,-0.0222 0.0239,-0.0228 0.0224,-0.0233 0.0208,-0.0237 0.0192,-0.024 0.0176,-0.0243 0.016,-0.0243 0.0152,-0.0245 0.0137,-0.0245 0.012,-0.0245 0.0103,-0.0245 0.009,-0.0245", + "fill": { + "paint": "transparent" + }, + "id": "path766", + "name": "path766", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 82.055258,102.32123 0.0103,0.0182 0.0121,0.0179 0.0127,0.0175 0.0144,0.017 0.016,0.0163 0.0168,0.0155 0.0168,0.0136 0.0184,0.0137 0.02,0.0129 0.0208,0.012 0.0224,0.0112 0.0232,0.0104 0.0247,0.009 0.02,0.007 0.0264,0.008 0.0272,0.007 0.0279,0.005 0.0296,0.004 0.0303,0.003 0.0311,0.002 0.0128,3.3e-4 0.0319,-1.6e-4 0.0327,-0.002 0.0327,-0.003 0.0335,-0.005 0.0336,-0.005 0.0343,-0.007 0.008,-5.7e-4 0.0343,-0.009 0.0343,-0.0101 0.0343,-0.0113 0.0336,-0.0126 0.0335,-0.014 0.0311,-0.0142 3.1e-4,-1.6e-4 0.0319,-0.0162 0.0311,-0.0172 0.0304,-0.0182 0.0287,-0.0191 0.028,-0.02 0.0272,-0.021 0.0144,-0.0122 0.0256,-0.0222 0.024,-0.0228 0.0224,-0.0233 0.0208,-0.0237 0.0192,-0.024 0.0184,-0.0243 0.0168,-0.0243 0.0152,-0.0245 0.0136,-0.0245 0.0121,-0.0245 0.0103,-0.0245 0.009,-0.0245", + "fill": { + "paint": "transparent" + }, + "id": "path767", + "name": "path767", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 80.695968,100.83545 0.0105,0.0182 0.0112,0.0179 0.0128,0.0175 0.0144,0.017 0.016,0.0163 0.0168,0.0155 0.0168,0.0136 0.0184,0.0137 0.02,0.0129 0.0208,0.0121 0.0224,0.0113 0.0232,0.0103 0.0248,0.009 0.0192,0.007 0.0263,0.008 0.0272,0.007 0.0287,0.005 0.0295,0.004 0.0303,0.003 0.0311,0.002 0.0128,3e-4 0.0319,-1.4e-4 0.0327,-0.002 0.0328,-0.003 0.0335,-0.005 0.0335,-0.005 0.0342,-0.007 0.008,-5.7e-4 0.0343,-0.009 0.0342,-0.0101 0.0342,-0.0113 0.0335,-0.0126 0.0336,-0.014 0.0311,-0.0142 4e-4,-1.8e-4 0.0319,-0.0162 0.0312,-0.0171 0.0303,-0.0182 0.0287,-0.0191 0.0279,-0.02 0.0272,-0.021 0.0152,-0.0122 0.0256,-0.0222 0.024,-0.0228 0.0224,-0.0233 0.0208,-0.0239 0.0192,-0.024 0.0176,-0.0242 0.0168,-0.0243 0.0152,-0.0245 0.0136,-0.0245 0.0121,-0.0245 0.0103,-0.0245 0.009,-0.0245", + "fill": { + "paint": "transparent" + }, + "id": "path768", + "name": "path768", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 79.336758,99.349648 0.0105,0.01824 0.0112,0.01794 0.0128,0.01755 0.0145,0.01703 0.016,0.01628 0.0168,0.01553 0.0168,0.01358 0.0184,0.01358 0.02,0.0129 0.0208,0.01207 0.0224,0.01125 0.0232,0.01029 0.0247,0.009 0.0192,0.0067 0.0263,0.008 0.0272,0.0067 0.0287,0.0052 0.0296,0.0037 0.0303,0.003 0.0312,0.0022 0.0128,3.08e-4 0.0318,-1.5e-4 0.0327,-0.0022 0.0327,-0.003 0.0335,-0.0052 0.0336,-0.0052 0.0342,-0.0067 0.008,-5.62e-4 0.0343,-0.009 0.0342,-0.01006 0.0342,-0.01132 0.0335,-0.0126 0.0335,-0.01396 0.0312,-0.01426 3.2e-4,-1.95e-4 0.0319,-0.0162 0.0311,-0.01725 0.0304,-0.01809 0.0287,-0.01906 0.0279,-0.02003 0.0272,-0.02101 0.0152,-0.01222 0.0256,-0.02221 0.024,-0.02281 0.0224,-0.02334 0.0208,-0.02387 0.0192,-0.02402 0.0176,-0.02431 0.0161,-0.02432 0.0152,-0.02454 0.0137,-0.02454 0.012,-0.02454 0.0105,-0.02454 0.009,-0.02447", + "fill": { + "paint": "transparent" + }, + "id": "path769", + "name": "path769", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 79.680088,99.560784 0.0152,-0.02454 0.0168,-0.02431 0.0184,-0.02417 0.02,-0.02386 0.0216,-0.02342 0.0232,-0.02312 0.024,-0.02251 0.0112,-0.01001 0.0263,-0.02176 0.0272,-0.02086 0.0287,-0.01996 0.0296,-0.01906 0.0303,-0.01816 0.032,-0.0171 0.0327,-0.01605 0.008,-0.003 0.008,-0.003 0.0336,-0.01433 0.0335,-0.01313 0.0335,-0.0117 0.0342,-0.01042 0.0342,-0.009 0.0343,-0.008 0.0343,-0.006 0.0152,-0.0022 0.0335,-0.0052 0.0335,-0.003 0.0327,-0.0022 0.0318,-2.77e-4 0.0312,5.71e-4 0.0303,0.0022 0.0296,0.0037", + "fill": { + "paint": "transparent" + }, + "id": "path770", + "name": "path770", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 80.572448,99.066054 v -0.009 l 0.008,-0.02402 0.008,-0.02386 v -0.02357 -0.02312 l 5e-4,-0.02266 -5e-4,-0.02206 -5e-4,-0.0114 v -0.02191 l -0.008,-0.02153 -0.008,-0.02116 -0.008,-0.02056 -0.008,-0.01974 -0.009,-0.01891", + "fill": { + "paint": "transparent" + }, + "id": "path771", + "name": "path771", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 81.039278,101.04656 0.0152,-0.0245 0.0168,-0.0243 0.0184,-0.0242 0.02,-0.0239 0.0217,-0.0234 0.0232,-0.0231 0.024,-0.0227 0.0112,-0.0101 0.0263,-0.0218 0.0272,-0.0209 0.0279,-0.02 0.0294,-0.0191 0.0303,-0.0182 0.0311,-0.017 0.0327,-0.016 0.008,-0.003 0.008,-0.003 0.0335,-0.0143 0.0335,-0.0131 0.0336,-0.0118 0.0342,-0.0104 0.0343,-0.009 0.0343,-0.008 0.0343,-0.006 0.0152,-0.002 0.0336,-0.005 0.0335,-0.003 0.0327,-0.002 0.0319,-2.5e-4 0.0311,5.6e-4 0.0303,0.002 0.0296,0.004", + "fill": { + "paint": "transparent" + }, + "id": "path772", + "name": "path772", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 81.931738,100.55182 v -0.009 l 0.008,-0.024 0.008,-0.0239 v -0.0234 -0.0231 -0.0227 l -5e-4,-0.0221 v -0.0113 -0.0219 -0.0216 l -0.008,-0.0212 -0.008,-0.0204 -0.008,-0.0197 -0.009,-0.0189", + "fill": { + "paint": "transparent" + }, + "id": "path773", + "name": "path773", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 82.398568,102.53236 0.0152,-0.0245 0.0168,-0.0243 0.0184,-0.0242 0.02,-0.0239 0.0216,-0.0234 0.0232,-0.0231 0.024,-0.0225 0.0112,-0.0101 0.0264,-0.0218 0.0272,-0.0209 0.0288,-0.02 0.0295,-0.0191 0.0304,-0.0182 0.0312,-0.0171 0.0327,-0.016 0.008,-0.003 0.008,-0.003 0.0335,-0.0145 0.0336,-0.0131 0.0336,-0.0117 0.0343,-0.0104 0.0343,-0.009 0.0343,-0.008 0.0343,-0.006 0.0152,-0.002 0.0336,-0.005 0.0336,-0.003 0.0328,-0.002 0.0319,-2.6e-4 0.0312,5.8e-4 0.0311,0.002 0.0295,0.004", + "fill": { + "paint": "transparent" + }, + "id": "path774", + "name": "path774", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 83.290938,102.03761 v -0.009 l 0.008,-0.024 0.008,-0.0239 v -0.0236 -0.0231 l 5e-4,-0.0227 -5e-4,-0.0222 -5e-4,-0.0113 v -0.0219 l -0.008,-0.0216 -0.008,-0.0212 -0.008,-0.0206 -0.008,-0.0197 -0.009,-0.0189", + "fill": { + "paint": "transparent" + }, + "id": "path775", + "name": "path775", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 78.710938,102.53236 0.0152,-0.0245 0.0168,-0.0243 0.0184,-0.0242 0.02,-0.0239 0.0216,-0.0234 0.0232,-0.0231 0.024,-0.0225 0.0113,-0.0101 0.0263,-0.0218 0.0272,-0.0209 0.0287,-0.02 0.0296,-0.0191 0.0303,-0.0182 0.0319,-0.0171 0.0319,-0.016 0.008,-0.003 0.008,-0.003 0.0335,-0.0145 0.0336,-0.0131 0.0335,-0.0117 0.0342,-0.0104 0.0342,-0.009 0.0342,-0.008 0.0342,-0.006 0.0152,-0.002 0.0335,-0.005 0.0335,-0.003 0.0327,-0.002 0.0319,-2.6e-4 0.0312,5.8e-4 0.0303,0.002 0.0295,0.004", + "fill": { + "paint": "transparent" + }, + "id": "path776", + "name": "path776", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 79.603288,102.03761 v -0.009 l 0.008,-0.024 0.008,-0.0239 v -0.0236 -0.0231 l 5e-4,-0.0227 -4.8e-4,-0.0222 v -0.0113 -0.0219 -0.0216 l -0.008,-0.0212 -0.008,-0.0206 -0.008,-0.0197 -0.009,-0.0189", + "fill": { + "paint": "transparent" + }, + "id": "path777", + "name": "path777", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 83.367558,99.560784 0.0152,-0.02454 0.0168,-0.02431 0.0184,-0.02417 0.02,-0.02386 0.0216,-0.02342 0.0232,-0.02312 0.024,-0.02251 0.0112,-0.01001 0.0264,-0.02176 0.0272,-0.02086 0.0288,-0.01996 0.0295,-0.01906 0.0303,-0.01816 0.0312,-0.0171 0.0327,-0.01605 0.008,-0.003 0.008,-0.003 0.0335,-0.01433 0.0336,-0.01313 0.0336,-0.0117 0.0343,-0.01042 0.0343,-0.009 0.0343,-0.008 0.0343,-0.006 0.0152,-0.0022 0.0335,-0.0052 0.0336,-0.003 0.0327,-0.0022 0.0319,-2.77e-4 0.0312,5.71e-4 0.0303,0.0022 0.0296,0.0037", + "fill": { + "paint": "transparent" + }, + "id": "path778", + "name": "path778", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 84.260088,99.066054 v -0.009 l 0.008,-0.02402 0.008,-0.02386 v -0.02357 -0.02312 l 5e-4,-0.02266 -5e-4,-0.02206 v -0.0114 -0.02191 l -0.008,-0.02153 -0.008,-0.02116 -0.008,-0.02056 -0.008,-0.01974 -0.009,-0.01891", + "fill": { + "paint": "transparent" + }, + "id": "path779", + "name": "path779", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 83.275038,101.75399 -0.0103,-0.0182 -0.012,-0.0179 -0.0128,-0.0175 -0.0144,-0.017 -0.016,-0.0163 -0.0168,-0.0155 -0.0168,-0.0137 -0.0184,-0.0137 -0.02,-0.0129 -0.0208,-0.012 -0.0224,-0.0112 -0.0232,-0.0102 -0.0247,-0.009 -0.0192,-0.007 -0.0263,-0.008 -0.0272,-0.007 -0.0287,-0.005 -0.0296,-0.004 -0.0303,-0.003 -0.0311,-0.002 -0.0128,-3.2e-4 -0.032,1.6e-4 -0.0328,0.002 -0.0327,0.003 -0.0336,0.005 -0.0335,0.005 -0.0343,0.007 -0.008,5.7e-4 -0.0343,0.009 -0.0343,0.0101 -0.0343,0.0113 -0.0336,0.0126 -0.0335,0.014 -0.0311,0.0142 -2.5e-4,1.7e-4 -0.032,0.0162 -0.0312,0.0173 -0.0303,0.0181 -0.0287,0.0191 -0.0279,0.02 -0.0272,0.021 -0.0152,0.0122 -0.0256,0.0222 -0.024,0.0228 -0.0224,0.0233 -0.0208,0.0237 -0.0192,0.024 -0.0176,0.0242 -0.016,0.0243 -0.0152,0.0245 -0.0136,0.0245 -0.0121,0.0245 -0.0103,0.0245 -0.009,0.0245", + "fill": { + "paint": "transparent" + }, + "id": "path780", + "name": "path780", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 79.812628,101.8375 0.008,-0.0222 0.009,-0.0318 0.008,-0.0315 0.008,-0.0311 v -0.0308 -0.0248 l 3.1e-4,-0.0302 v -0.0296 -0.029 l -0.008,-0.0284 -0.008,-0.0243 -0.008,-0.0276 -0.009,-0.027 -0.0104,-0.0263 -0.012,-0.0255 -0.0137,-0.0248 -0.0152,-0.0242 -0.0168,-0.0236 -0.0176,-0.0228 -0.0168,-0.0191 -0.0208,-0.021 -0.0217,-0.0203 -0.0232,-0.0195 -0.0248,-0.0186 -0.0216,-0.0145 -0.0272,-0.0167 -0.0287,-0.0157 -0.0303,-0.0147 -0.0311,-0.0137 -0.0224,-0.009 -0.0335,-0.0116 -0.0342,-0.0104 -0.036,-0.009 -0.0367,-0.008 -0.0208,-0.004 -0.0391,-0.006 -0.04,-0.005 -0.0407,-0.003 -0.0415,-0.002 -0.0176,-1.3e-4 -0.0431,5.5e-4 -0.0431,0.002 -0.0439,0.004 -0.0448,0.005 -0.0448,0.007 -0.0448,0.009 -0.0455,0.0104 -0.0455,0.012 -0.0232,0.007 -0.0455,0.0145 -0.0448,0.0159 -0.0439,0.0174 -0.0439,0.0189 -0.0431,0.0203 -0.0424,0.0218 -0.0121,0.007 -0.0415,0.0236 -0.0407,0.0248 -0.02,0.013 -0.0383,0.0263 -0.0367,0.0272 -0.0352,0.0279 -0.0335,0.0287 -0.0319,0.0296 -0.0303,0.0302 -0.0287,0.0308 -0.0272,0.0315 -0.024,0.0299 -0.024,0.0323 -0.0224,0.0324 -0.0208,0.0326 -0.0184,0.0326 -0.0168,0.0326 -0.0152,0.0325 -0.0128,0.0324 -0.0112,0.0323", + "fill": { + "paint": "transparent" + }, + "id": "path781", + "name": "path781", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 81.622768,101.8375 -0.008,0.0222 -0.008,0.0319 -0.008,0.0315 -0.008,0.0311 v 0.0308 0.0248 l -3.2e-4,0.0302 v 0.0296 0.029 l 0.008,0.0284 0.008,0.0243 0.008,0.0276 0.009,0.027 0.0103,0.0263 0.012,0.0254 0.0136,0.0248 0.0152,0.0242 0.0168,0.0236 0.0184,0.0227 0.0168,0.0191 0.02,0.021 0.0216,0.0203 0.0232,0.0195 0.0247,0.0186 0.0216,0.0145 0.0272,0.0168 0.0287,0.0157 0.0295,0.0147 0.0312,0.0137 0.0232,0.009 0.0335,0.0116 0.0343,0.0104 0.0359,0.009 0.0367,0.008 0.0208,0.004 0.0391,0.006 0.04,0.005 0.0407,0.003 0.0415,0.002 0.0176,1.4e-4 0.0431,-5.6e-4 0.0431,-0.002 0.0439,-0.004 0.0439,-0.005 0.0448,-0.007 0.0448,-0.009 0.0455,-0.0104 0.0455,-0.012 0.0224,-0.007 0.0455,-0.0144 0.0448,-0.0159 0.0439,-0.0174 0.0439,-0.0189 0.0431,-0.0203 0.0424,-0.0218 0.012,-0.007 0.0415,-0.0236 0.0407,-0.0248 0.02,-0.0131 0.0383,-0.0263 0.0367,-0.027 0.0352,-0.0279 0.0335,-0.0287 0.032,-0.0296 0.0303,-0.0302 0.0287,-0.0308 0.0272,-0.0315 0.024,-0.0299 0.024,-0.0323 0.0224,-0.0325 0.0208,-0.0326 0.0184,-0.0326 0.0168,-0.0326 0.0152,-0.0325 0.0128,-0.0323 0.0112,-0.0323", + "fill": { + "paint": "transparent" + }, + "id": "path782", + "name": "path782", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 83.500278,101.8375 0.008,-0.0222 0.009,-0.0318 0.008,-0.0315 0.008,-0.0311 v -0.0308 -0.0248 l 1.6e-4,-0.0302 v -0.0296 -0.029 l -0.008,-0.0284 -0.008,-0.0243 -0.008,-0.0276 -0.009,-0.027 -0.0103,-0.0263 -0.012,-0.0255 -0.0136,-0.0248 -0.0152,-0.0242 -0.0168,-0.0236 -0.0176,-0.0228 -0.0168,-0.0191 -0.02,-0.021 -0.0216,-0.0203 -0.0232,-0.0195 -0.0247,-0.0186 -0.0216,-0.0145 -0.0272,-0.0167 -0.0288,-0.0157 -0.0295,-0.0147 -0.0311,-0.0137 -0.0224,-0.009 -0.0336,-0.0116 -0.0343,-0.0104 -0.036,-0.009 -0.0367,-0.008 -0.0216,-0.004 -0.0384,-0.006 -0.04,-0.005 -0.0407,-0.003 -0.0415,-0.002 -0.0176,-1.3e-4 -0.0431,5.5e-4 -0.0431,0.002 -0.0439,0.004 -0.0448,0.005 -0.0448,0.007 -0.0448,0.009 -0.0455,0.0104 -0.0455,0.012 -0.0232,0.007 -0.0455,0.0145 -0.0448,0.0159 -0.0448,0.0174 -0.0439,0.0189 -0.0431,0.0203 -0.0424,0.0218 -0.012,0.007 -0.0415,0.0236 -0.0407,0.0248 -0.02,0.013 -0.0383,0.0263 -0.0367,0.0272 -0.0351,0.0279 -0.0336,0.0287 -0.0319,0.0296 -0.0303,0.0302 -0.0287,0.0308 -0.0272,0.0315 -0.024,0.0299 -0.024,0.0323 -0.0224,0.0324 -0.0208,0.0326 -0.0184,0.0326 -0.0168,0.0326 -0.0152,0.0325 -0.0128,0.0324 -0.0112,0.0323", + "fill": { + "paint": "transparent" + }, + "id": "path783", + "name": "path783", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 81.915838,100.26821 -0.0103,-0.0182 -0.0112,-0.0179 -0.0128,-0.0174 -0.0144,-0.017 -0.016,-0.0163 -0.0168,-0.0155 -0.0168,-0.0136 -0.0184,-0.0137 -0.02,-0.0129 -0.0208,-0.012 -0.0224,-0.0112 -0.0232,-0.0104 -0.0247,-0.009 -0.02,-0.007 -0.0264,-0.008 -0.0272,-0.007 -0.0287,-0.005 -0.0296,-0.004 -0.0304,-0.003 -0.0311,-0.002 -0.0128,-3.3e-4 -0.0319,1.8e-4 -0.0327,0.002 -0.0327,0.003 -0.0335,0.005 -0.0335,0.005 -0.0342,0.007 -0.008,5.7e-4 -0.0343,0.009 -0.0342,0.0101 -0.0342,0.0113 -0.0336,0.0126 -0.0335,0.014 -0.0311,0.0143 -4e-4,1.6e-4 -0.0319,0.0162 -0.0311,0.0173 -0.0304,0.0182 -0.0287,0.0191 -0.0279,0.02 -0.0272,0.021 -0.0144,0.0122 -0.0256,0.0222 -0.024,0.0228 -0.0224,0.0233 -0.0208,0.0237 -0.0192,0.024 -0.0184,0.0242 -0.0168,0.0243 -0.0152,0.0245 -0.0137,0.0245 -0.012,0.0245 -0.0103,0.0245 -0.009,0.0245", + "fill": { + "paint": "transparent" + }, + "id": "path784", + "name": "path784", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 80.556718,98.782454 -0.0104,-0.01824 -0.012,-0.01793 -0.0128,-0.01748 -0.0145,-0.01695 -0.0161,-0.01635 -0.0168,-0.01553 -0.0168,-0.01366 -0.0184,-0.01358 -0.02,-0.0129 -0.0208,-0.01207 -0.0224,-0.01117 -0.0232,-0.01035 -0.0247,-0.009 -0.02,-0.0067 -0.0264,-0.008 -0.0272,-0.0067 -0.0279,-0.0052 -0.0296,-0.0037 -0.0303,-0.003 -0.0312,-0.0022 -0.0128,-3e-4 -0.0319,1.35e-4 -0.0327,0.0022 -0.0327,0.003 -0.0335,0.0052 -0.0335,0.0052 -0.0342,0.0067 -0.008,5.7e-4 -0.0342,0.009 -0.0342,0.01006 -0.0342,0.01132 -0.0335,0.01261 -0.0336,0.01396 -0.0312,0.01425 -4e-4,1.95e-4 -0.0319,0.01613 -0.0311,0.01725 -0.0304,0.01816 -0.0287,0.01906 -0.0279,0.02003 -0.0272,0.02101 -0.0144,0.01222 -0.0256,0.02221 -0.024,0.02281 -0.0224,0.02342 -0.0208,0.02372 -0.0193,0.02402 -0.0184,0.02424 -0.0168,0.02431 -0.0152,0.02454 -0.0136,0.02454 -0.0121,0.02454 -0.0103,0.02447 -0.009,0.02447", + "fill": { + "paint": "transparent" + }, + "id": "path785", + "name": "path785", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 79.320868,99.066054 v 0.009 l -0.008,0.02402 -0.008,0.02387 v 0.02357 0.02312 l -5e-4,0.02266 5e-4,0.02206 v 0.01132 0.02191 l 0.008,0.02153 0.008,0.02116 0.008,0.02041 0.008,0.01973 0.009,0.01891", + "fill": { + "paint": "transparent" + }, + "id": "path786", + "name": "path786", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 84.244188,98.782454 -0.0103,-0.01824 -0.0113,-0.01793 -0.0127,-0.01748 -0.0144,-0.01695 -0.016,-0.01635 -0.0168,-0.01553 -0.0168,-0.01366 -0.0184,-0.01358 -0.02,-0.0129 -0.0208,-0.01207 -0.0224,-0.01117 -0.0232,-0.01035 -0.0247,-0.009 -0.0192,-0.0067 -0.0264,-0.008 -0.0272,-0.0067 -0.028,-0.0052 -0.0296,-0.0037 -0.0303,-0.003 -0.0311,-0.0022 -0.0128,-3e-4 -0.032,1.35e-4 -0.0328,0.0022 -0.0327,0.003 -0.0335,0.0052 -0.0336,0.0052 -0.0343,0.0067 -0.008,5.7e-4 -0.0343,0.009 -0.0343,0.01006 -0.0343,0.01132 -0.0335,0.01261 -0.0336,0.01396 -0.0311,0.01425 -4e-4,1.95e-4 -0.0319,0.01613 -0.0312,0.01725 -0.0303,0.01816 -0.0287,0.01906 -0.028,0.02003 -0.0272,0.02101 -0.0152,0.01222 -0.0256,0.02221 -0.024,0.02281 -0.0224,0.02342 -0.0208,0.02372 -0.0192,0.02402 -0.0176,0.02424 -0.016,0.02431 -0.0152,0.02454 -0.0136,0.02454 -0.0121,0.02454 -0.0103,0.02447 -0.009,0.02447", + "fill": { + "paint": "transparent" + }, + "id": "path787", + "name": "path787", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 80.680158,100.55182 v 0.009 l -0.008,0.024 -0.008,0.0239 v 0.0236 0.0231 l -5e-4,0.0227 4.8e-4,0.0222 v 0.0113 0.0219 0.0215 l 0.008,0.0212 0.008,0.0206 0.008,0.0197 0.009,0.0189", + "fill": { + "paint": "transparent" + }, + "id": "path788", + "name": "path788", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 82.591918,98.865945 -0.008,0.02221 -0.009,0.03181 -0.008,0.03151 -0.008,0.03113 v 0.03061 0.02484 l -3.2e-4,0.03016 v 0.02956 0.02904 l 0.008,0.02835 0.008,0.02431 0.008,0.02761 0.009,0.027 0.0103,0.02626 0.012,0.02551 0.0136,0.02484 0.0152,0.02424 0.0168,0.02364 0.0176,0.02273 0.0168,0.01913 0.02,0.02101 0.0216,0.02026 0.0232,0.01951 0.0247,0.01861 0.0216,0.01455 0.0272,0.0168 0.0287,0.01575 0.0296,0.01471 0.0311,0.01358 0.0232,0.009 0.0335,0.01162 0.0343,0.01042 0.0359,0.009 0.0367,0.008 0.0208,0.0037 0.0391,0.006 0.04,0.0052 0.0407,0.003 0.0415,0.0022 0.0176,1.5e-4 0.0431,-5.7e-4 0.0431,-0.0022 0.0439,-0.0037 0.0448,-0.0052 0.0448,-0.0067 0.0448,-0.009 0.0455,-0.01042 0.0455,-0.012 0.0232,-0.0067 0.0455,-0.01448 0.0448,-0.0159 0.0448,-0.0174 0.0439,-0.01891 0.0431,-0.02034 0.0424,-0.02183 0.012,-0.0067 0.0415,-0.02357 0.0407,-0.02484 0.02,-0.01298 0.0384,-0.02626 0.0367,-0.02716 0.0351,-0.0279 0.0336,-0.02873 0.0319,-0.02956 0.0303,-0.03016 0.0287,-0.03083 0.0272,-0.03151 0.024,-0.02971 0.024,-0.03226 0.0224,-0.03241 0.0208,-0.03256 0.0184,-0.03263 0.0168,-0.03263 0.0152,-0.03248 0.0128,-0.03241 0.0112,-0.03226", + "fill": { + "paint": "transparent" + }, + "id": "path789", + "name": "path789", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 82.039348,102.03761 v 0.009 l -0.008,0.024 -0.008,0.0239 v 0.0236 0.0231 l -5e-4,0.0227 5e-4,0.0222 5e-4,0.0113 v 0.0219 l 0.008,0.0216 0.008,0.0212 0.008,0.0206 0.008,0.0197 0.009,0.0189", + "fill": { + "paint": "transparent" + }, + "id": "path790", + "name": "path790", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 84.469428,98.865945 0.008,-0.02213 0.008,-0.03188 0.008,-0.03151 0.008,-0.03113 v -0.03076 -0.02484 l 1.6e-4,-0.03016 v -0.02956 -0.02896 l -0.008,-0.02837 -0.008,-0.02431 -0.008,-0.0276 -0.009,-0.02701 -0.0103,-0.02634 -0.012,-0.02544 -0.0136,-0.02484 -0.0152,-0.02424 -0.0168,-0.02364 -0.0184,-0.02273 -0.0168,-0.01914 -0.02,-0.02101 -0.0216,-0.02026 -0.0232,-0.01951 -0.0247,-0.01861 -0.0216,-0.01456 -0.0272,-0.0168 -0.0287,-0.01568 -0.0296,-0.01471 -0.0311,-0.01373 -0.0232,-0.009 -0.0336,-0.01162 -0.0343,-0.01043 -0.0359,-0.009 -0.0367,-0.008 -0.0216,-0.0037 -0.0384,-0.006 -0.04,-0.0052 -0.0407,-0.003 -0.0415,-0.0022 -0.0176,-1.43e-4 -0.0431,5.63e-4 -0.0431,0.0022 -0.0439,0.0037 -0.0448,0.0052 -0.0448,0.0067 -0.0448,0.009 -0.0455,0.01042 -0.0455,0.012 -0.0232,0.0067 -0.0455,0.01441 -0.0448,0.0159 -0.0448,0.0174 -0.0439,0.01891 -0.0431,0.02033 -0.0424,0.02183 -0.012,0.0067 -0.0415,0.02357 -0.0407,0.02484 -0.02,0.01298 -0.0383,0.02625 -0.0367,0.02716 -0.0351,0.02791 -0.0335,0.02874 -0.0319,0.02956 -0.0303,0.03016 -0.0287,0.03083 -0.0272,0.03158 -0.024,0.02993 -0.024,0.03226 -0.0224,0.03248 -0.0208,0.03256 -0.0184,0.03263 -0.0168,0.03256 -0.0152,0.03248 -0.0127,0.03241 -0.0113,0.03226", + "fill": { + "paint": "transparent" + }, + "id": "path791", + "name": "path791", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 80.263568,100.35174 -0.008,0.0222 -0.008,0.0318 -0.008,0.0315 -0.008,0.0311 v 0.0308 0.0248 l -3.2e-4,0.0302 v 0.0296 0.029 l 0.008,0.0284 0.008,0.0243 0.008,0.0276 0.009,0.027 0.0103,0.0263 0.0121,0.0254 0.0137,0.0248 0.0152,0.0242 0.0168,0.0236 0.0176,0.0227 0.0168,0.0191 0.02,0.021 0.0216,0.0203 0.0232,0.0195 0.0247,0.0186 0.0216,0.0146 0.0272,0.0167 0.0287,0.0158 0.0295,0.0147 0.0311,0.0137 0.0224,0.009 0.0335,0.0116 0.0343,0.0104 0.036,0.009 0.0367,0.008 0.0208,0.004 0.0391,0.006 0.04,0.005 0.0407,0.003 0.0415,0.002 0.0176,1.4e-4 0.0431,-5.8e-4 0.0431,-0.002 0.0439,-0.004 0.0448,-0.005 0.0448,-0.007 0.0448,-0.009 0.0455,-0.0104 0.0455,-0.012 0.0232,-0.007 0.0455,-0.0144 0.0448,-0.0159 0.0439,-0.0175 0.0439,-0.0189 0.0431,-0.0203 0.0424,-0.0218 0.012,-0.007 0.0415,-0.0236 0.0407,-0.0248 0.02,-0.013 0.0383,-0.0263 0.0367,-0.0272 0.0352,-0.0279 0.0335,-0.0287 0.0319,-0.0296 0.0303,-0.0302 0.0287,-0.0308 0.027,-0.0315 0.024,-0.0299 0.024,-0.0323 0.0224,-0.0324 0.0208,-0.0326 0.0184,-0.0326 0.0168,-0.0326 0.0152,-0.0326 0.0127,-0.0324 0.0113,-0.0323", + "fill": { + "paint": "transparent" + }, + "id": "path792", + "name": "path792", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 79.587478,101.75399 -0.0103,-0.0182 -0.0112,-0.0179 -0.0128,-0.0175 -0.0145,-0.017 -0.0152,-0.0163 -0.0168,-0.0155 -0.0168,-0.0137 -0.0185,-0.0137 -0.02,-0.0129 -0.0208,-0.012 -0.0224,-0.0112 -0.0232,-0.0102 -0.0247,-0.009 -0.0193,-0.007 -0.0264,-0.008 -0.0271,-0.007 -0.028,-0.005 -0.0296,-0.004 -0.0303,-0.003 -0.0311,-0.002 -0.0128,-3.2e-4 -0.0319,1.6e-4 -0.0328,0.002 -0.0328,0.003 -0.0335,0.005 -0.0335,0.005 -0.0342,0.007 -0.008,5.7e-4 -0.0342,0.009 -0.0342,0.0101 -0.0342,0.0113 -0.0335,0.0126 -0.0335,0.014 -0.0311,0.0142 -4e-4,1.7e-4 -0.0318,0.0162 -0.0312,0.0173 -0.0303,0.0181 -0.0287,0.0191 -0.028,0.02 -0.0272,0.021 -0.0144,0.0122 -0.0256,0.0222 -0.024,0.0228 -0.0224,0.0233 -0.0208,0.0237 -0.0192,0.024 -0.0176,0.0242 -0.0168,0.0243 -0.0152,0.0245 -0.0137,0.0245 -0.0121,0.0245 -0.0103,0.0245 -0.009,0.0245", + "fill": { + "paint": "transparent" + }, + "id": "path793", + "name": "path793", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 82.140978,100.35174 0.008,-0.0222 0.009,-0.0319 0.008,-0.0315 0.008,-0.0311 v -0.0308 -0.0248 l 3.1e-4,-0.0302 v -0.0296 -0.029 l -0.008,-0.0284 -0.008,-0.0243 -0.008,-0.0276 -0.009,-0.02701 -0.0103,-0.02626 -0.0121,-0.02544 -0.0136,-0.02484 -0.0152,-0.02424 -0.0168,-0.02364 -0.0176,-0.02273 -0.0168,-0.01913 -0.02,-0.02101 -0.0216,-0.02033 -0.0232,-0.01951 -0.0247,-0.01861 -0.0216,-0.01456 -0.0272,-0.0168 -0.0287,-0.01583 -0.0296,-0.01471 -0.0312,-0.01373 -0.0232,-0.009 -0.0336,-0.01162 -0.0343,-0.01042 -0.036,-0.009 -0.0367,-0.008 -0.0208,-0.0037 -0.0383,-0.006 -0.04,-0.0052 -0.0407,-0.003 -0.0415,-0.0022 -0.0176,-1.28e-4 -0.0431,5.56e-4 -0.0431,0.0022 -0.0439,0.0037 -0.0448,0.0052 -0.0448,0.0067 -0.0448,0.009 -0.0455,0.01042 -0.0455,0.012 -0.0232,0.0067 -0.0455,0.01441 -0.0448,0.0159 -0.0448,0.0174 -0.0439,0.01891 -0.0431,0.02033 -0.0424,0.02183 -0.012,0.0067 -0.0415,0.02357 -0.0407,0.02484 -0.02,0.01298 -0.0384,0.02626 -0.0367,0.02716 -0.0352,0.0279 -0.0335,0.02873 -0.0319,0.02956 -0.0303,0.03016 -0.0287,0.03083 -0.0272,0.0315 -0.024,0.0299 -0.024,0.0323 -0.0224,0.0325 -0.02,0.0326 -0.0184,0.0326 -0.0168,0.0326 -0.0152,0.0326 -0.0128,0.0325 -0.0112,0.0323", + "fill": { + "paint": "transparent" + }, + "id": "path794", + "name": "path794", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 78.904288,98.865945 -0.008,0.02221 -0.009,0.03181 -0.008,0.03151 -0.008,0.03113 v 0.03061 0.02484 l -1.6e-4,0.03016 v 0.02956 0.02904 l 0.008,0.02835 0.008,0.02431 0.008,0.02761 0.009,0.027 0.0105,0.02626 0.0121,0.02551 0.0137,0.02484 0.0152,0.02424 0.0168,0.02364 0.0176,0.02273 0.0168,0.01913 0.0208,0.02101 0.0216,0.02026 0.0232,0.01951 0.0248,0.01861 0.0216,0.01455 0.0272,0.0168 0.0287,0.01575 0.0296,0.01471 0.0311,0.01358 0.0224,0.009 0.0336,0.01162 0.0342,0.01042 0.036,0.009 0.0367,0.008 0.0216,0.0037 0.0384,0.006 0.04,0.0052 0.0408,0.003 0.0415,0.0022 0.0176,1.5e-4 0.0431,-5.7e-4 0.0431,-0.0022 0.0439,-0.0037 0.0448,-0.0052 0.0448,-0.0067 0.0448,-0.009 0.0455,-0.01042 0.0455,-0.012 0.0232,-0.0067 0.0455,-0.01448 0.0448,-0.0159 0.0448,-0.0174 0.0439,-0.01891 0.0431,-0.02034 0.0424,-0.02183 0.012,-0.0067 0.0415,-0.02357 0.0407,-0.02484 0.02,-0.01298 0.0384,-0.02626 0.0367,-0.02716 0.0351,-0.0279 0.0335,-0.02873 0.032,-0.02956 0.0303,-0.03016 0.0287,-0.03083 0.028,-0.03151 0.024,-0.02971 0.024,-0.03226 0.0224,-0.03241 0.0208,-0.03256 0.0184,-0.03263 0.0168,-0.03263 0.0152,-0.03248 0.0128,-0.03241 0.0112,-0.03226", + "fill": { + "paint": "transparent" + }, + "id": "path795", + "name": "path795", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 80.781778,98.865945 v -0.008 l 0.009,-0.02956 0.008,-0.02941 0.008,-0.02911 0.008,-0.02875 v -0.02835 -0.02792 l -2.4e-4,-0.02745 -5e-4,-0.01305 v -0.02701 -0.02685 l -0.008,-0.02634 -0.008,-0.02581 -0.008,-0.02521 -0.009,-0.02454 -0.0104,-0.02387 -0.0112,-0.02327 -0.0128,-0.02296 -0.0144,-0.02243 -0.0152,-0.02183 -0.0168,-0.02123 -0.0176,-0.02056 -0.0192,-0.01973 -0.01,-0.009 -0.02,-0.01846 -0.0216,-0.01771 -0.0232,-0.01703 -0.0239,-0.01635 -0.0256,-0.01545 -0.0263,-0.01463 -0.028,-0.01366 -0.0103,-0.0052", + "fill": { + "paint": "transparent" + }, + "id": "path796", + "name": "path796", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 80.454438,98.176636 -0.0294,-0.01162 -0.0312,-0.01065 -0.0319,-0.01002 -0.0334,-0.009 -0.0343,-0.008 -0.0351,-0.006 -0.0359,-0.0052 -0.0367,-0.0037 -0.0384,-0.0022 -0.0383,-0.0022 -0.0391,-3e-5 -0.04,0.0022 -0.0103,5.48e-4 -0.0407,0.003 -0.0407,0.0052 -0.0407,0.006 -0.0415,0.0067 -0.0415,0.009 -0.0359,0.008 -0.0424,0.01117 -0.0424,0.01252 -0.0415,0.01381 -0.0415,0.01523 -0.0407,0.0165 -0.028,0.01222 -0.04,0.01854 -0.0272,0.01343 -0.0391,0.02063 -0.0383,0.02176 -0.0376,0.02273 -0.0367,0.02371 -0.0287,0.02026 -0.0342,0.02514 -0.0327,0.02581 -0.0311,0.02656 -0.0303,0.02723 -0.0287,0.02791 -0.008,0.0052 -0.0272,0.02866 -0.0256,0.02905 -0.0247,0.02941 -0.0232,0.02964 -0.0217,0.02993 -0.02,0.03001 -0.0185,0.03016 -0.0168,0.03016 -0.0152,0.03016 -0.0137,0.03001 -0.012,0.02993 -0.0105,0.02993", + "fill": { + "paint": "transparent" + }, + "id": "path797", + "name": "path797", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 77.935288,101.8375 -0.008,0.0222 -0.009,0.0319 -0.008,0.0315 -0.008,0.0311 v 0.0308 0.0248 l -2.3e-4,0.0302 v 0.0296 0.029 l 0.008,0.0284 0.008,0.0243 0.008,0.0276 0.009,0.027 0.0103,0.0263 0.0121,0.0254 0.0137,0.0248 0.0152,0.0242 0.0168,0.0236 0.0176,0.0227 0.0168,0.0191 0.02,0.021 0.0216,0.0203 0.0232,0.0195 0.0248,0.0186 0.0216,0.0145 0.0272,0.0168 0.0287,0.0157 0.0303,0.0147 0.0311,0.0137 0.0224,0.009 0.0335,0.0116 0.0343,0.0104 0.0359,0.009 0.0367,0.008 0.0216,0.004 0.0383,0.006 0.04,0.005 0.0408,0.003 0.0415,0.002 0.0176,1.4e-4 0.0431,-5.6e-4 0.0431,-0.002 0.0439,-0.004 0.0448,-0.005 0.0448,-0.007 0.0448,-0.009 0.0455,-0.0104 0.0455,-0.012 0.0232,-0.007 0.0455,-0.0144 0.0448,-0.0159 0.0448,-0.0174 0.0439,-0.0189 0.0431,-0.0203 0.0424,-0.0218 0.012,-0.007 0.0415,-0.0236 0.0407,-0.0248 0.02,-0.0131 0.0384,-0.0263 0.0367,-0.027 0.0352,-0.0279 0.0335,-0.0287 0.0319,-0.0296 0.0303,-0.0302 0.0287,-0.0308 0.0272,-0.0315 0.024,-0.0299 0.024,-0.0323 0.0224,-0.0325 0.02,-0.0326 0.0184,-0.0326 0.0168,-0.0326 0.0152,-0.0325 0.0128,-0.0323 0.0112,-0.0323", + "fill": { + "paint": "transparent" + }, + "id": "path798", + "name": "path798", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 78.213578,97.513555 0.20325,-0.125702 0.20701,-0.121397 0.21046,-0.116947 0.21388,-0.112379 0.21692,-0.107658 0.21979,-0.102841 0.22172,-0.09754 0.22483,-0.09282 0.0112,-0.0052 0.22635,-0.08712 0.22738,-0.08161 0.22843,-0.07611 0.2293,-0.07053 0.22987,-0.0649 0.23026,-0.05928 0.23058,-0.05365 0.23074,-0.04809 0.0583,-0.01132 0.22915,-0.04067 0.22747,-0.03481 0.22595,-0.02911 0.22419,-0.02333 0.22236,-0.01764 0.22043,-0.012 0.21859,-0.0067 0.21637,-5.63e-4 0.11744,0.0022 0.21198,0.008 0.20861,0.01276 0.20525,0.01801 0.20174,0.02312 0.19798,0.02813 0.19407,0.03316 0.19031,0.03796 0.18625,0.04277", + "fill": { + "paint": "transparent" + }, + "id": "path799", + "name": "path799", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 85.332148,96.119126 0.0424,0.01042 0.13495,0.03564 0.13279,0.03796 0.13031,0.04044 0.12784,0.04299 0.12535,0.0454 0.12264,0.04756 0.12017,0.04974 0.1176,0.05199 0.0632,0.02926 0.11369,0.05537 0.11114,0.05762 0.10842,0.05958 0.10578,0.0616 0.10306,0.06347 0.10011,0.06542 0.0975,0.06715 0.0946,0.06903 0.0679,0.05207 0.0901,0.0724 0.0875,0.0742 0.0848,0.07591 0.0819,0.07761 0.0791,0.07912 0.0759,0.08062 0.0735,0.08201 0.0703,0.08331 0.0679,0.08522 0.0527,0.07038 0.0631,0.08852 0.0599,0.09003 0.0575,0.09153 0.0544,0.09274 0.0511,0.09393 0.0487,0.09483 0.0448,0.09574", + "fill": { + "paint": "transparent" + }, + "id": "path800", + "name": "path800", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 88.658888,98.925331 0.02,0.06812 0.0184,0.06879 0.0176,0.06933 0.016,0.06993 0.0144,0.07038 0.0136,0.0709 0.0121,0.0712 0.008,0.03173 0.0103,0.0718 0.009,0.0724 0.008,0.07278 0.008,0.07337 0.008,0.07382 v 0.07428 0.07458 l 2.3e-4,0.02837", + "fill": { + "paint": "transparent" + }, + "id": "path801", + "name": "path801", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 88.816528,100.15061 v 0.0761 l -0.008,0.0765 -0.008,0.0768 -0.008,0.0558 -0.009,0.0774 -0.0103,0.0778 -0.0113,0.0782 -0.0128,0.0785 -0.0144,0.0789 -0.016,0.0792 -0.0176,0.0795 -0.0192,0.0797 -0.02,0.0799 -0.0216,0.0801 -0.0232,0.079", + "fill": { + "paint": "transparent" + }, + "id": "path802", + "name": "path802", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 88.547828,101.53338 -0.0296,0.0812 -0.0311,0.0813 -0.0327,0.0814 -0.02,0.0481 -0.0351,0.0816 -0.0367,0.0817 -0.0383,0.0818 -0.0391,0.0818 -0.0415,0.0819 -0.0424,0.0819 -0.0439,0.0819 -0.0455,0.0818 -0.0472,0.0818 -0.0487,0.0817 -0.0288,0.0475", + "fill": { + "paint": "transparent" + }, + "id": "path803", + "name": "path803", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 87.881658,102.85501 -0.0544,0.0814 -0.0559,0.0811 -0.0575,0.0809 -0.0256,0.0347 -0.0599,0.0806 -0.0615,0.0804 -0.0631,0.0801 -0.0647,0.0798 -0.0663,0.0795 -0.0671,0.0791 -0.0687,0.0787 -0.0703,0.0784 -0.0719,0.0779 -0.0735,0.0774 -0.0103,0.0112", + "fill": { + "paint": "transparent" + }, + "id": "path804", + "name": "path804", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 86.930078,104.01756 -0.0144,0.0149 -0.0152,0.0149 -0.0152,0.0148 -0.0152,0.0148 -0.0152,0.0149 -0.0152,0.0147 -0.0152,0.0147 -0.0152,0.0147 -0.0152,0.0147 -0.0152,0.0146", + "fill": { + "paint": "transparent" + }, + "id": "path805", + "name": "path805", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 84.212318,105.9239 -0.18393,0.0857 -0.2138,0.0943 -0.21565,0.0894 -0.21739,0.0846 -0.21876,0.0796 -0.22004,0.0746 -0.22091,0.0694 -0.22156,0.0643 -0.21652,0.0577 -0.22147,0.0538 -0.22123,0.0484 -0.22093,0.0431 v 5.7e-4 l -0.22011,0.0377 -0.21907,0.0325 -0.21795,0.027 -0.21693,0.0218 -0.0535,0.005 -0.21405,0.0152 -0.21173,0.0101 -0.20925,0.005 -0.20669,-2.2e-4 -0.20406,-0.005 -0.2015,-0.0102 -0.19878,-0.0152 -0.19607,-0.02 -0.10746,-0.0131 -0.19087,-0.0273 -0.18735,-0.0318 -0.18353,-0.0364 -0.17978,-0.0407 -0.17584,-0.0451 -0.17161,-0.0491 -0.16772,-0.0532 -0.1633,-0.0573", + "fill": { + "paint": "transparent" + }, + "id": "path806", + "name": "path806", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 77.513918,106.51693 -0.0224,-0.008 -0.10609,-0.0407 -0.10427,-0.0423 -0.10242,-0.044 -0.10043,-0.0458 -0.0985,-0.0473 -0.0965,-0.0488 -0.0944,-0.0505 -0.0328,-0.0182 -0.0919,-0.0524 -0.0899,-0.054 -0.088,-0.0555 -0.0858,-0.0569 -0.0839,-0.0583 -0.0817,-0.0595 -0.0799,-0.0609 -0.0367,-0.0291 -0.0767,-0.063 -0.0751,-0.0642 -0.0727,-0.0655 -0.0703,-0.0667 -0.0687,-0.0679 -0.0663,-0.069 -0.064,-0.07 -0.0335,-0.038 -0.0615,-0.0722 -0.0592,-0.0734 -0.0575,-0.0746 -0.0551,-0.0756 -0.0527,-0.0766 -0.0503,-0.0775 -0.0487,-0.0783", + "fill": { + "paint": "transparent" + }, + "id": "path807", + "name": "path807", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 75.186278,104.67823 -0.0743,-0.13336 -0.0687,-0.13696 -0.0631,-0.14024 -0.0568,-0.14304 -0.0472,-0.13338 -0.0448,-0.14697 -0.0383,-0.14855 -0.0327,-0.15144 -0.0264,-0.15408 -0.02,-0.1565 -0.0137,-0.15855 -0.008,-0.14096 v -0.16158 l 0.008,-0.16377 0.0121,-0.16581 0.0184,-0.16759 0.0256,-0.16918 0.024,-0.12968 0.0376,-0.1712 0.0448,-0.17248 0.052,-0.17361 0.0592,-0.17462 0.0664,-0.17547 0.0439,-0.10775 0.0775,-0.17644 0.085,-0.17662 0.0923,-0.17672 0.0996,-0.17667 0.10698,-0.17649 0.0503,-0.079 0.1177,-0.17593 0.12479,-0.174726 0.13191,-0.173535 0.13902,-0.172205 0.14629,-0.170847 0.0455,-0.05147 0.15571,-0.16889 0.16227,-0.166525 0.16891,-0.163968 0.17522,-0.161169 0.18144,-0.158205 0.18768,-0.154971 0.1935,-0.151558 0.19928,-0.147889 0.20469,-0.14392 0.20988,-0.139749 0.0583,-0.03766", + "fill": { + "paint": "transparent" + }, + "id": "path808", + "name": "path808", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 75.186278,104.678 0.0472,0.0782 0.0496,0.0776 0.052,0.0769 0.0544,0.0762 0.0568,0.0754 0.0592,0.0745 0.0616,0.0736 0.0631,0.0726 0.0655,0.0714 0.0679,0.0702 0.0695,0.0689 0.0719,0.0675 0.0735,0.0661 0.0751,0.0645 0.0775,0.0629 0.008,0.006 0.0791,0.061 0.0811,0.0598 0.0833,0.0585 0.0854,0.0572 0.0877,0.0559 0.0898,0.0545 0.0919,0.053 0.0941,0.0517 0.0962,0.0502 0.0982,0.0487 0.1002,0.047 0.1021,0.0452 0.10411,0.0437 0.10578,0.0419 0.0759,0.0285", + "fill": { + "paint": "transparent" + }, + "id": "path809", + "name": "path809", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 77.640168,106.56168 0.11335,0.0375 0.11531,0.0358 0.11711,0.0338 0.11914,0.0317 0.12089,0.0299 0.1228,0.0278 0.0112,0.002 0.1248,0.0257 0.12647,0.0236 0.12816,0.0215 0.12982,0.0192 0.13137,0.0171 0.13286,0.0149 0.13447,0.0127 0.1359,0.0104 0.13734,0.008 0.13863,0.006 0.13998,0.004 0.14125,0.002 0.14237,-0.002 0.1435,-0.004 0.1443,-0.006 0.14533,-0.008 0.14614,-0.0108 0.0853,-0.008", + "fill": { + "paint": "transparent" + }, + "id": "path810", + "name": "path810", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 80.767558,106.88655 0.17865,-0.0182 0.17929,-0.0218 0.18008,-0.0252 0.18073,-0.0288 0.18144,-0.0325 0.18217,-0.0362 0.0343,-0.008 0.18289,-0.0406 0.18297,-0.0441 0.18271,-0.0478 0.18273,-0.0512 0.18216,-0.0548 0.18185,-0.0583 0.18104,-0.0617 0.18033,-0.0652 0.17937,-0.0686 0.17842,-0.0719 0.17712,-0.0752 0.1757,-0.0784 0.17426,-0.0816 0.1725,-0.0847 0.0376,-0.0188 0.17033,-0.0884 0.16827,-0.0913 0.1661,-0.0941 0.16387,-0.0968", + "fill": { + "paint": "transparent" + }, + "id": "path811", + "name": "path811", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 85.293798,105.32579 0.0987,-0.0634 0.1014,-0.0669 0.10026,-0.0679 0.0991,-0.0689 0.0966,-0.0689 0.0968,-0.0708 0.0954,-0.0718 0.0942,-0.0726 0.0928,-0.0734 0.0915,-0.0743 0.0901,-0.0751 0.0888,-0.0759 0.0872,-0.0766 0.086,-0.0773 0.0845,-0.078 0.083,-0.0787", + "fill": { + "paint": "transparent" + }, + "id": "path812", + "name": "path812", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 86.950528,103.99679 0.0615,-0.0629 0.0954,-0.10064 0.0927,-0.10117 0.0902,-0.10179 0.0876,-0.10248 0.0853,-0.10315 0.0335,-0.0419 0.0817,-0.10409 0.0791,-0.10467 0.0767,-0.10516 0.0743,-0.10555 0.0711,-0.1059 0.0687,-0.10616 0.0663,-0.10637 0.0639,-0.10651 0.0607,-0.10656 0.0583,-0.10662 0.0559,-0.10657 0.0527,-0.10652 0.0503,-0.10641 0.0479,-0.10624 0.0448,-0.10608 0.0424,-0.10585 0.04,-0.10564", + "fill": { + "paint": "transparent" + }, + "id": "path813", + "name": "path813", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 88.689008,101.06018 5e-4,-0.003 0.0232,-0.0988 0.0208,-0.0985 0.0184,-0.0981 0.016,-0.0976 0.0136,-0.0972 0.0112,-0.0966 0.01,-0.096 0.008,-0.0953 0.008,-0.0946 v -0.0939 l 4.9e-4,-0.09313 v -0.09233 -0.09143 l -0.008,-0.09063 v -0.03196 l -0.009,-0.09033 -0.0112,-0.08993 -0.0127,-0.08952 -0.0152,-0.08892 -0.0176,-0.08832 -0.0192,-0.08762 -0.0216,-0.08682 -0.0232,-0.08602 -0.0256,-0.08502 -0.0272,-0.08402 -0.0296,-0.08291 -0.0311,-0.08172 -0.0327,-0.08052 -0.0351,-0.07922", + "fill": { + "paint": "transparent" + }, + "id": "path814", + "name": "path814", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 74.923268,101.41889 -0.028,0.0889 -0.0327,0.11214 -0.0303,0.11186 -0.0272,0.11146 -0.024,0.11093 -0.0216,0.11034 -0.0184,0.1097 -0.0152,0.10895 -0.0128,0.10816 -0.01,0.10726 -0.008,0.10636 -0.008,0.10542 v 0.1044 0.10341 l 0.008,0.10235 0.008,0.10125 0.01,0.10115 v 0.0197 l 0.0128,0.10089 0.0152,0.1005 0.0184,0.0999 0.0208,0.0992 0.0232,0.0985 0.0264,0.0975 0.0287,0.0965 0.0312,0.0953 0.0335,0.094 0.0359,0.0926 0.0383,0.0912 0.0407,0.0896 0.0431,0.0879 0.0448,0.0862 0.0472,0.0844", + "fill": { + "paint": "transparent" + }, + "id": "path815", + "name": "path815", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 88.485838,98.470529 -0.0455,-0.09524 -0.0487,-0.09443 -0.052,-0.09343 -0.0551,-0.09233 -0.0575,-0.09103 -0.0607,-0.08962 -0.0631,-0.08812 -0.0503,-0.0667 -0.0679,-0.08492 -0.0703,-0.08301 -0.0735,-0.08161 -0.0759,-0.08012 -0.0791,-0.07851 -0.0817,-0.07691 -0.0845,-0.0752 -0.0872,-0.07338 -0.0897,-0.07158 -0.0663,-0.05064 -0.0942,-0.0682 -0.0971,-0.0667 -0.1002,-0.0649 -0.10298,-0.06318 -0.10602,-0.06138 -0.10883,-0.0595 -0.1116,-0.05747 -0.11441,-0.05537 -0.11697,-0.05334 -0.1196,-0.05124 -0.12208,-0.04899 -0.12448,-0.04659 -0.12671,-0.04405 -0.12863,-0.04164 -0.13064,-0.03909 -0.13239,-0.03639 -0.10283,-0.02611", + "fill": { + "paint": "transparent" + }, + "id": "path816", + "name": "path816", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 85.335818,96.120101 -0.18831,-0.04337 -0.19184,-0.03835 -0.19526,-0.03331 -0.19863,-0.02836 -0.20222,-0.02327 -0.20541,-0.01801 -0.20861,-0.01267 -0.21173,-0.008 -0.21485,-0.0022 -0.21755,0.0037 -0.22044,0.009 -0.22283,0.01493 -0.22523,0.02063 -0.22738,0.02634 -0.22898,0.03226 -0.23059,0.03811 -0.19359,0.03624 -0.2325,0.04876 -0.23178,0.0544 -0.2313,0.05995 -0.23027,0.0655 -0.2293,0.07098 -0.2281,0.07652 -0.22676,0.08191 -0.22523,0.08731 -0.22338,0.09274 -0.22148,0.09794 -0.2194,0.103216 -0.21708,0.108312 -0.21444,0.113398 -0.21188,0.118327 -0.20893,0.123182 -0.20574,0.127962 -0.0256,0.01613", + "fill": { + "paint": "transparent" + }, + "id": "path817", + "name": "path817", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 78.169548,97.541721 -0.0559,0.03594 -0.16731,0.111275 -0.16355,0.113668 -0.15995,0.115926 -0.15612,0.118125 -0.15228,0.120249 -0.14837,0.122281 -0.14461,0.12424 -0.14054,0.126116 -0.13662,0.127931 -0.13256,0.129664 -0.12855,0.131375 -0.12456,0.132974 -0.12048,0.134593 -0.11649,0.136102 -0.008,0.0052 -0.11185,0.137152 -0.10739,0.138046 -0.10282,0.138705 -0.0981,0.139268 -0.0935,0.139699 -0.0889,0.13998 -0.0842,0.14017 -0.0799,0.14026 -0.0751,0.14024 -0.0703,0.14016 -0.0655,0.14001 -0.0607,0.13978 -0.0568,0.13953 -0.052,0.13921 -0.0472,0.13886", + "fill": { + "paint": "transparent" + }, + "id": "path818", + "name": "path818", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "cx": "58.511353", + "cy": "117.08304", + "fill": { + "opacity": "1", + "paint": "transparent" + }, + "id": "ellipse818", + "name": "ellipse818", + "rx": "4.6207089", + "ry": "3.5301664", + "stroke": { + "dasharray": "none", + "opacity": "1", + "paint": "#000000", + "width": "1.10038" + }, + "transform": "matrix(0.9696729,-0.24440635,0.20828824,0.97806749,0,0)", + "type": "ellipse" + }, + { + "d": "m 127.96396,101.63884 v -0.008", + "fill": { + "paint": "transparent" + }, + "id": "path819", + "name": "path819", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 127.96365,101.6406 v -0.0101", + "fill": { + "paint": "transparent" + }, + "id": "path820", + "name": "path820", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 127.9634,101.6406 5e-4,-0.002", + "fill": { + "paint": "transparent" + }, + "id": "path821", + "name": "path821", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 117.02433,107.11775 -0.008,-0.002", + "fill": { + "paint": "transparent" + }, + "id": "path822", + "name": "path822", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 120.22642,107.30017 0.0129,-4.6e-4", + "fill": { + "paint": "transparent" + }, + "id": "path823", + "name": "path823", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 120.20318,107.30097 0.008,-1.4e-4", + "fill": { + "paint": "transparent" + }, + "id": "path824", + "name": "path824", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 120.20334,107.30069 0.008,1.4e-4", + "fill": { + "paint": "transparent" + }, + "id": "path825", + "name": "path825", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 120.13024,107.31212 0.008,-5.6e-4", + "fill": { + "paint": "transparent" + }, + "id": "path826", + "name": "path826", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 120.13024,107.31212 0.008,-4.1e-4", + "fill": { + "paint": "transparent" + }, + "id": "path827", + "name": "path827", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 120.22651,107.29983 0.0127,-5.7e-4", + "fill": { + "paint": "transparent" + }, + "id": "path828", + "name": "path828", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 126.28533,104.76422 c 0.0575,-0.0555 0.11449,-0.11157 0.17041,-0.16847", + "fill": { + "paint": "transparent" + }, + "id": "path829", + "name": "path829", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 126.43529,104.61652 c 0.0263,-0.0268 0.0527,-0.054 0.0791,-0.0811", + "fill": { + "paint": "transparent" + }, + "id": "path830", + "name": "path830", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 117.01848,107.11562 c 0.0424,0.0155 0.0843,0.0305 0.1269,0.0451", + "fill": { + "paint": "transparent" + }, + "id": "path831", + "name": "path831", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 114.67951,105.25632 c 0,0.007 0.008,0.0138 0.012,0.0206", + "fill": { + "paint": "transparent" + }, + "id": "path832", + "name": "path832", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 119.97939,98.784079 c -0.008,-0.003 -0.0128,-0.006 -0.02,-0.008", + "fill": { + "paint": "transparent" + }, + "id": "path833", + "name": "path833", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 117.71879,98.112513 c -0.008,0.0052 -0.0128,0.008 -0.02,0.01252", + "fill": { + "paint": "transparent" + }, + "id": "path834", + "name": "path834", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 127.38687,103.45397 c 0.036,-0.0544 0.0711,-0.10909 0.10547,-0.16434", + "fill": { + "paint": "transparent" + }, + "id": "path835", + "name": "path835", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 128.05304,102.13234 c 0.0136,-0.0395 0.0272,-0.0793 0.04,-0.11914", + "fill": { + "paint": "transparent" + }, + "id": "path836", + "name": "path836", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 128.03571,102.18085 c 0.0192,-0.0541 0.0384,-0.10839 0.0559,-0.163", + "fill": { + "paint": "transparent" + }, + "id": "path837", + "name": "path837", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 128.09339,102.0132 c 0.0121,-0.0367 0.0232,-0.0735 0.0343,-0.11035", + "fill": { + "paint": "transparent" + }, + "id": "path838", + "name": "path838", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 128.09187,102.01785 c 0.0383,-0.11836 0.0727,-0.23801 0.10236,-0.35871", + "fill": { + "paint": "transparent" + }, + "id": "path839", + "name": "path839", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 128.32365,100.58611 c 4.8e-4,0.0545 -1.6e-4,0.10897 0,0.16346", + "fill": { + "paint": "transparent" + }, + "id": "path840", + "name": "path840", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 128.1641,99.524289 c -0.012,-0.0391 -0.0248,-0.07801 -0.0376,-0.116611", + "fill": { + "paint": "transparent" + }, + "id": "path841", + "name": "path841", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 128.12647,99.407678 c -0.008,-0.02281 -0.016,-0.04577 -0.024,-0.06849", + "fill": { + "paint": "transparent" + }, + "id": "path842", + "name": "path842", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 128.10226,99.339261 c -0.0311,-0.08482 -0.0655,-0.168492 -0.10258,-0.250911", + "fill": { + "paint": "transparent" + }, + "id": "path843", + "name": "path843", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 127.99967,99.088545 c 0,-0.006 -0.008,-0.01275 -0.009,-0.01906", + "fill": { + "paint": "transparent" + }, + "id": "path844", + "name": "path844", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 123.71753,106.52286 c 0.37399,-0.17858 0.73609,-0.37887 1.08404,-0.5997", + "fill": { + "paint": "transparent" + }, + "id": "path845", + "name": "path845", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 124.60958,106.04206 c 0.0631,-0.0385 0.12671,-0.0775 0.18943,-0.11731", + "fill": { + "paint": "transparent" + }, + "id": "path846", + "name": "path846", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 124.80157,105.92316 c 0.008,-0.005 0.0128,-0.008 0.02,-0.0125", + "fill": { + "paint": "transparent" + }, + "id": "path847", + "name": "path847", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 124.82138,105.91058 c 0.0751,-0.0478 0.149,-0.0964 0.22244,-0.14619", + "fill": { + "paint": "transparent" + }, + "id": "path848", + "name": "path848", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 125.04382,105.76439 c 0.0801,-0.0541 0.15929,-0.10936 0.23752,-0.16573", + "fill": { + "paint": "transparent" + }, + "id": "path849", + "name": "path849", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 122.52954,99.948606 0.0103,0.01824 0.0121,0.01794 0.0128,0.01755 0.0144,0.017 0.016,0.0163 0.0168,0.0155 0.0168,0.0136 0.0184,0.0136 0.02,0.0129 0.0208,0.0121 0.0224,0.0113 0.0232,0.0103 0.0248,0.009 0.0192,0.007 0.0264,0.008 0.0272,0.007 0.028,0.005 0.0296,0.004 0.0303,0.003 0.0312,0.002 0.0128,3e-4 0.032,-1.5e-4 0.0327,-0.002 0.0327,-0.003 0.0336,-0.005 0.0335,-0.005 0.0343,-0.007 0.008,-5.6e-4 0.0343,-0.009 0.0343,-0.0101 0.0343,-0.0113 0.0335,-0.0126 0.0336,-0.014 0.0311,-0.0143 4e-4,-1.9e-4 0.0319,-0.0162 0.0311,-0.0173 0.0303,-0.0181 0.0287,-0.0191 0.028,-0.02003 0.0272,-0.02101 0.0152,-0.01222 0.0256,-0.02221 0.024,-0.02281 0.0224,-0.02334 0.0208,-0.02387 0.02,-0.02402 0.0176,-0.02431 0.0168,-0.02432 0.0152,-0.02454 0.0136,-0.02454 0.0121,-0.02454 0.0103,-0.02454 0.009,-0.02447", + "fill": { + "paint": "transparent" + }, + "id": "path850", + "name": "path850", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 117.87283,102.92019 0.0103,0.0182 0.0112,0.0179 0.0128,0.0175 0.0145,0.017 0.0161,0.0163 0.0168,0.0155 0.0168,0.0136 0.0184,0.0137 0.02,0.0129 0.0208,0.012 0.0224,0.0112 0.0232,0.0104 0.0247,0.009 0.0192,0.007 0.0264,0.008 0.0272,0.007 0.0287,0.005 0.0296,0.004 0.0303,0.003 0.0312,0.002 0.0128,3.3e-4 0.0319,-1.6e-4 0.0328,-0.002 0.0335,-0.003 0.0336,-0.005 0.0335,-0.005 0.0342,-0.007 0.008,-5.7e-4 0.0342,-0.009 0.0342,-0.0101 0.0343,-0.0113 0.0335,-0.0126 0.0335,-0.014 0.0311,-0.0142 3.2e-4,-1.6e-4 0.0319,-0.0162 0.0311,-0.0172 0.0303,-0.0182 0.0287,-0.0191 0.028,-0.02 0.0272,-0.021 0.0152,-0.0122 0.0256,-0.0222 0.0239,-0.0228 0.0224,-0.0233 0.0208,-0.0237 0.0192,-0.024 0.0176,-0.0243 0.016,-0.0243 0.0152,-0.0245 0.0137,-0.0245 0.012,-0.0245 0.0103,-0.0245 0.009,-0.0245", + "fill": { + "paint": "transparent" + }, + "id": "path851", + "name": "path851", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 121.56047,102.92019 0.0103,0.0182 0.0121,0.0179 0.0127,0.0175 0.0144,0.017 0.016,0.0163 0.0168,0.0155 0.0168,0.0136 0.0184,0.0137 0.02,0.0129 0.0208,0.012 0.0224,0.0112 0.0232,0.0104 0.0247,0.009 0.02,0.007 0.0264,0.008 0.0272,0.007 0.0279,0.005 0.0296,0.004 0.0303,0.003 0.0311,0.002 0.0128,3.3e-4 0.0319,-1.6e-4 0.0327,-0.002 0.0327,-0.003 0.0335,-0.005 0.0336,-0.005 0.0343,-0.007 0.008,-5.7e-4 0.0343,-0.009 0.0343,-0.0101 0.0343,-0.0113 0.0336,-0.0126 0.0335,-0.014 0.0311,-0.0142 3.1e-4,-1.6e-4 0.0319,-0.0162 0.0311,-0.0172 0.0304,-0.0182 0.0287,-0.0191 0.028,-0.02 0.0272,-0.021 0.0144,-0.0122 0.0256,-0.0222 0.024,-0.0228 0.0224,-0.0233 0.0208,-0.0237 0.0192,-0.024 0.0184,-0.0243 0.0168,-0.0243 0.0152,-0.0245 0.0136,-0.0245 0.0121,-0.0245 0.0103,-0.0245 0.009,-0.0245", + "fill": { + "paint": "transparent" + }, + "id": "path852", + "name": "path852", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 120.20118,101.43441 0.0105,0.0182 0.0112,0.0179 0.0128,0.0175 0.0144,0.017 0.016,0.0163 0.0168,0.0155 0.0168,0.0136 0.0184,0.0137 0.02,0.0129 0.0208,0.0121 0.0224,0.0113 0.0232,0.0103 0.0248,0.009 0.0192,0.007 0.0263,0.008 0.0272,0.007 0.0287,0.005 0.0295,0.004 0.0303,0.003 0.0311,0.002 0.0128,3e-4 0.0319,-1.4e-4 0.0327,-0.002 0.0328,-0.003 0.0335,-0.005 0.0335,-0.005 0.0342,-0.007 0.008,-5.7e-4 0.0343,-0.009 0.0342,-0.0101 0.0342,-0.0113 0.0335,-0.0126 0.0336,-0.014 0.0311,-0.0142 4e-4,-1.8e-4 0.0319,-0.0162 0.0312,-0.0171 0.0303,-0.0182 0.0287,-0.0191 0.0279,-0.02 0.0272,-0.021 0.0152,-0.0122 0.0256,-0.0222 0.024,-0.0228 0.0224,-0.0233 0.0208,-0.0239 0.0192,-0.024 0.0176,-0.0242 0.0168,-0.0243 0.0152,-0.0245 0.0136,-0.0245 0.0121,-0.0245 0.0103,-0.0245 0.009,-0.0245", + "fill": { + "paint": "transparent" + }, + "id": "path853", + "name": "path853", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 118.84197,99.948606 0.0105,0.01824 0.0112,0.01794 0.0128,0.01755 0.0145,0.017 0.016,0.0163 0.0168,0.0155 0.0168,0.0136 0.0184,0.0136 0.02,0.0129 0.0208,0.0121 0.0224,0.0113 0.0232,0.0103 0.0247,0.009 0.0192,0.007 0.0263,0.008 0.0272,0.007 0.0287,0.005 0.0296,0.004 0.0303,0.003 0.0312,0.002 0.0128,3e-4 0.0318,-1.5e-4 0.0327,-0.002 0.0327,-0.003 0.0335,-0.005 0.0336,-0.005 0.0342,-0.007 0.008,-5.6e-4 0.0343,-0.009 0.0342,-0.0101 0.0342,-0.0113 0.0335,-0.0126 0.0335,-0.014 0.0312,-0.0143 3.2e-4,-1.9e-4 0.0319,-0.0162 0.0311,-0.0173 0.0304,-0.0181 0.0287,-0.0191 0.0279,-0.02003 0.0272,-0.02101 0.0152,-0.01222 0.0256,-0.02221 0.024,-0.02281 0.0224,-0.02334 0.0208,-0.02387 0.0192,-0.02402 0.0176,-0.02431 0.0161,-0.02432 0.0152,-0.02454 0.0137,-0.02454 0.012,-0.02454 0.0105,-0.02454 0.009,-0.02447", + "fill": { + "paint": "transparent" + }, + "id": "path854", + "name": "path854", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 119.1853,100.15974 0.0152,-0.0245 0.0168,-0.0243 0.0184,-0.0242 0.02,-0.0239 0.0216,-0.0234 0.0232,-0.0231 0.024,-0.02251 0.0112,-0.01001 0.0263,-0.02176 0.0272,-0.02086 0.0287,-0.01996 0.0296,-0.01906 0.0303,-0.01816 0.032,-0.0171 0.0327,-0.01605 0.008,-0.003 0.008,-0.003 0.0336,-0.01433 0.0335,-0.01313 0.0335,-0.0117 0.0342,-0.01042 0.0342,-0.009 0.0343,-0.008 0.0343,-0.006 0.0152,-0.0022 0.0335,-0.0052 0.0335,-0.003 0.0327,-0.0022 0.0318,-2.77e-4 0.0312,5.71e-4 0.0303,0.0022 0.0296,0.0037", + "fill": { + "paint": "transparent" + }, + "id": "path855", + "name": "path855", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 120.07766,99.665012 v -0.009 l 0.008,-0.02402 0.008,-0.02386 v -0.02357 -0.02312 l 5e-4,-0.02266 -5e-4,-0.02206 -5e-4,-0.0114 v -0.02191 l -0.008,-0.02153 -0.008,-0.02116 -0.008,-0.02056 -0.008,-0.01974 -0.009,-0.01891", + "fill": { + "paint": "transparent" + }, + "id": "path856", + "name": "path856", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 120.54449,101.64552 0.0152,-0.0245 0.0168,-0.0243 0.0184,-0.0242 0.02,-0.0239 0.0217,-0.0234 0.0232,-0.0231 0.024,-0.0227 0.0112,-0.0101 0.0263,-0.0218 0.0272,-0.0209 0.0279,-0.02 0.0294,-0.0191 0.0303,-0.0182 0.0311,-0.017 0.0327,-0.016 0.008,-0.003 0.008,-0.003 0.0335,-0.0143 0.0335,-0.0131 0.0336,-0.0118 0.0342,-0.0104 0.0343,-0.009 0.0343,-0.008 0.0343,-0.006 0.0152,-0.002 0.0336,-0.005 0.0335,-0.003 0.0327,-0.002 0.0319,-2.5e-4 0.0311,5.6e-4 0.0303,0.002 0.0296,0.004", + "fill": { + "paint": "transparent" + }, + "id": "path857", + "name": "path857", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 121.43695,101.15078 v -0.009 l 0.008,-0.024 0.008,-0.0239 v -0.0234 -0.0231 -0.0227 l -5e-4,-0.0221 v -0.0113 -0.0219 -0.0216 l -0.008,-0.0212 -0.008,-0.0204 -0.008,-0.0197 -0.009,-0.0189", + "fill": { + "paint": "transparent" + }, + "id": "path858", + "name": "path858", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 121.90378,103.13132 0.0152,-0.0245 0.0168,-0.0243 0.0184,-0.0242 0.02,-0.0239 0.0216,-0.0234 0.0232,-0.0231 0.024,-0.0225 0.0112,-0.0101 0.0264,-0.0218 0.0272,-0.0209 0.0288,-0.02 0.0295,-0.0191 0.0304,-0.0182 0.0312,-0.0171 0.0327,-0.016 0.008,-0.003 0.008,-0.003 0.0335,-0.0145 0.0336,-0.0131 0.0336,-0.0117 0.0343,-0.0104 0.0343,-0.009 0.0343,-0.008 0.0343,-0.006 0.0152,-0.002 0.0336,-0.005 0.0336,-0.003 0.0328,-0.002 0.0319,-2.6e-4 0.0312,5.8e-4 0.0311,0.002 0.0295,0.004", + "fill": { + "paint": "transparent" + }, + "id": "path859", + "name": "path859", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 122.79615,102.63657 v -0.009 l 0.008,-0.024 0.008,-0.0239 v -0.0236 -0.0231 l 5e-4,-0.0227 -5e-4,-0.0222 -5e-4,-0.0113 v -0.0219 l -0.008,-0.0216 -0.008,-0.0212 -0.008,-0.0206 -0.008,-0.0197 -0.009,-0.0189", + "fill": { + "paint": "transparent" + }, + "id": "path860", + "name": "path860", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 118.21615,103.13132 0.0152,-0.0245 0.0168,-0.0243 0.0184,-0.0242 0.02,-0.0239 0.0216,-0.0234 0.0232,-0.0231 0.024,-0.0225 0.0113,-0.0101 0.0263,-0.0218 0.0272,-0.0209 0.0287,-0.02 0.0296,-0.0191 0.0303,-0.0182 0.0319,-0.0171 0.0319,-0.016 0.008,-0.003 0.008,-0.003 0.0335,-0.0145 0.0336,-0.0131 0.0335,-0.0117 0.0342,-0.0104 0.0342,-0.009 0.0342,-0.008 0.0342,-0.006 0.0152,-0.002 0.0335,-0.005 0.0335,-0.003 0.0327,-0.002 0.0319,-2.6e-4 0.0312,5.8e-4 0.0303,0.002 0.0295,0.004", + "fill": { + "paint": "transparent" + }, + "id": "path861", + "name": "path861", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 119.1085,102.63657 v -0.009 l 0.008,-0.024 0.008,-0.0239 v -0.0236 -0.0231 l 5e-4,-0.0227 -4.8e-4,-0.0222 v -0.0113 -0.0219 -0.0216 l -0.008,-0.0212 -0.008,-0.0206 -0.008,-0.0197 -0.009,-0.0189", + "fill": { + "paint": "transparent" + }, + "id": "path862", + "name": "path862", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 122.87277,100.15974 0.0152,-0.0245 0.0168,-0.0243 0.0184,-0.0242 0.02,-0.0239 0.0216,-0.0234 0.0232,-0.0231 0.024,-0.02251 0.0112,-0.01001 0.0264,-0.02176 0.0272,-0.02086 0.0288,-0.01996 0.0295,-0.01906 0.0303,-0.01816 0.0312,-0.0171 0.0327,-0.01605 0.008,-0.003 0.008,-0.003 0.0335,-0.01433 0.0336,-0.01313 0.0336,-0.0117 0.0343,-0.01042 0.0343,-0.009 0.0343,-0.008 0.0343,-0.006 0.0152,-0.0022 0.0335,-0.0052 0.0336,-0.003 0.0327,-0.0022 0.0319,-2.77e-4 0.0312,5.71e-4 0.0303,0.0022 0.0296,0.0037", + "fill": { + "paint": "transparent" + }, + "id": "path863", + "name": "path863", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 123.7653,99.665012 v -0.009 l 0.008,-0.02402 0.008,-0.02386 v -0.02357 -0.02312 l 5e-4,-0.02266 -5e-4,-0.02206 v -0.0114 -0.02191 l -0.008,-0.02153 -0.008,-0.02116 -0.008,-0.02056 -0.008,-0.01974 -0.009,-0.01891", + "fill": { + "paint": "transparent" + }, + "id": "path864", + "name": "path864", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 122.78025,102.35295 -0.0103,-0.0182 -0.012,-0.0179 -0.0128,-0.0175 -0.0144,-0.017 -0.016,-0.0163 -0.0168,-0.0155 -0.0168,-0.0137 -0.0184,-0.0137 -0.02,-0.0129 -0.0208,-0.012 -0.0224,-0.0112 -0.0232,-0.0102 -0.0247,-0.009 -0.0192,-0.007 -0.0263,-0.008 -0.0272,-0.007 -0.0287,-0.005 -0.0296,-0.004 -0.0303,-0.003 -0.0311,-0.002 -0.0128,-3.2e-4 -0.032,1.6e-4 -0.0328,0.002 -0.0327,0.003 -0.0336,0.005 -0.0335,0.005 -0.0343,0.007 -0.008,5.7e-4 -0.0343,0.009 -0.0343,0.0101 -0.0343,0.0113 -0.0336,0.0126 -0.0335,0.014 -0.0311,0.0142 -2.5e-4,1.7e-4 -0.032,0.0162 -0.0312,0.0173 -0.0303,0.0181 -0.0287,0.0191 -0.0279,0.02 -0.0272,0.021 -0.0152,0.0122 -0.0256,0.0222 -0.024,0.0228 -0.0224,0.0233 -0.0208,0.0237 -0.0192,0.024 -0.0176,0.0242 -0.016,0.0243 -0.0152,0.0245 -0.0136,0.0245 -0.0121,0.0245 -0.0103,0.0245 -0.009,0.0245", + "fill": { + "paint": "transparent" + }, + "id": "path865", + "name": "path865", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 119.31784,102.43646 0.008,-0.0222 0.009,-0.0318 0.008,-0.0315 0.008,-0.0311 v -0.0308 -0.0248 l 3.1e-4,-0.0302 v -0.0296 -0.029 l -0.008,-0.0284 -0.008,-0.0243 -0.008,-0.0276 -0.009,-0.027 -0.0104,-0.0263 -0.012,-0.0255 -0.0137,-0.0248 -0.0152,-0.0242 -0.0168,-0.0236 -0.0176,-0.0228 -0.0168,-0.0191 -0.0208,-0.021 -0.0217,-0.0203 -0.0232,-0.0195 -0.0248,-0.0186 -0.0216,-0.0145 -0.0272,-0.0167 -0.0287,-0.0157 -0.0303,-0.0147 -0.0311,-0.0137 -0.0224,-0.009 -0.0335,-0.0116 -0.0342,-0.0104 -0.036,-0.009 -0.0367,-0.008 -0.0208,-0.004 -0.0391,-0.006 -0.04,-0.005 -0.0407,-0.003 -0.0415,-0.002 -0.0176,-1.3e-4 -0.0431,5.5e-4 -0.0431,0.002 -0.0439,0.004 -0.0448,0.005 -0.0448,0.007 -0.0448,0.009 -0.0455,0.0104 -0.0455,0.012 -0.0232,0.007 -0.0455,0.0145 -0.0448,0.0159 -0.0439,0.0174 -0.0439,0.0189 -0.0431,0.0203 -0.0424,0.0218 -0.0121,0.007 -0.0415,0.0236 -0.0407,0.0248 -0.02,0.013 -0.0383,0.0263 -0.0367,0.0272 -0.0352,0.0279 -0.0335,0.0287 -0.0319,0.0296 -0.0303,0.0302 -0.0287,0.0308 -0.0272,0.0315 -0.024,0.0299 -0.024,0.0323 -0.0224,0.0324 -0.0208,0.0326 -0.0184,0.0326 -0.0168,0.0326 -0.0152,0.0325 -0.0128,0.0324 -0.0112,0.0323", + "fill": { + "paint": "transparent" + }, + "id": "path866", + "name": "path866", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 121.12798,102.43646 -0.008,0.0222 -0.008,0.0319 -0.008,0.0315 -0.008,0.0311 v 0.0308 0.0248 l -3.2e-4,0.0302 v 0.0296 0.029 l 0.008,0.0284 0.008,0.0243 0.008,0.0276 0.009,0.027 0.0103,0.0263 0.012,0.0254 0.0136,0.0248 0.0152,0.0242 0.0168,0.0236 0.0184,0.0227 0.0168,0.0191 0.02,0.021 0.0216,0.0203 0.0232,0.0195 0.0247,0.0186 0.0216,0.0145 0.0272,0.0168 0.0287,0.0157 0.0295,0.0147 0.0312,0.0137 0.0232,0.009 0.0335,0.0116 0.0343,0.0104 0.0359,0.009 0.0367,0.008 0.0208,0.004 0.0391,0.006 0.04,0.005 0.0407,0.003 0.0415,0.002 0.0176,1.4e-4 0.0431,-5.6e-4 0.0431,-0.002 0.0439,-0.004 0.0439,-0.005 0.0448,-0.007 0.0448,-0.009 0.0455,-0.0104 0.0455,-0.012 0.0224,-0.007 0.0455,-0.0144 0.0448,-0.0159 0.0439,-0.0174 0.0439,-0.0189 0.0431,-0.0203 0.0424,-0.0218 0.012,-0.007 0.0415,-0.0236 0.0407,-0.0248 0.02,-0.0131 0.0383,-0.0263 0.0367,-0.027 0.0352,-0.0279 0.0335,-0.0287 0.032,-0.0296 0.0303,-0.0302 0.0287,-0.0308 0.0272,-0.0315 0.024,-0.0299 0.024,-0.0323 0.0224,-0.0325 0.0208,-0.0326 0.0184,-0.0326 0.0168,-0.0326 0.0152,-0.0325 0.0128,-0.0323 0.0112,-0.0323", + "fill": { + "paint": "transparent" + }, + "id": "path867", + "name": "path867", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 123.00549,102.43646 0.008,-0.0222 0.009,-0.0318 0.008,-0.0315 0.008,-0.0311 v -0.0308 -0.0248 l 1.6e-4,-0.0302 v -0.0296 -0.029 l -0.008,-0.0284 -0.008,-0.0243 -0.008,-0.0276 -0.009,-0.027 -0.0103,-0.0263 -0.012,-0.0255 -0.0136,-0.0248 -0.0152,-0.0242 -0.0168,-0.0236 -0.0176,-0.0228 -0.0168,-0.0191 -0.02,-0.021 -0.0216,-0.0203 -0.0232,-0.0195 -0.0247,-0.0186 -0.0216,-0.0145 -0.0272,-0.0167 -0.0288,-0.0157 -0.0295,-0.0147 -0.0311,-0.0137 -0.0224,-0.009 -0.0336,-0.0116 -0.0343,-0.0104 -0.036,-0.009 -0.0367,-0.008 -0.0216,-0.004 -0.0384,-0.006 -0.04,-0.005 -0.0407,-0.003 -0.0415,-0.002 -0.0176,-1.3e-4 -0.0431,5.5e-4 -0.0431,0.002 -0.0439,0.004 -0.0448,0.005 -0.0448,0.007 -0.0448,0.009 -0.0455,0.0104 -0.0455,0.012 -0.0232,0.007 -0.0455,0.0145 -0.0448,0.0159 -0.0448,0.0174 -0.0439,0.0189 -0.0431,0.0203 -0.0424,0.0218 -0.012,0.007 -0.0415,0.0236 -0.0407,0.0248 -0.02,0.013 -0.0383,0.0263 -0.0367,0.0272 -0.0351,0.0279 -0.0336,0.0287 -0.0319,0.0296 -0.0303,0.0302 -0.0287,0.0308 -0.0272,0.0315 -0.024,0.0299 -0.024,0.0323 -0.0224,0.0324 -0.0208,0.0326 -0.0184,0.0326 -0.0168,0.0326 -0.0152,0.0325 -0.0128,0.0324 -0.0112,0.0323", + "fill": { + "paint": "transparent" + }, + "id": "path868", + "name": "path868", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 121.42105,100.86717 -0.0103,-0.0182 -0.0112,-0.0179 -0.0128,-0.0174 -0.0144,-0.017 -0.016,-0.0163 -0.0168,-0.0155 -0.0168,-0.0136 -0.0184,-0.0137 -0.02,-0.0129 -0.0208,-0.012 -0.0224,-0.0112 -0.0232,-0.0104 -0.0247,-0.009 -0.02,-0.007 -0.0264,-0.008 -0.0272,-0.007 -0.0287,-0.005 -0.0296,-0.004 -0.0304,-0.003 -0.0311,-0.002 -0.0128,-3.3e-4 -0.0319,1.8e-4 -0.0327,0.002 -0.0327,0.003 -0.0335,0.005 -0.0335,0.005 -0.0342,0.007 -0.008,5.7e-4 -0.0343,0.009 -0.0342,0.0101 -0.0342,0.0113 -0.0336,0.0126 -0.0335,0.014 -0.0311,0.0143 -4e-4,1.6e-4 -0.0319,0.0162 -0.0311,0.0173 -0.0304,0.0182 -0.0287,0.0191 -0.0279,0.02 -0.0272,0.021 -0.0144,0.0122 -0.0256,0.0222 -0.024,0.0228 -0.0224,0.0233 -0.0208,0.0237 -0.0192,0.024 -0.0184,0.0242 -0.0168,0.0243 -0.0152,0.0245 -0.0137,0.0245 -0.012,0.0245 -0.0103,0.0245 -0.009,0.0245", + "fill": { + "paint": "transparent" + }, + "id": "path869", + "name": "path869", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 120.06193,99.381412 -0.0104,-0.01824 -0.012,-0.01793 -0.0128,-0.01748 -0.0145,-0.01695 -0.0161,-0.01635 -0.0168,-0.01553 -0.0168,-0.01366 -0.0184,-0.01358 -0.02,-0.0129 -0.0208,-0.01207 -0.0224,-0.01117 -0.0232,-0.01035 -0.0247,-0.009 -0.02,-0.0067 -0.0264,-0.008 -0.0272,-0.0067 -0.0279,-0.0052 -0.0296,-0.0037 -0.0303,-0.003 -0.0312,-0.0022 -0.0128,-3e-4 -0.0319,1.35e-4 -0.0327,0.0022 -0.0327,0.003 -0.0335,0.0052 -0.0335,0.0052 -0.0342,0.0067 -0.008,5.7e-4 -0.0342,0.009 -0.0342,0.01006 -0.0342,0.01132 -0.0335,0.01261 -0.0336,0.01396 -0.0312,0.01425 -4e-4,1.95e-4 -0.0319,0.01613 -0.0311,0.01725 -0.0304,0.01816 -0.0287,0.01906 -0.0279,0.02003 -0.0272,0.02101 -0.0144,0.01222 -0.0256,0.02221 -0.024,0.02281 -0.0224,0.02342 -0.0208,0.02372 -0.0193,0.02402 -0.0184,0.02424 -0.0168,0.02431 -0.0152,0.02454 -0.0136,0.02454 -0.0121,0.02454 -0.0103,0.02447 -0.009,0.02447", + "fill": { + "paint": "transparent" + }, + "id": "path870", + "name": "path870", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 118.82608,99.665012 v 0.009 l -0.008,0.02402 -0.008,0.02387 v 0.02357 0.02312 l -5e-4,0.02266 5e-4,0.02206 v 0.01132 0.02191 l 0.008,0.02153 0.008,0.02116 0.008,0.02041 0.008,0.01973 0.009,0.01891", + "fill": { + "paint": "transparent" + }, + "id": "path871", + "name": "path871", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 123.7494,99.381412 -0.0103,-0.01824 -0.0113,-0.01793 -0.0127,-0.01748 -0.0144,-0.01695 -0.016,-0.01635 -0.0168,-0.01553 -0.0168,-0.01366 -0.0184,-0.01358 -0.02,-0.0129 -0.0208,-0.01207 -0.0224,-0.01117 -0.0232,-0.01035 -0.0247,-0.009 -0.0192,-0.0067 -0.0264,-0.008 -0.0272,-0.0067 -0.028,-0.0052 -0.0296,-0.0037 -0.0303,-0.003 -0.0311,-0.0022 -0.0128,-3e-4 -0.032,1.35e-4 -0.0328,0.0022 -0.0327,0.003 -0.0335,0.0052 -0.0336,0.0052 -0.0343,0.0067 -0.008,5.7e-4 -0.0343,0.009 -0.0343,0.01006 -0.0343,0.01132 -0.0335,0.01261 -0.0336,0.01396 -0.0311,0.01425 -4e-4,1.95e-4 -0.0319,0.01613 -0.0312,0.01725 -0.0303,0.01816 -0.0287,0.01906 -0.028,0.02003 -0.0272,0.02101 -0.0152,0.01222 -0.0256,0.02221 -0.024,0.02281 -0.0224,0.02342 -0.0208,0.02372 -0.0192,0.02402 -0.0176,0.02424 -0.016,0.02431 -0.0152,0.02454 -0.0136,0.02454 -0.0121,0.02454 -0.0103,0.02447 -0.009,0.02447", + "fill": { + "paint": "transparent" + }, + "id": "path872", + "name": "path872", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 120.18537,101.15078 v 0.009 l -0.008,0.024 -0.008,0.0239 v 0.0236 0.0231 l -5e-4,0.0227 4.8e-4,0.0222 v 0.0113 0.0219 0.0215 l 0.008,0.0212 0.008,0.0206 0.008,0.0197 0.009,0.0189", + "fill": { + "paint": "transparent" + }, + "id": "path873", + "name": "path873", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 122.09713,99.464903 -0.008,0.02221 -0.009,0.03181 -0.008,0.03151 -0.008,0.03113 v 0.03061 0.02484 l -3.2e-4,0.03016 v 0.02956 0.02904 l 0.008,0.02835 0.008,0.02431 0.008,0.02761 0.009,0.027 0.0103,0.02626 0.012,0.02551 0.0136,0.02484 0.0152,0.02424 0.0168,0.02364 0.0176,0.02273 0.0168,0.01913 0.02,0.02101 0.0216,0.0203 0.0232,0.0195 0.0247,0.0186 0.0216,0.0145 0.0272,0.0168 0.0287,0.0157 0.0296,0.0147 0.0311,0.0136 0.0232,0.009 0.0335,0.0116 0.0343,0.0104 0.0359,0.009 0.0367,0.008 0.0208,0.004 0.0391,0.006 0.04,0.005 0.0407,0.003 0.0415,0.002 0.0176,1.5e-4 0.0431,-5.7e-4 0.0431,-0.002 0.0439,-0.004 0.0448,-0.005 0.0448,-0.007 0.0448,-0.009 0.0455,-0.0104 0.0455,-0.012 0.0232,-0.007 0.0455,-0.0145 0.0448,-0.0159 0.0448,-0.0174 0.0439,-0.0189 0.0431,-0.0203 0.0424,-0.0218 0.012,-0.007 0.0415,-0.0236 0.0407,-0.0248 0.02,-0.01298 0.0384,-0.02626 0.0367,-0.02716 0.0351,-0.0279 0.0336,-0.02873 0.0319,-0.02956 0.0303,-0.03016 0.0287,-0.03083 0.0272,-0.03151 0.024,-0.02971 0.024,-0.03226 0.0224,-0.03241 0.0208,-0.03256 0.0184,-0.03263 0.0168,-0.03263 0.0152,-0.03248 0.0128,-0.03241 0.0112,-0.03226", + "fill": { + "paint": "transparent" + }, + "id": "path874", + "name": "path874", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 121.54456,102.63657 v 0.009 l -0.008,0.024 -0.008,0.0239 v 0.0236 0.0231 l -5e-4,0.0227 5e-4,0.0222 5e-4,0.0113 v 0.0219 l 0.008,0.0216 0.008,0.0212 0.008,0.0206 0.008,0.0197 0.009,0.0189", + "fill": { + "paint": "transparent" + }, + "id": "path875", + "name": "path875", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 123.97464,99.464903 0.008,-0.02213 0.008,-0.03188 0.008,-0.03151 0.008,-0.03113 v -0.03076 -0.02484 l 1.6e-4,-0.03016 v -0.02956 -0.02896 l -0.008,-0.02837 -0.008,-0.02431 -0.008,-0.0276 -0.009,-0.02701 -0.0103,-0.02634 -0.012,-0.02544 -0.0136,-0.02484 -0.0152,-0.02424 -0.0168,-0.02364 -0.0184,-0.02273 -0.0168,-0.01914 -0.02,-0.02101 -0.0216,-0.02026 -0.0232,-0.01951 -0.0247,-0.01861 -0.0216,-0.01456 -0.0272,-0.0168 -0.0287,-0.01568 -0.0296,-0.01471 -0.0311,-0.01373 -0.0232,-0.009 -0.0336,-0.01162 -0.0343,-0.01043 -0.0359,-0.009 -0.0367,-0.008 -0.0216,-0.0037 -0.0384,-0.006 -0.04,-0.0052 -0.0407,-0.003 -0.0415,-0.0022 -0.0176,-1.43e-4 -0.0431,5.63e-4 -0.0431,0.0022 -0.0439,0.0037 -0.0448,0.0052 -0.0448,0.0067 -0.0448,0.009 -0.0455,0.01042 -0.0455,0.012 -0.0232,0.0067 -0.0455,0.01441 -0.0448,0.0159 -0.0448,0.0174 -0.0439,0.01891 -0.0431,0.02033 -0.0424,0.02183 -0.012,0.0067 -0.0415,0.02357 -0.0407,0.02484 -0.02,0.01298 -0.0383,0.02625 -0.0367,0.02716 -0.0351,0.02791 -0.0335,0.02874 -0.0319,0.02956 -0.0303,0.03016 -0.0287,0.03083 -0.0272,0.03158 -0.024,0.02993 -0.024,0.03226 -0.0224,0.03248 -0.0208,0.03256 -0.0184,0.03263 -0.0168,0.03256 -0.0152,0.03248 -0.0127,0.03241 -0.0113,0.03226", + "fill": { + "paint": "transparent" + }, + "id": "path876", + "name": "path876", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 119.76878,100.9507 -0.008,0.0222 -0.008,0.0318 -0.008,0.0315 -0.008,0.0311 v 0.0308 0.0248 l -3.2e-4,0.0302 v 0.0296 0.029 l 0.008,0.0284 0.008,0.0243 0.008,0.0276 0.009,0.027 0.0103,0.0263 0.0121,0.0254 0.0137,0.0248 0.0152,0.0242 0.0168,0.0236 0.0176,0.0227 0.0168,0.0191 0.02,0.021 0.0216,0.0203 0.0232,0.0195 0.0247,0.0186 0.0216,0.0146 0.0272,0.0167 0.0287,0.0158 0.0295,0.0147 0.0311,0.0137 0.0224,0.009 0.0335,0.0116 0.0343,0.0104 0.036,0.009 0.0367,0.008 0.0208,0.004 0.0391,0.006 0.04,0.005 0.0407,0.003 0.0415,0.002 0.0176,1.4e-4 0.0431,-5.8e-4 0.0431,-0.002 0.0439,-0.004 0.0448,-0.005 0.0448,-0.007 0.0448,-0.009 0.0455,-0.0104 0.0455,-0.012 0.0232,-0.007 0.0455,-0.0144 0.0448,-0.0159 0.0439,-0.0175 0.0439,-0.0189 0.0431,-0.0203 0.0424,-0.0218 0.012,-0.007 0.0415,-0.0236 0.0407,-0.0248 0.02,-0.013 0.0383,-0.0263 0.0367,-0.0272 0.0352,-0.0279 0.0335,-0.0287 0.0319,-0.0296 0.0303,-0.0302 0.0287,-0.0308 0.027,-0.0315 0.024,-0.0299 0.024,-0.0323 0.0224,-0.0324 0.0208,-0.0326 0.0184,-0.0326 0.0168,-0.0326 0.0152,-0.0326 0.0127,-0.0324 0.0113,-0.0323", + "fill": { + "paint": "transparent" + }, + "id": "path877", + "name": "path877", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 119.09269,102.35295 -0.0103,-0.0182 -0.0112,-0.0179 -0.0128,-0.0175 -0.0145,-0.017 -0.0152,-0.0163 -0.0168,-0.0155 -0.0168,-0.0137 -0.0185,-0.0137 -0.02,-0.0129 -0.0208,-0.012 -0.0224,-0.0112 -0.0232,-0.0102 -0.0247,-0.009 -0.0193,-0.007 -0.0264,-0.008 -0.0271,-0.007 -0.028,-0.005 -0.0296,-0.004 -0.0303,-0.003 -0.0311,-0.002 -0.0128,-3.2e-4 -0.0319,1.6e-4 -0.0328,0.002 -0.0328,0.003 -0.0335,0.005 -0.0335,0.005 -0.0342,0.007 -0.008,5.7e-4 -0.0342,0.009 -0.0342,0.0101 -0.0342,0.0113 -0.0335,0.0126 -0.0335,0.014 -0.0311,0.0142 -4e-4,1.7e-4 -0.0318,0.0162 -0.0312,0.0173 -0.0303,0.0181 -0.0287,0.0191 -0.028,0.02 -0.0272,0.021 -0.0144,0.0122 -0.0256,0.0222 -0.024,0.0228 -0.0224,0.0233 -0.0208,0.0237 -0.0192,0.024 -0.0176,0.0242 -0.0168,0.0243 -0.0152,0.0245 -0.0137,0.0245 -0.0121,0.0245 -0.0103,0.0245 -0.009,0.0245", + "fill": { + "paint": "transparent" + }, + "id": "path878", + "name": "path878", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 121.64619,100.9507 0.008,-0.0222 0.009,-0.0319 0.008,-0.0315 0.008,-0.0311 v -0.0308 -0.0248 l 3.1e-4,-0.0302 v -0.0296 -0.029 l -0.008,-0.0284 -0.008,-0.0243 -0.008,-0.0276 -0.009,-0.027 -0.0103,-0.0263 -0.0121,-0.0254 -0.0136,-0.0248 -0.0152,-0.0242 -0.0168,-0.0236 -0.0176,-0.0227 -0.0168,-0.0191 -0.02,-0.021 -0.0216,-0.0203 -0.0232,-0.0195 -0.0247,-0.0186 -0.0216,-0.0146 -0.0272,-0.0168 -0.0287,-0.0158 -0.0296,-0.0147 -0.0312,-0.0137 -0.0232,-0.009 -0.0336,-0.0116 -0.0343,-0.0104 -0.036,-0.009 -0.0367,-0.008 -0.0208,-0.004 -0.0383,-0.006 -0.04,-0.005 -0.0407,-0.003 -0.0415,-0.002 -0.0176,-1.3e-4 -0.0431,5.6e-4 -0.0431,0.002 -0.0439,0.004 -0.0448,0.005 -0.0448,0.007 -0.0448,0.009 -0.0455,0.0104 -0.0455,0.012 -0.0232,0.007 -0.0455,0.0144 -0.0448,0.0159 -0.0448,0.0174 -0.0439,0.0189 -0.0431,0.0203 -0.0424,0.0218 -0.012,0.007 -0.0415,0.0236 -0.0407,0.0248 -0.02,0.013 -0.0384,0.0263 -0.0367,0.0272 -0.0352,0.0279 -0.0335,0.0287 -0.0319,0.0296 -0.0303,0.0302 -0.0287,0.0308 -0.0272,0.0315 -0.024,0.0299 -0.024,0.0323 -0.0224,0.0325 -0.02,0.0326 -0.0184,0.0326 -0.0168,0.0326 -0.0152,0.0326 -0.0128,0.0325 -0.0112,0.0323", + "fill": { + "paint": "transparent" + }, + "id": "path879", + "name": "path879", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 118.4095,99.464903 -0.008,0.02221 -0.009,0.03181 -0.008,0.03151 -0.008,0.03113 v 0.03061 0.02484 l -1.6e-4,0.03016 v 0.02956 0.02904 l 0.008,0.02835 0.008,0.02431 0.008,0.02761 0.009,0.027 0.0105,0.02626 0.0121,0.02551 0.0137,0.02484 0.0152,0.02424 0.0168,0.02364 0.0176,0.02273 0.0168,0.01913 0.0208,0.02101 0.0216,0.0203 0.0232,0.0195 0.0248,0.0186 0.0216,0.0145 0.0272,0.0168 0.0287,0.0157 0.0296,0.0147 0.0311,0.0136 0.0224,0.009 0.0336,0.0116 0.0342,0.0104 0.036,0.009 0.0367,0.008 0.0216,0.004 0.0384,0.006 0.04,0.005 0.0408,0.003 0.0415,0.002 0.0176,1.5e-4 0.0431,-5.7e-4 0.0431,-0.002 0.0439,-0.004 0.0448,-0.005 0.0448,-0.007 0.0448,-0.009 0.0455,-0.0104 0.0455,-0.012 0.0232,-0.007 0.0455,-0.0145 0.0448,-0.0159 0.0448,-0.0174 0.0439,-0.0189 0.0431,-0.0203 0.0424,-0.0218 0.012,-0.007 0.0415,-0.0236 0.0407,-0.0248 0.02,-0.01298 0.0384,-0.02626 0.0367,-0.02716 0.0351,-0.0279 0.0335,-0.02873 0.032,-0.02956 0.0303,-0.03016 0.0287,-0.03083 0.028,-0.03151 0.024,-0.02971 0.024,-0.03226 0.0224,-0.03241 0.0208,-0.03256 0.0184,-0.03263 0.0168,-0.03263 0.0152,-0.03248 0.0128,-0.03241 0.0112,-0.03226", + "fill": { + "paint": "transparent" + }, + "id": "path880", + "name": "path880", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 120.28699,99.464903 v -0.008 l 0.009,-0.02956 0.008,-0.02941 0.008,-0.02911 0.008,-0.02875 v -0.02835 -0.02792 l -2.4e-4,-0.02745 -5e-4,-0.01305 v -0.02701 -0.02685 l -0.008,-0.02634 -0.008,-0.02581 -0.008,-0.02521 -0.009,-0.02454 -0.0104,-0.02387 -0.0112,-0.02327 -0.0128,-0.02296 -0.0144,-0.02243 -0.0152,-0.02183 -0.0168,-0.02123 -0.0176,-0.02056 -0.0192,-0.01973 -0.01,-0.009 -0.02,-0.01846 -0.0216,-0.01771 -0.0232,-0.01703 -0.0239,-0.01635 -0.0256,-0.01545 -0.0263,-0.01463 -0.028,-0.01366 -0.0103,-0.0052", + "fill": { + "paint": "transparent" + }, + "id": "path881", + "name": "path881", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 119.95965,98.775594 -0.0294,-0.01162 -0.0312,-0.01065 -0.0319,-0.01002 -0.0334,-0.009 -0.0343,-0.008 -0.0351,-0.006 -0.0359,-0.0052 -0.0367,-0.0037 -0.0384,-0.0022 -0.0383,-0.0022 -0.0391,-3e-5 -0.04,0.0022 -0.0103,5.48e-4 -0.0407,0.003 -0.0407,0.0052 -0.0407,0.006 -0.0415,0.0067 -0.0415,0.009 -0.0359,0.008 -0.0424,0.01117 -0.0424,0.01252 -0.0415,0.01381 -0.0415,0.01523 -0.0407,0.0165 -0.028,0.01222 -0.04,0.01854 -0.0272,0.01343 -0.0391,0.02063 -0.0383,0.02176 -0.0376,0.02273 -0.0367,0.02371 -0.0287,0.02026 -0.0342,0.02514 -0.0327,0.02581 -0.0311,0.02656 -0.0303,0.02723 -0.0287,0.02791 -0.008,0.0052 -0.0272,0.02866 -0.0256,0.02905 -0.0247,0.02941 -0.0232,0.02964 -0.0217,0.02993 -0.02,0.03001 -0.0185,0.03016 -0.0168,0.03016 -0.0152,0.03016 -0.0137,0.03001 -0.012,0.02993 -0.0105,0.02993", + "fill": { + "paint": "transparent" + }, + "id": "path882", + "name": "path882", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 117.4405,102.43646 -0.008,0.0222 -0.009,0.0319 -0.008,0.0315 -0.008,0.0311 v 0.0308 0.0248 l -2.3e-4,0.0302 v 0.0296 0.029 l 0.008,0.0284 0.008,0.0243 0.008,0.0276 0.009,0.027 0.0103,0.0263 0.0121,0.0254 0.0137,0.0248 0.0152,0.0242 0.0168,0.0236 0.0176,0.0227 0.0168,0.0191 0.02,0.021 0.0216,0.0203 0.0232,0.0195 0.0248,0.0186 0.0216,0.0145 0.0272,0.0168 0.0287,0.0157 0.0303,0.0147 0.0311,0.0137 0.0224,0.009 0.0335,0.0116 0.0343,0.0104 0.0359,0.009 0.0367,0.008 0.0216,0.004 0.0383,0.006 0.04,0.005 0.0408,0.003 0.0415,0.002 0.0176,1.4e-4 0.0431,-5.6e-4 0.0431,-0.002 0.0439,-0.004 0.0448,-0.005 0.0448,-0.007 0.0448,-0.009 0.0455,-0.0104 0.0455,-0.012 0.0232,-0.007 0.0455,-0.0144 0.0448,-0.0159 0.0448,-0.0174 0.0439,-0.0189 0.0431,-0.0203 0.0424,-0.0218 0.012,-0.007 0.0415,-0.0236 0.0407,-0.0248 0.02,-0.0131 0.0384,-0.0263 0.0367,-0.027 0.0352,-0.0279 0.0335,-0.0287 0.0319,-0.0296 0.0303,-0.0302 0.0287,-0.0308 0.0272,-0.0315 0.024,-0.0299 0.024,-0.0323 0.0224,-0.0325 0.02,-0.0326 0.0184,-0.0326 0.0168,-0.0326 0.0152,-0.0325 0.0128,-0.0323 0.0112,-0.0323", + "fill": { + "paint": "transparent" + }, + "id": "path883", + "name": "path883", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 117.71879,98.112513 0.20325,-0.125702 0.20701,-0.121397 0.21046,-0.116947 0.21388,-0.112379 0.21692,-0.107658 0.21979,-0.102841 0.22172,-0.09754 0.22483,-0.09282 0.0112,-0.0052 0.22635,-0.08712 0.22738,-0.08161 0.22843,-0.07611 0.2293,-0.07053 0.22987,-0.0649 0.23026,-0.05928 0.23058,-0.05365 0.23074,-0.04809 0.0583,-0.01132 0.22915,-0.04067 0.22747,-0.03481 0.22595,-0.02911 0.22419,-0.02333 0.22236,-0.01764 0.22043,-0.012 0.21859,-0.0067 0.21637,-5.63e-4 0.11744,0.0022 0.21198,0.008 0.20861,0.01276 0.20525,0.01801 0.20174,0.02312 0.19798,0.02813 0.19407,0.03316 0.19031,0.03796 0.18625,0.04277", + "fill": { + "paint": "transparent" + }, + "id": "path884", + "name": "path884", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 124.83736,96.718084 0.0424,0.01042 0.13495,0.03564 0.13279,0.03796 0.13031,0.04044 0.12784,0.04299 0.12535,0.0454 0.12264,0.04756 0.12017,0.04974 0.1176,0.05199 0.0632,0.02926 0.11369,0.05537 0.11114,0.05762 0.10842,0.05958 0.10578,0.0616 0.10306,0.06347 0.10011,0.06542 0.0975,0.06715 0.0946,0.06903 0.0679,0.05207 0.0901,0.0724 0.0875,0.0742 0.0848,0.07591 0.0819,0.07761 0.0791,0.07912 0.0759,0.08062 0.0735,0.08201 0.0703,0.08331 0.0679,0.08522 0.0527,0.07038 0.0631,0.08852 0.0599,0.09003 0.0575,0.09153 0.0544,0.09274 0.0511,0.09393 0.0487,0.09483 0.0448,0.09574", + "fill": { + "paint": "transparent" + }, + "id": "path885", + "name": "path885", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 128.1641,99.524289 0.02,0.06812 0.0184,0.06879 0.0176,0.06933 0.016,0.06993 0.0144,0.07038 0.0136,0.0709 0.0121,0.0712 0.008,0.0317 0.0103,0.0718 0.009,0.0724 0.008,0.0728 0.008,0.0734 0.008,0.0738 v 0.0743 0.0746 l 2.3e-4,0.0284", + "fill": { + "paint": "transparent" + }, + "id": "path886", + "name": "path886", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 128.32174,100.74957 v 0.0761 l -0.008,0.0765 -0.008,0.0768 -0.008,0.0558 -0.009,0.0774 -0.0103,0.0778 -0.0113,0.0782 -0.0128,0.0785 -0.0144,0.0789 -0.016,0.0792 -0.0176,0.0795 -0.0192,0.0797 -0.02,0.0799 -0.0216,0.0801 -0.0232,0.079", + "fill": { + "paint": "transparent" + }, + "id": "path887", + "name": "path887", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 128.05304,102.13234 -0.0296,0.0812 -0.0311,0.0813 -0.0327,0.0814 -0.02,0.0481 -0.0351,0.0816 -0.0367,0.0817 -0.0383,0.0818 -0.0391,0.0818 -0.0415,0.0819 -0.0424,0.0819 -0.0439,0.0819 -0.0455,0.0818 -0.0472,0.0818 -0.0487,0.0817 -0.0288,0.0475", + "fill": { + "paint": "transparent" + }, + "id": "path888", + "name": "path888", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 127.38687,103.45397 -0.0544,0.0814 -0.0559,0.0811 -0.0575,0.0809 -0.0256,0.0347 -0.0599,0.0806 -0.0615,0.0804 -0.0631,0.0801 -0.0647,0.0798 -0.0663,0.0795 -0.0671,0.0791 -0.0687,0.0787 -0.0703,0.0784 -0.0719,0.0779 -0.0735,0.0774 -0.0103,0.0112", + "fill": { + "paint": "transparent" + }, + "id": "path889", + "name": "path889", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 126.43529,104.61652 -0.0144,0.0149 -0.0152,0.0149 -0.0152,0.0148 -0.0152,0.0148 -0.0152,0.0149 -0.0152,0.0147 -0.0152,0.0147 -0.0152,0.0147 -0.0152,0.0147 -0.0152,0.0146", + "fill": { + "paint": "transparent" + }, + "id": "path890", + "name": "path890", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 123.71753,106.52286 -0.18393,0.0857 -0.2138,0.0943 -0.21565,0.0894 -0.21739,0.0846 -0.21876,0.0796 -0.22004,0.0746 -0.22091,0.0694 -0.22156,0.0643 -0.21652,0.0577 -0.22147,0.0538 -0.22123,0.0484 -0.22093,0.0431 v 5.7e-4 l -0.22011,0.0377 -0.21907,0.0325 -0.21795,0.027 -0.21693,0.0218 -0.0535,0.005 -0.21405,0.0152 -0.21173,0.0101 -0.20925,0.005 -0.20669,-2.2e-4 -0.20406,-0.005 -0.2015,-0.0102 -0.19878,-0.0152 -0.19607,-0.02 -0.10746,-0.0131 -0.19087,-0.0273 -0.18735,-0.0318 -0.18353,-0.0364 -0.17978,-0.0407 -0.17584,-0.0451 -0.17161,-0.0491 -0.16772,-0.0532 -0.1633,-0.0573", + "fill": { + "paint": "transparent" + }, + "id": "path891", + "name": "path891", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 117.01913,107.11589 -0.0224,-0.008 -0.10609,-0.0407 -0.10427,-0.0423 -0.10242,-0.044 -0.10043,-0.0458 -0.0985,-0.0473 -0.0965,-0.0488 -0.0944,-0.0505 -0.0328,-0.0182 -0.0919,-0.0524 -0.0899,-0.054 -0.088,-0.0555 -0.0858,-0.0569 -0.0839,-0.0583 -0.0817,-0.0595 -0.0799,-0.0609 -0.0367,-0.0291 -0.0767,-0.063 -0.0751,-0.0642 -0.0727,-0.0655 -0.0703,-0.0667 -0.0687,-0.0679 -0.0663,-0.069 -0.064,-0.07 -0.0335,-0.038 -0.0615,-0.0722 -0.0592,-0.0734 -0.0575,-0.0746 -0.0551,-0.0756 -0.0527,-0.0766 -0.0503,-0.0775 -0.0487,-0.0783", + "fill": { + "paint": "transparent" + }, + "id": "path892", + "name": "path892", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 114.69149,105.27719 -0.0743,-0.13336 -0.0687,-0.13696 -0.0631,-0.14024 -0.0568,-0.14304 -0.0472,-0.13338 -0.0448,-0.14697 -0.0383,-0.14855 -0.0327,-0.15144 -0.0264,-0.15408 -0.02,-0.1565 -0.0137,-0.15855 -0.008,-0.14096 v -0.16158 l 0.008,-0.16377 0.0121,-0.16581 0.0184,-0.16759 0.0256,-0.16918 0.024,-0.12968 0.0376,-0.1712 0.0448,-0.17248 0.052,-0.17361 0.0592,-0.17462 0.0664,-0.17547 0.0439,-0.10775 0.0775,-0.17644 0.085,-0.17662 0.0923,-0.17672 0.0996,-0.17667 0.10698,-0.17649 0.0503,-0.079 0.1177,-0.17593 0.12479,-0.17473 0.13191,-0.17353 0.13902,-0.172208 0.14629,-0.170847 0.0455,-0.05147 0.15571,-0.16889 0.16227,-0.166525 0.16891,-0.163968 0.17522,-0.161169 0.18144,-0.158205 0.18768,-0.154971 0.1935,-0.151558 0.19928,-0.147889 0.20469,-0.14392 0.20988,-0.139749 0.0583,-0.03766", + "fill": { + "paint": "transparent" + }, + "id": "path893", + "name": "path893", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 114.69149,105.27696 0.0472,0.0782 0.0496,0.0776 0.052,0.0769 0.0544,0.0762 0.0568,0.0754 0.0592,0.0745 0.0616,0.0736 0.0631,0.0726 0.0655,0.0714 0.0679,0.0702 0.0695,0.0689 0.0719,0.0675 0.0735,0.0661 0.0751,0.0645 0.0775,0.0629 0.008,0.006 0.0791,0.061 0.0811,0.0598 0.0833,0.0585 0.0854,0.0572 0.0877,0.0559 0.0898,0.0545 0.0919,0.053 0.0941,0.0517 0.0962,0.0502 0.0982,0.0487 0.1002,0.047 0.1021,0.0452 0.10411,0.0437 0.10578,0.0419 0.0759,0.0285", + "fill": { + "paint": "transparent" + }, + "id": "path894", + "name": "path894", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 117.14538,107.16064 0.11335,0.0375 0.11531,0.0358 0.11711,0.0338 0.11914,0.0317 0.12089,0.0299 0.1228,0.0278 0.0112,0.002 0.1248,0.0257 0.12647,0.0236 0.12816,0.0215 0.12982,0.0192 0.13137,0.0171 0.13286,0.0149 0.13447,0.0127 0.1359,0.0104 0.13734,0.008 0.13863,0.006 0.13998,0.004 0.14125,0.002 0.14237,-0.002 0.1435,-0.004 0.1443,-0.006 0.14533,-0.008 0.14614,-0.0108 0.0853,-0.008", + "fill": { + "paint": "transparent" + }, + "id": "path895", + "name": "path895", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 120.27277,107.48551 0.17865,-0.0182 0.17929,-0.0218 0.18008,-0.0252 0.18073,-0.0288 0.18144,-0.0325 0.18217,-0.0362 0.0343,-0.008 0.18289,-0.0406 0.18297,-0.0441 0.18271,-0.0478 0.18273,-0.0512 0.18216,-0.0548 0.18185,-0.0583 0.18104,-0.0617 0.18033,-0.0652 0.17937,-0.0686 0.17842,-0.0719 0.17712,-0.0752 0.1757,-0.0784 0.17426,-0.0816 0.1725,-0.0847 0.0376,-0.0188 0.17033,-0.0884 0.16827,-0.0913 0.1661,-0.0941 0.16387,-0.0968", + "fill": { + "paint": "transparent" + }, + "id": "path896", + "name": "path896", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 124.79901,105.92475 0.0987,-0.0634 0.1014,-0.0669 0.10026,-0.0679 0.0991,-0.0689 0.0966,-0.0689 0.0968,-0.0708 0.0954,-0.0718 0.0942,-0.0726 0.0928,-0.0734 0.0915,-0.0743 0.0901,-0.0751 0.0888,-0.0759 0.0872,-0.0766 0.086,-0.0773 0.0845,-0.078 0.083,-0.0787", + "fill": { + "paint": "transparent" + }, + "id": "path897", + "name": "path897", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 126.45574,104.59575 0.0615,-0.0629 0.0954,-0.10064 0.0927,-0.10117 0.0902,-0.10179 0.0876,-0.10248 0.0853,-0.10315 0.0335,-0.0419 0.0817,-0.10409 0.0791,-0.10467 0.0767,-0.10516 0.0743,-0.10555 0.0711,-0.1059 0.0687,-0.10616 0.0663,-0.10637 0.0639,-0.10651 0.0607,-0.10656 0.0583,-0.10662 0.0559,-0.10657 0.0527,-0.10652 0.0503,-0.10641 0.0479,-0.10624 0.0448,-0.10608 0.0424,-0.10585 0.04,-0.10564", + "fill": { + "paint": "transparent" + }, + "id": "path898", + "name": "path898", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 128.19422,101.65914 5e-4,-0.003 0.0232,-0.0988 0.0208,-0.0985 0.0184,-0.0981 0.016,-0.0976 0.0136,-0.0972 0.0112,-0.0966 0.01,-0.096 0.008,-0.0953 0.008,-0.0946 v -0.0939 l 4.9e-4,-0.0931 v -0.0923 -0.0914 l -0.008,-0.0906 v -0.032 l -0.009,-0.0903 -0.0112,-0.0899 -0.0127,-0.0895 -0.0152,-0.08892 -0.0176,-0.08832 -0.0192,-0.08762 -0.0216,-0.08682 -0.0232,-0.08602 -0.0256,-0.08502 -0.0272,-0.08402 -0.0296,-0.08291 -0.0311,-0.08172 -0.0327,-0.08052 -0.0351,-0.07922", + "fill": { + "paint": "transparent" + }, + "id": "path899", + "name": "path899", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 114.42848,102.01785 -0.028,0.0889 -0.0327,0.11214 -0.0303,0.11186 -0.0272,0.11146 -0.024,0.11093 -0.0216,0.11034 -0.0184,0.1097 -0.0152,0.10895 -0.0128,0.10816 -0.01,0.10726 -0.008,0.10636 -0.008,0.10542 v 0.1044 0.10341 l 0.008,0.10235 0.008,0.10125 0.01,0.10115 v 0.0197 l 0.0128,0.10089 0.0152,0.1005 0.0184,0.0999 0.0208,0.0992 0.0232,0.0985 0.0264,0.0975 0.0287,0.0965 0.0312,0.0953 0.0335,0.094 0.0359,0.0926 0.0383,0.0912 0.0407,0.0896 0.0431,0.0879 0.0448,0.0862 0.0472,0.0844", + "fill": { + "paint": "transparent" + }, + "id": "path900", + "name": "path900", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 127.99105,99.069487 -0.0455,-0.09524 -0.0487,-0.09443 -0.052,-0.09343 -0.0551,-0.09233 -0.0575,-0.09103 -0.0607,-0.08962 -0.0631,-0.08812 -0.0503,-0.0667 -0.0679,-0.08492 -0.0703,-0.08301 -0.0735,-0.08161 -0.0759,-0.08012 -0.0791,-0.07851 -0.0817,-0.07691 -0.0845,-0.0752 -0.0872,-0.07338 -0.0897,-0.07158 -0.0663,-0.05064 -0.0942,-0.0682 -0.0971,-0.0667 -0.1002,-0.0649 -0.10298,-0.06318 -0.10602,-0.06138 -0.10883,-0.0595 -0.1116,-0.05747 -0.11441,-0.05537 -0.11697,-0.05334 -0.1196,-0.05124 -0.12208,-0.04899 -0.12448,-0.04659 -0.12671,-0.04405 -0.12863,-0.04164 -0.13064,-0.03909 -0.13239,-0.03639 -0.10283,-0.02611", + "fill": { + "paint": "transparent" + }, + "id": "path901", + "name": "path901", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 124.84103,96.719059 -0.18831,-0.04337 -0.19184,-0.03835 -0.19526,-0.03331 -0.19863,-0.02836 -0.20222,-0.02327 -0.20541,-0.01801 -0.20861,-0.01267 -0.21173,-0.008 -0.21485,-0.0022 -0.21755,0.0037 -0.22044,0.009 -0.22283,0.01493 -0.22523,0.02063 -0.22738,0.02634 -0.22898,0.03226 -0.23059,0.03811 -0.19359,0.03624 -0.2325,0.04876 -0.23178,0.0544 -0.2313,0.05995 -0.23027,0.0655 -0.2293,0.07098 -0.2281,0.07652 -0.22676,0.08191 -0.22523,0.08731 -0.22338,0.09274 -0.22148,0.09794 -0.2194,0.103216 -0.21708,0.108312 -0.21444,0.113398 -0.21188,0.118327 -0.20893,0.123182 -0.20574,0.127962 -0.0256,0.01613", + "fill": { + "paint": "transparent" + }, + "id": "path902", + "name": "path902", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 117.67476,98.140679 -0.0559,0.03594 -0.16731,0.111275 -0.16355,0.113668 -0.15995,0.115926 -0.15612,0.118125 -0.15228,0.120249 -0.14837,0.122281 -0.14461,0.12424 -0.14054,0.126116 -0.13662,0.127931 -0.13256,0.129664 -0.12855,0.131375 -0.12456,0.132974 -0.12048,0.134593 -0.11649,0.136102 -0.008,0.0052 -0.11185,0.137152 -0.10739,0.13805 -0.10282,0.1387 -0.0981,0.13927 -0.0935,0.1397 -0.0889,0.13998 -0.0842,0.14017 -0.0799,0.14026 -0.0751,0.14024 -0.0703,0.14016 -0.0655,0.14001 -0.0607,0.13978 -0.0568,0.13953 -0.052,0.13921 -0.0472,0.13886", + "fill": { + "paint": "transparent" + }, + "id": "path903", + "name": "path903", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "cx": "97.051849", + "cy": "127.32619", + "fill": { + "opacity": "1", + "paint": "transparent" + }, + "id": "ellipse903", + "name": "ellipse903", + "rx": "4.6207089", + "ry": "3.5301664", + "stroke": { + "dasharray": "none", + "opacity": "1", + "paint": "#000000", + "width": "1.10038" + }, + "transform": "matrix(0.9696729,-0.24440635,0.20828824,0.97806749,0,0)", + "type": "ellipse" + }, + { + "d": "m 80.880623,123.82634 v -0.008", + "fill": { + "paint": "transparent" + }, + "id": "path904", + "name": "path904", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "M 80.880313,123.8281 V 123.818", + "fill": { + "paint": "transparent" + }, + "id": "path905", + "name": "path905", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 80.880063,123.8281 5e-4,-0.002", + "fill": { + "paint": "transparent" + }, + "id": "path906", + "name": "path906", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 69.940993,129.30525 -0.008,-0.002", + "fill": { + "paint": "transparent" + }, + "id": "path907", + "name": "path907", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 73.143083,129.48767 0.0129,-4.6e-4", + "fill": { + "paint": "transparent" + }, + "id": "path908", + "name": "path908", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 73.119843,129.48847 0.008,-1.4e-4", + "fill": { + "paint": "transparent" + }, + "id": "path909", + "name": "path909", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 73.120003,129.48819 0.008,1.4e-4", + "fill": { + "paint": "transparent" + }, + "id": "path910", + "name": "path910", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 73.046903,129.49962 0.008,-5.6e-4", + "fill": { + "paint": "transparent" + }, + "id": "path911", + "name": "path911", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 73.046903,129.49962 0.008,-4.1e-4", + "fill": { + "paint": "transparent" + }, + "id": "path912", + "name": "path912", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 73.143173,129.48733 0.0127,-5.7e-4", + "fill": { + "paint": "transparent" + }, + "id": "path913", + "name": "path913", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 79.201993,126.95172 c 0.0575,-0.0554 0.11449,-0.11157 0.17041,-0.16847", + "fill": { + "paint": "transparent" + }, + "id": "path914", + "name": "path914", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 79.351953,126.80402 c 0.0263,-0.0268 0.0527,-0.054 0.0791,-0.0811", + "fill": { + "paint": "transparent" + }, + "id": "path915", + "name": "path915", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 69.935143,129.30312 c 0.0424,0.0155 0.0843,0.0305 0.1269,0.0451", + "fill": { + "paint": "transparent" + }, + "id": "path916", + "name": "path916", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 67.596173,127.44382 c 0,0.007 0.008,0.0138 0.012,0.0206", + "fill": { + "paint": "transparent" + }, + "id": "path917", + "name": "path917", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 72.896053,120.97158 c -0.008,-0.003 -0.0128,-0.006 -0.02,-0.008", + "fill": { + "paint": "transparent" + }, + "id": "path918", + "name": "path918", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 70.635453,120.30001 c -0.008,0.005 -0.0128,0.008 -0.02,0.0125", + "fill": { + "paint": "transparent" + }, + "id": "path919", + "name": "path919", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 80.303533,125.64147 c 0.036,-0.0544 0.0711,-0.10909 0.10547,-0.16434", + "fill": { + "paint": "transparent" + }, + "id": "path920", + "name": "path920", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 80.969703,124.31984 c 0.0136,-0.0395 0.0272,-0.0793 0.04,-0.11914", + "fill": { + "paint": "transparent" + }, + "id": "path921", + "name": "path921", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 80.952373,124.36835 c 0.0192,-0.0541 0.0384,-0.10839 0.0559,-0.163", + "fill": { + "paint": "transparent" + }, + "id": "path922", + "name": "path922", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 81.010053,124.2007 c 0.0121,-0.0367 0.0232,-0.0735 0.0343,-0.11036", + "fill": { + "paint": "transparent" + }, + "id": "path923", + "name": "path923", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 81.008533,124.20535 c 0.0383,-0.11836 0.0727,-0.23801 0.10236,-0.35871", + "fill": { + "paint": "transparent" + }, + "id": "path924", + "name": "path924", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 81.240313,122.77361 c 4.8e-4,0.0545 -1.6e-4,0.10897 0,0.16346", + "fill": { + "paint": "transparent" + }, + "id": "path925", + "name": "path925", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 81.080763,121.71179 c -0.012,-0.0391 -0.0248,-0.078 -0.0376,-0.11661", + "fill": { + "paint": "transparent" + }, + "id": "path926", + "name": "path926", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 81.043133,121.59518 c -0.008,-0.0228 -0.016,-0.0458 -0.024,-0.0685", + "fill": { + "paint": "transparent" + }, + "id": "path927", + "name": "path927", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 81.018923,121.52676 c -0.0311,-0.0848 -0.0655,-0.16849 -0.10258,-0.25091", + "fill": { + "paint": "transparent" + }, + "id": "path928", + "name": "path928", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 80.916333,121.27605 c 0,-0.006 -0.008,-0.0127 -0.009,-0.0191", + "fill": { + "paint": "transparent" + }, + "id": "path929", + "name": "path929", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 76.634193,128.71036 c 0.37399,-0.17859 0.73609,-0.37887 1.08404,-0.5997", + "fill": { + "paint": "transparent" + }, + "id": "path930", + "name": "path930", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 77.526243,128.22956 c 0.0631,-0.0385 0.12671,-0.0775 0.18943,-0.11731", + "fill": { + "paint": "transparent" + }, + "id": "path931", + "name": "path931", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 77.718233,128.11066 c 0.008,-0.005 0.0128,-0.008 0.02,-0.0125", + "fill": { + "paint": "transparent" + }, + "id": "path932", + "name": "path932", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 77.738043,128.09808 c 0.0751,-0.0478 0.149,-0.0964 0.22244,-0.14619", + "fill": { + "paint": "transparent" + }, + "id": "path933", + "name": "path933", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 77.960483,127.95189 c 0.0801,-0.0541 0.15929,-0.10937 0.23752,-0.16573", + "fill": { + "paint": "transparent" + }, + "id": "path934", + "name": "path934", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 75.446203,122.13611 0.0103,0.0182 0.0121,0.0179 0.0128,0.0175 0.0144,0.017 0.016,0.0163 0.0168,0.0155 0.0168,0.0136 0.0184,0.0136 0.02,0.0129 0.0208,0.0121 0.0224,0.0113 0.0232,0.0103 0.0248,0.009 0.0192,0.007 0.0264,0.008 0.0272,0.007 0.028,0.005 0.0296,0.004 0.0303,0.003 0.0312,0.002 0.0128,3e-4 0.032,-1.5e-4 0.0327,-0.002 0.0327,-0.003 0.0336,-0.005 0.0335,-0.005 0.0343,-0.007 0.008,-5.6e-4 0.0343,-0.009 0.0343,-0.0101 0.0343,-0.0113 0.0335,-0.0126 0.0336,-0.014 0.0311,-0.0143 4e-4,-1.9e-4 0.0319,-0.0162 0.0311,-0.0173 0.0303,-0.0181 0.0287,-0.0191 0.028,-0.02 0.0272,-0.021 0.0152,-0.0122 0.0256,-0.0222 0.024,-0.0228 0.0224,-0.0233 0.0208,-0.0239 0.02,-0.024 0.0176,-0.0243 0.0168,-0.0243 0.0152,-0.0245 0.0136,-0.0245 0.0121,-0.0245 0.0103,-0.0245 0.009,-0.0245", + "fill": { + "paint": "transparent" + }, + "id": "path935", + "name": "path935", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 70.789493,125.10769 0.0103,0.0182 0.0112,0.0179 0.0128,0.0175 0.0145,0.0169 0.0161,0.0163 0.0168,0.0155 0.0168,0.0136 0.0184,0.0137 0.02,0.0129 0.0208,0.012 0.0224,0.0112 0.0232,0.0104 0.0247,0.009 0.0192,0.007 0.0264,0.008 0.0272,0.007 0.0287,0.005 0.0296,0.004 0.0303,0.003 0.0312,0.002 0.0128,3.3e-4 0.0319,-1.6e-4 0.0328,-0.002 0.0335,-0.003 0.0336,-0.005 0.0335,-0.005 0.0342,-0.007 0.008,-5.7e-4 0.0342,-0.009 0.0342,-0.0101 0.0343,-0.0113 0.0335,-0.0126 0.0335,-0.014 0.0311,-0.0142 3.2e-4,-1.6e-4 0.0319,-0.0162 0.0311,-0.0173 0.0303,-0.0182 0.0287,-0.0191 0.028,-0.02 0.0272,-0.021 0.0152,-0.0122 0.0256,-0.0222 0.0239,-0.0228 0.0224,-0.0233 0.0208,-0.0237 0.0192,-0.024 0.0176,-0.0243 0.016,-0.0243 0.0152,-0.0245 0.0137,-0.0245 0.012,-0.0245 0.0103,-0.0245 0.009,-0.0245", + "fill": { + "paint": "transparent" + }, + "id": "path936", + "name": "path936", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 74.477133,125.10769 0.0103,0.0182 0.0121,0.0179 0.0127,0.0175 0.0144,0.0169 0.016,0.0163 0.0168,0.0155 0.0168,0.0136 0.0184,0.0137 0.02,0.0129 0.0208,0.012 0.0224,0.0112 0.0232,0.0104 0.0247,0.009 0.02,0.007 0.0264,0.008 0.0272,0.007 0.0279,0.005 0.0296,0.004 0.0303,0.003 0.0311,0.002 0.0128,3.3e-4 0.0319,-1.6e-4 0.0327,-0.002 0.0327,-0.003 0.0335,-0.005 0.0336,-0.005 0.0343,-0.007 0.008,-5.7e-4 0.0343,-0.009 0.0343,-0.0101 0.0343,-0.0113 0.0336,-0.0126 0.0335,-0.014 0.0311,-0.0142 3.1e-4,-1.6e-4 0.0319,-0.0162 0.0311,-0.0173 0.0304,-0.0182 0.0287,-0.0191 0.028,-0.02 0.0272,-0.021 0.0144,-0.0122 0.0256,-0.0222 0.024,-0.0228 0.0224,-0.0233 0.0208,-0.0237 0.0192,-0.024 0.0184,-0.0243 0.0168,-0.0243 0.0152,-0.0245 0.0136,-0.0245 0.0121,-0.0245 0.0103,-0.0245 0.009,-0.0245", + "fill": { + "paint": "transparent" + }, + "id": "path937", + "name": "path937", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 73.117843,123.6219 0.0105,0.0182 0.0112,0.0179 0.0128,0.0175 0.0144,0.017 0.016,0.0163 0.0168,0.0155 0.0168,0.0136 0.0184,0.0137 0.02,0.0129 0.0208,0.0121 0.0224,0.0113 0.0232,0.0103 0.0248,0.009 0.0192,0.007 0.0263,0.008 0.0272,0.007 0.0287,0.005 0.0295,0.004 0.0303,0.003 0.0311,0.002 0.0128,3.1e-4 0.0319,-1.4e-4 0.0327,-0.002 0.0328,-0.003 0.0335,-0.005 0.0335,-0.005 0.0342,-0.007 0.008,-5.7e-4 0.0343,-0.009 0.0342,-0.0101 0.0342,-0.0113 0.0335,-0.0126 0.0336,-0.014 0.0311,-0.0142 4e-4,-1.8e-4 0.0319,-0.0162 0.0312,-0.0171 0.0303,-0.0182 0.0287,-0.0191 0.0279,-0.02 0.0272,-0.021 0.0152,-0.0122 0.0256,-0.0222 0.024,-0.0228 0.0224,-0.0233 0.0208,-0.0239 0.0192,-0.024 0.0176,-0.0242 0.0168,-0.0243 0.0152,-0.0245 0.0136,-0.0245 0.0121,-0.0245 0.0103,-0.0245 0.009,-0.0245", + "fill": { + "paint": "transparent" + }, + "id": "path938", + "name": "path938", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 71.758633,122.13611 0.0105,0.0182 0.0112,0.0179 0.0128,0.0175 0.0145,0.017 0.016,0.0163 0.0168,0.0155 0.0168,0.0136 0.0184,0.0136 0.02,0.0129 0.0208,0.0121 0.0224,0.0113 0.0232,0.0103 0.0247,0.009 0.0192,0.007 0.0263,0.008 0.0272,0.007 0.0287,0.005 0.0296,0.004 0.0303,0.003 0.0312,0.002 0.0128,3e-4 0.0318,-1.5e-4 0.0327,-0.002 0.0327,-0.003 0.0335,-0.005 0.0336,-0.005 0.0342,-0.007 0.008,-5.6e-4 0.0343,-0.009 0.0342,-0.0101 0.0342,-0.0113 0.0335,-0.0126 0.0335,-0.014 0.0312,-0.0143 3.2e-4,-1.9e-4 0.0319,-0.0162 0.0311,-0.0173 0.0304,-0.0181 0.0287,-0.0191 0.0279,-0.02 0.0272,-0.021 0.0152,-0.0122 0.0256,-0.0222 0.024,-0.0228 0.0224,-0.0233 0.0208,-0.0239 0.0192,-0.024 0.0176,-0.0243 0.0161,-0.0243 0.0152,-0.0245 0.0137,-0.0245 0.012,-0.0245 0.0105,-0.0245 0.009,-0.0245", + "fill": { + "paint": "transparent" + }, + "id": "path939", + "name": "path939", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 72.101963,122.34724 0.0152,-0.0245 0.0168,-0.0243 0.0184,-0.0242 0.02,-0.0239 0.0216,-0.0234 0.0232,-0.0231 0.024,-0.0225 0.0112,-0.01 0.0263,-0.0218 0.0272,-0.0209 0.0287,-0.02 0.0296,-0.0191 0.0303,-0.0182 0.032,-0.0171 0.0327,-0.0161 0.008,-0.003 0.008,-0.003 0.0336,-0.0143 0.0335,-0.0131 0.0335,-0.0117 0.0342,-0.0104 0.0342,-0.009 0.0343,-0.008 0.0343,-0.006 0.0152,-0.002 0.0335,-0.005 0.0335,-0.003 0.0327,-0.002 0.0318,-2.7e-4 0.0312,5.7e-4 0.0303,0.002 0.0296,0.004", + "fill": { + "paint": "transparent" + }, + "id": "path940", + "name": "path940", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 72.994323,121.85251 v -0.009 l 0.008,-0.024 0.008,-0.0239 v -0.0236 -0.0231 l 5e-4,-0.0227 -5e-4,-0.0221 -5e-4,-0.0114 v -0.0219 l -0.008,-0.0215 -0.008,-0.0212 -0.008,-0.0206 -0.008,-0.0197 -0.009,-0.0189", + "fill": { + "paint": "transparent" + }, + "id": "path941", + "name": "path941", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 73.461153,123.83302 0.0152,-0.0245 0.0168,-0.0243 0.0184,-0.0242 0.02,-0.0239 0.0217,-0.0234 0.0232,-0.0231 0.024,-0.0227 0.0112,-0.01 0.0263,-0.0218 0.0272,-0.0209 0.0279,-0.02 0.0294,-0.0191 0.0303,-0.0182 0.0311,-0.017 0.0327,-0.0161 0.008,-0.003 0.008,-0.003 0.0335,-0.0143 0.0335,-0.0131 0.0336,-0.0118 0.0342,-0.0104 0.0343,-0.009 0.0343,-0.008 0.0343,-0.006 0.0152,-0.002 0.0336,-0.005 0.0335,-0.003 0.0327,-0.002 0.0319,-2.6e-4 0.0311,5.7e-4 0.0303,0.002 0.0296,0.004", + "fill": { + "paint": "transparent" + }, + "id": "path942", + "name": "path942", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 74.353613,123.33828 v -0.009 l 0.008,-0.024 0.008,-0.0239 v -0.0234 -0.0231 -0.0227 l -5e-4,-0.0221 v -0.0113 -0.0219 -0.0216 l -0.008,-0.0212 -0.008,-0.0204 -0.008,-0.0197 -0.009,-0.0189", + "fill": { + "paint": "transparent" + }, + "id": "path943", + "name": "path943", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 74.820443,125.31882 0.0152,-0.0245 0.0168,-0.0243 0.0184,-0.0242 0.02,-0.0239 0.0216,-0.0234 0.0232,-0.0231 0.024,-0.0225 0.0112,-0.0101 0.0264,-0.0218 0.0272,-0.0209 0.0288,-0.02 0.0295,-0.0191 0.0304,-0.0182 0.0312,-0.0171 0.0327,-0.016 0.008,-0.003 0.008,-0.003 0.0335,-0.0145 0.0336,-0.0131 0.0336,-0.0117 0.0343,-0.0104 0.0343,-0.009 0.0343,-0.008 0.0343,-0.006 0.0152,-0.002 0.0336,-0.005 0.0336,-0.003 0.0328,-0.002 0.0319,-2.6e-4 0.0312,5.8e-4 0.0311,0.002 0.0295,0.004", + "fill": { + "paint": "transparent" + }, + "id": "path944", + "name": "path944", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 75.712813,124.82407 v -0.009 l 0.008,-0.024 0.008,-0.0239 v -0.0236 -0.0231 l 5e-4,-0.0227 -5e-4,-0.0222 -5e-4,-0.0113 v -0.0219 l -0.008,-0.0216 -0.008,-0.0212 -0.008,-0.0206 -0.008,-0.0197 -0.009,-0.0189", + "fill": { + "paint": "transparent" + }, + "id": "path945", + "name": "path945", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 71.132813,125.31882 0.0152,-0.0245 0.0168,-0.0243 0.0184,-0.0242 0.02,-0.0239 0.0216,-0.0234 0.0232,-0.0231 0.024,-0.0225 0.0113,-0.0101 0.0263,-0.0218 0.0272,-0.0209 0.0287,-0.02 0.0296,-0.0191 0.0303,-0.0182 0.0319,-0.0171 0.0319,-0.016 0.008,-0.003 0.008,-0.003 0.0335,-0.0145 0.0336,-0.0131 0.0335,-0.0117 0.0342,-0.0104 0.0342,-0.009 0.0342,-0.008 0.0342,-0.006 0.0152,-0.002 0.0335,-0.005 0.0335,-0.003 0.0327,-0.002 0.0319,-2.6e-4 0.0312,5.8e-4 0.0303,0.002 0.0295,0.004", + "fill": { + "paint": "transparent" + }, + "id": "path946", + "name": "path946", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 72.025163,124.82407 v -0.009 l 0.008,-0.024 0.008,-0.0239 v -0.0236 -0.0231 l 5e-4,-0.0227 -4.8e-4,-0.0222 v -0.0113 -0.0219 -0.0216 l -0.008,-0.0212 -0.008,-0.0206 -0.008,-0.0197 -0.009,-0.0189", + "fill": { + "paint": "transparent" + }, + "id": "path947", + "name": "path947", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 75.789433,122.34724 0.0152,-0.0245 0.0168,-0.0243 0.0184,-0.0242 0.02,-0.0239 0.0216,-0.0234 0.0232,-0.0231 0.024,-0.0225 0.0112,-0.01 0.0264,-0.0218 0.0272,-0.0209 0.0288,-0.02 0.0295,-0.0191 0.0303,-0.0182 0.0312,-0.0171 0.0327,-0.0161 0.008,-0.003 0.008,-0.003 0.0335,-0.0143 0.0336,-0.0131 0.0336,-0.0117 0.0343,-0.0104 0.0343,-0.009 0.0343,-0.008 0.0343,-0.006 0.0152,-0.002 0.0335,-0.005 0.0336,-0.003 0.0327,-0.002 0.0319,-2.7e-4 0.0312,5.7e-4 0.0303,0.002 0.0296,0.004", + "fill": { + "paint": "transparent" + }, + "id": "path948", + "name": "path948", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 76.681963,121.85251 v -0.009 l 0.008,-0.024 0.008,-0.0239 v -0.0236 -0.0231 l 5e-4,-0.0227 -5e-4,-0.0221 v -0.0114 -0.0219 l -0.008,-0.0215 -0.008,-0.0212 -0.008,-0.0206 -0.008,-0.0197 -0.009,-0.0189", + "fill": { + "paint": "transparent" + }, + "id": "path949", + "name": "path949", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 75.696913,124.54045 -0.0103,-0.0182 -0.012,-0.0179 -0.0128,-0.0175 -0.0144,-0.017 -0.016,-0.0164 -0.0168,-0.0155 -0.0168,-0.0137 -0.0184,-0.0137 -0.02,-0.0129 -0.0208,-0.012 -0.0224,-0.0112 -0.0232,-0.0102 -0.0247,-0.009 -0.0192,-0.007 -0.0263,-0.008 -0.0272,-0.007 -0.0287,-0.005 -0.0296,-0.004 -0.0303,-0.003 -0.0311,-0.002 -0.0128,-3.2e-4 -0.032,1.6e-4 -0.0328,0.002 -0.0327,0.003 -0.0336,0.005 -0.0335,0.005 -0.0343,0.007 -0.008,5.7e-4 -0.0343,0.009 -0.0343,0.0101 -0.0343,0.0113 -0.0336,0.0126 -0.0335,0.014 -0.0311,0.0142 -2.5e-4,1.6e-4 -0.032,0.0162 -0.0312,0.0173 -0.0303,0.0181 -0.0287,0.0191 -0.0279,0.02 -0.0272,0.021 -0.0152,0.0122 -0.0256,0.0222 -0.024,0.0228 -0.0224,0.0233 -0.0208,0.0237 -0.0192,0.024 -0.0176,0.0242 -0.016,0.0243 -0.0152,0.0245 -0.0136,0.0245 -0.0121,0.0245 -0.0103,0.0245 -0.009,0.0245", + "fill": { + "paint": "transparent" + }, + "id": "path950", + "name": "path950", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 72.234503,124.62396 0.008,-0.0222 0.009,-0.0318 0.008,-0.0315 0.008,-0.0311 v -0.0308 -0.0248 l 3.1e-4,-0.0302 v -0.0296 -0.029 l -0.008,-0.0283 -0.008,-0.0243 -0.008,-0.0276 -0.009,-0.027 -0.0104,-0.0263 -0.012,-0.0255 -0.0137,-0.0248 -0.0152,-0.0242 -0.0168,-0.0236 -0.0176,-0.0228 -0.0168,-0.0191 -0.0208,-0.021 -0.0217,-0.0203 -0.0232,-0.0195 -0.0248,-0.0186 -0.0216,-0.0145 -0.0272,-0.0167 -0.0287,-0.0157 -0.0303,-0.0147 -0.0311,-0.0137 -0.0224,-0.009 -0.0335,-0.0116 -0.0342,-0.0104 -0.036,-0.009 -0.0367,-0.008 -0.0208,-0.004 -0.0391,-0.006 -0.04,-0.005 -0.0407,-0.003 -0.0415,-0.002 -0.0176,-1.3e-4 -0.0431,5.5e-4 -0.0431,0.002 -0.0439,0.004 -0.0448,0.005 -0.0448,0.007 -0.0448,0.009 -0.0455,0.0104 -0.0455,0.012 -0.0232,0.007 -0.0455,0.0145 -0.0448,0.0159 -0.0439,0.0174 -0.0439,0.0189 -0.0431,0.0203 -0.0424,0.0218 -0.0121,0.007 -0.0415,0.0236 -0.0407,0.0248 -0.02,0.013 -0.0383,0.0263 -0.0367,0.0272 -0.0352,0.0279 -0.0335,0.0287 -0.0319,0.0296 -0.0303,0.0302 -0.0287,0.0308 -0.0272,0.0315 -0.024,0.0299 -0.024,0.0323 -0.0224,0.0324 -0.0208,0.0326 -0.0184,0.0326 -0.0168,0.0326 -0.0152,0.0325 -0.0128,0.0324 -0.0112,0.0323", + "fill": { + "paint": "transparent" + }, + "id": "path951", + "name": "path951", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 74.044643,124.62396 -0.008,0.0222 -0.008,0.0319 -0.008,0.0315 -0.008,0.0311 v 0.0308 0.0248 l -3.2e-4,0.0302 v 0.0296 0.029 l 0.008,0.0284 0.008,0.0243 0.008,0.0276 0.009,0.027 0.0103,0.0263 0.012,0.0254 0.0136,0.0248 0.0152,0.0242 0.0168,0.0236 0.0184,0.0227 0.0168,0.0191 0.02,0.021 0.0216,0.0203 0.0232,0.0195 0.0247,0.0186 0.0216,0.0145 0.0272,0.0168 0.0287,0.0157 0.0295,0.0147 0.0312,0.0137 0.0232,0.009 0.0335,0.0116 0.0343,0.0104 0.0359,0.009 0.0367,0.008 0.0208,0.004 0.0391,0.006 0.04,0.005 0.0407,0.003 0.0415,0.002 0.0176,1.4e-4 0.0431,-5.6e-4 0.0431,-0.002 0.0439,-0.004 0.0439,-0.005 0.0448,-0.007 0.0448,-0.009 0.0455,-0.0104 0.0455,-0.012 0.0224,-0.007 0.0455,-0.0144 0.0448,-0.0159 0.0439,-0.0174 0.0439,-0.0189 0.0431,-0.0203 0.0424,-0.0218 0.012,-0.007 0.0415,-0.0236 0.0407,-0.0248 0.02,-0.0131 0.0383,-0.0263 0.0367,-0.027 0.0352,-0.0279 0.0335,-0.0287 0.032,-0.0296 0.0303,-0.0302 0.0287,-0.0308 0.0272,-0.0315 0.024,-0.0299 0.024,-0.0323 0.0224,-0.0325 0.0208,-0.0326 0.0184,-0.0326 0.0168,-0.0326 0.0152,-0.0325 0.0128,-0.0323 0.0112,-0.0323", + "fill": { + "paint": "transparent" + }, + "id": "path952", + "name": "path952", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 75.922153,124.62396 0.008,-0.0222 0.009,-0.0318 0.008,-0.0315 0.008,-0.0311 v -0.0308 -0.0248 l 1.6e-4,-0.0302 v -0.0296 -0.029 l -0.008,-0.0283 -0.008,-0.0243 -0.008,-0.0276 -0.009,-0.027 -0.0103,-0.0263 -0.012,-0.0255 -0.0136,-0.0248 -0.0152,-0.0242 -0.0168,-0.0236 -0.0176,-0.0228 -0.0168,-0.0191 -0.02,-0.021 -0.0216,-0.0203 -0.0232,-0.0195 -0.0247,-0.0186 -0.0216,-0.0145 -0.0272,-0.0167 -0.0288,-0.0157 -0.0295,-0.0147 -0.0311,-0.0137 -0.0224,-0.009 -0.0336,-0.0116 -0.0343,-0.0104 -0.036,-0.009 -0.0367,-0.008 -0.0216,-0.004 -0.0384,-0.006 -0.04,-0.005 -0.0407,-0.003 -0.0415,-0.002 -0.0176,-1.3e-4 -0.0431,5.5e-4 -0.0431,0.002 -0.0439,0.004 -0.0448,0.005 -0.0448,0.007 -0.0448,0.009 -0.0455,0.0104 -0.0455,0.012 -0.0232,0.007 -0.0455,0.0145 -0.0448,0.0159 -0.0448,0.0174 -0.0439,0.0189 -0.0431,0.0203 -0.0424,0.0218 -0.012,0.007 -0.0415,0.0236 -0.0407,0.0248 -0.02,0.013 -0.0383,0.0263 -0.0367,0.0272 -0.0351,0.0279 -0.0336,0.0287 -0.0319,0.0296 -0.0303,0.0302 -0.0287,0.0308 -0.0272,0.0315 -0.024,0.0299 -0.024,0.0323 -0.0224,0.0324 -0.0208,0.0326 -0.0184,0.0326 -0.0168,0.0326 -0.0152,0.0325 -0.0128,0.0324 -0.0112,0.0323", + "fill": { + "paint": "transparent" + }, + "id": "path953", + "name": "path953", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 74.337713,123.05467 -0.0103,-0.0182 -0.0112,-0.0179 -0.0128,-0.0174 -0.0144,-0.017 -0.016,-0.0163 -0.0168,-0.0155 -0.0168,-0.0136 -0.0184,-0.0137 -0.02,-0.0129 -0.0208,-0.012 -0.0224,-0.0112 -0.0232,-0.0104 -0.0247,-0.009 -0.02,-0.007 -0.0264,-0.008 -0.0272,-0.007 -0.0287,-0.005 -0.0296,-0.004 -0.0304,-0.003 -0.0311,-0.002 -0.0128,-3.3e-4 -0.0319,1.7e-4 -0.0327,0.002 -0.0327,0.003 -0.0335,0.005 -0.0335,0.005 -0.0342,0.007 -0.008,5.8e-4 -0.0343,0.009 -0.0342,0.0101 -0.0342,0.0113 -0.0336,0.0126 -0.0335,0.014 -0.0311,0.0143 -4e-4,1.5e-4 -0.0319,0.0162 -0.0311,0.0173 -0.0304,0.0182 -0.0287,0.0191 -0.0279,0.02 -0.0272,0.021 -0.0144,0.0122 -0.0256,0.0222 -0.024,0.0228 -0.0224,0.0233 -0.0208,0.0237 -0.0192,0.024 -0.0184,0.0242 -0.0168,0.0243 -0.0152,0.0245 -0.0137,0.0245 -0.012,0.0245 -0.0103,0.0245 -0.009,0.0245", + "fill": { + "paint": "transparent" + }, + "id": "path954", + "name": "path954", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 72.978593,121.56891 -0.0104,-0.0182 -0.012,-0.0179 -0.0128,-0.0175 -0.0145,-0.0169 -0.0161,-0.0164 -0.0168,-0.0155 -0.0168,-0.0137 -0.0184,-0.0136 -0.02,-0.0129 -0.0208,-0.0121 -0.0224,-0.0112 -0.0232,-0.0103 -0.0247,-0.009 -0.02,-0.007 -0.0264,-0.008 -0.0272,-0.007 -0.0279,-0.005 -0.0296,-0.004 -0.0303,-0.003 -0.0312,-0.002 -0.0128,-3e-4 -0.0319,1.4e-4 -0.0327,0.002 -0.0327,0.003 -0.0335,0.005 -0.0335,0.005 -0.0342,0.007 -0.008,5.7e-4 -0.0342,0.009 -0.0342,0.0101 -0.0342,0.0113 -0.0335,0.0126 -0.0336,0.014 -0.0312,0.0143 -4e-4,1.9e-4 -0.0319,0.0161 -0.0311,0.0172 -0.0304,0.0182 -0.0287,0.0191 -0.0279,0.02 -0.0272,0.021 -0.0144,0.0122 -0.0256,0.0222 -0.024,0.0228 -0.0224,0.0234 -0.0208,0.0237 -0.0193,0.024 -0.0184,0.0242 -0.0168,0.0243 -0.0152,0.0245 -0.0136,0.0245 -0.0121,0.0245 -0.0103,0.0245 -0.009,0.0245", + "fill": { + "paint": "transparent" + }, + "id": "path955", + "name": "path955", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 71.742743,121.85251 v 0.009 l -0.008,0.024 -0.008,0.0239 v 0.0236 0.0231 l -5e-4,0.0227 5e-4,0.0221 v 0.0113 0.0219 l 0.008,0.0215 0.008,0.0212 0.008,0.0204 0.008,0.0197 0.009,0.0189", + "fill": { + "paint": "transparent" + }, + "id": "path956", + "name": "path956", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 76.666063,121.56891 -0.0103,-0.0182 -0.0113,-0.0179 -0.0127,-0.0175 -0.0144,-0.0169 -0.016,-0.0164 -0.0168,-0.0155 -0.0168,-0.0137 -0.0184,-0.0136 -0.02,-0.0129 -0.0208,-0.0121 -0.0224,-0.0112 -0.0232,-0.0103 -0.0247,-0.009 -0.0192,-0.007 -0.0264,-0.008 -0.0272,-0.007 -0.028,-0.005 -0.0296,-0.004 -0.0303,-0.003 -0.0311,-0.002 -0.0128,-3e-4 -0.032,1.4e-4 -0.0328,0.002 -0.0327,0.003 -0.0335,0.005 -0.0336,0.005 -0.0343,0.007 -0.008,5.7e-4 -0.0343,0.009 -0.0343,0.0101 -0.0343,0.0113 -0.0335,0.0126 -0.0336,0.014 -0.0311,0.0143 -4e-4,1.9e-4 -0.0319,0.0161 -0.0312,0.0172 -0.0303,0.0182 -0.0287,0.0191 -0.028,0.02 -0.0272,0.021 -0.0152,0.0122 -0.0256,0.0222 -0.024,0.0228 -0.0224,0.0234 -0.0208,0.0237 -0.0192,0.024 -0.0176,0.0242 -0.016,0.0243 -0.0152,0.0245 -0.0136,0.0245 -0.0121,0.0245 -0.0103,0.0245 -0.009,0.0245", + "fill": { + "paint": "transparent" + }, + "id": "path957", + "name": "path957", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 73.102033,123.33828 v 0.009 l -0.008,0.024 -0.008,0.0239 v 0.0236 0.0231 l -5e-4,0.0227 4.8e-4,0.0222 v 0.0113 0.0219 0.0215 l 0.008,0.0212 0.008,0.0206 0.008,0.0197 0.009,0.0189", + "fill": { + "paint": "transparent" + }, + "id": "path958", + "name": "path958", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 75.013793,121.6524 -0.008,0.0222 -0.009,0.0318 -0.008,0.0315 -0.008,0.0311 v 0.0306 0.0248 l -3.2e-4,0.0302 v 0.0296 0.029 l 0.008,0.0284 0.008,0.0243 0.008,0.0276 0.009,0.027 0.0103,0.0263 0.012,0.0255 0.0136,0.0248 0.0152,0.0242 0.0168,0.0236 0.0176,0.0227 0.0168,0.0191 0.02,0.021 0.0216,0.0203 0.0232,0.0195 0.0247,0.0186 0.0216,0.0145 0.0272,0.0168 0.0287,0.0157 0.0296,0.0147 0.0311,0.0136 0.0232,0.009 0.0335,0.0116 0.0343,0.0104 0.0359,0.009 0.0367,0.008 0.0208,0.004 0.0391,0.006 0.04,0.005 0.0407,0.003 0.0415,0.002 0.0176,1.5e-4 0.0431,-5.7e-4 0.0431,-0.002 0.0439,-0.004 0.0448,-0.005 0.0448,-0.007 0.0448,-0.009 0.0455,-0.0104 0.0455,-0.012 0.0232,-0.007 0.0455,-0.0145 0.0448,-0.0159 0.0448,-0.0174 0.0439,-0.0189 0.0431,-0.0203 0.0424,-0.0218 0.012,-0.007 0.0415,-0.0236 0.0407,-0.0248 0.02,-0.013 0.0384,-0.0263 0.0367,-0.0272 0.0351,-0.0279 0.0336,-0.0287 0.0319,-0.0296 0.0303,-0.0302 0.0287,-0.0308 0.0272,-0.0315 0.024,-0.0297 0.024,-0.0323 0.0224,-0.0324 0.0208,-0.0326 0.0184,-0.0326 0.0168,-0.0326 0.0152,-0.0325 0.0128,-0.0324 0.0112,-0.0323", + "fill": { + "paint": "transparent" + }, + "id": "path959", + "name": "path959", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 74.461223,124.82407 v 0.009 l -0.008,0.024 -0.008,0.0239 v 0.0236 0.0231 l -5e-4,0.0227 5e-4,0.0222 5e-4,0.0113 v 0.0219 l 0.008,0.0216 0.008,0.0212 0.008,0.0206 0.008,0.0197 0.009,0.0189", + "fill": { + "paint": "transparent" + }, + "id": "path960", + "name": "path960", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 76.891303,121.6524 0.008,-0.0221 0.008,-0.0319 0.008,-0.0315 0.008,-0.0311 v -0.0308 -0.0248 l 1.6e-4,-0.0302 v -0.0296 -0.029 l -0.008,-0.0284 -0.008,-0.0243 -0.008,-0.0276 -0.009,-0.027 -0.0103,-0.0263 -0.012,-0.0254 -0.0136,-0.0248 -0.0152,-0.0242 -0.0168,-0.0236 -0.0184,-0.0227 -0.0168,-0.0191 -0.02,-0.021 -0.0216,-0.0203 -0.0232,-0.0195 -0.0247,-0.0186 -0.0216,-0.0146 -0.0272,-0.0168 -0.0287,-0.0157 -0.0296,-0.0147 -0.0311,-0.0137 -0.0232,-0.009 -0.0336,-0.0116 -0.0343,-0.0104 -0.0359,-0.009 -0.0367,-0.008 -0.0216,-0.004 -0.0384,-0.006 -0.04,-0.005 -0.0407,-0.003 -0.0415,-0.002 -0.0176,-1.4e-4 -0.0431,5.6e-4 -0.0431,0.002 -0.0439,0.004 -0.0448,0.005 -0.0448,0.007 -0.0448,0.009 -0.0455,0.0104 -0.0455,0.012 -0.0232,0.007 -0.0455,0.0144 -0.0448,0.0159 -0.0448,0.0174 -0.0439,0.0189 -0.0431,0.0203 -0.0424,0.0218 -0.012,0.007 -0.0415,0.0236 -0.0407,0.0248 -0.02,0.013 -0.0383,0.0263 -0.0367,0.0272 -0.0351,0.0279 -0.0335,0.0287 -0.0319,0.0296 -0.0303,0.0302 -0.0287,0.0308 -0.0272,0.0316 -0.024,0.0299 -0.024,0.0323 -0.0224,0.0325 -0.0208,0.0326 -0.0184,0.0326 -0.0168,0.0326 -0.0152,0.0325 -0.0127,0.0324 -0.0113,0.0323", + "fill": { + "paint": "transparent" + }, + "id": "path961", + "name": "path961", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 72.685443,123.13819 -0.008,0.0222 -0.008,0.0318 -0.008,0.0315 -0.008,0.0311 v 0.0308 0.0248 l -3.2e-4,0.0302 v 0.0296 0.029 l 0.008,0.0284 0.008,0.0243 0.008,0.0276 0.009,0.027 0.0103,0.0263 0.0121,0.0254 0.0137,0.0248 0.0152,0.0242 0.0168,0.0236 0.0176,0.0227 0.0168,0.0191 0.02,0.021 0.0216,0.0203 0.0232,0.0195 0.0247,0.0186 0.0216,0.0146 0.0272,0.0167 0.0287,0.0158 0.0295,0.0147 0.0311,0.0137 0.0224,0.009 0.0335,0.0116 0.0343,0.0104 0.036,0.009 0.0367,0.008 0.0208,0.004 0.0391,0.006 0.04,0.005 0.0407,0.003 0.0415,0.002 0.0176,1.5e-4 0.0431,-5.8e-4 0.0431,-0.002 0.0439,-0.004 0.0448,-0.005 0.0448,-0.007 0.0448,-0.009 0.0455,-0.0104 0.0455,-0.012 0.0232,-0.007 0.0455,-0.0144 0.0448,-0.0159 0.0439,-0.0175 0.0439,-0.0189 0.0431,-0.0203 0.0424,-0.0218 0.012,-0.007 0.0415,-0.0236 0.0407,-0.0248 0.02,-0.013 0.0383,-0.0263 0.0367,-0.0272 0.0352,-0.0279 0.0335,-0.0287 0.0319,-0.0296 0.0303,-0.0302 0.0287,-0.0308 0.027,-0.0315 0.024,-0.0299 0.024,-0.0323 0.0224,-0.0324 0.0208,-0.0326 0.0184,-0.0326 0.0168,-0.0326 0.0152,-0.0326 0.0127,-0.0324 0.0113,-0.0323", + "fill": { + "paint": "transparent" + }, + "id": "path962", + "name": "path962", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 72.009353,124.54045 -0.0103,-0.0182 -0.0112,-0.0179 -0.0128,-0.0175 -0.0145,-0.017 -0.0152,-0.0164 -0.0168,-0.0155 -0.0168,-0.0137 -0.0185,-0.0137 -0.02,-0.0129 -0.0208,-0.012 -0.0224,-0.0112 -0.0232,-0.0102 -0.0247,-0.009 -0.0193,-0.007 -0.0264,-0.008 -0.0271,-0.007 -0.028,-0.005 -0.0296,-0.004 -0.0303,-0.003 -0.0311,-0.002 -0.0128,-3.2e-4 -0.0319,1.6e-4 -0.0328,0.002 -0.0328,0.003 -0.0335,0.005 -0.0335,0.005 -0.0342,0.007 -0.008,5.7e-4 -0.0342,0.009 -0.0342,0.0101 -0.0342,0.0113 -0.0335,0.0126 -0.0335,0.014 -0.0311,0.0142 -4e-4,1.6e-4 -0.0318,0.0162 -0.0312,0.0173 -0.0303,0.0181 -0.0287,0.0191 -0.028,0.02 -0.0272,0.021 -0.0144,0.0122 -0.0256,0.0222 -0.024,0.0228 -0.0224,0.0233 -0.0208,0.0237 -0.0192,0.024 -0.0176,0.0242 -0.0168,0.0243 -0.0152,0.0245 -0.0137,0.0245 -0.0121,0.0245 -0.0103,0.0245 -0.009,0.0245", + "fill": { + "paint": "transparent" + }, + "id": "path963", + "name": "path963", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 74.562853,123.13819 0.008,-0.0222 0.009,-0.0319 0.008,-0.0315 0.008,-0.0311 v -0.0308 -0.0248 l 3.1e-4,-0.0302 v -0.0296 -0.029 l -0.008,-0.0284 -0.008,-0.0243 -0.008,-0.0276 -0.009,-0.027 -0.0103,-0.0263 -0.0121,-0.0254 -0.0136,-0.0248 -0.0152,-0.0242 -0.0168,-0.0236 -0.0176,-0.0227 -0.0168,-0.0191 -0.02,-0.021 -0.0216,-0.0203 -0.0232,-0.0195 -0.0247,-0.0186 -0.0216,-0.0146 -0.0272,-0.0168 -0.0287,-0.0158 -0.0296,-0.0147 -0.0312,-0.0137 -0.0232,-0.009 -0.0336,-0.0116 -0.0343,-0.0104 -0.036,-0.009 -0.0367,-0.008 -0.0208,-0.004 -0.0383,-0.006 -0.04,-0.005 -0.0407,-0.003 -0.0415,-0.002 -0.0176,-1.2e-4 -0.0431,5.5e-4 -0.0431,0.002 -0.0439,0.004 -0.0448,0.005 -0.0448,0.007 -0.0448,0.009 -0.0455,0.0104 -0.0455,0.012 -0.0232,0.007 -0.0455,0.0144 -0.0448,0.0159 -0.0448,0.0174 -0.0439,0.0189 -0.0431,0.0203 -0.0424,0.0218 -0.012,0.007 -0.0415,0.0236 -0.0407,0.0248 -0.02,0.013 -0.0384,0.0263 -0.0367,0.0272 -0.0352,0.0279 -0.0335,0.0287 -0.0319,0.0296 -0.0303,0.0302 -0.0287,0.0308 -0.0272,0.0315 -0.024,0.0299 -0.024,0.0323 -0.0224,0.0325 -0.02,0.0326 -0.0184,0.0326 -0.0168,0.0326 -0.0152,0.0326 -0.0128,0.0325 -0.0112,0.0323", + "fill": { + "paint": "transparent" + }, + "id": "path964", + "name": "path964", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 71.326163,121.6524 -0.008,0.0222 -0.009,0.0318 -0.008,0.0315 -0.008,0.0311 v 0.0306 0.0248 l -1.6e-4,0.0302 v 0.0296 0.029 l 0.008,0.0284 0.008,0.0243 0.008,0.0276 0.009,0.027 0.0105,0.0263 0.0121,0.0255 0.0137,0.0248 0.0152,0.0242 0.0168,0.0236 0.0176,0.0227 0.0168,0.0191 0.0208,0.021 0.0216,0.0203 0.0232,0.0195 0.0248,0.0186 0.0216,0.0145 0.0272,0.0168 0.0287,0.0157 0.0296,0.0147 0.0311,0.0136 0.0224,0.009 0.0336,0.0116 0.0342,0.0104 0.036,0.009 0.0367,0.008 0.0216,0.004 0.0384,0.006 0.04,0.005 0.0408,0.003 0.0415,0.002 0.0176,1.5e-4 0.0431,-5.7e-4 0.0431,-0.002 0.0439,-0.004 0.0448,-0.005 0.0448,-0.007 0.0448,-0.009 0.0455,-0.0104 0.0455,-0.012 0.0232,-0.007 0.0455,-0.0145 0.0448,-0.0159 0.0448,-0.0174 0.0439,-0.0189 0.0431,-0.0203 0.0424,-0.0218 0.012,-0.007 0.0415,-0.0236 0.0407,-0.0248 0.02,-0.013 0.0384,-0.0263 0.0367,-0.0272 0.0351,-0.0279 0.0335,-0.0287 0.032,-0.0296 0.0303,-0.0302 0.0287,-0.0308 0.028,-0.0315 0.024,-0.0297 0.024,-0.0323 0.0224,-0.0324 0.0208,-0.0326 0.0184,-0.0326 0.0168,-0.0326 0.0152,-0.0325 0.0128,-0.0324 0.0112,-0.0323", + "fill": { + "paint": "transparent" + }, + "id": "path965", + "name": "path965", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 73.203653,121.6524 v -0.008 l 0.009,-0.0296 0.008,-0.0294 0.008,-0.0291 0.008,-0.0288 v -0.0284 -0.0279 l -2.4e-4,-0.0275 -5e-4,-0.013 v -0.027 -0.0268 l -0.008,-0.0263 -0.008,-0.0258 -0.008,-0.0252 -0.009,-0.0245 -0.0104,-0.0239 -0.0112,-0.0233 -0.0128,-0.023 -0.0144,-0.0224 -0.0152,-0.0218 -0.0168,-0.0212 -0.0176,-0.0206 -0.0192,-0.0197 -0.01,-0.009 -0.02,-0.0185 -0.0216,-0.0177 -0.0232,-0.017 -0.0239,-0.0163 -0.0256,-0.0155 -0.0263,-0.0146 -0.028,-0.0137 -0.0103,-0.005", + "fill": { + "paint": "transparent" + }, + "id": "path966", + "name": "path966", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 72.876313,120.96309 -0.0294,-0.0116 -0.0312,-0.0106 -0.0319,-0.01 -0.0334,-0.009 -0.0343,-0.008 -0.0351,-0.006 -0.0359,-0.005 -0.0367,-0.004 -0.0384,-0.002 -0.0383,-0.002 -0.0391,-3e-5 -0.04,0.002 -0.0103,5.5e-4 -0.0407,0.003 -0.0407,0.005 -0.0407,0.006 -0.0415,0.007 -0.0415,0.009 -0.0359,0.008 -0.0424,0.0112 -0.0424,0.0125 -0.0415,0.0138 -0.0415,0.0152 -0.0407,0.0165 -0.028,0.0122 -0.04,0.0185 -0.0272,0.0134 -0.0391,0.0206 -0.0383,0.0218 -0.0376,0.0227 -0.0367,0.0237 -0.0287,0.0203 -0.0342,0.0251 -0.0327,0.0258 -0.0311,0.0266 -0.0303,0.0272 -0.0287,0.0279 -0.008,0.005 -0.0272,0.0287 -0.0256,0.029 -0.0247,0.0294 -0.0232,0.0296 -0.0217,0.0299 -0.02,0.03 -0.0185,0.0302 -0.0168,0.0302 -0.0152,0.0302 -0.0137,0.03 -0.012,0.0299 -0.0105,0.0299", + "fill": { + "paint": "transparent" + }, + "id": "path967", + "name": "path967", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 70.357163,124.62396 -0.008,0.0222 -0.009,0.0319 -0.008,0.0315 -0.008,0.0311 v 0.0308 0.0248 l -2.3e-4,0.0302 v 0.0296 0.029 l 0.008,0.0284 0.008,0.0243 0.008,0.0276 0.009,0.027 0.0103,0.0263 0.0121,0.0254 0.0137,0.0248 0.0152,0.0242 0.0168,0.0236 0.0176,0.0227 0.0168,0.0191 0.02,0.021 0.0216,0.0203 0.0232,0.0195 0.0248,0.0186 0.0216,0.0145 0.0272,0.0168 0.0287,0.0157 0.0303,0.0147 0.0311,0.0137 0.0224,0.009 0.0335,0.0116 0.0343,0.0104 0.0359,0.009 0.0367,0.008 0.0216,0.004 0.0383,0.006 0.04,0.005 0.0408,0.003 0.0415,0.002 0.0176,1.4e-4 0.0431,-5.6e-4 0.0431,-0.002 0.0439,-0.004 0.0448,-0.005 0.0448,-0.007 0.0448,-0.009 0.0455,-0.0104 0.0455,-0.012 0.0232,-0.007 0.0455,-0.0144 0.0448,-0.0159 0.0448,-0.0174 0.0439,-0.0189 0.0431,-0.0203 0.0424,-0.0218 0.012,-0.007 0.0415,-0.0236 0.0407,-0.0248 0.02,-0.0131 0.0384,-0.0263 0.0367,-0.027 0.0352,-0.0279 0.0335,-0.0287 0.0319,-0.0296 0.0303,-0.0302 0.0287,-0.0308 0.0272,-0.0315 0.024,-0.0299 0.024,-0.0323 0.0224,-0.0325 0.02,-0.0326 0.0184,-0.0326 0.0168,-0.0326 0.0152,-0.0325 0.0128,-0.0323 0.0112,-0.0323", + "fill": { + "paint": "transparent" + }, + "id": "path968", + "name": "path968", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 70.635453,120.30001 0.20325,-0.1257 0.20701,-0.1214 0.21046,-0.11694 0.21388,-0.11238 0.21692,-0.10766 0.21979,-0.10284 0.22172,-0.0975 0.22483,-0.0928 0.0112,-0.005 0.22635,-0.0871 0.22738,-0.0816 0.22843,-0.0761 0.2293,-0.0705 0.22987,-0.0649 0.23026,-0.0593 0.23058,-0.0537 0.23074,-0.0481 0.0583,-0.0113 0.22915,-0.0407 0.22747,-0.0348 0.22595,-0.0291 0.22419,-0.0233 0.22236,-0.0176 0.22043,-0.012 0.21859,-0.007 0.21637,-5.6e-4 0.11744,0.002 0.21198,0.008 0.20861,0.0128 0.20525,0.018 0.20174,0.0231 0.19798,0.0281 0.19407,0.0332 0.19031,0.038 0.18625,0.0428", + "fill": { + "paint": "transparent" + }, + "id": "path969", + "name": "path969", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 77.754023,118.90558 0.0424,0.0104 0.13495,0.0356 0.13279,0.038 0.13031,0.0404 0.12784,0.043 0.12535,0.0454 0.12264,0.0476 0.12017,0.0497 0.1176,0.052 0.0632,0.0293 0.11369,0.0554 0.11114,0.0576 0.10842,0.0596 0.10578,0.0616 0.10306,0.0635 0.10011,0.0654 0.0975,0.0671 0.0946,0.069 0.0679,0.0521 0.0901,0.0724 0.0875,0.0742 0.0848,0.0759 0.0819,0.0776 0.0791,0.0791 0.0759,0.0806 0.0735,0.082 0.0703,0.0833 0.0679,0.0852 0.0527,0.0704 0.0631,0.0885 0.0599,0.09 0.0575,0.0915 0.0544,0.0927 0.0511,0.0939 0.0487,0.0948 0.0448,0.0957", + "fill": { + "paint": "transparent" + }, + "id": "path970", + "name": "path970", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 81.080763,121.71179 0.02,0.0681 0.0184,0.0688 0.0176,0.0693 0.016,0.0699 0.0144,0.0704 0.0136,0.0709 0.0121,0.0712 0.008,0.0317 0.0103,0.0718 0.009,0.0724 0.008,0.0728 0.008,0.0734 0.008,0.0738 v 0.0743 0.0746 l 2.3e-4,0.0284", + "fill": { + "paint": "transparent" + }, + "id": "path971", + "name": "path971", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 81.238403,122.93707 v 0.0761 l -0.008,0.0765 -0.008,0.0768 -0.008,0.0558 -0.009,0.0774 -0.0103,0.0778 -0.0113,0.0782 -0.0128,0.0785 -0.0144,0.0789 -0.016,0.0792 -0.0176,0.0795 -0.0192,0.0797 -0.02,0.0799 -0.0216,0.0801 -0.0232,0.079", + "fill": { + "paint": "transparent" + }, + "id": "path972", + "name": "path972", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 80.969703,124.31984 -0.0296,0.0812 -0.0311,0.0813 -0.0327,0.0814 -0.02,0.0481 -0.0351,0.0816 -0.0367,0.0817 -0.0383,0.0818 -0.0391,0.0818 -0.0415,0.0819 -0.0424,0.0819 -0.0439,0.0819 -0.0455,0.0818 -0.0472,0.0818 -0.0487,0.0817 -0.0288,0.0475", + "fill": { + "paint": "transparent" + }, + "id": "path973", + "name": "path973", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 80.303533,125.64147 -0.0544,0.0814 -0.0559,0.0811 -0.0575,0.0809 -0.0256,0.0347 -0.0599,0.0806 -0.0615,0.0804 -0.0631,0.0801 -0.0647,0.0798 -0.0663,0.0795 -0.0671,0.0791 -0.0687,0.0787 -0.0703,0.0784 -0.0719,0.0779 -0.0735,0.0774 -0.0103,0.0112", + "fill": { + "paint": "transparent" + }, + "id": "path974", + "name": "path974", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 79.351953,126.80402 -0.0144,0.0149 -0.0152,0.0149 -0.0152,0.0148 -0.0152,0.0149 -0.0152,0.0149 -0.0152,0.0147 -0.0152,0.0147 -0.0152,0.0147 -0.0152,0.0147 -0.0152,0.0146", + "fill": { + "paint": "transparent" + }, + "id": "path975", + "name": "path975", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 76.634193,128.71036 -0.18393,0.0857 -0.2138,0.0943 -0.21565,0.0894 -0.21739,0.0846 -0.21876,0.0796 -0.22004,0.0746 -0.22091,0.0694 -0.22156,0.0643 -0.21652,0.0577 -0.22147,0.0538 -0.22123,0.0484 -0.22093,0.0431 v 5.7e-4 l -0.22011,0.0377 -0.21907,0.0325 -0.21795,0.027 -0.21693,0.0218 -0.0535,0.005 -0.21405,0.0152 -0.21173,0.0101 -0.20925,0.005 -0.20669,-2.2e-4 -0.20406,-0.005 -0.2015,-0.0102 -0.19878,-0.0152 -0.19607,-0.02 -0.10746,-0.0131 -0.19087,-0.0273 -0.18735,-0.0318 -0.18353,-0.0364 -0.17978,-0.0407 -0.17584,-0.0451 -0.17161,-0.0491 -0.16772,-0.0532 -0.1633,-0.0573", + "fill": { + "paint": "transparent" + }, + "id": "path976", + "name": "path976", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 69.935793,129.30339 -0.0224,-0.008 -0.10609,-0.0407 -0.10427,-0.0423 -0.10242,-0.044 -0.10043,-0.0458 -0.0985,-0.0473 -0.0965,-0.0488 -0.0944,-0.0505 -0.0328,-0.0182 -0.0919,-0.0524 -0.0899,-0.054 -0.088,-0.0555 -0.0858,-0.0569 -0.0839,-0.0583 -0.0817,-0.0595 -0.0799,-0.0609 -0.0367,-0.0291 -0.0767,-0.063 -0.0751,-0.0642 -0.0727,-0.0655 -0.0703,-0.0667 -0.0687,-0.0679 -0.0663,-0.069 -0.064,-0.07 -0.0335,-0.038 -0.0615,-0.0722 -0.0592,-0.0734 -0.0575,-0.0746 -0.0551,-0.0756 -0.0527,-0.0766 -0.0503,-0.0775 -0.0487,-0.0783", + "fill": { + "paint": "transparent" + }, + "id": "path977", + "name": "path977", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 67.608153,127.46469 -0.0743,-0.13336 -0.0687,-0.13696 -0.0631,-0.14025 -0.0568,-0.14303 -0.0472,-0.13338 -0.0448,-0.14697 -0.0383,-0.14855 -0.0327,-0.15144 -0.0264,-0.15408 -0.02,-0.1565 -0.0137,-0.15855 -0.008,-0.14096 v -0.16158 l 0.008,-0.16377 0.0121,-0.16581 0.0184,-0.1676 0.0256,-0.16918 0.024,-0.12967 0.0376,-0.17121 0.0448,-0.17247 0.052,-0.17361 0.0592,-0.17462 0.0664,-0.17547 0.0439,-0.10775 0.0775,-0.17644 0.085,-0.17662 0.0923,-0.17672 0.0996,-0.17667 0.10698,-0.17649 0.0503,-0.079 0.1177,-0.17593 0.12479,-0.17473 0.13191,-0.17353 0.13902,-0.17221 0.14629,-0.17084 0.0455,-0.0515 0.15571,-0.16889 0.16227,-0.16653 0.16891,-0.16397 0.17522,-0.16117 0.18144,-0.1582 0.18768,-0.15497 0.1935,-0.15156 0.19928,-0.14789 0.20469,-0.14392 0.20988,-0.13975 0.0583,-0.0377", + "fill": { + "paint": "transparent" + }, + "id": "path978", + "name": "path978", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 67.608153,127.46446 0.0472,0.0782 0.0496,0.0776 0.052,0.0769 0.0544,0.0762 0.0568,0.0754 0.0592,0.0745 0.0616,0.0736 0.0631,0.0726 0.0655,0.0714 0.0679,0.0702 0.0695,0.0689 0.0719,0.0675 0.0735,0.0661 0.0751,0.0645 0.0775,0.0629 0.008,0.006 0.0791,0.061 0.0811,0.0598 0.0833,0.0585 0.0854,0.0572 0.0877,0.0559 0.0898,0.0545 0.0919,0.053 0.0941,0.0517 0.0962,0.0502 0.0982,0.0487 0.1002,0.047 0.1021,0.0452 0.10411,0.0437 0.10578,0.0419 0.0759,0.0285", + "fill": { + "paint": "transparent" + }, + "id": "path979", + "name": "path979", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 70.062043,129.34814 0.11335,0.0375 0.11531,0.0358 0.11711,0.0338 0.11914,0.0317 0.12089,0.0299 0.1228,0.0278 0.0112,0.002 0.1248,0.0257 0.12647,0.0236 0.12816,0.0215 0.12982,0.0192 0.13137,0.0171 0.13286,0.0149 0.13447,0.0127 0.1359,0.0104 0.13734,0.008 0.13863,0.006 0.13998,0.004 0.14125,0.002 0.14237,-0.002 0.1435,-0.004 0.1443,-0.006 0.14533,-0.008 0.14614,-0.0108 0.0853,-0.008", + "fill": { + "paint": "transparent" + }, + "id": "path980", + "name": "path980", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 73.189433,129.67301 0.17865,-0.0182 0.17929,-0.0218 0.18008,-0.0252 0.18073,-0.0288 0.18144,-0.0325 0.18217,-0.0362 0.0343,-0.008 0.18289,-0.0406 0.18297,-0.0441 0.18271,-0.0478 0.18273,-0.0512 0.18216,-0.0548 0.18185,-0.0583 0.18104,-0.0617 0.18033,-0.0652 0.17937,-0.0686 0.17842,-0.0719 0.17712,-0.0752 0.1757,-0.0784 0.17426,-0.0816 0.1725,-0.0847 0.0376,-0.0188 0.17033,-0.0884 0.16827,-0.0913 0.1661,-0.0941 0.16387,-0.0968", + "fill": { + "paint": "transparent" + }, + "id": "path981", + "name": "path981", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 77.715673,128.11225 0.0987,-0.0634 0.1014,-0.0669 0.10026,-0.0679 0.0991,-0.0689 0.0966,-0.0689 0.0968,-0.0708 0.0954,-0.0718 0.0942,-0.0726 0.0928,-0.0734 0.0915,-0.0743 0.0901,-0.0751 0.0888,-0.0759 0.0872,-0.0766 0.086,-0.0773 0.0845,-0.078 0.083,-0.0787", + "fill": { + "paint": "transparent" + }, + "id": "path982", + "name": "path982", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 79.372403,126.78325 0.0615,-0.0629 0.0954,-0.10064 0.0927,-0.10117 0.0902,-0.10179 0.0876,-0.10249 0.0853,-0.10314 0.0335,-0.0419 0.0817,-0.10409 0.0791,-0.10467 0.0767,-0.10516 0.0743,-0.10555 0.0711,-0.1059 0.0687,-0.10617 0.0663,-0.10636 0.0639,-0.10651 0.0607,-0.10656 0.0583,-0.10662 0.0559,-0.10657 0.0527,-0.10652 0.0503,-0.10641 0.0479,-0.10624 0.0448,-0.10608 0.0424,-0.10585 0.04,-0.10564", + "fill": { + "paint": "transparent" + }, + "id": "path983", + "name": "path983", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 81.110883,123.84664 5e-4,-0.003 0.0232,-0.0988 0.0208,-0.0985 0.0184,-0.0981 0.016,-0.0976 0.0136,-0.0972 0.0112,-0.0966 0.01,-0.096 0.008,-0.0953 0.008,-0.0946 v -0.0939 l 4.9e-4,-0.0931 v -0.0923 -0.0914 l -0.008,-0.0906 v -0.032 l -0.009,-0.0903 -0.0112,-0.0899 -0.0127,-0.0895 -0.0152,-0.0889 -0.0176,-0.0883 -0.0192,-0.0876 -0.0216,-0.0868 -0.0232,-0.086 -0.0256,-0.085 -0.0272,-0.084 -0.0296,-0.0829 -0.0311,-0.0817 -0.0327,-0.0805 -0.0351,-0.0792", + "fill": { + "paint": "transparent" + }, + "id": "path984", + "name": "path984", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 67.345143,124.20535 -0.028,0.0889 -0.0327,0.11214 -0.0303,0.11186 -0.0272,0.11146 -0.024,0.11093 -0.0216,0.11034 -0.0184,0.1097 -0.0152,0.10895 -0.0128,0.10815 -0.01,0.10727 -0.008,0.10636 -0.008,0.10542 v 0.1044 0.10341 l 0.008,0.10235 0.008,0.10125 0.01,0.10115 v 0.0197 l 0.0128,0.10089 0.0152,0.1005 0.0184,0.0999 0.0208,0.0992 0.0232,0.0985 0.0264,0.0975 0.0287,0.0965 0.0312,0.0953 0.0335,0.094 0.0359,0.0926 0.0383,0.0912 0.0407,0.0896 0.0431,0.0879 0.0448,0.0862 0.0472,0.0844", + "fill": { + "paint": "transparent" + }, + "id": "path985", + "name": "path985", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 80.907713,121.25699 -0.0455,-0.0952 -0.0487,-0.0944 -0.052,-0.0934 -0.0551,-0.0923 -0.0575,-0.091 -0.0607,-0.0896 -0.0631,-0.0881 -0.0503,-0.0667 -0.0679,-0.0849 -0.0703,-0.083 -0.0735,-0.0816 -0.0759,-0.0801 -0.0791,-0.0785 -0.0817,-0.0769 -0.0845,-0.0752 -0.0872,-0.0734 -0.0897,-0.0716 -0.0663,-0.0506 -0.0942,-0.0682 -0.0971,-0.0667 -0.1002,-0.0649 -0.10298,-0.0632 -0.10602,-0.0614 -0.10883,-0.0595 -0.1116,-0.0575 -0.11441,-0.0554 -0.11697,-0.0533 -0.1196,-0.0512 -0.12208,-0.049 -0.12448,-0.0466 -0.12671,-0.044 -0.12863,-0.0416 -0.13064,-0.0391 -0.13239,-0.0364 -0.10283,-0.0261", + "fill": { + "paint": "transparent" + }, + "id": "path986", + "name": "path986", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 77.757693,118.90656 -0.18831,-0.0434 -0.19184,-0.0384 -0.19526,-0.0333 -0.19863,-0.0284 -0.20222,-0.0233 -0.20541,-0.018 -0.20861,-0.0127 -0.21173,-0.008 -0.21485,-0.002 -0.21755,0.004 -0.22044,0.009 -0.22283,0.0149 -0.22523,0.0206 -0.22738,0.0263 -0.22898,0.0323 -0.23059,0.0381 -0.19359,0.0362 -0.2325,0.0488 -0.23178,0.0544 -0.2313,0.06 -0.23027,0.0655 -0.2293,0.071 -0.2281,0.0765 -0.22676,0.0819 -0.22523,0.0873 -0.22338,0.0927 -0.22148,0.0979 -0.2194,0.10322 -0.21708,0.10831 -0.21444,0.1134 -0.21188,0.11832 -0.20893,0.12318 -0.20574,0.12797 -0.0256,0.0161", + "fill": { + "paint": "transparent" + }, + "id": "path987", + "name": "path987", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 70.591423,120.32818 -0.0559,0.0359 -0.16731,0.11127 -0.16355,0.11367 -0.15995,0.11593 -0.15612,0.11812 -0.15228,0.12025 -0.14837,0.12228 -0.14461,0.12424 -0.14054,0.12612 -0.13662,0.12793 -0.13256,0.12966 -0.12855,0.13138 -0.12456,0.13297 -0.12048,0.1346 -0.11649,0.1361 -0.008,0.005 -0.11185,0.13715 -0.10739,0.13805 -0.10282,0.1387 -0.0981,0.13927 -0.0935,0.13969 -0.0889,0.13999 -0.0842,0.14016 -0.0799,0.14027 -0.0751,0.14024 -0.0703,0.14016 -0.0655,0.14001 -0.0607,0.13978 -0.0568,0.13953 -0.052,0.13921 -0.0472,0.13886", + "fill": { + "paint": "transparent" + }, + "id": "path988", + "name": "path988", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "cx": "46.344921", + "cy": "137.34024", + "fill": { + "opacity": "1", + "paint": "transparent" + }, + "id": "ellipse988", + "name": "ellipse988", + "rx": "4.6207089", + "ry": "3.5301664", + "stroke": { + "dasharray": "none", + "opacity": "1", + "paint": "#000000", + "width": "1.10038" + }, + "transform": "matrix(0.9696729,-0.24440635,0.20828824,0.97806749,0,0)", + "type": "ellipse" + }, + { + "d": "m 121.22437,123.74301 v -0.008", + "fill": { + "paint": "transparent" + }, + "id": "path989", + "name": "path989", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 121.22406,123.74476 v -0.01", + "fill": { + "paint": "transparent" + }, + "id": "path990", + "name": "path990", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 121.22381,123.74476 5e-4,-0.002", + "fill": { + "paint": "transparent" + }, + "id": "path991", + "name": "path991", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 110.28474,129.22192 -0.008,-0.002", + "fill": { + "paint": "transparent" + }, + "id": "path992", + "name": "path992", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 113.48683,129.40433 0.0129,-4.5e-4", + "fill": { + "paint": "transparent" + }, + "id": "path993", + "name": "path993", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 113.46359,129.40514 0.008,-1.4e-4", + "fill": { + "paint": "transparent" + }, + "id": "path994", + "name": "path994", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 113.46375,129.40486 0.008,1.4e-4", + "fill": { + "paint": "transparent" + }, + "id": "path995", + "name": "path995", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 113.39065,129.41629 0.008,-5.7e-4", + "fill": { + "paint": "transparent" + }, + "id": "path996", + "name": "path996", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 113.39065,129.41629 0.008,-4.1e-4", + "fill": { + "paint": "transparent" + }, + "id": "path997", + "name": "path997", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 113.48692,129.404 0.0127,-5.7e-4", + "fill": { + "paint": "transparent" + }, + "id": "path998", + "name": "path998", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 119.54574,126.86838 c 0.0575,-0.0555 0.11449,-0.11156 0.17041,-0.16846", + "fill": { + "paint": "transparent" + }, + "id": "path999", + "name": "path999", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 119.6957,126.72068 c 0.0263,-0.0268 0.0527,-0.054 0.0791,-0.0811", + "fill": { + "paint": "transparent" + }, + "id": "path1000", + "name": "path1000", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 110.27889,129.21979 c 0.0424,0.0155 0.0843,0.0305 0.1269,0.0451", + "fill": { + "paint": "transparent" + }, + "id": "path1001", + "name": "path1001", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 107.93992,127.36049 c 0,0.007 0.008,0.0138 0.012,0.0206", + "fill": { + "paint": "transparent" + }, + "id": "path1002", + "name": "path1002", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 113.2398,120.88825 c -0.008,-0.003 -0.0128,-0.006 -0.02,-0.008", + "fill": { + "paint": "transparent" + }, + "id": "path1003", + "name": "path1003", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 110.9792,120.21668 c -0.008,0.005 -0.0128,0.008 -0.02,0.0125", + "fill": { + "paint": "transparent" + }, + "id": "path1004", + "name": "path1004", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 120.64728,125.55814 c 0.036,-0.0544 0.0711,-0.10909 0.10547,-0.16435", + "fill": { + "paint": "transparent" + }, + "id": "path1005", + "name": "path1005", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 121.31345,124.2365 c 0.0136,-0.0395 0.0272,-0.0793 0.04,-0.11914", + "fill": { + "paint": "transparent" + }, + "id": "path1006", + "name": "path1006", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 121.29612,124.28501 c 0.0192,-0.0541 0.0384,-0.10838 0.0559,-0.163", + "fill": { + "paint": "transparent" + }, + "id": "path1007", + "name": "path1007", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 121.3538,124.11736 c 0.0121,-0.0367 0.0232,-0.0735 0.0343,-0.11035", + "fill": { + "paint": "transparent" + }, + "id": "path1008", + "name": "path1008", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 121.35228,124.12201 c 0.0383,-0.11835 0.0727,-0.238 0.10236,-0.35871", + "fill": { + "paint": "transparent" + }, + "id": "path1009", + "name": "path1009", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 121.58406,122.69028 c 4.8e-4,0.0545 -1.6e-4,0.10897 0,0.16345", + "fill": { + "paint": "transparent" + }, + "id": "path1010", + "name": "path1010", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 121.42451,121.62846 c -0.012,-0.0391 -0.0248,-0.078 -0.0376,-0.11662", + "fill": { + "paint": "transparent" + }, + "id": "path1011", + "name": "path1011", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 121.38688,121.51184 c -0.008,-0.0228 -0.016,-0.0458 -0.024,-0.0685", + "fill": { + "paint": "transparent" + }, + "id": "path1012", + "name": "path1012", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 121.36267,121.44343 c -0.0311,-0.0848 -0.0655,-0.16849 -0.10258,-0.25091", + "fill": { + "paint": "transparent" + }, + "id": "path1013", + "name": "path1013", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 121.26008,121.19271 c 0,-0.006 -0.008,-0.0128 -0.009,-0.0191", + "fill": { + "paint": "transparent" + }, + "id": "path1014", + "name": "path1014", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 116.97794,128.62702 c 0.37399,-0.17858 0.73609,-0.37886 1.08404,-0.59969", + "fill": { + "paint": "transparent" + }, + "id": "path1015", + "name": "path1015", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 117.86999,128.14623 c 0.0631,-0.0385 0.12671,-0.0775 0.18943,-0.11732", + "fill": { + "paint": "transparent" + }, + "id": "path1016", + "name": "path1016", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 118.06198,128.02733 c 0.008,-0.005 0.0128,-0.008 0.02,-0.0125", + "fill": { + "paint": "transparent" + }, + "id": "path1017", + "name": "path1017", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 118.08179,128.01475 c 0.0751,-0.0478 0.149,-0.0964 0.22244,-0.14619", + "fill": { + "paint": "transparent" + }, + "id": "path1018", + "name": "path1018", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 118.30423,127.86856 c 0.0801,-0.0541 0.15929,-0.10937 0.23752,-0.16573", + "fill": { + "paint": "transparent" + }, + "id": "path1019", + "name": "path1019", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 115.78995,122.05277 0.0103,0.0182 0.0121,0.0179 0.0128,0.0175 0.0144,0.017 0.016,0.0163 0.0168,0.0155 0.0168,0.0136 0.0184,0.0136 0.02,0.0129 0.0208,0.0121 0.0224,0.0113 0.0232,0.0103 0.0248,0.009 0.0192,0.007 0.0264,0.008 0.0272,0.007 0.028,0.005 0.0296,0.004 0.0303,0.003 0.0312,0.002 0.0128,3.1e-4 0.032,-1.5e-4 0.0327,-0.002 0.0327,-0.003 0.0336,-0.005 0.0335,-0.005 0.0343,-0.007 0.008,-5.6e-4 0.0343,-0.009 0.0343,-0.0101 0.0343,-0.0113 0.0335,-0.0126 0.0336,-0.014 0.0311,-0.0143 4e-4,-2e-4 0.0319,-0.0162 0.0311,-0.0173 0.0303,-0.0181 0.0287,-0.0191 0.028,-0.02 0.0272,-0.021 0.0152,-0.0122 0.0256,-0.0222 0.024,-0.0228 0.0224,-0.0233 0.0208,-0.0239 0.02,-0.024 0.0176,-0.0243 0.0168,-0.0243 0.0152,-0.0245 0.0136,-0.0245 0.0121,-0.0245 0.0103,-0.0245 0.009,-0.0245", + "fill": { + "paint": "transparent" + }, + "id": "path1020", + "name": "path1020", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 111.13324,125.02435 0.0103,0.0182 0.0112,0.0179 0.0128,0.0175 0.0145,0.017 0.0161,0.0163 0.0168,0.0155 0.0168,0.0136 0.0184,0.0137 0.02,0.0129 0.0208,0.012 0.0224,0.0112 0.0232,0.0104 0.0247,0.009 0.0192,0.007 0.0264,0.008 0.0272,0.007 0.0287,0.005 0.0296,0.004 0.0303,0.003 0.0312,0.002 0.0128,3.3e-4 0.0319,-1.5e-4 0.0328,-0.002 0.0335,-0.003 0.0336,-0.005 0.0335,-0.005 0.0342,-0.007 0.008,-5.7e-4 0.0342,-0.009 0.0342,-0.0101 0.0343,-0.0113 0.0335,-0.0126 0.0335,-0.014 0.0311,-0.0142 3.2e-4,-1.6e-4 0.0319,-0.0162 0.0311,-0.0173 0.0303,-0.0182 0.0287,-0.0191 0.028,-0.02 0.0272,-0.021 0.0152,-0.0122 0.0256,-0.0222 0.0239,-0.0228 0.0224,-0.0233 0.0208,-0.0237 0.0192,-0.024 0.0176,-0.0243 0.016,-0.0243 0.0152,-0.0245 0.0137,-0.0245 0.012,-0.0245 0.0103,-0.0245 0.009,-0.0245", + "fill": { + "paint": "transparent" + }, + "id": "path1021", + "name": "path1021", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 114.82088,125.02435 0.0103,0.0182 0.0121,0.0179 0.0127,0.0175 0.0144,0.017 0.016,0.0163 0.0168,0.0155 0.0168,0.0136 0.0184,0.0137 0.02,0.0129 0.0208,0.012 0.0224,0.0112 0.0232,0.0104 0.0247,0.009 0.02,0.007 0.0264,0.008 0.0272,0.007 0.0279,0.005 0.0296,0.004 0.0303,0.003 0.0311,0.002 0.0128,3.3e-4 0.0319,-1.5e-4 0.0327,-0.002 0.0327,-0.003 0.0335,-0.005 0.0336,-0.005 0.0343,-0.007 0.008,-5.7e-4 0.0343,-0.009 0.0343,-0.0101 0.0343,-0.0113 0.0336,-0.0126 0.0335,-0.014 0.0311,-0.0142 3.1e-4,-1.6e-4 0.0319,-0.0162 0.0311,-0.0173 0.0304,-0.0182 0.0287,-0.0191 0.028,-0.02 0.0272,-0.021 0.0144,-0.0122 0.0256,-0.0222 0.024,-0.0228 0.0224,-0.0233 0.0208,-0.0237 0.0192,-0.024 0.0184,-0.0243 0.0168,-0.0243 0.0152,-0.0245 0.0136,-0.0245 0.0121,-0.0245 0.0103,-0.0245 0.009,-0.0245", + "fill": { + "paint": "transparent" + }, + "id": "path1022", + "name": "path1022", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 113.46159,123.53857 0.0105,0.0182 0.0112,0.0179 0.0128,0.0175 0.0144,0.017 0.016,0.0163 0.0168,0.0155 0.0168,0.0136 0.0184,0.0137 0.02,0.0129 0.0208,0.0121 0.0224,0.0113 0.0232,0.0103 0.0248,0.009 0.0192,0.007 0.0263,0.008 0.0272,0.007 0.0287,0.005 0.0295,0.004 0.0303,0.003 0.0311,0.002 0.0128,3e-4 0.0319,-1.3e-4 0.0327,-0.002 0.0328,-0.003 0.0335,-0.005 0.0335,-0.005 0.0342,-0.007 0.008,-5.7e-4 0.0343,-0.009 0.0342,-0.0101 0.0342,-0.0113 0.0335,-0.0126 0.0336,-0.014 0.0311,-0.0142 4e-4,-1.8e-4 0.0319,-0.0162 0.0312,-0.0171 0.0303,-0.0182 0.0287,-0.0191 0.0279,-0.02 0.0272,-0.021 0.0152,-0.0122 0.0256,-0.0222 0.024,-0.0228 0.0224,-0.0233 0.0208,-0.0239 0.0192,-0.024 0.0176,-0.0242 0.0168,-0.0243 0.0152,-0.0245 0.0136,-0.0245 0.0121,-0.0245 0.0103,-0.0245 0.009,-0.0245", + "fill": { + "paint": "transparent" + }, + "id": "path1023", + "name": "path1023", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 112.10238,122.05277 0.0105,0.0182 0.0112,0.0179 0.0128,0.0175 0.0145,0.017 0.016,0.0163 0.0168,0.0155 0.0168,0.0136 0.0184,0.0136 0.02,0.0129 0.0208,0.0121 0.0224,0.0113 0.0232,0.0103 0.0247,0.009 0.0192,0.007 0.0263,0.008 0.0272,0.007 0.0287,0.005 0.0296,0.004 0.0303,0.003 0.0312,0.002 0.0128,3.1e-4 0.0318,-1.5e-4 0.0327,-0.002 0.0327,-0.003 0.0335,-0.005 0.0336,-0.005 0.0342,-0.007 0.008,-5.6e-4 0.0343,-0.009 0.0342,-0.0101 0.0342,-0.0113 0.0335,-0.0126 0.0335,-0.014 0.0312,-0.0143 3.2e-4,-2e-4 0.0319,-0.0162 0.0311,-0.0173 0.0304,-0.0181 0.0287,-0.0191 0.0279,-0.02 0.0272,-0.021 0.0152,-0.0122 0.0256,-0.0222 0.024,-0.0228 0.0224,-0.0233 0.0208,-0.0239 0.0192,-0.024 0.0176,-0.0243 0.0161,-0.0243 0.0152,-0.0245 0.0137,-0.0245 0.012,-0.0245 0.0105,-0.0245 0.009,-0.0245", + "fill": { + "paint": "transparent" + }, + "id": "path1024", + "name": "path1024", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 112.44571,122.26391 0.0152,-0.0245 0.0168,-0.0243 0.0184,-0.0242 0.02,-0.0239 0.0216,-0.0234 0.0232,-0.0231 0.024,-0.0225 0.0112,-0.01 0.0263,-0.0218 0.0272,-0.0209 0.0287,-0.02 0.0296,-0.0191 0.0303,-0.0182 0.032,-0.0171 0.0327,-0.016 0.008,-0.003 0.008,-0.003 0.0336,-0.0143 0.0335,-0.0131 0.0335,-0.0117 0.0342,-0.0104 0.0342,-0.009 0.0343,-0.008 0.0343,-0.006 0.0152,-0.002 0.0335,-0.005 0.0335,-0.003 0.0327,-0.002 0.0318,-2.8e-4 0.0312,5.7e-4 0.0303,0.002 0.0296,0.004", + "fill": { + "paint": "transparent" + }, + "id": "path1025", + "name": "path1025", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 113.33807,121.76918 v -0.009 l 0.008,-0.024 0.008,-0.0239 v -0.0236 -0.0231 l 5e-4,-0.0227 -5e-4,-0.0221 -5e-4,-0.0114 v -0.0219 l -0.008,-0.0215 -0.008,-0.0212 -0.008,-0.0206 -0.008,-0.0197 -0.009,-0.0189", + "fill": { + "paint": "transparent" + }, + "id": "path1026", + "name": "path1026", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 113.8049,123.74969 0.0152,-0.0245 0.0168,-0.0243 0.0184,-0.0242 0.02,-0.0239 0.0217,-0.0234 0.0232,-0.0231 0.024,-0.0227 0.0112,-0.01 0.0263,-0.0218 0.0272,-0.0209 0.0279,-0.02 0.0294,-0.0191 0.0303,-0.0182 0.0311,-0.017 0.0327,-0.016 0.008,-0.003 0.008,-0.003 0.0335,-0.0143 0.0335,-0.0131 0.0336,-0.0118 0.0342,-0.0104 0.0343,-0.009 0.0343,-0.008 0.0343,-0.006 0.0152,-0.002 0.0336,-0.005 0.0335,-0.003 0.0327,-0.002 0.0319,-2.6e-4 0.0311,5.7e-4 0.0303,0.002 0.0296,0.004", + "fill": { + "paint": "transparent" + }, + "id": "path1027", + "name": "path1027", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 114.69736,123.25495 v -0.009 l 0.008,-0.024 0.008,-0.0239 v -0.0234 -0.0231 -0.0227 l -5e-4,-0.0221 v -0.0113 -0.0219 -0.0216 l -0.008,-0.0212 -0.008,-0.0204 -0.008,-0.0197 -0.009,-0.0189", + "fill": { + "paint": "transparent" + }, + "id": "path1028", + "name": "path1028", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 115.16419,125.23548 0.0152,-0.0245 0.0168,-0.0243 0.0184,-0.0242 0.02,-0.0239 0.0216,-0.0234 0.0232,-0.0231 0.024,-0.0225 0.0112,-0.0101 0.0264,-0.0218 0.0272,-0.0209 0.0288,-0.02 0.0295,-0.0191 0.0304,-0.0182 0.0312,-0.0171 0.0327,-0.016 0.008,-0.003 0.008,-0.003 0.0335,-0.0145 0.0336,-0.0131 0.0336,-0.0117 0.0343,-0.0104 0.0343,-0.009 0.0343,-0.008 0.0343,-0.006 0.0152,-0.002 0.0336,-0.005 0.0336,-0.003 0.0328,-0.002 0.0319,-2.5e-4 0.0312,5.8e-4 0.0311,0.002 0.0295,0.004", + "fill": { + "paint": "transparent" + }, + "id": "path1029", + "name": "path1029", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 116.05656,124.74073 v -0.009 l 0.008,-0.024 0.008,-0.0239 v -0.0236 -0.0231 l 5e-4,-0.0227 -5e-4,-0.0222 -5e-4,-0.0113 v -0.0219 l -0.008,-0.0216 -0.008,-0.0212 -0.008,-0.0206 -0.008,-0.0197 -0.009,-0.0189", + "fill": { + "paint": "transparent" + }, + "id": "path1030", + "name": "path1030", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 111.47656,125.23548 0.0152,-0.0245 0.0168,-0.0243 0.0184,-0.0242 0.02,-0.0239 0.0216,-0.0234 0.0232,-0.0231 0.024,-0.0225 0.0113,-0.0101 0.0263,-0.0218 0.0272,-0.0209 0.0287,-0.02 0.0296,-0.0191 0.0303,-0.0182 0.0319,-0.0171 0.0319,-0.016 0.008,-0.003 0.008,-0.003 0.0335,-0.0145 0.0336,-0.0131 0.0335,-0.0117 0.0342,-0.0104 0.0342,-0.009 0.0342,-0.008 0.0342,-0.006 0.0152,-0.002 0.0335,-0.005 0.0335,-0.003 0.0327,-0.002 0.0319,-2.5e-4 0.0312,5.8e-4 0.0303,0.002 0.0295,0.004", + "fill": { + "paint": "transparent" + }, + "id": "path1031", + "name": "path1031", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 112.36891,124.74073 v -0.009 l 0.008,-0.024 0.008,-0.0239 v -0.0236 -0.0231 l 5e-4,-0.0227 -4.8e-4,-0.0222 v -0.0113 -0.0219 -0.0216 l -0.008,-0.0212 -0.008,-0.0206 -0.008,-0.0197 -0.009,-0.0189", + "fill": { + "paint": "transparent" + }, + "id": "path1032", + "name": "path1032", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 116.13318,122.26391 0.0152,-0.0245 0.0168,-0.0243 0.0184,-0.0242 0.02,-0.0239 0.0216,-0.0234 0.0232,-0.0231 0.024,-0.0225 0.0112,-0.01 0.0264,-0.0218 0.0272,-0.0209 0.0288,-0.02 0.0295,-0.0191 0.0303,-0.0182 0.0312,-0.0171 0.0327,-0.016 0.008,-0.003 0.008,-0.003 0.0335,-0.0143 0.0336,-0.0131 0.0336,-0.0117 0.0343,-0.0104 0.0343,-0.009 0.0343,-0.008 0.0343,-0.006 0.0152,-0.002 0.0335,-0.005 0.0336,-0.003 0.0327,-0.002 0.0319,-2.8e-4 0.0312,5.7e-4 0.0303,0.002 0.0296,0.004", + "fill": { + "paint": "transparent" + }, + "id": "path1033", + "name": "path1033", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 117.02571,121.76918 v -0.009 l 0.008,-0.024 0.008,-0.0239 v -0.0236 -0.0231 l 5e-4,-0.0227 -5e-4,-0.0221 v -0.0114 -0.0219 l -0.008,-0.0215 -0.008,-0.0212 -0.008,-0.0206 -0.008,-0.0197 -0.009,-0.0189", + "fill": { + "paint": "transparent" + }, + "id": "path1034", + "name": "path1034", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 116.04066,124.45711 -0.0103,-0.0182 -0.012,-0.0179 -0.0128,-0.0175 -0.0144,-0.017 -0.016,-0.0163 -0.0168,-0.0155 -0.0168,-0.0137 -0.0184,-0.0137 -0.02,-0.0129 -0.0208,-0.012 -0.0224,-0.0112 -0.0232,-0.0102 -0.0247,-0.009 -0.0192,-0.007 -0.0263,-0.008 -0.0272,-0.007 -0.0287,-0.005 -0.0296,-0.004 -0.0303,-0.003 -0.0311,-0.002 -0.0128,-3.2e-4 -0.032,1.7e-4 -0.0328,0.002 -0.0327,0.003 -0.0336,0.005 -0.0335,0.005 -0.0343,0.007 -0.008,5.7e-4 -0.0343,0.009 -0.0343,0.0101 -0.0343,0.0113 -0.0336,0.0126 -0.0335,0.014 -0.0311,0.0142 -2.5e-4,1.6e-4 -0.032,0.0162 -0.0312,0.0172 -0.0303,0.0181 -0.0287,0.0191 -0.0279,0.02 -0.0272,0.021 -0.0152,0.0122 -0.0256,0.0222 -0.024,0.0228 -0.0224,0.0233 -0.0208,0.0237 -0.0192,0.024 -0.0176,0.0242 -0.016,0.0243 -0.0152,0.0245 -0.0136,0.0245 -0.0121,0.0245 -0.0103,0.0245 -0.009,0.0245", + "fill": { + "paint": "transparent" + }, + "id": "path1035", + "name": "path1035", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 112.57825,124.54063 0.008,-0.0222 0.009,-0.0318 0.008,-0.0315 0.008,-0.0311 v -0.0308 -0.0248 l 3.1e-4,-0.0302 v -0.0296 -0.029 l -0.008,-0.0284 -0.008,-0.0243 -0.008,-0.0276 -0.009,-0.027 -0.0104,-0.0263 -0.012,-0.0255 -0.0137,-0.0248 -0.0152,-0.0242 -0.0168,-0.0236 -0.0176,-0.0228 -0.0168,-0.0191 -0.0208,-0.021 -0.0217,-0.0203 -0.0232,-0.0195 -0.0248,-0.0186 -0.0216,-0.0145 -0.0272,-0.0167 -0.0287,-0.0157 -0.0303,-0.0147 -0.0311,-0.0137 -0.0224,-0.009 -0.0335,-0.0116 -0.0342,-0.0104 -0.036,-0.009 -0.0367,-0.008 -0.0208,-0.004 -0.0391,-0.006 -0.04,-0.005 -0.0407,-0.003 -0.0415,-0.002 -0.0176,-1.3e-4 -0.0431,5.5e-4 -0.0431,0.002 -0.0439,0.004 -0.0448,0.005 -0.0448,0.007 -0.0448,0.009 -0.0455,0.0104 -0.0455,0.012 -0.0232,0.007 -0.0455,0.0145 -0.0448,0.0159 -0.0439,0.0174 -0.0439,0.0189 -0.0431,0.0203 -0.0424,0.0218 -0.0121,0.007 -0.0415,0.0236 -0.0407,0.0248 -0.02,0.013 -0.0383,0.0263 -0.0367,0.0272 -0.0352,0.0279 -0.0335,0.0287 -0.0319,0.0296 -0.0303,0.0302 -0.0287,0.0308 -0.0272,0.0315 -0.024,0.0299 -0.024,0.0323 -0.0224,0.0324 -0.0208,0.0326 -0.0184,0.0326 -0.0168,0.0326 -0.0152,0.0325 -0.0128,0.0324 -0.0112,0.0323", + "fill": { + "paint": "transparent" + }, + "id": "path1036", + "name": "path1036", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 114.38839,124.54063 -0.008,0.0222 -0.008,0.0319 -0.008,0.0315 -0.008,0.0311 v 0.0308 0.0248 l -3.2e-4,0.0302 v 0.0296 0.029 l 0.008,0.0284 0.008,0.0243 0.008,0.0276 0.009,0.027 0.0103,0.0263 0.012,0.0254 0.0136,0.0248 0.0152,0.0242 0.0168,0.0236 0.0184,0.0227 0.0168,0.0191 0.02,0.021 0.0216,0.0203 0.0232,0.0195 0.0247,0.0186 0.0216,0.0145 0.0272,0.0168 0.0287,0.0157 0.0295,0.0147 0.0312,0.0137 0.0232,0.009 0.0335,0.0116 0.0343,0.0104 0.0359,0.009 0.0367,0.008 0.0208,0.004 0.0391,0.006 0.04,0.005 0.0407,0.003 0.0415,0.002 0.0176,1.3e-4 0.0431,-5.5e-4 0.0431,-0.002 0.0439,-0.004 0.0439,-0.005 0.0448,-0.007 0.0448,-0.009 0.0455,-0.0104 0.0455,-0.012 0.0224,-0.007 0.0455,-0.0144 0.0448,-0.0159 0.0439,-0.0174 0.0439,-0.0189 0.0431,-0.0203 0.0424,-0.0218 0.012,-0.007 0.0415,-0.0236 0.0407,-0.0248 0.02,-0.0131 0.0383,-0.0263 0.0367,-0.027 0.0352,-0.0279 0.0335,-0.0287 0.032,-0.0296 0.0303,-0.0302 0.0287,-0.0308 0.0272,-0.0315 0.024,-0.0299 0.024,-0.0323 0.0224,-0.0325 0.0208,-0.0326 0.0184,-0.0326 0.0168,-0.0326 0.0152,-0.0325 0.0128,-0.0323 0.0112,-0.0323", + "fill": { + "paint": "transparent" + }, + "id": "path1037", + "name": "path1037", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 116.2659,124.54063 0.008,-0.0222 0.009,-0.0318 0.008,-0.0315 0.008,-0.0311 v -0.0308 -0.0248 l 1.6e-4,-0.0302 v -0.0296 -0.029 l -0.008,-0.0284 -0.008,-0.0243 -0.008,-0.0276 -0.009,-0.027 -0.0103,-0.0263 -0.012,-0.0255 -0.0136,-0.0248 -0.0152,-0.0242 -0.0168,-0.0236 -0.0176,-0.0228 -0.0168,-0.0191 -0.02,-0.021 -0.0216,-0.0203 -0.0232,-0.0195 -0.0247,-0.0186 -0.0216,-0.0145 -0.0272,-0.0167 -0.0288,-0.0157 -0.0295,-0.0147 -0.0311,-0.0137 -0.0224,-0.009 -0.0336,-0.0116 -0.0343,-0.0104 -0.036,-0.009 -0.0367,-0.008 -0.0216,-0.004 -0.0384,-0.006 -0.04,-0.005 -0.0407,-0.003 -0.0415,-0.002 -0.0176,-1.3e-4 -0.0431,5.5e-4 -0.0431,0.002 -0.0439,0.004 -0.0448,0.005 -0.0448,0.007 -0.0448,0.009 -0.0455,0.0104 -0.0455,0.012 -0.0232,0.007 -0.0455,0.0145 -0.0448,0.0159 -0.0448,0.0174 -0.0439,0.0189 -0.0431,0.0203 -0.0424,0.0218 -0.012,0.007 -0.0415,0.0236 -0.0407,0.0248 -0.02,0.013 -0.0383,0.0263 -0.0367,0.0272 -0.0351,0.0279 -0.0336,0.0287 -0.0319,0.0296 -0.0303,0.0302 -0.0287,0.0308 -0.0272,0.0315 -0.024,0.0299 -0.024,0.0323 -0.0224,0.0324 -0.0208,0.0326 -0.0184,0.0326 -0.0168,0.0326 -0.0152,0.0325 -0.0128,0.0324 -0.0112,0.0323", + "fill": { + "paint": "transparent" + }, + "id": "path1038", + "name": "path1038", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 114.68146,122.97134 -0.0103,-0.0182 -0.0112,-0.0179 -0.0128,-0.0174 -0.0144,-0.017 -0.016,-0.0163 -0.0168,-0.0155 -0.0168,-0.0136 -0.0184,-0.0137 -0.02,-0.0129 -0.0208,-0.012 -0.0224,-0.0112 -0.0232,-0.0104 -0.0247,-0.009 -0.02,-0.007 -0.0264,-0.008 -0.0272,-0.007 -0.0287,-0.005 -0.0296,-0.004 -0.0304,-0.003 -0.0311,-0.002 -0.0128,-3.3e-4 -0.0319,1.7e-4 -0.0327,0.002 -0.0327,0.003 -0.0335,0.005 -0.0335,0.005 -0.0342,0.007 -0.008,5.7e-4 -0.0343,0.009 -0.0342,0.0101 -0.0342,0.0113 -0.0336,0.0126 -0.0335,0.014 -0.0311,0.0143 -4e-4,1.6e-4 -0.0319,0.0162 -0.0311,0.0172 -0.0304,0.0182 -0.0287,0.0191 -0.0279,0.02 -0.0272,0.021 -0.0144,0.0122 -0.0256,0.0222 -0.024,0.0228 -0.0224,0.0233 -0.0208,0.0237 -0.0192,0.024 -0.0184,0.0242 -0.0168,0.0243 -0.0152,0.0245 -0.0137,0.0245 -0.012,0.0245 -0.0103,0.0245 -0.009,0.0245", + "fill": { + "paint": "transparent" + }, + "id": "path1039", + "name": "path1039", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 113.32234,121.48558 -0.0104,-0.0182 -0.012,-0.0179 -0.0128,-0.0175 -0.0145,-0.0169 -0.0161,-0.0164 -0.0168,-0.0155 -0.0168,-0.0137 -0.0184,-0.0136 -0.02,-0.0129 -0.0208,-0.0121 -0.0224,-0.0112 -0.0232,-0.0104 -0.0247,-0.009 -0.02,-0.007 -0.0264,-0.008 -0.0272,-0.007 -0.0279,-0.005 -0.0296,-0.004 -0.0303,-0.003 -0.0312,-0.002 -0.0128,-3e-4 -0.0319,1.3e-4 -0.0327,0.002 -0.0327,0.003 -0.0335,0.005 -0.0335,0.005 -0.0342,0.007 -0.008,5.7e-4 -0.0342,0.009 -0.0342,0.0101 -0.0342,0.0113 -0.0335,0.0126 -0.0336,0.014 -0.0312,0.0143 -4e-4,2e-4 -0.0319,0.0161 -0.0311,0.0172 -0.0304,0.0182 -0.0287,0.0191 -0.0279,0.02 -0.0272,0.021 -0.0144,0.0122 -0.0256,0.0222 -0.024,0.0228 -0.0224,0.0234 -0.0208,0.0237 -0.0193,0.024 -0.0184,0.0242 -0.0168,0.0243 -0.0152,0.0245 -0.0136,0.0245 -0.0121,0.0245 -0.0103,0.0245 -0.009,0.0245", + "fill": { + "paint": "transparent" + }, + "id": "path1040", + "name": "path1040", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 112.08649,121.76918 v 0.009 l -0.008,0.024 -0.008,0.0239 v 0.0236 0.0231 l -5e-4,0.0227 5e-4,0.0221 v 0.0113 0.0219 l 0.008,0.0215 0.008,0.0212 0.008,0.0204 0.008,0.0197 0.009,0.0189", + "fill": { + "paint": "transparent" + }, + "id": "path1041", + "name": "path1041", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 117.00981,121.48558 -0.0103,-0.0182 -0.0113,-0.0179 -0.0127,-0.0175 -0.0144,-0.0169 -0.016,-0.0164 -0.0168,-0.0155 -0.0168,-0.0137 -0.0184,-0.0136 -0.02,-0.0129 -0.0208,-0.0121 -0.0224,-0.0112 -0.0232,-0.0104 -0.0247,-0.009 -0.0192,-0.007 -0.0264,-0.008 -0.0272,-0.007 -0.028,-0.005 -0.0296,-0.004 -0.0303,-0.003 -0.0311,-0.002 -0.0128,-3e-4 -0.032,1.3e-4 -0.0328,0.002 -0.0327,0.003 -0.0335,0.005 -0.0336,0.005 -0.0343,0.007 -0.008,5.7e-4 -0.0343,0.009 -0.0343,0.0101 -0.0343,0.0113 -0.0335,0.0126 -0.0336,0.014 -0.0311,0.0143 -4e-4,2e-4 -0.0319,0.0161 -0.0312,0.0172 -0.0303,0.0182 -0.0287,0.0191 -0.028,0.02 -0.0272,0.021 -0.0152,0.0122 -0.0256,0.0222 -0.024,0.0228 -0.0224,0.0234 -0.0208,0.0237 -0.0192,0.024 -0.0176,0.0242 -0.016,0.0243 -0.0152,0.0245 -0.0136,0.0245 -0.0121,0.0245 -0.0103,0.0245 -0.009,0.0245", + "fill": { + "paint": "transparent" + }, + "id": "path1042", + "name": "path1042", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 113.44578,123.25495 v 0.009 l -0.008,0.024 -0.008,0.0239 v 0.0236 0.0231 l -5e-4,0.0227 4.8e-4,0.0222 v 0.0113 0.0219 0.0215 l 0.008,0.0212 0.008,0.0206 0.008,0.0197 0.009,0.0189", + "fill": { + "paint": "transparent" + }, + "id": "path1043", + "name": "path1043", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 115.35754,121.56907 -0.008,0.0222 -0.009,0.0318 -0.008,0.0315 -0.008,0.0311 v 0.0306 0.0248 l -3.2e-4,0.0302 v 0.0296 0.029 l 0.008,0.0284 0.008,0.0243 0.008,0.0276 0.009,0.027 0.0103,0.0263 0.012,0.0255 0.0136,0.0248 0.0152,0.0242 0.0168,0.0236 0.0176,0.0227 0.0168,0.0191 0.02,0.021 0.0216,0.0203 0.0232,0.0195 0.0247,0.0186 0.0216,0.0145 0.0272,0.0168 0.0287,0.0158 0.0296,0.0147 0.0311,0.0136 0.0232,0.009 0.0335,0.0116 0.0343,0.0104 0.0359,0.009 0.0367,0.008 0.0208,0.004 0.0391,0.006 0.04,0.005 0.0407,0.003 0.0415,0.002 0.0176,1.5e-4 0.0431,-5.7e-4 0.0431,-0.002 0.0439,-0.004 0.0448,-0.005 0.0448,-0.007 0.0448,-0.009 0.0455,-0.0104 0.0455,-0.012 0.0232,-0.007 0.0455,-0.0145 0.0448,-0.0159 0.0448,-0.0174 0.0439,-0.0189 0.0431,-0.0203 0.0424,-0.0218 0.012,-0.007 0.0415,-0.0236 0.0407,-0.0248 0.02,-0.013 0.0384,-0.0263 0.0367,-0.0272 0.0351,-0.0279 0.0336,-0.0287 0.0319,-0.0296 0.0303,-0.0302 0.0287,-0.0308 0.0272,-0.0315 0.024,-0.0297 0.024,-0.0323 0.0224,-0.0324 0.0208,-0.0326 0.0184,-0.0326 0.0168,-0.0326 0.0152,-0.0325 0.0128,-0.0324 0.0112,-0.0323", + "fill": { + "paint": "transparent" + }, + "id": "path1044", + "name": "path1044", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 114.80497,124.74073 v 0.009 l -0.008,0.024 -0.008,0.0239 v 0.0236 0.0231 l -5e-4,0.0227 5e-4,0.0222 5e-4,0.0113 v 0.0219 l 0.008,0.0216 0.008,0.0212 0.008,0.0206 0.008,0.0197 0.009,0.0189", + "fill": { + "paint": "transparent" + }, + "id": "path1045", + "name": "path1045", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 117.23505,121.56907 0.008,-0.0221 0.008,-0.0319 0.008,-0.0315 0.008,-0.0311 v -0.0308 -0.0248 l 1.6e-4,-0.0302 v -0.0296 -0.029 l -0.008,-0.0284 -0.008,-0.0243 -0.008,-0.0276 -0.009,-0.027 -0.0103,-0.0263 -0.012,-0.0254 -0.0136,-0.0248 -0.0152,-0.0242 -0.0168,-0.0236 -0.0184,-0.0227 -0.0168,-0.0191 -0.02,-0.021 -0.0216,-0.0203 -0.0232,-0.0195 -0.0247,-0.0186 -0.0216,-0.0146 -0.0272,-0.0168 -0.0287,-0.0157 -0.0296,-0.0147 -0.0311,-0.0137 -0.0232,-0.009 -0.0336,-0.0116 -0.0343,-0.0104 -0.0359,-0.009 -0.0367,-0.008 -0.0216,-0.004 -0.0384,-0.006 -0.04,-0.005 -0.0407,-0.003 -0.0415,-0.002 -0.0176,-1.4e-4 -0.0431,5.6e-4 -0.0431,0.002 -0.0439,0.004 -0.0448,0.005 -0.0448,0.007 -0.0448,0.009 -0.0455,0.0104 -0.0455,0.012 -0.0232,0.007 -0.0455,0.0144 -0.0448,0.0159 -0.0448,0.0174 -0.0439,0.0189 -0.0431,0.0203 -0.0424,0.0218 -0.012,0.007 -0.0415,0.0236 -0.0407,0.0248 -0.02,0.013 -0.0383,0.0263 -0.0367,0.0272 -0.0351,0.0279 -0.0335,0.0287 -0.0319,0.0296 -0.0303,0.0302 -0.0287,0.0308 -0.0272,0.0316 -0.024,0.0299 -0.024,0.0323 -0.0224,0.0325 -0.0208,0.0326 -0.0184,0.0326 -0.0168,0.0326 -0.0152,0.0325 -0.0127,0.0324 -0.0113,0.0323", + "fill": { + "paint": "transparent" + }, + "id": "path1046", + "name": "path1046", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 113.02919,123.05486 -0.008,0.0222 -0.008,0.0318 -0.008,0.0315 -0.008,0.0311 v 0.0308 0.0248 l -3.2e-4,0.0302 v 0.0296 0.029 l 0.008,0.0283 0.008,0.0243 0.008,0.0276 0.009,0.027 0.0103,0.0263 0.0121,0.0254 0.0137,0.0248 0.0152,0.0242 0.0168,0.0236 0.0176,0.0227 0.0168,0.0191 0.02,0.021 0.0216,0.0203 0.0232,0.0195 0.0247,0.0186 0.0216,0.0146 0.0272,0.0167 0.0287,0.0158 0.0295,0.0147 0.0311,0.0137 0.0224,0.009 0.0335,0.0116 0.0343,0.0104 0.036,0.009 0.0367,0.008 0.0208,0.004 0.0391,0.006 0.04,0.005 0.0407,0.003 0.0415,0.002 0.0176,1.4e-4 0.0431,-5.7e-4 0.0431,-0.002 0.0439,-0.004 0.0448,-0.005 0.0448,-0.007 0.0448,-0.009 0.0455,-0.0104 0.0455,-0.012 0.0232,-0.007 0.0455,-0.0144 0.0448,-0.0159 0.0439,-0.0175 0.0439,-0.0189 0.0431,-0.0203 0.0424,-0.0218 0.012,-0.007 0.0415,-0.0236 0.0407,-0.0248 0.02,-0.013 0.0383,-0.0263 0.0367,-0.0272 0.0352,-0.0279 0.0335,-0.0287 0.0319,-0.0296 0.0303,-0.0302 0.0287,-0.0308 0.027,-0.0315 0.024,-0.0299 0.024,-0.0323 0.0224,-0.0324 0.0208,-0.0326 0.0184,-0.0326 0.0168,-0.0326 0.0152,-0.0326 0.0127,-0.0324 0.0113,-0.0323", + "fill": { + "paint": "transparent" + }, + "id": "path1047", + "name": "path1047", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 112.3531,124.45711 -0.0103,-0.0182 -0.0112,-0.0179 -0.0128,-0.0175 -0.0145,-0.017 -0.0152,-0.0163 -0.0168,-0.0155 -0.0168,-0.0137 -0.0185,-0.0137 -0.02,-0.0129 -0.0208,-0.012 -0.0224,-0.0112 -0.0232,-0.0102 -0.0247,-0.009 -0.0193,-0.007 -0.0264,-0.008 -0.0271,-0.007 -0.028,-0.005 -0.0296,-0.004 -0.0303,-0.003 -0.0311,-0.002 -0.0128,-3.2e-4 -0.0319,1.7e-4 -0.0328,0.002 -0.0328,0.003 -0.0335,0.005 -0.0335,0.005 -0.0342,0.007 -0.008,5.7e-4 -0.0342,0.009 -0.0342,0.0101 -0.0342,0.0113 -0.0335,0.0126 -0.0335,0.014 -0.0311,0.0142 -4e-4,1.6e-4 -0.0318,0.0162 -0.0312,0.0172 -0.0303,0.0181 -0.0287,0.0191 -0.028,0.02 -0.0272,0.021 -0.0144,0.0122 -0.0256,0.0222 -0.024,0.0228 -0.0224,0.0233 -0.0208,0.0237 -0.0192,0.024 -0.0176,0.0242 -0.0168,0.0243 -0.0152,0.0245 -0.0137,0.0245 -0.0121,0.0245 -0.0103,0.0245 -0.009,0.0245", + "fill": { + "paint": "transparent" + }, + "id": "path1048", + "name": "path1048", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 114.9066,123.05486 0.008,-0.0222 0.009,-0.0319 0.008,-0.0315 0.008,-0.0311 v -0.0308 -0.0248 l 3.1e-4,-0.0302 v -0.0296 -0.029 l -0.008,-0.0284 -0.008,-0.0243 -0.008,-0.0276 -0.009,-0.027 -0.0103,-0.0263 -0.0121,-0.0254 -0.0136,-0.0248 -0.0152,-0.0242 -0.0168,-0.0236 -0.0176,-0.0227 -0.0168,-0.0191 -0.02,-0.021 -0.0216,-0.0203 -0.0232,-0.0195 -0.0247,-0.0186 -0.0216,-0.0146 -0.0272,-0.0168 -0.0287,-0.0158 -0.0296,-0.0147 -0.0312,-0.0137 -0.0232,-0.009 -0.0336,-0.0116 -0.0343,-0.0104 -0.036,-0.009 -0.0367,-0.008 -0.0208,-0.004 -0.0383,-0.006 -0.04,-0.005 -0.0407,-0.003 -0.0415,-0.002 -0.0176,-1.3e-4 -0.0431,5.6e-4 -0.0431,0.002 -0.0439,0.004 -0.0448,0.005 -0.0448,0.007 -0.0448,0.009 -0.0455,0.0104 -0.0455,0.012 -0.0232,0.007 -0.0455,0.0144 -0.0448,0.0159 -0.0448,0.0174 -0.0439,0.0189 -0.0431,0.0203 -0.0424,0.0218 -0.012,0.007 -0.0415,0.0236 -0.0407,0.0248 -0.02,0.013 -0.0384,0.0263 -0.0367,0.0272 -0.0352,0.0279 -0.0335,0.0287 -0.0319,0.0296 -0.0303,0.0302 -0.0287,0.0308 -0.0272,0.0315 -0.024,0.0299 -0.024,0.0323 -0.0224,0.0325 -0.02,0.0326 -0.0184,0.0326 -0.0168,0.0326 -0.0152,0.0326 -0.0128,0.0325 -0.0112,0.0323", + "fill": { + "paint": "transparent" + }, + "id": "path1049", + "name": "path1049", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 111.66991,121.56907 -0.008,0.0222 -0.009,0.0318 -0.008,0.0315 -0.008,0.0311 v 0.0306 0.0248 l -1.6e-4,0.0302 v 0.0296 0.029 l 0.008,0.0284 0.008,0.0243 0.008,0.0276 0.009,0.027 0.0105,0.0263 0.0121,0.0255 0.0137,0.0248 0.0152,0.0242 0.0168,0.0236 0.0176,0.0227 0.0168,0.0191 0.0208,0.021 0.0216,0.0203 0.0232,0.0195 0.0248,0.0186 0.0216,0.0145 0.0272,0.0168 0.0287,0.0158 0.0296,0.0147 0.0311,0.0136 0.0224,0.009 0.0336,0.0116 0.0342,0.0104 0.036,0.009 0.0367,0.008 0.0216,0.004 0.0384,0.006 0.04,0.005 0.0408,0.003 0.0415,0.002 0.0176,1.5e-4 0.0431,-5.7e-4 0.0431,-0.002 0.0439,-0.004 0.0448,-0.005 0.0448,-0.007 0.0448,-0.009 0.0455,-0.0104 0.0455,-0.012 0.0232,-0.007 0.0455,-0.0145 0.0448,-0.0159 0.0448,-0.0174 0.0439,-0.0189 0.0431,-0.0203 0.0424,-0.0218 0.012,-0.007 0.0415,-0.0236 0.0407,-0.0248 0.02,-0.013 0.0384,-0.0263 0.0367,-0.0272 0.0351,-0.0279 0.0335,-0.0287 0.032,-0.0296 0.0303,-0.0302 0.0287,-0.0308 0.028,-0.0315 0.024,-0.0297 0.024,-0.0323 0.0224,-0.0324 0.0208,-0.0326 0.0184,-0.0326 0.0168,-0.0326 0.0152,-0.0325 0.0128,-0.0324 0.0112,-0.0323", + "fill": { + "paint": "transparent" + }, + "id": "path1050", + "name": "path1050", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 113.5474,121.56907 v -0.008 l 0.009,-0.0296 0.008,-0.0294 0.008,-0.0291 0.008,-0.0288 v -0.0283 -0.0279 l -2.4e-4,-0.0275 -5e-4,-0.013 v -0.027 -0.0268 l -0.008,-0.0263 -0.008,-0.0258 -0.008,-0.0252 -0.009,-0.0245 -0.0104,-0.0239 -0.0112,-0.0233 -0.0128,-0.023 -0.0144,-0.0224 -0.0152,-0.0218 -0.0168,-0.0212 -0.0176,-0.0206 -0.0192,-0.0197 -0.01,-0.009 -0.02,-0.0185 -0.0216,-0.0177 -0.0232,-0.017 -0.0239,-0.0164 -0.0256,-0.0155 -0.0263,-0.0146 -0.028,-0.0137 -0.0103,-0.005", + "fill": { + "paint": "transparent" + }, + "id": "path1051", + "name": "path1051", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 113.22006,120.87976 -0.0294,-0.0116 -0.0312,-0.0106 -0.0319,-0.01 -0.0334,-0.009 -0.0343,-0.008 -0.0351,-0.006 -0.0359,-0.005 -0.0367,-0.004 -0.0384,-0.002 -0.0383,-0.002 -0.0391,-3e-5 -0.04,0.002 -0.0103,5.5e-4 -0.0407,0.003 -0.0407,0.005 -0.0407,0.006 -0.0415,0.007 -0.0415,0.009 -0.0359,0.008 -0.0424,0.0112 -0.0424,0.0125 -0.0415,0.0138 -0.0415,0.0152 -0.0407,0.0165 -0.028,0.0122 -0.04,0.0185 -0.0272,0.0134 -0.0391,0.0206 -0.0383,0.0218 -0.0376,0.0227 -0.0367,0.0237 -0.0287,0.0203 -0.0342,0.0251 -0.0327,0.0258 -0.0311,0.0266 -0.0303,0.0272 -0.0287,0.0279 -0.008,0.005 -0.0272,0.0287 -0.0256,0.029 -0.0247,0.0294 -0.0232,0.0296 -0.0217,0.0299 -0.02,0.03 -0.0185,0.0302 -0.0168,0.0302 -0.0152,0.0302 -0.0137,0.03 -0.012,0.0299 -0.0105,0.0299", + "fill": { + "paint": "transparent" + }, + "id": "path1052", + "name": "path1052", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 110.70091,124.54063 -0.008,0.0222 -0.009,0.0319 -0.008,0.0315 -0.008,0.0311 v 0.0308 0.0248 l -2.3e-4,0.0302 v 0.0296 0.029 l 0.008,0.0284 0.008,0.0243 0.008,0.0276 0.009,0.027 0.0103,0.0263 0.0121,0.0254 0.0137,0.0248 0.0152,0.0242 0.0168,0.0236 0.0176,0.0227 0.0168,0.0191 0.02,0.021 0.0216,0.0203 0.0232,0.0195 0.0248,0.0186 0.0216,0.0145 0.0272,0.0168 0.0287,0.0157 0.0303,0.0147 0.0311,0.0137 0.0224,0.009 0.0335,0.0116 0.0343,0.0104 0.0359,0.009 0.0367,0.008 0.0216,0.004 0.0383,0.006 0.04,0.005 0.0408,0.003 0.0415,0.002 0.0176,1.3e-4 0.0431,-5.5e-4 0.0431,-0.002 0.0439,-0.004 0.0448,-0.005 0.0448,-0.007 0.0448,-0.009 0.0455,-0.0104 0.0455,-0.012 0.0232,-0.007 0.0455,-0.0144 0.0448,-0.0159 0.0448,-0.0174 0.0439,-0.0189 0.0431,-0.0203 0.0424,-0.0218 0.012,-0.007 0.0415,-0.0236 0.0407,-0.0248 0.02,-0.0131 0.0384,-0.0263 0.0367,-0.027 0.0352,-0.0279 0.0335,-0.0287 0.0319,-0.0296 0.0303,-0.0302 0.0287,-0.0308 0.0272,-0.0315 0.024,-0.0299 0.024,-0.0323 0.0224,-0.0325 0.02,-0.0326 0.0184,-0.0326 0.0168,-0.0326 0.0152,-0.0325 0.0128,-0.0323 0.0112,-0.0323", + "fill": { + "paint": "transparent" + }, + "id": "path1053", + "name": "path1053", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 110.9792,120.21668 0.20325,-0.1257 0.20701,-0.1214 0.21046,-0.11695 0.21388,-0.11238 0.21692,-0.10765 0.21979,-0.10284 0.22172,-0.0975 0.22483,-0.0928 0.0112,-0.005 0.22635,-0.0871 0.22738,-0.0816 0.22843,-0.0761 0.2293,-0.0705 0.22987,-0.0649 0.23026,-0.0593 0.23058,-0.0537 0.23074,-0.0481 0.0583,-0.0113 0.22915,-0.0407 0.22747,-0.0348 0.22595,-0.0291 0.22419,-0.0233 0.22236,-0.0176 0.22043,-0.012 0.21859,-0.007 0.21637,-5.7e-4 0.11744,0.002 0.21198,0.008 0.20861,0.0128 0.20525,0.018 0.20174,0.0231 0.19798,0.0281 0.19407,0.0332 0.19031,0.038 0.18625,0.0428", + "fill": { + "paint": "transparent" + }, + "id": "path1054", + "name": "path1054", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 118.09777,118.82225 0.0424,0.0104 0.13495,0.0356 0.13279,0.038 0.13031,0.0404 0.12784,0.043 0.12535,0.0454 0.12264,0.0476 0.12017,0.0497 0.1176,0.052 0.0632,0.0293 0.11369,0.0554 0.11114,0.0576 0.10842,0.0596 0.10578,0.0616 0.10306,0.0635 0.10011,0.0654 0.0975,0.0671 0.0946,0.069 0.0679,0.0521 0.0901,0.0724 0.0875,0.0742 0.0848,0.0759 0.0819,0.0776 0.0791,0.0791 0.0759,0.0806 0.0735,0.082 0.0703,0.0833 0.0679,0.0852 0.0527,0.0704 0.0631,0.0885 0.0599,0.09 0.0575,0.0915 0.0544,0.0927 0.0511,0.0939 0.0487,0.0948 0.0448,0.0957", + "fill": { + "paint": "transparent" + }, + "id": "path1055", + "name": "path1055", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 121.42451,121.62846 0.02,0.0681 0.0184,0.0688 0.0176,0.0693 0.016,0.0699 0.0144,0.0704 0.0136,0.0709 0.0121,0.0712 0.008,0.0317 0.0103,0.0718 0.009,0.0724 0.008,0.0728 0.008,0.0734 0.008,0.0738 v 0.0743 0.0746 l 2.3e-4,0.0284", + "fill": { + "paint": "transparent" + }, + "id": "path1056", + "name": "path1056", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 121.58215,122.85373 v 0.0761 l -0.008,0.0765 -0.008,0.0768 -0.008,0.0557 -0.009,0.0774 -0.0103,0.0778 -0.0113,0.0782 -0.0128,0.0785 -0.0144,0.0789 -0.016,0.0792 -0.0176,0.0795 -0.0192,0.0797 -0.02,0.0799 -0.0216,0.0801 -0.0232,0.079", + "fill": { + "paint": "transparent" + }, + "id": "path1057", + "name": "path1057", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 121.31345,124.2365 -0.0296,0.0812 -0.0311,0.0813 -0.0327,0.0814 -0.02,0.0481 -0.0351,0.0816 -0.0367,0.0817 -0.0383,0.0818 -0.0391,0.0818 -0.0415,0.0819 -0.0424,0.0819 -0.0439,0.0819 -0.0455,0.0818 -0.0472,0.0818 -0.0487,0.0817 -0.0288,0.0475", + "fill": { + "paint": "transparent" + }, + "id": "path1058", + "name": "path1058", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 120.64728,125.55814 -0.0544,0.0814 -0.0559,0.0811 -0.0575,0.0809 -0.0256,0.0347 -0.0599,0.0806 -0.0615,0.0804 -0.0631,0.0801 -0.0647,0.0798 -0.0663,0.0795 -0.0671,0.0791 -0.0687,0.0787 -0.0703,0.0784 -0.0719,0.0779 -0.0735,0.0774 -0.0103,0.0112", + "fill": { + "paint": "transparent" + }, + "id": "path1059", + "name": "path1059", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 119.6957,126.72068 -0.0144,0.0149 -0.0152,0.0149 -0.0152,0.0148 -0.0152,0.0148 -0.0152,0.0149 -0.0152,0.0147 -0.0152,0.0147 -0.0152,0.0147 -0.0152,0.0147 -0.0152,0.0146", + "fill": { + "paint": "transparent" + }, + "id": "path1060", + "name": "path1060", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 116.97794,128.62702 -0.18393,0.0857 -0.2138,0.0943 -0.21565,0.0894 -0.21739,0.0846 -0.21876,0.0796 -0.22004,0.0746 -0.22091,0.0694 -0.22156,0.0643 -0.21652,0.0577 -0.22147,0.0538 -0.22123,0.0484 -0.22093,0.0431 v 5.8e-4 l -0.22011,0.0377 -0.21907,0.0325 -0.21795,0.027 -0.21693,0.0218 -0.0535,0.005 -0.21405,0.0152 -0.21173,0.01 -0.20925,0.005 -0.20669,-2.2e-4 -0.20406,-0.005 -0.2015,-0.0102 -0.19878,-0.0152 -0.19607,-0.02 -0.10746,-0.0131 -0.19087,-0.0273 -0.18735,-0.0318 -0.18353,-0.0364 -0.17978,-0.0407 -0.17584,-0.0451 -0.17161,-0.0491 -0.16772,-0.0532 -0.1633,-0.0573", + "fill": { + "paint": "transparent" + }, + "id": "path1061", + "name": "path1061", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 110.27954,129.22006 -0.0224,-0.008 -0.10609,-0.0407 -0.10427,-0.0423 -0.10242,-0.044 -0.10043,-0.0458 -0.0985,-0.0473 -0.0965,-0.0488 -0.0944,-0.0505 -0.0328,-0.0182 -0.0919,-0.0524 -0.0899,-0.054 -0.088,-0.0554 -0.0858,-0.0569 -0.0839,-0.0583 -0.0817,-0.0595 -0.0799,-0.0609 -0.0367,-0.0291 -0.0767,-0.063 -0.0751,-0.0642 -0.0727,-0.0655 -0.0703,-0.0667 -0.0687,-0.0679 -0.0663,-0.069 -0.064,-0.07 -0.0335,-0.038 -0.0615,-0.0722 -0.0592,-0.0734 -0.0575,-0.0746 -0.0551,-0.0756 -0.0527,-0.0766 -0.0503,-0.0775 -0.0487,-0.0783", + "fill": { + "paint": "transparent" + }, + "id": "path1062", + "name": "path1062", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 107.9519,127.38136 -0.0743,-0.13336 -0.0687,-0.13697 -0.0631,-0.14024 -0.0568,-0.14303 -0.0472,-0.13338 -0.0448,-0.14698 -0.0383,-0.14854 -0.0327,-0.15144 -0.0264,-0.15408 -0.02,-0.1565 -0.0137,-0.15855 -0.008,-0.14096 v -0.16158 l 0.008,-0.16377 0.0121,-0.16582 0.0184,-0.16759 0.0256,-0.16918 0.024,-0.12967 0.0376,-0.17121 0.0448,-0.17248 0.052,-0.1736 0.0592,-0.17463 0.0664,-0.17547 0.0439,-0.10774 0.0775,-0.17645 0.085,-0.17662 0.0923,-0.17671 0.0996,-0.17667 0.10698,-0.1765 0.0503,-0.079 0.1177,-0.17593 0.12479,-0.17472 0.13191,-0.17354 0.13902,-0.1722 0.14629,-0.17085 0.0455,-0.0515 0.15571,-0.16889 0.16227,-0.16652 0.16891,-0.16397 0.17522,-0.16117 0.18144,-0.15821 0.18768,-0.15497 0.1935,-0.15155 0.19928,-0.14789 0.20469,-0.14392 0.20988,-0.13975 0.0583,-0.0377", + "fill": { + "paint": "transparent" + }, + "id": "path1063", + "name": "path1063", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#999999", + "width": "0.279979" + }, + "type": "path" + }, + { + "d": "m 107.9519,127.38113 0.0472,0.0782 0.0496,0.0776 0.052,0.0769 0.0544,0.0762 0.0568,0.0754 0.0592,0.0745 0.0616,0.0736 0.0631,0.0726 0.0655,0.0714 0.0679,0.0702 0.0695,0.0689 0.0719,0.0675 0.0735,0.0661 0.0751,0.0645 0.0775,0.0629 0.008,0.006 0.0791,0.061 0.0811,0.0598 0.0833,0.0585 0.0854,0.0572 0.0877,0.0559 0.0898,0.0545 0.0919,0.053 0.0941,0.0517 0.0962,0.0502 0.0982,0.0487 0.1002,0.047 0.1021,0.0452 0.10411,0.0437 0.10578,0.0419 0.0759,0.0285", + "fill": { + "paint": "transparent" + }, + "id": "path1064", + "name": "path1064", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 110.40579,129.2648 0.11335,0.0375 0.11531,0.0358 0.11711,0.0338 0.11914,0.0317 0.12089,0.0299 0.1228,0.0278 0.0112,0.002 0.1248,0.0257 0.12647,0.0236 0.12816,0.0215 0.12982,0.0192 0.13137,0.0171 0.13286,0.0149 0.13447,0.0127 0.1359,0.0104 0.13734,0.008 0.13863,0.006 0.13998,0.004 0.14125,0.002 0.14237,-0.002 0.1435,-0.004 0.1443,-0.006 0.14533,-0.008 0.14614,-0.0108 0.0853,-0.008", + "fill": { + "paint": "transparent" + }, + "id": "path1065", + "name": "path1065", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 113.53318,129.58968 0.17865,-0.0182 0.17929,-0.0218 0.18008,-0.0252 0.18073,-0.0288 0.18144,-0.0325 0.18217,-0.0362 0.0343,-0.008 0.18289,-0.0406 0.18297,-0.044 0.18271,-0.0478 0.18273,-0.0512 0.18216,-0.0548 0.18185,-0.0583 0.18104,-0.0617 0.18033,-0.0652 0.17937,-0.0686 0.17842,-0.0719 0.17712,-0.0752 0.1757,-0.0784 0.17426,-0.0816 0.1725,-0.0847 0.0376,-0.0188 0.17033,-0.0884 0.16827,-0.0913 0.1661,-0.0941 0.16387,-0.0968", + "fill": { + "paint": "transparent" + }, + "id": "path1066", + "name": "path1066", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 118.05942,128.02891 0.0987,-0.0634 0.1014,-0.0669 0.10026,-0.0679 0.0991,-0.0689 0.0966,-0.0689 0.0968,-0.0708 0.0954,-0.0718 0.0942,-0.0726 0.0928,-0.0734 0.0915,-0.0743 0.0901,-0.0751 0.0888,-0.0759 0.0872,-0.0766 0.086,-0.0773 0.0845,-0.078 0.083,-0.0787", + "fill": { + "paint": "transparent" + }, + "id": "path1067", + "name": "path1067", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 119.71615,126.69992 0.0615,-0.0629 0.0954,-0.10065 0.0927,-0.10117 0.0902,-0.10179 0.0876,-0.10248 0.0853,-0.10315 0.0335,-0.0419 0.0817,-0.10409 0.0791,-0.10466 0.0767,-0.10516 0.0743,-0.10556 0.0711,-0.10589 0.0687,-0.10617 0.0663,-0.10637 0.0639,-0.10651 0.0607,-0.10655 0.0583,-0.10663 0.0559,-0.10657 0.0527,-0.10651 0.0503,-0.10642 0.0479,-0.10624 0.0448,-0.10607 0.0424,-0.10585 0.04,-0.10564", + "fill": { + "paint": "transparent" + }, + "id": "path1068", + "name": "path1068", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 121.45463,123.7633 5e-4,-0.003 0.0232,-0.0988 0.0208,-0.0985 0.0184,-0.0981 0.016,-0.0976 0.0136,-0.0972 0.0112,-0.0966 0.01,-0.096 0.008,-0.0953 0.008,-0.0946 v -0.0939 l 4.9e-4,-0.0931 v -0.0923 -0.0914 l -0.008,-0.0906 v -0.032 l -0.009,-0.0903 -0.0112,-0.0899 -0.0127,-0.0895 -0.0152,-0.0889 -0.0176,-0.0883 -0.0192,-0.0876 -0.0216,-0.0868 -0.0232,-0.086 -0.0256,-0.085 -0.0272,-0.084 -0.0296,-0.0829 -0.0311,-0.0817 -0.0327,-0.0805 -0.0351,-0.0792", + "fill": { + "paint": "transparent" + }, + "id": "path1069", + "name": "path1069", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 107.68889,124.12201 -0.028,0.0889 -0.0327,0.11215 -0.0303,0.11186 -0.0272,0.11145 -0.024,0.11093 -0.0216,0.11035 -0.0184,0.10969 -0.0152,0.10896 -0.0128,0.10815 -0.01,0.10726 -0.008,0.10636 -0.008,0.10543 v 0.1044 0.1034 l 0.008,0.10236 0.008,0.10125 0.01,0.10114 v 0.0197 l 0.0128,0.10089 0.0152,0.1005 0.0184,0.0999 0.0208,0.0992 0.0232,0.0985 0.0264,0.0975 0.0287,0.0965 0.0312,0.0953 0.0335,0.094 0.0359,0.0926 0.0383,0.0912 0.0407,0.0896 0.0431,0.0879 0.0448,0.0862 0.0472,0.0844", + "fill": { + "paint": "transparent" + }, + "id": "path1070", + "name": "path1070", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 121.25146,121.17365 -0.0455,-0.0952 -0.0487,-0.0944 -0.052,-0.0934 -0.0551,-0.0923 -0.0575,-0.091 -0.0607,-0.0896 -0.0631,-0.0881 -0.0503,-0.0667 -0.0679,-0.0849 -0.0703,-0.083 -0.0735,-0.0816 -0.0759,-0.0801 -0.0791,-0.0785 -0.0817,-0.0769 -0.0845,-0.0752 -0.0872,-0.0734 -0.0897,-0.0716 -0.0663,-0.0506 -0.0942,-0.0682 -0.0971,-0.0667 -0.1002,-0.0649 -0.10298,-0.0632 -0.10602,-0.0614 -0.10883,-0.0595 -0.1116,-0.0575 -0.11441,-0.0554 -0.11697,-0.0533 -0.1196,-0.0512 -0.12208,-0.049 -0.12448,-0.0466 -0.12671,-0.044 -0.12863,-0.0416 -0.13064,-0.0391 -0.13239,-0.0364 -0.10283,-0.0261", + "fill": { + "paint": "transparent" + }, + "id": "path1071", + "name": "path1071", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 118.10144,118.82323 -0.18831,-0.0434 -0.19184,-0.0383 -0.19526,-0.0333 -0.19863,-0.0284 -0.20222,-0.0233 -0.20541,-0.018 -0.20861,-0.0127 -0.21173,-0.008 -0.21485,-0.002 -0.21755,0.004 -0.22044,0.009 -0.22283,0.0149 -0.22523,0.0206 -0.22738,0.0263 -0.22898,0.0323 -0.23059,0.0381 -0.19359,0.0362 -0.2325,0.0488 -0.23178,0.0544 -0.2313,0.06 -0.23027,0.0655 -0.2293,0.071 -0.2281,0.0765 -0.22676,0.0819 -0.22523,0.0873 -0.22338,0.0927 -0.22148,0.0979 -0.2194,0.10321 -0.21708,0.10831 -0.21444,0.1134 -0.21188,0.11833 -0.20893,0.12318 -0.20574,0.12796 -0.0256,0.0161", + "fill": { + "paint": "transparent" + }, + "id": "path1072", + "name": "path1072", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "d": "m 110.93517,120.24485 -0.0559,0.0359 -0.16731,0.11127 -0.16355,0.11367 -0.15995,0.11592 -0.15612,0.11813 -0.15228,0.12025 -0.14837,0.12228 -0.14461,0.12424 -0.14054,0.12612 -0.13662,0.12793 -0.13256,0.12966 -0.12855,0.13138 -0.12456,0.13297 -0.12048,0.13459 -0.11649,0.1361 -0.008,0.005 -0.11185,0.13716 -0.10739,0.13804 -0.10282,0.13871 -0.0981,0.13927 -0.0935,0.13969 -0.0889,0.13999 -0.0842,0.14016 -0.0799,0.14027 -0.0751,0.14023 -0.0703,0.14016 -0.0655,0.14001 -0.0607,0.13978 -0.0568,0.13953 -0.052,0.13922 -0.0472,0.13885", + "fill": { + "paint": "transparent" + }, + "id": "path1073", + "name": "path1073", + "stroke": { + "dasharray": "none", + "linecap": "butt", + "linejoin": "miter", + "miterlimit": "2", + "opacity": "1", + "paint": "#000000", + "width": "1.11992" + }, + "type": "path" + }, + { + "cx": "85.848343", + "cy": "147.12643", + "fill": { + "opacity": "1", + "paint": "transparent" + }, + "id": "ellipse1073", + "name": "ellipse1073", + "rx": "4.6207089", + "ry": "3.5301664", + "stroke": { + "dasharray": "none", + "opacity": "1", + "paint": "#000000", + "width": "1.10038" + }, + "transform": "matrix(0.9696729,-0.24440635,0.20828824,0.97806749,0,0)", + "type": "ellipse" + }, + { + "d": "m 101.92901,13.800073 h 3.36015 l 1.37851,0.84629 v 1.115509 h -5.41383 z", + "fill": { + "opacity": "1", + "paint": "transparent" + }, + "id": "path1074", + "name": "path1074", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "opacity": "1", + "paint": "#000000", + "width": "1.13987" + }, + "type": "path" + }, + { + "d": "m 85.974913,62.236887 h 3.36015 l 1.37851,0.84629 v 1.115509 h -5.41383 z", + "fill": { + "opacity": "1", + "paint": "transparent" + }, + "id": "path1075", + "name": "path1075", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "opacity": "1", + "paint": "#000000", + "width": "1.13987" + }, + "type": "path" + }, + { + "d": "m 78.727069,84.996886 h 3.36015 l 1.37851,0.84629 v 1.115509 h -5.41383 z", + "fill": { + "opacity": "1", + "paint": "transparent" + }, + "id": "path1076", + "name": "path1076", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "opacity": "1", + "paint": "#000000", + "width": "1.13987" + }, + "type": "path" + }, + { + "d": "m 71.390836,107.75689 h 3.36015 l 1.37851,0.84629 v 1.1155 h -5.41383 z", + "fill": { + "opacity": "1", + "paint": "transparent" + }, + "id": "path1077", + "name": "path1077", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "opacity": "1", + "paint": "#000000", + "width": "1.13987" + }, + "type": "path" + }, + { + "d": "m 64.010409,130.16334 h 3.36015 l 1.37851,0.84629 v 1.1155 h -5.41383 z", + "fill": { + "opacity": "1", + "paint": "transparent" + }, + "id": "path1078", + "name": "path1078", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "opacity": "1", + "paint": "#000000", + "width": "1.13987" + }, + "type": "path" + }, + { + "d": "m 90.92466,47.387645 h 3.36015 l 1.37851,0.84629 v 1.115509 h -5.41383 z", + "fill": { + "opacity": "1", + "paint": "transparent" + }, + "id": "path1079", + "name": "path1079", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "opacity": "1", + "paint": "#000000", + "width": "1.13987" + }, + "type": "path" + }, + { + "d": "m 90.92466,47.387645 h 3.36015 l 1.37851,0.84629 v 1.115509 h -5.41383 z", + "fill": { + "opacity": "1", + "paint": "transparent" + }, + "id": "path1080", + "name": "path1080", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "opacity": "1", + "paint": "#000000", + "width": "1.13987" + }, + "type": "path" + }, + { + "d": "m 83.40625,70.640625 5.25,0.07813 -0.390625,1.21875 -1.953125,0.67187 -3.625,-0.03125 z", + "fill": { + "opacity": "1", + "paint": "transparent" + }, + "id": "path1081", + "name": "path1081", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "opacity": "1", + "paint": "#000000", + "width": "1.1" + }, + "type": "path" + }, + { + "d": "m 76.129376,93.337547 5.25,0.07813 -0.390625,1.21875 -1.953125,0.67187 -3.625,-0.03125 z", + "fill": { + "opacity": "1", + "paint": "transparent" + }, + "id": "path1082", + "name": "path1082", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "opacity": "1", + "paint": "#000000", + "width": "1.1" + }, + "type": "path" + }, + { + "d": "m 68.616366,116.09755 5.25,0.0781 -0.390625,1.21875 -1.953125,0.67187 -3.625,-0.0312 z", + "fill": { + "opacity": "1", + "paint": "transparent" + }, + "id": "path1083", + "name": "path1083", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "opacity": "1", + "paint": "#000000", + "width": "1.1" + }, + "type": "path" + }, + { + "d": "m 158.66813,13.932213 h -3.57973 l -1.8451,0.673961 -0.14363,1.193242 4.8945,-0.0221 z", + "fill": { + "opacity": "1", + "paint": "transparent" + }, + "id": "path1084", + "name": "path1084", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "opacity": "1", + "paint": "#000000", + "width": "1.1" + }, + "type": "path" + }, + { + "d": "m 142.9792,62.280639 h -3.57973 l -1.8451,0.673961 -0.14363,1.193242 4.8945,-0.0221 z", + "fill": { + "opacity": "1", + "paint": "transparent" + }, + "id": "path1085", + "name": "path1085", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "opacity": "1", + "paint": "#000000", + "width": "1.1" + }, + "type": "path" + }, + { + "d": "m 135.59877,84.95225 h -3.57973 l -1.8451,0.673961 -0.14363,1.193242 4.8945,-0.0221 z", + "fill": { + "opacity": "1", + "paint": "transparent" + }, + "id": "path1086", + "name": "path1086", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "opacity": "1", + "paint": "#000000", + "width": "1.1" + }, + "type": "path" + }, + { + "d": "m 128.26254,107.49128 h -3.57973 l -1.8451,0.67396 -0.14363,1.19324 4.8945,-0.0221 z", + "fill": { + "opacity": "1", + "paint": "transparent" + }, + "id": "path1087", + "name": "path1087", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "opacity": "1", + "paint": "#000000", + "width": "1.1" + }, + "type": "path" + }, + { + "d": "m 120.88211,130.25128 h -3.57973 l -1.8451,0.67396 -0.14363,1.19324 4.8945,-0.0221 z", + "fill": { + "opacity": "1", + "paint": "transparent" + }, + "id": "path1088", + "name": "path1088", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "opacity": "1", + "paint": "#000000", + "width": "1.1" + }, + "type": "path" + }, + { + "d": "M 140.15625,70.703125 139.75,72.53125 h -3.45312 l -1.45313,-0.6875 0.375,-1.25 z", + "fill": { + "opacity": "1", + "paint": "transparent" + }, + "id": "path1089", + "name": "path1089", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "opacity": "1", + "paint": "#000000", + "width": "1.1" + }, + "type": "path" + }, + { + "d": "m 132.75372,93.319493 -0.40625,1.828125 h -3.45312 l -1.45313,-0.6875 0.375,-1.25 z", + "fill": { + "opacity": "1", + "paint": "transparent" + }, + "id": "path1090", + "name": "path1090", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "opacity": "1", + "paint": "#000000", + "width": "1.1" + }, + "type": "path" + }, + { + "d": "m 125.39539,116.0132 -0.40625,1.82813 h -3.45312 l -1.45313,-0.6875 0.375,-1.25 z", + "fill": { + "opacity": "1", + "paint": "transparent" + }, + "id": "path1091", + "name": "path1091", + "stroke": { + "dasharray": "none", + "linecap": "round", + "linejoin": "round", + "opacity": "1", + "paint": "#000000", + "width": "1.1" + }, + "type": "path" + } + ], + "viewBox": "0 0 240 180" + }, + "type": "ia.shapes.svg" + } + ], + "meta": { + "name": "root" + }, + "props": { + "direction": "column" + }, + "type": "ia.container.flex" + } +} \ No newline at end of file diff --git a/.resources/f6f30020c3ccf96f1c012a5f049b3f23500a139acaef447d18feab74fbe92712 b/.resources/f6f30020c3ccf96f1c012a5f049b3f23500a139acaef447d18feab74fbe92712 new file mode 100644 index 00000000..92280377 --- /dev/null +++ b/.resources/f6f30020c3ccf96f1c012a5f049b3f23500a139acaef447d18feab74fbe92712 @@ -0,0 +1,584 @@ +{ + "custom": {}, + "params": { + "tagProps": [ + "TAG0", + "TAG1", + "TAG2", + "TAG3", + "TAG4", + "TAG5", + "TAG6" + ] + }, + "props": { + "defaultSize": { + "height": 1080, + "width": 1920 + } + }, + "root": { + "children": [ + { + "meta": { + "name": "DPM" + }, + "position": { + "height": 1, + "width": 1 + }, + "propConfig": { + "props.params.con_lines[0]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[0]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[1]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[1]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[2]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[2]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[3]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[3]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[4]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[4]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[5]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[5]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + }, + "props.params.con_lines[6]": { + "binding": { + "config": { + "fallbackDelay": 2.5, + "mode": "indirect", + "references": { + "0": "{view.params.tagProps[6]}", + "fc": "{session.custom.fc}" + }, + "tagPath": "[{fc}_SCADA_TAG_PROVIDER]{0}/Alarm/Communication_Faulted" + }, + "transforms": [ + { + "expression": "coalesce({value},{view.params.forceFaultStatus},false)", + "type": "expression" + }, + { + "fallback": false, + "inputType": "scalar", + "mappings": [ + { + "input": false, + "output": true + } + ], + "outputType": "scalar", + "type": "map" + } + ], + "type": "tag" + } + } + }, + "props": { + "params": { + "con_lines": [ + null, + null, + null, + null, + null, + null, + null, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "con_lines_visible": [ + true, + true, + true, + true, + true, + true, + true, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "in": false, + "out": false + }, + "path": "Windows/Tabs/Enternet Windows/Components/DPM_TO_HUB" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS1_3" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0232, + "y": 0.4991 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS1_3_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.0094, + "y": 0.5394 + }, + "props": { + "text": "PS1_3_VFD1 11.200.1.110", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "PS1_4" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.023, + "y": 0.6677 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS1_4_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.0068, + "y": 0.7315 + }, + "props": { + "text": "PS1_4_VFD1 11.200.1.111", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "PS1_5A" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0216, + "y": 0.8333 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS1_5A_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.0068, + "y": 0.8981 + }, + "props": { + "text": "PS1_5A_VFD1 11.200.1.112", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "PS1_5B" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0229, + "y": 0.3333 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS1_5B_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.0068, + "y": 0.3986 + }, + "props": { + "text": "PS1_5B_VFD1 11.200.1.113", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "PS1_6" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0229, + "y": 0.1667 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS1_6_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.0068, + "y": 0.2324 + }, + "props": { + "text": "PS1_6_VFD1 11.200.1.114", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "PS1_7" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.0244 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS1_7_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.0068, + "y": 0.0653 + }, + "props": { + "text": "PS1_7_VFD1 11.200.1.115", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "PS1_8" + }, + "position": { + "height": 0.1667, + "width": 0.125, + "x": 0.5 + }, + "props": { + "path": "Windows/Tabs/Enternet Windows/Components/APF" + }, + "type": "ia.display.view" + }, + { + "meta": { + "name": "PS1_8_label" + }, + "position": { + "height": 0.0358, + "width": 0.0547, + "x": 0.5117, + "y": 0.1662 + }, + "props": { + "text": "PS1_8_VFD1 11.200.1.116", + "textStyle": { + "fontSize": "1vmin", + "key": "value" + } + }, + "type": "ia.display.label" + }, + { + "meta": { + "name": "DPM_label" + }, + "position": { + "height": 0.0694, + "width": 0.101, + "x": 0.5831, + "y": 0.6342 + }, + "props": { + "text": "DPM1_PS1-4 11.200.1.6", + "textStyle": { + "fontSize": "2vmin" + } + }, + "type": "ia.display.label" + } + ], + "meta": { + "name": "root" + }, + "position": { + "x": 0.6348, + "y": -0.1546 + }, + "props": { + "mode": "percent" + }, + "type": "ia.container.coord" + } +} \ No newline at end of file diff --git a/.resources/fab79912f6f4ba4d560df01cfcf5eb246ea3a978da7839bb4a5f86ffa83dfc3d b/.resources/fab79912f6f4ba4d560df01cfcf5eb246ea3a978da7839bb4a5f86ffa83dfc3d new file mode 100644 index 00000000..4962b047 Binary files /dev/null and b/.resources/fab79912f6f4ba4d560df01cfcf5eb246ea3a978da7839bb4a5f86ffa83dfc3d differ diff --git a/.resources/ff71ca0591f979b4591dd546055fb0375793909d042236f3445cc839fbee73d1 b/.resources/ff71ca0591f979b4591dd546055fb0375793909d042236f3445cc839fbee73d1 deleted file mode 100644 index bb9e9138..00000000 Binary files a/.resources/ff71ca0591f979b4591dd546055fb0375793909d042236f3445cc839fbee73d1 and /dev/null differ diff --git a/.resources/fe3777b85b273f2d27e568e56e3b042e2b3415846e01ba385c89c9a7081acac7 b/.resources/ff8ce3364cc4abb0383bbdc04a116131da3886880d8031a4ca4103b1b3e21ca7 similarity index 99% rename from .resources/fe3777b85b273f2d27e568e56e3b042e2b3415846e01ba385c89c9a7081acac7 rename to .resources/ff8ce3364cc4abb0383bbdc04a116131da3886880d8031a4ca4103b1b3e21ca7 index 1eefd277..fc62f1fe 100644 --- a/.resources/fe3777b85b273f2d27e568e56e3b042e2b3415846e01ba385c89c9a7081acac7 +++ b/.resources/ff8ce3364cc4abb0383bbdc04a116131da3886880d8031a4ca4103b1b3e21ca7 @@ -5,11 +5,9 @@ "MCM02", "MCM03", "MCM04", - "MCM05", - "MCM06", - "MCM07" + "MCM05" ], - "state": 0 + "state": null }, "params": { "tagProps": [ @@ -442,11 +440,11 @@ "inputType": "scalar", "mappings": [ { - "input": 1, + "input": true, "output": "MOTOR FAULTED" }, { - "input": 0, + "input": false, "output": "MOTOR NOT FAULTED" } ], @@ -591,11 +589,11 @@ "inputType": "scalar", "mappings": [ { - "input": 1, + "input": true, "output": "JAM FAULTED" }, { - "input": 0, + "input": false, "output": "JAM NOT FAULTED" } ], @@ -740,11 +738,11 @@ "inputType": "scalar", "mappings": [ { - "input": 1, + "input": true, "output": "DE ENERGIZED" }, { - "input": 0, + "input": false, "output": "NOT DE ENERGIZED" } ], @@ -889,11 +887,11 @@ "inputType": "scalar", "mappings": [ { - "input": 1, + "input": true, "output": "ESTOPPED" }, { - "input": 0, + "input": false, "output": "NOT ESTOPPED" } ], @@ -1038,11 +1036,11 @@ "inputType": "scalar", "mappings": [ { - "input": 1, + "input": true, "output": "ESTOPPED" }, { - "input": 0, + "input": false, "output": "NOT ESTOPPED" } ], @@ -1187,11 +1185,11 @@ "inputType": "scalar", "mappings": [ { - "input": 1, + "input": true, "output": "STOPPED" }, { - "input": 0, + "input": false, "output": "NOT STOPPED" } ], @@ -1336,11 +1334,11 @@ "inputType": "scalar", "mappings": [ { - "input": 1, + "input": true, "output": "SWITCH FAULTED" }, { - "input": 0, + "input": false, "output": "SWITCH NOT FAULTED" } ], @@ -1485,11 +1483,11 @@ "inputType": "scalar", "mappings": [ { - "input": 1, + "input": true, "output": "ON UPS BATTERY" }, { - "input": 0, + "input": false, "output": "NOT ON UPS BATTERY" } ], @@ -1634,11 +1632,11 @@ "inputType": "scalar", "mappings": [ { - "input": 1, + "input": true, "output": "BATTERY FAULTED" }, { - "input": 0, + "input": false, "output": "BATTERY NOT FAULTED" } ], @@ -1783,11 +1781,11 @@ "inputType": "scalar", "mappings": [ { - "input": 1, + "input": true, "output": "BATTERY LOW" }, { - "input": 0, + "input": false, "output": "BATTERY NOT LOW" } ], @@ -1932,11 +1930,11 @@ "inputType": "scalar", "mappings": [ { - "input": 1, + "input": true, "output": "ON" }, { - "input": 0, + "input": false, "output": "OFF" } ], @@ -2081,11 +2079,11 @@ "inputType": "scalar", "mappings": [ { - "input": 1, + "input": true, "output": "UPS FAULTED" }, { - "input": 0, + "input": false, "output": "UPS NOT FAULTED" } ], @@ -3292,7 +3290,6 @@ "grow": 1 }, "props": { - "currentTabIndex": 2, "menuType": "modern", "tabSize": { "width": 1000 diff --git a/BNA8/com.inductiveautomation.perspective/page-config/config.json b/BNA8/com.inductiveautomation.perspective/page-config/config.json index c308db7a..756623b4 100644 --- a/BNA8/com.inductiveautomation.perspective/page-config/config.json +++ b/BNA8/com.inductiveautomation.perspective/page-config/config.json @@ -239,6 +239,50 @@ "viewPath": "autStand/Docked_Views/Docked-West" } ], + "right": [ + { + "anchor": "fixed", + "autoBreakpoint": 480, + "content": "cover", + "handle": "hide", + "iconUrl": "", + "id": "Docked-East-Conv", + "modal": false, + "resizable": false, + "show": "onDemand", + "size": 600, + "viewParams": {}, + "viewPath": "autStand/PopUp-Views/Controller-Equipment/Information-Docked-East-Conv" + }, + { + "anchor": "fixed", + "autoBreakpoint": 480, + "content": "cover", + "handle": "hide", + "iconUrl": "", + "id": "Docked-East-Device", + "modal": false, + "resizable": false, + "show": "onDemand", + "size": 600, + "viewParams": {}, + "viewPath": "autStand/PopUp-Views/Controller-Equipment/Information-Docked-East-Device" + }, + { + "anchor": "fixed", + "autoBreakpoint": 480, + "content": "cover", + "handle": "hide", + "iconUrl": "", + "id": "Docked-East-VFD", + "modal": false, + "resizable": false, + "show": "onDemand", + "size": 600, + "viewParams": {}, + "viewPath": "autStand/PopUp-Views/Controller-Equipment/Information-Docked-East-VFD" + } + ], "top": [ { "anchor": "fixed", diff --git a/BNA8/com.inductiveautomation.perspective/page-config/resource.json b/BNA8/com.inductiveautomation.perspective/page-config/resource.json index 9ec49bf6..5804c17b 100644 --- a/BNA8/com.inductiveautomation.perspective/page-config/resource.json +++ b/BNA8/com.inductiveautomation.perspective/page-config/resource.json @@ -9,8 +9,8 @@ "attributes": { "lastModification": { "actor": "admin", - "timestamp": "2025-09-12T08:55:02Z" + "timestamp": "2025-09-19T12:39:39Z" }, - "lastModificationSignature": "99b4224944983d814a54f7fd1741c6e0802e6e7552d89c246ba69fc949a6bd85" + "lastModificationSignature": "17b2e245614fba1695935663ee680d909dcdce7f0bbcb63cd10abebf04696e19" } } \ No newline at end of file diff --git a/BNA8/com.inductiveautomation.perspective/views/autStand/Alarms/RealTime/resource.json b/BNA8/com.inductiveautomation.perspective/views/autStand/Alarms/RealTime/resource.json index b562acac..427498bb 100644 --- a/BNA8/com.inductiveautomation.perspective/views/autStand/Alarms/RealTime/resource.json +++ b/BNA8/com.inductiveautomation.perspective/views/autStand/Alarms/RealTime/resource.json @@ -9,9 +9,9 @@ ], "attributes": { "lastModification": { - "actor": "external", - "timestamp": "2025-08-28T09:46:53Z" + "actor": "admin", + "timestamp": "2025-09-19T12:36:20Z" }, - "lastModificationSignature": "fd459e3e68f949abbede231d801cfbd4a03b40693eef53cf172c8b59efc26ff4" + "lastModificationSignature": "b2e342fbe4be98836829c596ad8705d49b652ed3b7d92ceffbd5959bf68bf8c5" } } \ No newline at end of file diff --git a/BNA8/com.inductiveautomation.perspective/views/autStand/Alarms/RealTime/thumbnail.png b/BNA8/com.inductiveautomation.perspective/views/autStand/Alarms/RealTime/thumbnail.png index b036545b..a2043147 100644 Binary files a/BNA8/com.inductiveautomation.perspective/views/autStand/Alarms/RealTime/thumbnail.png and b/BNA8/com.inductiveautomation.perspective/views/autStand/Alarms/RealTime/thumbnail.png differ diff --git a/BNA8/com.inductiveautomation.perspective/views/autStand/Alarms/RealTime/view.json b/BNA8/com.inductiveautomation.perspective/views/autStand/Alarms/RealTime/view.json index 073131d5..b809ed77 100644 --- a/BNA8/com.inductiveautomation.perspective/views/autStand/Alarms/RealTime/view.json +++ b/BNA8/com.inductiveautomation.perspective/views/autStand/Alarms/RealTime/view.json @@ -464,7 +464,6 @@ ], "custom": { "priorities": { - "critical": false, "diagnostic": false, "high": false, "low": false, @@ -672,7 +671,7 @@ "component": { "onRowDoubleClick": { "config": { - "script": "\n\tmyData \u003d self.props.selection.data\n\n\talarms.alarm_click.handleClick(myData)\n\t\n\t" + "script": "\n\tmyData \u003d self.props.selection.data\n\n\tautStand.Alarms.handleClick(myData)\n\t\n\t" }, "scope": "G", "type": "script" @@ -3069,7 +3068,7 @@ "value": { "$": [ "ts", - 192, + 201, 1755608469647 ], "$ts": 1755608469646 @@ -3261,7 +3260,7 @@ "$": [ "ts", 192, - 1755608469647 + 1758280365675 ], "$ts": 1755606669646 }, @@ -3269,7 +3268,7 @@ "$": [ "ts", 192, - 1755608469647 + 1758280365675 ], "$ts": 1755608469646 } @@ -4411,7 +4410,7 @@ "$": [ "ts", 192, - 1755608469647 + 1758280365675 ], "$ts": 1755606669646 }, @@ -4419,7 +4418,7 @@ "$": [ "ts", 192, - 1755608469647 + 1758280365675 ], "$ts": 1755608469646 }, diff --git a/BNA8/com.inductiveautomation.perspective/views/autStand/Detailed_Views/MCM01-FLUID INBOUND/resource.json b/BNA8/com.inductiveautomation.perspective/views/autStand/Detailed_Views/MCM01-FLUID INBOUND/resource.json index d401405b..68b0d21d 100644 --- a/BNA8/com.inductiveautomation.perspective/views/autStand/Detailed_Views/MCM01-FLUID INBOUND/resource.json +++ b/BNA8/com.inductiveautomation.perspective/views/autStand/Detailed_Views/MCM01-FLUID INBOUND/resource.json @@ -10,8 +10,8 @@ "attributes": { "lastModification": { "actor": "admin", - "timestamp": "2025-09-18T18:22:53Z" + "timestamp": "2025-09-19T13:41:00Z" }, - "lastModificationSignature": "c895811c5004312f6d0289113564a47dab0b6572962dc2f70a97933104184fce" + "lastModificationSignature": "159bcf779d752460467d842af762f1f4a47cdc2f73efe60da26c4b885dd28702" } } \ No newline at end of file diff --git a/BNA8/com.inductiveautomation.perspective/views/autStand/Detailed_Views/MCM01-FLUID INBOUND/thumbnail.png b/BNA8/com.inductiveautomation.perspective/views/autStand/Detailed_Views/MCM01-FLUID INBOUND/thumbnail.png index 1bfd973e..0ab43496 100644 Binary files a/BNA8/com.inductiveautomation.perspective/views/autStand/Detailed_Views/MCM01-FLUID INBOUND/thumbnail.png and b/BNA8/com.inductiveautomation.perspective/views/autStand/Detailed_Views/MCM01-FLUID INBOUND/thumbnail.png differ diff --git a/BNA8/com.inductiveautomation.perspective/views/autStand/Detailed_Views/MCM01-FLUID INBOUND/view.json b/BNA8/com.inductiveautomation.perspective/views/autStand/Detailed_Views/MCM01-FLUID INBOUND/view.json index f234dfd2..9d12fbad 100644 --- a/BNA8/com.inductiveautomation.perspective/views/autStand/Detailed_Views/MCM01-FLUID INBOUND/view.json +++ b/BNA8/com.inductiveautomation.perspective/views/autStand/Detailed_Views/MCM01-FLUID INBOUND/view.json @@ -409,7 +409,6 @@ }, "props": { "params": { - "key": "value", "tagProps": [ "System/MCM01/Conveyor/UL14_1", "value", @@ -1372,7 +1371,7 @@ "props": { "params": { "tagProps": [ - "System/MCM01/Photoeyes/TPE/PS3_1_TPE1", + "System/MCM01/PE/TPE/PS3_1_TPE1", "value", "value", "value", @@ -1608,7 +1607,7 @@ "props": { "params": { "tagProps": [ - "System/MCM01/Photoeyes/TPE/PS3_2_TPE1", + "System/MCM01/Photoeye/TPE/PS3_2_TPE1", "value", "value", "value", @@ -4225,7 +4224,7 @@ "props": { "params": { "tagProps": [ - "System/MCM01/SIO/PS3_1_SIO1", + "System/MCM01/IO_Block/SIO/PS3_1_SIO1", "value", "value", "value", diff --git a/BNA8/ignition/script-python/autStand/Alarms/code.py b/BNA8/ignition/script-python/autStand/Alarms/code.py new file mode 100644 index 00000000..c7e9e87d --- /dev/null +++ b/BNA8/ignition/script-python/autStand/Alarms/code.py @@ -0,0 +1,44 @@ +def handleClick(data): + if not data or len(data) != 1: + return + + row = data[0] + clickedTagPath = row.get("FullTag", "") + MCM = row.get("Location", "") + + MCM_Pages_Map = { + "MCM01": "autStand/Detailed_Views/MCM01-FLUID INBOUND", + "MCM02": "autStand/Detailed_Views/MCM02-NC SORTER", + } + + + page = MCM_Pages_Map.get(MCM) + + if not page: + return + + device = row.get("Device", "") + + if not device or not clickedTagPath: + return + + pathToDevice = "" + + # check for the mcm + if "MCM" in device: + parts = clickedTagPath.split("/") + pathToDevice = "/".join(parts[:3]) + + else: + index = clickedTagPath.find(device) + if index == -1: + return + pathToDevice = clickedTagPath[:index + len(device)] + + priority = row.get("Priority", "") + + #combining with priority + combined = pathToDevice + "||" + priority + + # Navigate to target view, passing the tag to highlight + system.perspective.navigate(view = page, params = {'highlightTagPath': str(combined)}) \ No newline at end of file diff --git a/BNA8/ignition/script-python/autStand/Alarms/resource.json b/BNA8/ignition/script-python/autStand/Alarms/resource.json new file mode 100644 index 00000000..a9c66266 --- /dev/null +++ b/BNA8/ignition/script-python/autStand/Alarms/resource.json @@ -0,0 +1,17 @@ +{ + "scope": "A", + "version": 1, + "restricted": false, + "overridable": true, + "files": [ + "code.py" + ], + "attributes": { + "lastModification": { + "actor": "admin", + "timestamp": "2025-09-19T12:09:01Z" + }, + "hintScope": 2, + "lastModificationSignature": "c261f074467f77939e981711dd4ed7ed2bc0a823f4d265fe7acfcc55148cdc18" + } +} \ No newline at end of file diff --git a/BNA8/ignition/script-python/autStand/Utils/code.py b/BNA8/ignition/script-python/autStand/Utils/code.py index 7eae420b..909ef4fe 100644 --- a/BNA8/ignition/script-python/autStand/Utils/code.py +++ b/BNA8/ignition/script-python/autStand/Utils/code.py @@ -1,3 +1,16 @@ +def deviceType(view): + path = view.props.get("path") + docked_view = "Docked-East-" + + if "Conveyor" in path: + docked_view +="Conv" + elif "VFD" in path: + docked_view +="VFD" + else : + docked_view +="Device" + + return docked_view + def handleTagHighlight(view, currentValue): tag_priority = currentValue.value @@ -37,6 +50,9 @@ def handleTagHighlight(view, currentValue): if tag == tagPath: child.props.style["classes"] = "Highlight/Pulse-" + priority + docked_view = deviceType(child) + system.perspective.openDock(docked_view, params={'tagProps': tagProps}) foundMatch = True - return foundMatch \ No newline at end of file + return foundMatch + diff --git a/BNA8/ignition/script-python/autStand/Utils/resource.json b/BNA8/ignition/script-python/autStand/Utils/resource.json index 4ff65ab7..763be68e 100644 --- a/BNA8/ignition/script-python/autStand/Utils/resource.json +++ b/BNA8/ignition/script-python/autStand/Utils/resource.json @@ -9,9 +9,9 @@ "attributes": { "lastModification": { "actor": "admin", - "timestamp": "2025-09-16T14:37:18Z" + "timestamp": "2025-09-19T13:21:15Z" }, "hintScope": 2, - "lastModificationSignature": "4ac7d9253e8bcebb977bc27516374f60b6d3f33206c95e0c7320003db93bf5aa" + "lastModificationSignature": "717c54551cb487cf4325361e5e75e5db3a065f14656df7dc6ee5dca07eb0f544" } } \ No newline at end of file diff --git a/conversion-report.txt b/conversion-report.txt index a19476b6..c792be9e 100644 --- a/conversion-report.txt +++ b/conversion-report.txt @@ -34,3 +34,5 @@ Starting conversion: 20250918:20.02.12 Conversion finished. Elapsed time: 11 ms Starting conversion: 20250919:12.08.01 Conversion finished. Elapsed time: 10 ms +Starting conversion: 20250919:14.45.44 +Conversion finished. Elapsed time: 9 ms